@realsee/five 5.0.0-alpha.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +362 -0
- package/TERMS.txt +56 -0
- package/docs/.nojekyll +1 -0
- package/docs/assets/highlight.css +134 -0
- package/docs/assets/icons.css +1043 -0
- package/docs/assets/icons.png +0 -0
- package/docs/assets/icons@2x.png +0 -0
- package/docs/assets/main.js +52 -0
- package/docs/assets/search.js +1 -0
- package/docs/assets/style.css +1388 -0
- package/docs/assets/widgets.png +0 -0
- package/docs/assets/widgets@2x.png +0 -0
- package/docs/classes/five.AnimationFrameLoop.html +15 -0
- package/docs/classes/five.BVH.html +10 -0
- package/docs/classes/five.BVHIntersect.html +1 -0
- package/docs/classes/five.BVHNode.html +7 -0
- package/docs/classes/five.BVHVector3.html +1 -0
- package/docs/classes/five.Camera.html +11 -0
- package/docs/classes/five.Five.html +303 -0
- package/docs/classes/five.InternalWebGLRenderer.html +1 -0
- package/docs/classes/five.IntersectMesh.html +1 -0
- package/docs/classes/five.LegacyPanoCircleMesh.html +5 -0
- package/docs/classes/five.Model.html +77 -0
- package/docs/classes/five.NetworkSubscribe.html +50 -0
- package/docs/classes/five.PBMContainer.html +17 -0
- package/docs/classes/five.PBMGroup.html +19 -0
- package/docs/classes/five.PBMMaterial.html +15 -0
- package/docs/classes/five.PBMMesh.html +7 -0
- package/docs/classes/five.PanoCircleMesh.html +7 -0
- package/docs/classes/five.Scene.html +3 -0
- package/docs/classes/five.Subscribe.html +56 -0
- package/docs/classes/five.Work.html +30 -0
- package/docs/classes/gltf_loader.GLTFLoader.html +17 -0
- package/docs/classes/gltf_loader.GLTFObject.html +7 -0
- package/docs/classes/line.Line.html +1 -0
- package/docs/classes/line.LineGeometry.html +1 -0
- package/docs/classes/line.LineMaterial.html +1 -0
- package/docs/classes/line.LineSegmentsGeometry.html +1 -0
- package/docs/classes/line.THREE_Line2.html +1 -0
- package/docs/classes/line.THREE_LineSegments2.html +1 -0
- package/docs/classes/react.Store.html +29 -0
- package/docs/classes/server.BVH.html +10 -0
- package/docs/classes/server.BVHIntersect.html +1 -0
- package/docs/classes/server.BVHNode.html +7 -0
- package/docs/classes/server.BVHVector3.html +1 -0
- package/docs/classes/server.Model.html +63 -0
- package/docs/classes/server.PBMGroup.html +9 -0
- package/docs/classes/server.PBMMesh.html +7 -0
- package/docs/classes/sticker.Sticker.html +32 -0
- package/docs/index.html +182 -0
- package/docs/interfaces/five.AddableObject.html +1 -0
- package/docs/interfaces/five.AnimationFrame.html +1 -0
- package/docs/interfaces/five.CameraPose.html +1 -0
- package/docs/interfaces/five.DepthPanoramaControllerCustomInitArgs.html +28 -0
- package/docs/interfaces/five.EventCallback.html +391 -0
- package/docs/interfaces/five.FiveInitArgs.html +96 -0
- package/docs/interfaces/five.FloorplanControllerCustomInitArgs.html +15 -0
- package/docs/interfaces/five.ImageOptions.html +16 -0
- package/docs/interfaces/five.ImageURLOptions.html +1 -0
- package/docs/interfaces/five.IntersectMeshInterface.html +3 -0
- package/docs/interfaces/five.Intersection.html +7 -0
- package/docs/interfaces/five.ModelControllerCustomInitArgs.html +20 -0
- package/docs/interfaces/five.ModelEventCallback.html +22 -0
- package/docs/interfaces/five.MovePanoOptions.html +39 -0
- package/docs/interfaces/five.PBMPanoPicture.html +7 -0
- package/docs/interfaces/five.PBMParameters.html +15 -0
- package/docs/interfaces/five.PanoCircleMeshInterface.html +19 -0
- package/docs/interfaces/five.PanoramaControllerCustomInitArgs.html +28 -0
- package/docs/interfaces/five.PanoramaLikeControllerCustomInitArgs.html +20 -0
- package/docs/interfaces/five.Pose.html +35 -0
- package/docs/interfaces/five.Scissor.html +14 -0
- package/docs/interfaces/five.State.html +19 -0
- package/docs/interfaces/five.SubscribeMixinType.emit.html +1 -0
- package/docs/interfaces/five.SubscribeMixinType.hasListener.html +1 -0
- package/docs/interfaces/five.SubscribeMixinType.off.html +1 -0
- package/docs/interfaces/five.SubscribeMixinType.on.html +1 -0
- package/docs/interfaces/five.SubscribeMixinType.once.html +1 -0
- package/docs/interfaces/five.TextureOptions.html +18 -0
- package/docs/interfaces/five.TopviewControllerCustomInitArgs.html +7 -0
- package/docs/interfaces/five.VRPanoramaControllerCustomInitArgs.html +24 -0
- package/docs/interfaces/five.WorkCubeImage.html +13 -0
- package/docs/interfaces/five.WorkImage.html +21 -0
- package/docs/interfaces/five.WorkInitial.html +13 -0
- package/docs/interfaces/five.WorkModel.html +11 -0
- package/docs/interfaces/five.WorkObserver.html +25 -0
- package/docs/interfaces/five.WorkTile.html +1 -0
- package/docs/interfaces/five.WorkVideo.html +9 -0
- package/docs/interfaces/gltf_loader.GLTF.html +7 -0
- package/docs/interfaces/react.FiveActionReactCallbacks.html +62 -0
- package/docs/interfaces/react.FiveInjectionTypes.html +191 -0
- package/docs/interfaces/react.PropTypeOfFiveFeatures.html +1 -0
- package/docs/interfaces/server.Intersection.html +7 -0
- package/docs/interfaces/server.ModelEventCallback.html +18 -0
- package/docs/interfaces/sticker.IntersectionLike.html +8 -0
- package/docs/media/coordinate.jpg +0 -0
- package/docs/media/topview.jpg +0 -0
- package/docs/media/typescript.jpg +0 -0
- package/docs/modules/five.SubscribeMixinType.html +1 -0
- package/docs/modules/five.html +481 -0
- package/docs/modules/gltf_loader.html +1 -0
- package/docs/modules/line.html +1 -0
- package/docs/modules/react.html +130 -0
- package/docs/modules/server.html +18 -0
- package/docs/modules/sticker.html +1 -0
- package/docs/modules.html +1 -0
- package/exporters/staticify.js +203 -0
- package/five/index.d.ts +2061 -0
- package/five/index.js +372 -0
- package/gltf-loader/index.d.ts +75 -0
- package/gltf-loader/index.js +260 -0
- package/line/index.d.ts +68 -0
- package/line/index.js +260 -0
- package/package.json +36 -0
- package/react/index.d.ts +812 -0
- package/react/index.js +260 -0
- package/resource/basis/basis_transcoder.js +22 -0
- package/resource/basis/basis_transcoder.wasm +0 -0
- package/resource/gltf/draco_decoder.js +31 -0
- package/resource/gltf/draco_decoder.wasm +0 -0
- package/resource/gltf/draco_wasm_wrapper.js +119 -0
- package/scripts/five-plugin-init.js +83 -0
- package/scripts/five-quick-start-init.js +80 -0
- package/scripts/five-react-component-init.js +83 -0
- package/scripts/five-staticify.js +21 -0
- package/server/index.d.ts +568 -0
- package/server/index.js +367 -0
- package/sticker/index.d.ts +70 -0
- package/sticker/index.js +260 -0
- package/templates/plugin/README.md +38 -0
- package/templates/plugin/devtools/external-five.js +5 -0
- package/templates/plugin/devtools/external-three.js +5 -0
- package/templates/plugin/devtools/tsconfig.build.json +18 -0
- package/templates/plugin/devtools/webpack.bundle.js +44 -0
- package/templates/plugin/devtools/webpack.example.js +39 -0
- package/templates/plugin/docs/.gitkeep +0 -0
- package/templates/plugin/examples/data.json +507 -0
- package/templates/plugin/examples/index.html +28 -0
- package/templates/plugin/examples/index.ts +12 -0
- package/templates/plugin/lib/index.ts +30 -0
- package/templates/plugin/package.json +32 -0
- package/templates/plugin/tsconfig.json +26 -0
- package/templates/quick-start/README.md +47 -0
- package/templates/quick-start/assets/work.json +507 -0
- package/templates/quick-start/index.html +54 -0
- package/templates/quick-start/index.tsx +123 -0
- package/templates/quick-start/package.json +25 -0
- package/templates/quick-start/tsconfig.json +27 -0
- package/templates/quick-start/webpack.config.js +45 -0
- package/templates/quick-start/webpack.production.js +42 -0
- package/templates/react-component/README.md +32 -0
- package/templates/react-component/devtools/external-five.js +5 -0
- package/templates/react-component/devtools/external-react.js +5 -0
- package/templates/react-component/devtools/external-three.js +5 -0
- package/templates/react-component/devtools/tsconfig.build.json +19 -0
- package/templates/react-component/devtools/webpack.bundle.js +44 -0
- package/templates/react-component/devtools/webpack.example.js +39 -0
- package/templates/react-component/docs/.gitkeep +0 -0
- package/templates/react-component/examples/data.json +507 -0
- package/templates/react-component/examples/index.html +17 -0
- package/templates/react-component/examples/index.tsx +62 -0
- package/templates/react-component/lib/index.tsx +157 -0
- package/templates/react-component/package.json +38 -0
- package/templates/react-component/tsconfig.json +27 -0
- package/umd/five-gltf-loader.js +2 -0
- package/umd/five-gltf-loader.js.LICENSE.txt +14 -0
- package/umd/five-line.js +2 -0
- package/umd/five-line.js.LICENSE.txt +14 -0
- package/umd/five-react.js +2 -0
- package/umd/five-react.js.LICENSE.txt +14 -0
- package/umd/five-sticker.js +2 -0
- package/umd/five-sticker.js.LICENSE.txt +14 -0
- package/umd/five.js +2 -0
- package/umd/five.js.LICENSE.txt +116 -0
package/server/index.js
ADDED
|
@@ -0,0 +1,367 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @realsee/five
|
|
3
|
+
*
|
|
4
|
+
* Generated: 2022-02-22
|
|
5
|
+
* Version: 5.0.0-alpha.100
|
|
6
|
+
*
|
|
7
|
+
* Terms:
|
|
8
|
+
* Realsee SDK License Agreement
|
|
9
|
+
*
|
|
10
|
+
* Update: July 28, 2021
|
|
11
|
+
*
|
|
12
|
+
* THIS LICENSE AGREEMENT BETWEEN YOU AND 【BEIKE REALSEE TECHNOLOGY (HK)
|
|
13
|
+
* LIMITED】(“Realsee”) FORMS A LEGALLY BINDING CONTRACT BETWEEN YOU AND REALSEE IN
|
|
14
|
+
* RELATION TO YOUR USE OF THE SDK. This License Agreement accompanies the Realsee
|
|
15
|
+
* Software Development Kit(s) for the software and related explanatory materials
|
|
16
|
+
* (the "SDK") and includes any upgrades, modified versions, updates, additions,
|
|
17
|
+
* and copies of the SDK licensed to You by Realsee.
|
|
18
|
+
* BY DOWNLOADING, INSTALLING, OR OTHERWISE ACCESSING OR USING THE SDK, YOU AGREE
|
|
19
|
+
* THAT YOU HAVE READ, UNDERSTOOD, AND AGREE TO BE BOUND BY THIS AGREEMENT. YOU ARE
|
|
20
|
+
* AGREEING ON YOUR OWN BEHALF AND/OR ON BEHALF OF YOUR COMPANY OR ORGANIZATION TO
|
|
21
|
+
* THE TERMS AND CONDITIONS STATED BELOW.
|
|
22
|
+
* This Agreement applies to Your use of the SDK in the country in which You
|
|
23
|
+
* legally install it (“Territory”) and is subject to the laws of such Territory
|
|
24
|
+
* and further subject to Section 12 below. Different terms, conditions, and
|
|
25
|
+
* limitations may apply to the use of the SDK in any additional countries.
|
|
26
|
+
* 1. DEFINITIONS.
|
|
27
|
+
* “Agreement” means this Realsee SDK License Agreement.
|
|
28
|
+
* “Developer”, “You” and “Your” means the person(s) or entity acquiring or using
|
|
29
|
+
* the SDK or otherwise exercising rights under the terms of this Agreement.
|
|
30
|
+
* “Documentation” means the technical or other specifications or documentation
|
|
31
|
+
* that Realsee may provide to You for use in connection with the SDK.
|
|
32
|
+
* “Integrated Product” means any software, website, or on-line service developed
|
|
33
|
+
* by You based on or using the SDK (collectively, the “Integrated Product”).
|
|
34
|
+
* “Intellectual Property” means any patents, patent rights, trademarks, service
|
|
35
|
+
* marks, registered and unregistered designs, applications for any of the
|
|
36
|
+
* foregoing, copyright, and any other similar protected rights in any country and
|
|
37
|
+
* to the extent recognised by any relevant jurisdiction as intellectual property,
|
|
38
|
+
* trade secrets, know-how and confidential information. Realsee reserves all
|
|
39
|
+
* rights not expressly granted to You.
|
|
40
|
+
* “Realsee” means [Beike Realsee Technology (HK) Limited, a company incorporated
|
|
41
|
+
* and validly existing under the laws of Hong Kong].
|
|
42
|
+
* “SDK” means the Realsee-proprietary Software Development Kits (SDK) provided
|
|
43
|
+
* hereunder, includes all development tools (including any compiler and debugger),
|
|
44
|
+
* application programming interfaces (“APIs”), libraries, binary utilities, header
|
|
45
|
+
* files, Documentation, content, data, code samples, and other materials provided
|
|
46
|
+
* to You in connection with this Agreement, whether delivered through a download,
|
|
47
|
+
* or any other media or form, and is licensed, not sold, to You by Realsee for use
|
|
48
|
+
* only under the terms of this Agreement. The terms of this Agreement will govern
|
|
49
|
+
* any updates provided by Realsee that replace and/or supplement the original SDK
|
|
50
|
+
* delivered to You, unless such update is accompanied by a separate license, in
|
|
51
|
+
* which case the terms of such license will govern.
|
|
52
|
+
* 2. LICENSED USES AND RESTRICTIONS.
|
|
53
|
+
* 2.1 Subject to the restrictions contained in this Section 2, Realsee grants to
|
|
54
|
+
* You during the term, a limited, non-exclusive, revocable, non-sublicensable,
|
|
55
|
+
* non-transferable license to install and use the SDK within the Territory only
|
|
56
|
+
* for the purpose of internal development.
|
|
57
|
+
* 2.2 Restrictions. You acknowledge and agree that, You shall not, and shall
|
|
58
|
+
* ensure that Your affiliates, employees, agents, representatives, officers,
|
|
59
|
+
* representatives, and subcontractors do not (directly or indirectly):
|
|
60
|
+
* 2.2.1 decompile, reverse engineer, disassemble or attempt to derive the source
|
|
61
|
+
* code of, those components of the SDK provided in object code form, or any part
|
|
62
|
+
* thereof;
|
|
63
|
+
* 2.2.2 remove, alter, or obscure any copyright notice or other proprietary rights
|
|
64
|
+
* notice on any part of the SDK;
|
|
65
|
+
* 2.2.3 sell, assign, pledge, rent, lease, lend, upload to or host on any website
|
|
66
|
+
* or server for use by any third party except You, redistribute, or sublicense the
|
|
67
|
+
* SDK (or any part thereof), or operate the SDK (or any part thereof) in the
|
|
68
|
+
* capacity of a service bureau or other hosted services provider, in whole or in
|
|
69
|
+
* part, nor may You enable others to do so;
|
|
70
|
+
* 2.2.4 or alter, modify, customize or improve the SDK, or any part thereof;
|
|
71
|
+
* 2.2.5 use the SDK (or any part thereof) for any illegal purpose, in any manner
|
|
72
|
+
* that is inconsistent with the terms of this Agreement, or to engage in any
|
|
73
|
+
* illegal activity;
|
|
74
|
+
* 2.2.6 use the SDK (or any part thereof) in any manner that may damage the
|
|
75
|
+
* operation of Realsee’s products or services; or
|
|
76
|
+
* 2.2.7 use the SDK or any information contained therein or otherwise provided by
|
|
77
|
+
* Realsee for the purpose of developing, or having developed, any product
|
|
78
|
+
* competitive with any Realsee product or service, as determined by Realsee in its
|
|
79
|
+
* sole discretion;
|
|
80
|
+
* 2.2.8 include any portion of the SDK in Your Developer products.
|
|
81
|
+
* 2.3 Realsee has the right to impose reasonable conditions such as a reasonable
|
|
82
|
+
* fee for use of the SDK in Integrated Product in the future.
|
|
83
|
+
* 2.4 You may make a limited number of copies of the SDK to be used by Your
|
|
84
|
+
* employees or consultants as provided herein, and not for general business
|
|
85
|
+
* purposes, and such employees or consultants shall be subject to the obligations
|
|
86
|
+
* and restrictions in this Agreement.
|
|
87
|
+
* 2.5 All licenses not expressly granted in this Agreement are reserved and no
|
|
88
|
+
* other licenses, immunity, or rights, express or implied, are granted by Realsee,
|
|
89
|
+
* by implication, estoppel, or otherwise.
|
|
90
|
+
* 3. CONFIDENTIALITY.
|
|
91
|
+
* The SDK and all source code, Documentation, specifications, engineering details,
|
|
92
|
+
* and related information pertaining to the SDK, whether in oral, written,
|
|
93
|
+
* graphic, or electronic form, are and shall remain the confidential and
|
|
94
|
+
* proprietary information of Realsee or its licensors (collectively, the
|
|
95
|
+
* “Confidential Information”). You shall (i) disclose Confidential Information to
|
|
96
|
+
* only those directors and employees (collectively, “Affiliates”) whose duties
|
|
97
|
+
* justify their need to know such information and who have been clearly informed
|
|
98
|
+
* of their obligation to maintain the confidential, proprietary, and/or trade
|
|
99
|
+
* secret status of such Confidential Information; and (ii) use Confidential
|
|
100
|
+
* Information solely in accordance with the license granted hereunder. In any
|
|
101
|
+
* event, You and Your Affiliates shall treat Confidential Information as strictly
|
|
102
|
+
* confidential and shall use the same care to prevent disclosure of such
|
|
103
|
+
* information as You use with respect to Your own similar confidential and/or
|
|
104
|
+
* proprietary information, which shall not be less than the care a reasonable
|
|
105
|
+
* person would use under similar circumstances. All Confidential Information, and
|
|
106
|
+
* any copies thereof, shall be returned promptly to Realsee upon request. You
|
|
107
|
+
* shall ensure that Your Affiliates comply with the provisions of this Section 3,
|
|
108
|
+
* and You shall be liable for any breach of this Section 3 resulting from the act
|
|
109
|
+
* or omission of any of Your Affiliates. You shall not disclose Confidential
|
|
110
|
+
* Information to any third party, including, without limitation, any of Your
|
|
111
|
+
* subcontractors.
|
|
112
|
+
* 4. PROPRIETARY RIGHTS.
|
|
113
|
+
* 4.1 As between You and Realsee, Realsee and/or its licensors retain ownership of
|
|
114
|
+
* all right, title, and interest in, to, and under the SDK, including, without
|
|
115
|
+
* limitation, all patents, copyrights, trade secrets, trademarks and other
|
|
116
|
+
* intellectual property and other proprietary rights therein, and reserve all
|
|
117
|
+
* rights not expressly granted to You.
|
|
118
|
+
* 4.2 The items contained in the SDK are the intellectual property of Realsee and
|
|
119
|
+
* its licensors and are protected by PRC copyright and patent law, international
|
|
120
|
+
* treaty provisions and applicable laws of the country in which it is being used.
|
|
121
|
+
* You agree to protect all copyright and other ownership interests of Realsee
|
|
122
|
+
* and/or its licensors in all items in the SDK supplied under this License
|
|
123
|
+
* Agreement. You agree that all copies of the items in the SDK, reproduced for any
|
|
124
|
+
* reason by You, contain the same copyright notices, and other proprietary notices
|
|
125
|
+
* as appropriate, as appear on or in the original items delivered by Realsee in
|
|
126
|
+
* the SDK. Realsee and/or its licensors retain title and ownership of the items in
|
|
127
|
+
* the SDK, the media on which it is loaded, and all subsequent copies, regardless
|
|
128
|
+
* of the form or media in or on which the original and other copies may exist.
|
|
129
|
+
* Except as stated above, this Agreement does not grant You any rights to patents,
|
|
130
|
+
* copyrights, trade secrets, trademarks or any other rights in respect to the
|
|
131
|
+
* items in the SDK.
|
|
132
|
+
* 5. TERM AND TERMINATION.
|
|
133
|
+
* 5.1 This Agreement is effective until terminated. Realsee has the right to
|
|
134
|
+
* terminate this Agreement immediately, without judicial intervention, if You fail
|
|
135
|
+
* to comply with any term herein. Upon any such termination You must remove all
|
|
136
|
+
* full and partial copies of the items in the SDK from Your computer and
|
|
137
|
+
* discontinue the use of the items in the SDK.
|
|
138
|
+
* 5.2 Realsee may at any time, terminate the Agreement with You if: (A) You have
|
|
139
|
+
* breached any provision of the Agreement; or (B) Realsee is required to do so by
|
|
140
|
+
* law; or (C) Realsee decides to no longer provide the SDK or certain parts of the
|
|
141
|
+
* SDK to users in the country in which You are resident or from which You use the
|
|
142
|
+
* service, or the provision of the SDK or certain SDK services to You by Realsee
|
|
143
|
+
* is, in Realsee's sole discretion, no longer legally or commercially viable.
|
|
144
|
+
* 5.3 When the Agreement comes to an end, all of the legal rights, obligations and
|
|
145
|
+
* liabilities that You and Realsee have benefited from, been subject to (or which
|
|
146
|
+
* have accrued over time whilst the Agreement has been in force) or which are
|
|
147
|
+
* expressed to continue indefinitely, shall be unaffected by this cessation, and
|
|
148
|
+
* the provisions of Section 3, 4, 6, 7 and 8 shall continue to apply to such
|
|
149
|
+
* rights, obligations and liabilities indefinitely.
|
|
150
|
+
* 6. DISCLAIMER OF WARRANTY.
|
|
151
|
+
* YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT, TO THE EXTENT PERMITTED BY APPLICABLE
|
|
152
|
+
* LAW, USE OF THE SDK (OR ANY PART THEREOF) IS AT YOUR SOLE RISK AND THAT THE
|
|
153
|
+
* ENTIRE RISK AS TO SATISFACTORY QUALITY, PERFORMANCE, ACCURACY, AND EFFORT IS
|
|
154
|
+
* WITH YOU. REALSEE LICENSES THE SDK TO YOU ONLY ON AN "AS-IS" BASIS. REALSEE
|
|
155
|
+
* MAKES NO REPRESENTATION WITH RESPECT TO THE ADEQUACY OF ANY ITEMS IN THE SDK,
|
|
156
|
+
* WHETHER OR NOT USED BY YOU IN THE DEVELOPMENT OF INTEGRATED PRODUCT, FOR ANY
|
|
157
|
+
* PARTICULAR PURPOSE OR WITH RESPECT TO THEIR ADEQUACY TO PRODUCE ANY PARTICULAR
|
|
158
|
+
* RESULT. REALSEE AND ITS LICENSORS SHALL NOT BE LIABLE FOR LOSS OR DAMAGE ARISING
|
|
159
|
+
* OUT OF THIS AGREEMENT OR FROM THE DISTRIBUTION OR USE OF INTEGRATED PRODUCT
|
|
160
|
+
* CONTAINING PORTIONS OF THE SDK. REALSEE AND ITS LICENSORS DISCLAIM ALL
|
|
161
|
+
* WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED
|
|
162
|
+
* CONDITIONS OR WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
163
|
+
* OR NONINFRINGEMENT OF ANY THIRD PARTY RIGHT IN RESPECT OF THE ITEMS IN THE SDK
|
|
164
|
+
* OR ANY SERVICES RELATED TO THE SDK.
|
|
165
|
+
* REALSEE IS UNDER NO OBLIGATION TO PROVIDE ANY SUPPORT UNDER THIS LICENSE
|
|
166
|
+
* AGREEMENT, INCLUDING UPGRADES OR FUTURE VERSIONS OF THE SDK OR ANY PORTIONS
|
|
167
|
+
* THEREOF, TO YOU, END USER OR TO ANY OTHER PARTY.
|
|
168
|
+
* 7. LIMITATION OF LIABILITY.
|
|
169
|
+
* TO THE EXTENT NOT PROHIBITED BY APPLICABLE LAW, IN NO EVENT WILL REALSEE OR ITS
|
|
170
|
+
* LICENSORS BE LIABLE FOR ANY DIRECT, INCIDENTAL, SPECIAL, INDIRECT, OR
|
|
171
|
+
* CONSEQUENTIAL DAMAGES, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF USE,
|
|
172
|
+
* LOSS OF BUSINESS, REVENUE, OR PROFITS, LOSS OF OPPORTUNITY (WHETHER DIRECT OR
|
|
173
|
+
* INDIRECT), CORRUPTION OR LOSS OF DATA, LOSS OF REPUTATION OR SAVINGS, DOWNTIME,
|
|
174
|
+
* OR DAMAGE TO, LOSS OF OR REPLACEMENT OF DATA OR TRANSACTIONS, COST OF
|
|
175
|
+
* PROCUREMENT OF SUBSTITUTE SERVICES, BUSINESS INTERRUPTION, OR ANY OTHER
|
|
176
|
+
* COMMERCIAL DAMAGES OR LOSSES, ARISING OUT OF OR RELATED TO YOUR USE OR INABILITY
|
|
177
|
+
* TO USE THE SDK (OR ANY PART THEREOF), ANY INTEGRATED PRODUCT, OR ANY THIRD PARTY
|
|
178
|
+
* SOFTWARE, APPLICATIONS, OR SERVICES IN CONJUNCTION WITH THE SDK (OR ANY PART
|
|
179
|
+
* THEREOF), HOWEVER CAUSED, REGARDLESS OF THE THEORY OF LIABILITY (CONTRACT, TORT,
|
|
180
|
+
* OR OTHERWISE) AND EVEN IF REALSEE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
181
|
+
* DAMAGES. IN NO EVENT WILL REALSEE’S TOTAL LIABILITY TO YOU FOR ALL DAMAGES
|
|
182
|
+
* EXCEED ONE HUNDRED DOLLARS ($100.00). THE FOREGOING LIMITATIONS WILL APPLY EVEN
|
|
183
|
+
* IF THE ABOVE STATED REMEDY FAILS OF ITS ESSENTIAL PURPOSE. THE LIMITATIONS
|
|
184
|
+
* CONTAINED IN SECTIONS 6 AND THIS SECTION 7 ARE A FUNDAMENTAL PART OF THE BASIS
|
|
185
|
+
* OF REALSEE’S BARGAIN HEREUNDER, AND REALSEE WOULD NOT ENTER INTO THIS AGREEMENT
|
|
186
|
+
* OR PROVIDE YOU WITH ACCESS TO THE SDK ABSENT SUCH LIMITATIONS.
|
|
187
|
+
* 8. INDEMNIFICATION.
|
|
188
|
+
* To the extent permitted by applicable law, You agree to indemnify, defend and
|
|
189
|
+
* hold harmless Realsee, its affiliates and each of their directors, officers,
|
|
190
|
+
* employees, independent contractors, and agents (each a “Realsee Indemnified
|
|
191
|
+
* Party”) from any and all claims, losses, liabilities, damages, expenses, and
|
|
192
|
+
* costs (including without limitation attorneys’ fees and court costs) incurred by
|
|
193
|
+
* a Realsee Indemnified Party as a result of: (i) Your non-compliance with any
|
|
194
|
+
* terms of this Agreement; (ii) Your use of the SDK (or any part thereof); or
|
|
195
|
+
* (iii) Your use of any Integrated Product, including any claim that Integrated
|
|
196
|
+
* Product infringes the copyright, trademark, trade secret or other intellectual
|
|
197
|
+
* property right of a third party.
|
|
198
|
+
* 9. ACKNOWLEDGEMENTS.
|
|
199
|
+
* Portions of the SDK may utilize or include third party software and other
|
|
200
|
+
* copyrighted material. Acknowledgments, licensing terms, and disclaimers for such
|
|
201
|
+
* material are contained in Documentation for the SDK or may otherwise accompany
|
|
202
|
+
* such material, and Your use of such materials governed by their respective
|
|
203
|
+
* terms. In the event of conflict between the terms of this Agreement and an
|
|
204
|
+
* applicable open source or third party agreement, the open source or third party
|
|
205
|
+
* agreement will control solely with respect to the open source software or third
|
|
206
|
+
* party software. Moreover, You shall not subject any items (including not limited
|
|
207
|
+
* to source code, object code, and any software) included in the SDK to any open
|
|
208
|
+
* source license.
|
|
209
|
+
* 10. NON-BLOCKING OF REALSEE DEVELOPMENT.
|
|
210
|
+
* You acknowledge that Realsee is currently developing or may develop technologies
|
|
211
|
+
* and products in the future that have or may have design and/or functionality
|
|
212
|
+
* similar to Integrated Product that You may develop based on Your license herein.
|
|
213
|
+
* Nothing in this Agreement shall impair, limit or curtail Realsee's right to
|
|
214
|
+
* continue with its development, maintenance and/or distribution of Realsee's
|
|
215
|
+
* technology or products.
|
|
216
|
+
* 11. GENERAL.
|
|
217
|
+
* 11.1 Export Control. You may not use or otherwise export or re-export the SDK
|
|
218
|
+
* (or any part thereof) except as authorized by United States law and the laws of
|
|
219
|
+
* the jurisdiction(s) in which the SDK (or any part thereof) was obtained. In
|
|
220
|
+
* particular, but without limitation, the SDK may not be exported or re-exported
|
|
221
|
+
* (i) into any U.S. embargoed countries or (ii) to anyone on the U.S. Treasury
|
|
222
|
+
* Department's list of Specially Designated Nationals or the U.S. Department of
|
|
223
|
+
* Commerce Denied Person's List or Entity List. By using the SDK (or any part
|
|
224
|
+
* thereof), You represent and warrant that You are not located in any such country
|
|
225
|
+
* or on any such list.
|
|
226
|
+
* 11.2 Governing Law. This Agreement and the rights of the parties hereunder shall
|
|
227
|
+
* be governed by and construed in accordance with the laws of People’s Republic of
|
|
228
|
+
* China (for purpose of this Agreement, excluding Hong Kong, Taiwan, and Macau),
|
|
229
|
+
* without reference to its conflict of laws principles. Any dispute, controversy
|
|
230
|
+
* or claim arising from or in connection with this Agreement, or the breach,
|
|
231
|
+
* termination or invalidity thereof, shall be submitted to China International
|
|
232
|
+
* Economic and Trade Arbitration Commission (“CIETAC”) for arbitration in Beijing
|
|
233
|
+
* which shall be conducted in accordance with the CIETAC's arbitration rules in
|
|
234
|
+
* effect at the time of applying for arbitration. The arbitral award is final and
|
|
235
|
+
* binding upon both parties.
|
|
236
|
+
* 11.3 Severability. If any provision of this Agreement is held by a court of
|
|
237
|
+
* competent jurisdiction to be unenforceable for any reason, the remaining
|
|
238
|
+
* provisions hereof will be unaffected and remain in full force and effect.
|
|
239
|
+
* 11.4. Modifications. Realsee reserves the right, from time to time, with or
|
|
240
|
+
* without notice to You, to make revisions to this Agreement in our sole and
|
|
241
|
+
* absolute discretion. The most current version of this Agreement will supersede
|
|
242
|
+
* all previous versions and shall be made available on the website where the SDK
|
|
243
|
+
* is made available, or by such other means as Realsee may determine in its
|
|
244
|
+
* discretion. Any modified versions of this Agreement hereto shall take effect
|
|
245
|
+
* from the time that it is made available. You shall be responsible for regularly
|
|
246
|
+
* checking for notice of any such modifications. You agree that Your continued use
|
|
247
|
+
* of the SDK constitutes Your agreement to the modified Agreement.
|
|
248
|
+
* 11.5 Relationship of the Parties. This Agreement will not be construed as
|
|
249
|
+
* creating an agency, partnership, joint venture, fiduciary duty, or any other
|
|
250
|
+
* form of legal association between You and Realsee, and You will not represent to
|
|
251
|
+
* the contrary, whether expressly, by implication, appearance, or otherwise.
|
|
252
|
+
* 11.6 Entire Agreement; Governing Language. This Agreement constitutes the entire
|
|
253
|
+
* agreement between You and Realsee with respect to the use of the SDK licensed
|
|
254
|
+
* hereunder and supersedes all prior understandings regarding such subject matter.
|
|
255
|
+
* No amendment to or modification of this Agreement will be binding unless in
|
|
256
|
+
* writing and signed by Realsee. You and Realsee hereto confirm that this
|
|
257
|
+
* Agreement and all related documents shall be drafted in English.
|
|
258
|
+
*/
|
|
259
|
+
|
|
260
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var t=require("three"),e=require("tslib"),r=require("http"),i=require("https"),n=require("protobufjs/minimal");function s(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}function o(t){if(t&&t.__esModule)return t;var e=Object.create(null);return t&&Object.keys(t).forEach((function(r){if("default"!==r){var i=Object.getOwnPropertyDescriptor(t,r);Object.defineProperty(e,r,i.get?i:{enumerable:!0,get:function(){return t[r]}})}})),e.default=t,Object.freeze(e)}var a=o(t),u=s(r),h=s(i),c=o(n),l=Number(a.REVISION);if(l<115||l>117)throw new Error('"Five" needs "THREE.js" version between 125 - 117.');
|
|
261
|
+
/**
|
|
262
|
+
* @license
|
|
263
|
+
* The 'jsrsasign'(RSA-Sign JavaScript Library) License
|
|
264
|
+
*
|
|
265
|
+
* Copyright (c) 2010-2021 Kenji Urushima
|
|
266
|
+
*
|
|
267
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
268
|
+
* of this software and associated documentation files (the "Software"), to deal
|
|
269
|
+
* in the Software without restriction, including without limitation the rights
|
|
270
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
271
|
+
* copies of the Software, and to permit persons to whom the Software is
|
|
272
|
+
* furnished to do so, subject to the following conditions:
|
|
273
|
+
*
|
|
274
|
+
* The above copyright notice and this permission notice shall be included in
|
|
275
|
+
* all copies or substantial portions of the Software.
|
|
276
|
+
*
|
|
277
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
278
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
279
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
280
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
281
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
282
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
283
|
+
* THE SOFTWARE.
|
|
284
|
+
*
|
|
285
|
+
* LICENSE: MIT License
|
|
286
|
+
*/
|
|
287
|
+
/**
|
|
288
|
+
* @license
|
|
289
|
+
* RSA and ECC in JavaScript
|
|
290
|
+
*
|
|
291
|
+
* Copyright (c) 2003-2005 Tom Wu All Rights Reserved.
|
|
292
|
+
*
|
|
293
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
|
294
|
+
* a copy of this software and associated documentation files (the
|
|
295
|
+
* "Software"), to deal in the Software without restriction, including
|
|
296
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
|
297
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
298
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
|
299
|
+
* the following conditions:
|
|
300
|
+
*
|
|
301
|
+
* The above copyright notice and this permission notice shall be
|
|
302
|
+
* included in all copies or substantial portions of the Software.
|
|
303
|
+
*
|
|
304
|
+
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
305
|
+
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
306
|
+
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
307
|
+
*
|
|
308
|
+
* IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
|
|
309
|
+
* INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
|
|
310
|
+
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
|
|
311
|
+
* THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
|
|
312
|
+
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
313
|
+
*
|
|
314
|
+
* In addition, the following condition applies:
|
|
315
|
+
*
|
|
316
|
+
* All redistributions must retain an intact copy of this copyright notice
|
|
317
|
+
* and disclaimer.
|
|
318
|
+
*
|
|
319
|
+
* http://www-cs-students.stanford.edu/~tjw/jsbn/
|
|
320
|
+
* LICENSE: BSD License
|
|
321
|
+
* PART: ext/{base64,jsbn,jsbn2,prgn4,rng,rsa,rsa2}
|
|
322
|
+
*/
|
|
323
|
+
/**
|
|
324
|
+
* @license
|
|
325
|
+
* CryptoJS
|
|
326
|
+
*
|
|
327
|
+
* Copyright (c) 2009-2013 Jeff Mott
|
|
328
|
+
*
|
|
329
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
|
330
|
+
* a copy of this software and associated documentation files (the
|
|
331
|
+
* "Software"), to deal in the Software without restriction, including
|
|
332
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
|
333
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
334
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
|
335
|
+
* the following conditions:
|
|
336
|
+
*
|
|
337
|
+
* The above copyright notice and this permission notice shall be
|
|
338
|
+
* included in all copies or substantial portions of the Software.
|
|
339
|
+
*
|
|
340
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
341
|
+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
342
|
+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
343
|
+
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
344
|
+
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
345
|
+
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
346
|
+
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
347
|
+
*
|
|
348
|
+
* https://code.google.com/p/crypto-js/wiki/License
|
|
349
|
+
* PART: ext/cryptojs
|
|
350
|
+
*/var f,d={},p={},g=g||function(t,e){var r={},i=r.lib={},n=i.Base=function(){function t(){}return{extend:function(e){t.prototype=this;var r=new t;return e&&r.mixIn(e),r.hasOwnProperty("init")||(r.init=function(){r.$super.init.apply(this,arguments)}),r.init.prototype=r,r.$super=this,r},create:function(){var t=this.extend();return t.init.apply(t,arguments),t},init:function(){},mixIn:function(t){for(var e in t)t.hasOwnProperty(e)&&(this[e]=t[e]);t.hasOwnProperty("toString")&&(this.toString=t.toString)},clone:function(){return this.init.prototype.extend(this)}}}(),s=i.WordArray=n.extend({init:function(t,e){t=this.words=t||[],this.sigBytes=null!=e?e:4*t.length},toString:function(t){return(t||a).stringify(this)},concat:function(t){var e=this.words,r=t.words,i=this.sigBytes,n=t.sigBytes;if(this.clamp(),i%4)for(var s=0;s<n;s++){var o=r[s>>>2]>>>24-s%4*8&255;e[i+s>>>2]|=o<<24-(i+s)%4*8}else for(s=0;s<n;s+=4)e[i+s>>>2]=r[s>>>2];return this.sigBytes+=n,this},clamp:function(){var e=this.words,r=this.sigBytes;e[r>>>2]&=4294967295<<32-r%4*8,e.length=t.ceil(r/4)},clone:function(){var t=n.clone.call(this);return t.words=this.words.slice(0),t},random:function(e){for(var r=[],i=0;i<e;i+=4)r.push(4294967296*t.random()|0);return new s.init(r,e)}}),o=r.enc={},a=o.Hex={stringify:function(t){for(var e=t.words,r=t.sigBytes,i=[],n=0;n<r;n++){var s=e[n>>>2]>>>24-n%4*8&255;i.push((s>>>4).toString(16)),i.push((15&s).toString(16))}return i.join("")},parse:function(t){for(var e=t.length,r=[],i=0;i<e;i+=2)r[i>>>3]|=parseInt(t.substr(i,2),16)<<24-i%8*4;return new s.init(r,e/2)}},u=o.Latin1={stringify:function(t){for(var e=t.words,r=t.sigBytes,i=[],n=0;n<r;n++){var s=e[n>>>2]>>>24-n%4*8&255;i.push(String.fromCharCode(s))}return i.join("")},parse:function(t){for(var e=t.length,r=[],i=0;i<e;i++)r[i>>>2]|=(255&t.charCodeAt(i))<<24-i%4*8;return new s.init(r,e)}},h=o.Utf8={stringify:function(t){try{return decodeURIComponent(escape(u.stringify(t)))}catch(t){throw new Error("Malformed UTF-8 data")}},parse:function(t){return u.parse(unescape(encodeURIComponent(t)))}},c=i.BufferedBlockAlgorithm=n.extend({reset:function(){this._data=new s.init,this._nDataBytes=0},_append:function(t){"string"==typeof t&&(t=h.parse(t)),this._data.concat(t),this._nDataBytes+=t.sigBytes},_process:function(e){var r=this._data,i=r.words,n=r.sigBytes,o=this.blockSize,a=n/(4*o),u=(a=e?t.ceil(a):t.max((0|a)-this._minBufferSize,0))*o,h=t.min(4*u,n);if(u){for(var c=0;c<u;c+=o)this._doProcessBlock(i,c);var l=i.splice(0,u);r.sigBytes-=h}return new s.init(l,h)},clone:function(){var t=n.clone.call(this);return t._data=this._data.clone(),t},_minBufferSize:0});i.Hasher=c.extend({cfg:n.extend(),init:function(t){this.cfg=this.cfg.extend(t),this.reset()},reset:function(){c.reset.call(this),this._doReset()},update:function(t){return this._append(t),this._process(),this},finalize:function(t){return t&&this._append(t),this._doFinalize()},blockSize:16,_createHelper:function(t){return function(e,r){return new t.init(r).finalize(e)}},_createHmacHelper:function(t){return function(e,r){return new l.HMAC.init(t,r).finalize(e)}}});var l=r.algo={};return r}(Math);function v(t,e,r){null!=t&&("number"==typeof t?this.fromNumber(t,e,r):null==e&&"string"!=typeof t?this.fromString(t,256):this.fromString(t,e))}function y(){return new v(null)}!function(t){for(var e=g,r=(n=e.lib).WordArray,i=n.Hasher,n=e.algo,s=[],o=[],a=function(t){return 4294967296*(t-(0|t))|0},u=2,h=0;64>h;){var c;t:{c=u;for(var l=t.sqrt(c),f=2;f<=l;f++)if(!(c%f)){c=!1;break t}c=!0}c&&(8>h&&(s[h]=a(t.pow(u,.5))),o[h]=a(t.pow(u,1/3)),h++),u++}var d=[];n=n.SHA256=i.extend({_doReset:function(){this._hash=new r.init(s.slice(0))},_doProcessBlock:function(t,e){for(var r=this._hash.words,i=r[0],n=r[1],s=r[2],a=r[3],u=r[4],h=r[5],c=r[6],l=r[7],f=0;64>f;f++){if(16>f)d[f]=0|t[e+f];else{var p=d[f-15],g=d[f-2];d[f]=((p<<25|p>>>7)^(p<<14|p>>>18)^p>>>3)+d[f-7]+((g<<15|g>>>17)^(g<<13|g>>>19)^g>>>10)+d[f-16]}p=l+((u<<26|u>>>6)^(u<<21|u>>>11)^(u<<7|u>>>25))+(u&h^~u&c)+o[f]+d[f],g=((i<<30|i>>>2)^(i<<19|i>>>13)^(i<<10|i>>>22))+(i&n^i&s^n&s),l=c,c=h,h=u,u=a+p|0,a=s,s=n,n=i,i=p+g|0}r[0]=r[0]+i|0,r[1]=r[1]+n|0,r[2]=r[2]+s|0,r[3]=r[3]+a|0,r[4]=r[4]+u|0,r[5]=r[5]+h|0,r[6]=r[6]+c|0,r[7]=r[7]+l|0},_doFinalize:function(){var e=this._data,r=e.words,i=8*this._nDataBytes,n=8*e.sigBytes;return r[n>>>5]|=128<<24-n%32,r[14+(n+64>>>9<<4)]=t.floor(i/4294967296),r[15+(n+64>>>9<<4)]=i,e.sigBytes=4*r.length,this._process(),this._hash},clone:function(){var t=i.clone.call(this);return t._hash=this._hash.clone(),t}});e.SHA256=i._createHelper(n),e.HmacSHA256=i._createHmacHelper(n)}(Math),g.lib.Cipher||function(t){var e=(d=g).lib,r=e.Base,i=e.WordArray,n=e.BufferedBlockAlgorithm,s=d.enc.Base64,o=d.algo.EvpKDF,a=e.Cipher=n.extend({cfg:r.extend(),createEncryptor:function(t,e){return this.create(this._ENC_XFORM_MODE,t,e)},createDecryptor:function(t,e){return this.create(this._DEC_XFORM_MODE,t,e)},init:function(t,e,r){this.cfg=this.cfg.extend(r),this._xformMode=t,this._key=e,this.reset()},reset:function(){n.reset.call(this),this._doReset()},process:function(t){return this._append(t),this._process()},finalize:function(t){return t&&this._append(t),this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(t){return{encrypt:function(e,r,i){return("string"==typeof r?p:f).encrypt(t,e,r,i)},decrypt:function(e,r,i){return("string"==typeof r?p:f).decrypt(t,e,r,i)}}}});e.StreamCipher=a.extend({_doFinalize:function(){return this._process(!0)},blockSize:1});var u=d.mode={},h=function(t,e,r){var i=this._iv;i?this._iv=undefined:i=this._prevBlock;for(var n=0;n<r;n++)t[e+n]^=i[n]},c=(e.BlockCipherMode=r.extend({createEncryptor:function(t,e){return this.Encryptor.create(t,e)},createDecryptor:function(t,e){return this.Decryptor.create(t,e)},init:function(t,e){this._cipher=t,this._iv=e}})).extend();c.Encryptor=c.extend({processBlock:function(t,e){var r=this._cipher,i=r.blockSize;h.call(this,t,e,i),r.encryptBlock(t,e),this._prevBlock=t.slice(e,e+i)}}),c.Decryptor=c.extend({processBlock:function(t,e){var r=this._cipher,i=r.blockSize,n=t.slice(e,e+i);r.decryptBlock(t,e),h.call(this,t,e,i),this._prevBlock=n}}),u=u.CBC=c,c=(d.pad={}).Pkcs7={pad:function(t,e){for(var r,n=(r=(r=4*e)-t.sigBytes%r)<<24|r<<16|r<<8|r,s=[],o=0;o<r;o+=4)s.push(n);r=i.create(s,r),t.concat(r)},unpad:function(t){t.sigBytes-=255&t.words[t.sigBytes-1>>>2]}},e.BlockCipher=a.extend({cfg:a.cfg.extend({mode:u,padding:c}),reset:function(){a.reset.call(this);var t=(e=this.cfg).iv,e=e.mode;if(this._xformMode==this._ENC_XFORM_MODE)var r=e.createEncryptor;else r=e.createDecryptor,this._minBufferSize=1;this._mode=r.call(e,this,t&&t.words)},_doProcessBlock:function(t,e){this._mode.processBlock(t,e)},_doFinalize:function(){var t=this.cfg.padding;if(this._xformMode==this._ENC_XFORM_MODE){t.pad(this._data,this.blockSize);var e=this._process(!0)}else e=this._process(!0),t.unpad(e);return e},blockSize:4});var l=e.CipherParams=r.extend({init:function(t){this.mixIn(t)},toString:function(t){return(t||this.formatter).stringify(this)}}),f=(u=(d.format={}).OpenSSL={stringify:function(t){var e=t.ciphertext;return((t=t.salt)?i.create([1398893684,1701076831]).concat(t).concat(e):e).toString(s)},parse:function(t){var e=(t=s.parse(t)).words;if(1398893684==e[0]&&1701076831==e[1]){var r=i.create(e.slice(2,4));e.splice(0,4),t.sigBytes-=16}return l.create({ciphertext:t,salt:r})}},e.SerializableCipher=r.extend({cfg:r.extend({format:u}),encrypt:function(t,e,r,i){i=this.cfg.extend(i);var n=t.createEncryptor(r,i);return e=n.finalize(e),n=n.cfg,l.create({ciphertext:e,key:r,iv:n.iv,algorithm:t,mode:n.mode,padding:n.padding,blockSize:t.blockSize,formatter:i.format})},decrypt:function(t,e,r,i){return i=this.cfg.extend(i),e=this._parse(e,i.format),t.createDecryptor(r,i).finalize(e.ciphertext)},_parse:function(t,e){return"string"==typeof t?e.parse(t,this):t}})),d=(d.kdf={}).OpenSSL={execute:function(t,e,r,n){return n||(n=i.random(8)),t=o.create({keySize:e+r}).compute(t,n),r=i.create(t.words.slice(e),4*r),t.sigBytes=4*e,l.create({key:t,iv:r,salt:n})}},p=e.PasswordBasedCipher=f.extend({cfg:f.cfg.extend({kdf:d}),encrypt:function(t,e,r,i){return r=(i=this.cfg.extend(i)).kdf.execute(r,t.keySize,t.ivSize),i.iv=r.iv,(t=f.encrypt.call(this,t,e,r.key,i)).mixIn(r),t},decrypt:function(t,e,r,i){return i=this.cfg.extend(i),e=this._parse(e,i.format),r=i.kdf.execute(r,t.keySize,t.ivSize,e.salt),i.iv=r.iv,f.decrypt.call(this,t,e,r.key,i)}})}(),function(){for(var t=g,e=t.lib.BlockCipher,r=t.algo,i=[],n=[],s=[],o=[],a=[],u=[],h=[],c=[],l=[],f=[],d=[],p=0;256>p;p++)d[p]=128>p?p<<1:p<<1^283;var v=0,y=0;for(p=0;256>p;p++){var m=(m=y^y<<1^y<<2^y<<3^y<<4)>>>8^255&m^99;i[v]=m,n[m]=v;var x=d[v],b=d[x],E=d[b],S=257*d[m]^16843008*m;s[v]=S<<24|S>>>8,o[v]=S<<16|S>>>16,a[v]=S<<8|S>>>24,u[v]=S,S=16843009*E^65537*b^257*x^16843008*v,h[m]=S<<24|S>>>8,c[m]=S<<16|S>>>16,l[m]=S<<8|S>>>24,f[m]=S,v?(v=x^d[d[d[E^x]]],y^=d[d[y]]):v=y=1}var w=[0,1,2,4,8,16,32,64,128,27,54];r=r.AES=e.extend({_doReset:function(){for(var t=(r=this._key).words,e=r.sigBytes/4,r=4*((this._nRounds=e+6)+1),n=this._keySchedule=[],s=0;s<r;s++)if(s<e)n[s]=t[s];else{var o=n[s-1];s%e?6<e&&4==s%e&&(o=i[o>>>24]<<24|i[o>>>16&255]<<16|i[o>>>8&255]<<8|i[255&o]):(o=i[(o=o<<8|o>>>24)>>>24]<<24|i[o>>>16&255]<<16|i[o>>>8&255]<<8|i[255&o],o^=w[s/e|0]<<24),n[s]=n[s-e]^o}for(t=this._invKeySchedule=[],e=0;e<r;e++)s=r-e,o=e%4?n[s]:n[s-4],t[e]=4>e||4>=s?o:h[i[o>>>24]]^c[i[o>>>16&255]]^l[i[o>>>8&255]]^f[i[255&o]]},encryptBlock:function(t,e){this._doCryptBlock(t,e,this._keySchedule,s,o,a,u,i)},decryptBlock:function(t,e){var r=t[e+1];t[e+1]=t[e+3],t[e+3]=r,this._doCryptBlock(t,e,this._invKeySchedule,h,c,l,f,n),r=t[e+1],t[e+1]=t[e+3],t[e+3]=r},_doCryptBlock:function(t,e,r,i,n,s,o,a){for(var u=this._nRounds,h=t[e]^r[0],c=t[e+1]^r[1],l=t[e+2]^r[2],f=t[e+3]^r[3],d=4,p=1;p<u;p++){var g=i[h>>>24]^n[c>>>16&255]^s[l>>>8&255]^o[255&f]^r[d++],v=i[c>>>24]^n[l>>>16&255]^s[f>>>8&255]^o[255&h]^r[d++],y=i[l>>>24]^n[f>>>16&255]^s[h>>>8&255]^o[255&c]^r[d++];f=i[f>>>24]^n[h>>>16&255]^s[c>>>8&255]^o[255&l]^r[d++],h=g,c=v,l=y}g=(a[h>>>24]<<24|a[c>>>16&255]<<16|a[l>>>8&255]<<8|a[255&f])^r[d++],v=(a[c>>>24]<<24|a[l>>>16&255]<<16|a[f>>>8&255]<<8|a[255&h])^r[d++],y=(a[l>>>24]<<24|a[f>>>16&255]<<16|a[h>>>8&255]<<8|a[255&c])^r[d++],f=(a[f>>>24]<<24|a[h>>>16&255]<<16|a[c>>>8&255]<<8|a[255&l])^r[d++],t[e]=g,t[e+1]=v,t[e+2]=y,t[e+3]=f},keySize:8});t.AES=e._createHelper(r)}(),
|
|
351
|
+
/*!
|
|
352
|
+
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
|
|
353
|
+
Code licensed under the BSD License:
|
|
354
|
+
http://developer.yahoo.com/yui/license.html
|
|
355
|
+
version: 2.9.0
|
|
356
|
+
*/
|
|
357
|
+
p.lang={extend:function(t,e,r){if(!e||!t)throw new Error("YAHOO.lang.extend failed, please check that all dependencies are included.");var i=function(){};if(i.prototype=e.prototype,t.prototype=new i,t.prototype.constructor=t,t.superclass=e.prototype,e.prototype.constructor==Object.prototype.constructor&&(e.prototype.constructor=e),r){var n;for(n in r)t.prototype[n]=r[n];var s=function(){},o=["toString","valueOf"];try{/MSIE/.test("undefined"!=typeof navigator?navigator.userAgent:"node")&&(s=function(t,e){for(n=0;n<o.length;n+=1){var r=o[n],i=e[r];"function"==typeof i&&i!=Object.prototype[r]&&(t[r]=i)}})}catch(t){}s(t.prototype,r)}}},"undefined"!=typeof navigator&&"Microsoft Internet Explorer"==navigator.appName?(v.prototype.am=function(t,e,r,i,n,s){for(var o=32767&e,a=e>>15;--s>=0;){var u=32767&this[t],h=this[t++]>>15,c=a*u+h*o;n=((u=o*u+((32767&c)<<15)+r[i]+(1073741823&n))>>>30)+(c>>>15)+a*h+(n>>>30),r[i++]=1073741823&u}return n},f=30):"undefined"!=typeof navigator&&"Netscape"!=navigator.appName?(v.prototype.am=function(t,e,r,i,n,s){for(;--s>=0;){var o=e*this[t++]+r[i]+n;n=Math.floor(o/67108864),r[i++]=67108863&o}return n},f=26):(v.prototype.am=function(t,e,r,i,n,s){for(var o=16383&e,a=e>>14;--s>=0;){var u=16383&this[t],h=this[t++]>>14,c=a*u+h*o;n=((u=o*u+((16383&c)<<14)+r[i]+n)>>28)+(c>>14)+a*h,r[i++]=268435455&u}return n},f=28),v.prototype.DB=f,v.prototype.DM=(1<<f)-1,v.prototype.DV=1<<f;v.prototype.FV=Math.pow(2,52),v.prototype.F1=52-f,v.prototype.F2=2*f-52;var m,x,b=new Array;for(m="0".charCodeAt(0),x=0;x<=9;++x)b[m++]=x;for(m="a".charCodeAt(0),x=10;x<36;++x)b[m++]=x;for(m="A".charCodeAt(0),x=10;x<36;++x)b[m++]=x;function E(t){return"0123456789abcdefghijklmnopqrstuvwxyz".charAt(t)}function S(t,e){var r=b[t.charCodeAt(e)];return null==r?-1:r}function w(t){var e=y();return e.fromInt(t),e}function A(t){var e,r=1;return 0!=(e=t>>>16)&&(t=e,r+=16),0!=(e=t>>8)&&(t=e,r+=8),0!=(e=t>>4)&&(t=e,r+=4),0!=(e=t>>2)&&(t=e,r+=2),0!=(e=t>>1)&&(t=e,r+=1),r}function P(t){this.m=t}function D(t){this.m=t,this.mp=t.invDigit(),this.mpl=32767&this.mp,this.mph=this.mp>>15,this.um=(1<<t.DB-15)-1,this.mt2=2*t.t}function N(t,e){return t&e}function R(t,e){return t|e}function T(t,e){return t^e}function C(t,e){return t&~e}function I(t){if(0==t)return-1;var e=0;return 0==(65535&t)&&(t>>=16,e+=16),0==(255&t)&&(t>>=8,e+=8),0==(15&t)&&(t>>=4,e+=4),0==(3&t)&&(t>>=2,e+=2),0==(1&t)&&++e,e}function O(t){for(var e=0;0!=t;)t&=t-1,++e;return e}function V(){}function B(t){return t}function H(t){this.r2=y(),this.q3=y(),v.ONE.dlShiftTo(2*t.t,this.r2),this.mu=this.r2.divide(t),this.m=t}P.prototype.convert=function(t){return t.s<0||t.compareTo(this.m)>=0?t.mod(this.m):t},P.prototype.revert=function(t){return t},P.prototype.reduce=function(t){t.divRemTo(this.m,null,t)},P.prototype.mulTo=function(t,e,r){t.multiplyTo(e,r),this.reduce(r)},P.prototype.sqrTo=function(t,e){t.squareTo(e),this.reduce(e)},D.prototype.convert=function(t){var e=y();return t.abs().dlShiftTo(this.m.t,e),e.divRemTo(this.m,null,e),t.s<0&&e.compareTo(v.ZERO)>0&&this.m.subTo(e,e),e},D.prototype.revert=function(t){var e=y();return t.copyTo(e),this.reduce(e),e},D.prototype.reduce=function(t){for(;t.t<=this.mt2;)t[t.t++]=0;for(var e=0;e<this.m.t;++e){var r=32767&t[e],i=r*this.mpl+((r*this.mph+(t[e]>>15)*this.mpl&this.um)<<15)&t.DM;for(t[r=e+this.m.t]+=this.m.am(0,i,t,e,0,this.m.t);t[r]>=t.DV;)t[r]-=t.DV,t[++r]++}t.clamp(),t.drShiftTo(this.m.t,t),t.compareTo(this.m)>=0&&t.subTo(this.m,t)},D.prototype.mulTo=function(t,e,r){t.multiplyTo(e,r),this.reduce(r)},D.prototype.sqrTo=function(t,e){t.squareTo(e),this.reduce(e)},v.prototype.copyTo=function(t){for(var e=this.t-1;e>=0;--e)t[e]=this[e];t.t=this.t,t.s=this.s},v.prototype.fromInt=function(t){this.t=1,this.s=t<0?-1:0,t>0?this[0]=t:t<-1?this[0]=t+this.DV:this.t=0},v.prototype.fromString=function(t,e){var r;if(16==e)r=4;else if(8==e)r=3;else if(256==e)r=8;else if(2==e)r=1;else if(32==e)r=5;else{if(4!=e)return void this.fromRadix(t,e);r=2}this.t=0,this.s=0;for(var i=t.length,n=!1,s=0;--i>=0;){var o=8==r?255&t[i]:S(t,i);o<0?"-"==t.charAt(i)&&(n=!0):(n=!1,0==s?this[this.t++]=o:s+r>this.DB?(this[this.t-1]|=(o&(1<<this.DB-s)-1)<<s,this[this.t++]=o>>this.DB-s):this[this.t-1]|=o<<s,(s+=r)>=this.DB&&(s-=this.DB))}8==r&&0!=(128&t[0])&&(this.s=-1,s>0&&(this[this.t-1]|=(1<<this.DB-s)-1<<s)),this.clamp(),n&&v.ZERO.subTo(this,this)},v.prototype.clamp=function(){for(var t=this.s&this.DM;this.t>0&&this[this.t-1]==t;)--this.t},v.prototype.dlShiftTo=function(t,e){var r;for(r=this.t-1;r>=0;--r)e[r+t]=this[r];for(r=t-1;r>=0;--r)e[r]=0;e.t=this.t+t,e.s=this.s},v.prototype.drShiftTo=function(t,e){for(var r=t;r<this.t;++r)e[r-t]=this[r];e.t=Math.max(this.t-t,0),e.s=this.s},v.prototype.lShiftTo=function(t,e){var r,i=t%this.DB,n=this.DB-i,s=(1<<n)-1,o=Math.floor(t/this.DB),a=this.s<<i&this.DM;for(r=this.t-1;r>=0;--r)e[r+o+1]=this[r]>>n|a,a=(this[r]&s)<<i;for(r=o-1;r>=0;--r)e[r]=0;e[o]=a,e.t=this.t+o+1,e.s=this.s,e.clamp()},v.prototype.rShiftTo=function(t,e){e.s=this.s;var r=Math.floor(t/this.DB);if(r>=this.t)e.t=0;else{var i=t%this.DB,n=this.DB-i,s=(1<<i)-1;e[0]=this[r]>>i;for(var o=r+1;o<this.t;++o)e[o-r-1]|=(this[o]&s)<<n,e[o-r]=this[o]>>i;i>0&&(e[this.t-r-1]|=(this.s&s)<<n),e.t=this.t-r,e.clamp()}},v.prototype.subTo=function(t,e){for(var r=0,i=0,n=Math.min(t.t,this.t);r<n;)i+=this[r]-t[r],e[r++]=i&this.DM,i>>=this.DB;if(t.t<this.t){for(i-=t.s;r<this.t;)i+=this[r],e[r++]=i&this.DM,i>>=this.DB;i+=this.s}else{for(i+=this.s;r<t.t;)i-=t[r],e[r++]=i&this.DM,i>>=this.DB;i-=t.s}e.s=i<0?-1:0,i<-1?e[r++]=this.DV+i:i>0&&(e[r++]=i),e.t=r,e.clamp()},v.prototype.multiplyTo=function(t,e){var r=this.abs(),i=t.abs(),n=r.t;for(e.t=n+i.t;--n>=0;)e[n]=0;for(n=0;n<i.t;++n)e[n+r.t]=r.am(0,i[n],e,n,0,r.t);e.s=0,e.clamp(),this.s!=t.s&&v.ZERO.subTo(e,e)},v.prototype.squareTo=function(t){for(var e=this.abs(),r=t.t=2*e.t;--r>=0;)t[r]=0;for(r=0;r<e.t-1;++r){var i=e.am(r,e[r],t,2*r,0,1);(t[r+e.t]+=e.am(r+1,2*e[r],t,2*r+1,i,e.t-r-1))>=e.DV&&(t[r+e.t]-=e.DV,t[r+e.t+1]=1)}t.t>0&&(t[t.t-1]+=e.am(r,e[r],t,2*r,0,1)),t.s=0,t.clamp()},v.prototype.divRemTo=function(t,e,r){var i=t.abs();if(!(i.t<=0)){var n=this.abs();if(n.t<i.t)return null!=e&&e.fromInt(0),void(null!=r&&this.copyTo(r));null==r&&(r=y());var s=y(),o=this.s,a=t.s,u=this.DB-A(i[i.t-1]);u>0?(i.lShiftTo(u,s),n.lShiftTo(u,r)):(i.copyTo(s),n.copyTo(r));var h=s.t,c=s[h-1];if(0!=c){var l=c*(1<<this.F1)+(h>1?s[h-2]>>this.F2:0),f=this.FV/l,d=(1<<this.F1)/l,p=1<<this.F2,g=r.t,m=g-h,x=null==e?y():e;for(s.dlShiftTo(m,x),r.compareTo(x)>=0&&(r[r.t++]=1,r.subTo(x,r)),v.ONE.dlShiftTo(h,x),x.subTo(s,s);s.t<h;)s[s.t++]=0;for(;--m>=0;){var b=r[--g]==c?this.DM:Math.floor(r[g]*f+(r[g-1]+p)*d);if((r[g]+=s.am(0,b,r,m,0,h))<b)for(s.dlShiftTo(m,x),r.subTo(x,r);r[g]<--b;)r.subTo(x,r)}null!=e&&(r.drShiftTo(h,e),o!=a&&v.ZERO.subTo(e,e)),r.t=h,r.clamp(),u>0&&r.rShiftTo(u,r),o<0&&v.ZERO.subTo(r,r)}}},v.prototype.invDigit=function(){if(this.t<1)return 0;var t=this[0];if(0==(1&t))return 0;var e=3&t;return(e=(e=(e=(e=e*(2-(15&t)*e)&15)*(2-(255&t)*e)&255)*(2-((65535&t)*e&65535))&65535)*(2-t*e%this.DV)%this.DV)>0?this.DV-e:-e},v.prototype.isEven=function(){return 0==(this.t>0?1&this[0]:this.s)},v.prototype.exp=function(t,e){if(t>4294967295||t<1)return v.ONE;var r=y(),i=y(),n=e.convert(this),s=A(t)-1;for(n.copyTo(r);--s>=0;)if(e.sqrTo(r,i),(t&1<<s)>0)e.mulTo(i,n,r);else{var o=r;r=i,i=o}return e.revert(r)},v.prototype.toString=function(t){if(this.s<0)return"-"+this.negate().toString(t);var e;if(16==t)e=4;else if(8==t)e=3;else if(2==t)e=1;else if(32==t)e=5;else{if(4!=t)return this.toRadix(t);e=2}var r,i=(1<<e)-1,n=!1,s="",o=this.t,a=this.DB-o*this.DB%e;if(o-- >0)for(a<this.DB&&(r=this[o]>>a)>0&&(n=!0,s=E(r));o>=0;)a<e?(r=(this[o]&(1<<a)-1)<<e-a,r|=this[--o]>>(a+=this.DB-e)):(r=this[o]>>(a-=e)&i,a<=0&&(a+=this.DB,--o)),r>0&&(n=!0),n&&(s+=E(r));return n?s:"0"},v.prototype.negate=function(){var t=y();return v.ZERO.subTo(this,t),t},v.prototype.abs=function(){return this.s<0?this.negate():this},v.prototype.compareTo=function(t){var e=this.s-t.s;if(0!=e)return e;var r=this.t;if(0!=(e=r-t.t))return this.s<0?-e:e;for(;--r>=0;)if(0!=(e=this[r]-t[r]))return e;return 0},v.prototype.bitLength=function(){return this.t<=0?0:this.DB*(this.t-1)+A(this[this.t-1]^this.s&this.DM)},v.prototype.mod=function(t){var e=y();return this.abs().divRemTo(t,null,e),this.s<0&&e.compareTo(v.ZERO)>0&&t.subTo(e,e),e},v.prototype.modPowInt=function(t,e){var r;return r=t<256||e.isEven()?new P(e):new D(e),this.exp(t,r)},v.ZERO=w(0),v.ONE=w(1),V.prototype.convert=B,V.prototype.revert=B,V.prototype.mulTo=function(t,e,r){t.multiplyTo(e,r)},V.prototype.sqrTo=function(t,e){t.squareTo(e)},H.prototype.convert=function(t){if(t.s<0||t.t>2*this.m.t)return t.mod(this.m);if(t.compareTo(this.m)<0)return t;var e=y();return t.copyTo(e),this.reduce(e),e},H.prototype.revert=function(t){return t},H.prototype.reduce=function(t){for(t.drShiftTo(this.m.t-1,this.r2),t.t>this.m.t+1&&(t.t=this.m.t+1,t.clamp()),this.mu.multiplyUpperTo(this.r2,this.m.t+1,this.q3),this.m.multiplyLowerTo(this.q3,this.m.t+1,this.r2);t.compareTo(this.r2)<0;)t.dAddOffset(1,this.m.t+1);for(t.subTo(this.r2,t);t.compareTo(this.m)>=0;)t.subTo(this.m,t)},H.prototype.mulTo=function(t,e,r){t.multiplyTo(e,r),this.reduce(r)},H.prototype.sqrTo=function(t,e){t.squareTo(e),this.reduce(e)};var _=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997],j=(1<<26)/_[_.length-1];v.prototype.chunkSize=function(t){return Math.floor(Math.LN2*this.DB/Math.log(t))},v.prototype.toRadix=function(t){if(null==t&&(t=10),0==this.signum()||t<2||t>36)return"0";var e=this.chunkSize(t),r=Math.pow(t,e),i=w(r),n=y(),s=y(),o="";for(this.divRemTo(i,n,s);n.signum()>0;)o=(r+s.intValue()).toString(t).substr(1)+o,n.divRemTo(i,n,s);return s.intValue().toString(t)+o},v.prototype.fromRadix=function(t,e){this.fromInt(0),null==e&&(e=10);for(var r=this.chunkSize(e),i=Math.pow(e,r),n=!1,s=0,o=0,a=0;a<t.length;++a){var u=S(t,a);u<0?"-"==t.charAt(a)&&0==this.signum()&&(n=!0):(o=e*o+u,++s>=r&&(this.dMultiply(i),this.dAddOffset(o,0),s=0,o=0))}s>0&&(this.dMultiply(Math.pow(e,s)),this.dAddOffset(o,0)),n&&v.ZERO.subTo(this,this)},v.prototype.fromNumber=function(t,e,r){if("number"==typeof e)if(t<2)this.fromInt(1);else for(this.fromNumber(t,r),this.testBit(t-1)||this.bitwiseTo(v.ONE.shiftLeft(t-1),R,this),this.isEven()&&this.dAddOffset(1,0);!this.isProbablePrime(e);)this.dAddOffset(2,0),this.bitLength()>t&&this.subTo(v.ONE.shiftLeft(t-1),this);else{var i=new Array,n=7&t;i.length=1+(t>>3),e.nextBytes(i),n>0?i[0]&=(1<<n)-1:i[0]=0,this.fromString(i,256)}},v.prototype.bitwiseTo=function(t,e,r){var i,n,s=Math.min(t.t,this.t);for(i=0;i<s;++i)r[i]=e(this[i],t[i]);if(t.t<this.t){for(n=t.s&this.DM,i=s;i<this.t;++i)r[i]=e(this[i],n);r.t=this.t}else{for(n=this.s&this.DM,i=s;i<t.t;++i)r[i]=e(n,t[i]);r.t=t.t}r.s=e(this.s,t.s),r.clamp()},v.prototype.changeBit=function(t,e){var r=v.ONE.shiftLeft(t);return this.bitwiseTo(r,e,r),r},v.prototype.addTo=function(t,e){for(var r=0,i=0,n=Math.min(t.t,this.t);r<n;)i+=this[r]+t[r],e[r++]=i&this.DM,i>>=this.DB;if(t.t<this.t){for(i+=t.s;r<this.t;)i+=this[r],e[r++]=i&this.DM,i>>=this.DB;i+=this.s}else{for(i+=this.s;r<t.t;)i+=t[r],e[r++]=i&this.DM,i>>=this.DB;i+=t.s}e.s=i<0?-1:0,i>0?e[r++]=i:i<-1&&(e[r++]=this.DV+i),e.t=r,e.clamp()},v.prototype.dMultiply=function(t){this[this.t]=this.am(0,t-1,this,0,0,this.t),++this.t,this.clamp()},v.prototype.dAddOffset=function(t,e){if(0!=t){for(;this.t<=e;)this[this.t++]=0;for(this[e]+=t;this[e]>=this.DV;)this[e]-=this.DV,++e>=this.t&&(this[this.t++]=0),++this[e]}},v.prototype.multiplyLowerTo=function(t,e,r){var i,n=Math.min(this.t+t.t,e);for(r.s=0,r.t=n;n>0;)r[--n]=0;for(i=r.t-this.t;n<i;++n)r[n+this.t]=this.am(0,t[n],r,n,0,this.t);for(i=Math.min(t.t,e);n<i;++n)this.am(0,t[n],r,n,0,e-n);r.clamp()},v.prototype.multiplyUpperTo=function(t,e,r){--e;var i=r.t=this.t+t.t-e;for(r.s=0;--i>=0;)r[i]=0;for(i=Math.max(e-this.t,0);i<t.t;++i)r[this.t+i-e]=this.am(e-i,t[i],r,0,0,this.t+i-e);r.clamp(),r.drShiftTo(1,r)},v.prototype.modInt=function(t){if(t<=0)return 0;var e=this.DV%t,r=this.s<0?t-1:0;if(this.t>0)if(0==e)r=this[0]%t;else for(var i=this.t-1;i>=0;--i)r=(e*r+this[i])%t;return r},v.prototype.millerRabin=function(t){var e=this.subtract(v.ONE),r=e.getLowestSetBit();if(r<=0)return!1;var i=e.shiftRight(r);(t=t+1>>1)>_.length&&(t=_.length);for(var n=y(),s=0;s<t;++s){n.fromInt(_[Math.floor(Math.random()*_.length)]);var o=n.modPow(i,this);if(0!=o.compareTo(v.ONE)&&0!=o.compareTo(e)){for(var a=1;a++<r&&0!=o.compareTo(e);)if(0==(o=o.modPowInt(2,this)).compareTo(v.ONE))return!1;if(0!=o.compareTo(e))return!1}}return!0},v.prototype.clone=
|
|
358
|
+
/*! (c) Tom Wu | http://www-cs-students.stanford.edu/~tjw/jsbn/ */
|
|
359
|
+
function(){var t=y();return this.copyTo(t),t},v.prototype.intValue=function(){if(this.s<0){if(1==this.t)return this[0]-this.DV;if(0==this.t)return-1}else{if(1==this.t)return this[0];if(0==this.t)return 0}return(this[1]&(1<<32-this.DB)-1)<<this.DB|this[0]},v.prototype.byteValue=function(){return 0==this.t?this.s:this[0]<<24>>24},v.prototype.shortValue=function(){return 0==this.t?this.s:this[0]<<16>>16},v.prototype.signum=function(){return this.s<0?-1:this.t<=0||1==this.t&&this[0]<=0?0:1},v.prototype.toByteArray=function(){var t=this.t,e=new Array;e[0]=this.s;var r,i=this.DB-t*this.DB%8,n=0;if(t-- >0)for(i<this.DB&&(r=this[t]>>i)!=(this.s&this.DM)>>i&&(e[n++]=r|this.s<<this.DB-i);t>=0;)i<8?(r=(this[t]&(1<<i)-1)<<8-i,r|=this[--t]>>(i+=this.DB-8)):(r=this[t]>>(i-=8)&255,i<=0&&(i+=this.DB,--t)),0!=(128&r)&&(r|=-256),0==n&&(128&this.s)!=(128&r)&&++n,(n>0||r!=this.s)&&(e[n++]=r);return e},v.prototype.equals=function(t){return 0==this.compareTo(t)},v.prototype.min=function(t){return this.compareTo(t)<0?this:t},v.prototype.max=function(t){return this.compareTo(t)>0?this:t},v.prototype.and=function(t){var e=y();return this.bitwiseTo(t,N,e),e},v.prototype.or=function(t){var e=y();return this.bitwiseTo(t,R,e),e},v.prototype.xor=function(t){var e=y();return this.bitwiseTo(t,T,e),e},v.prototype.andNot=function(t){var e=y();return this.bitwiseTo(t,C,e),e},v.prototype.not=function(){for(var t=y(),e=0;e<this.t;++e)t[e]=this.DM&~this[e];return t.t=this.t,t.s=~this.s,t},v.prototype.shiftLeft=function(t){var e=y();return t<0?this.rShiftTo(-t,e):this.lShiftTo(t,e),e},v.prototype.shiftRight=function(t){var e=y();return t<0?this.lShiftTo(-t,e):this.rShiftTo(t,e),e},v.prototype.getLowestSetBit=function(){for(var t=0;t<this.t;++t)if(0!=this[t])return t*this.DB+I(this[t]);return this.s<0?this.t*this.DB:-1},v.prototype.bitCount=function(){for(var t=0,e=this.s&this.DM,r=0;r<this.t;++r)t+=O(this[r]^e);return t},v.prototype.testBit=function(t){var e=Math.floor(t/this.DB);return e>=this.t?0!=this.s:0!=(this[e]&1<<t%this.DB)},v.prototype.setBit=function(t){return this.changeBit(t,R)},v.prototype.clearBit=function(t){return this.changeBit(t,C)},v.prototype.flipBit=function(t){return this.changeBit(t,T)},v.prototype.add=function(t){var e=y();return this.addTo(t,e),e},v.prototype.subtract=function(t){var e=y();return this.subTo(t,e),e},v.prototype.multiply=function(t){var e=y();return this.multiplyTo(t,e),e},v.prototype.divide=function(t){var e=y();return this.divRemTo(t,e,null),e},v.prototype.remainder=function(t){var e=y();return this.divRemTo(t,null,e),e},v.prototype.divideAndRemainder=function(t){var e=y(),r=y();return this.divRemTo(t,e,r),new Array(e,r)},v.prototype.modPow=function(t,e){var r,i,n=t.bitLength(),s=w(1);if(n<=0)return s;r=n<18?1:n<48?3:n<144?4:n<768?5:6,i=n<8?new P(e):e.isEven()?new H(e):new D(e);var o=new Array,a=3,u=r-1,h=(1<<r)-1;if(o[1]=i.convert(this),r>1){var c=y();for(i.sqrTo(o[1],c);a<=h;)o[a]=y(),i.mulTo(c,o[a-2],o[a]),a+=2}var l,f,d=t.t-1,p=!0,g=y();for(n=A(t[d])-1;d>=0;){for(n>=u?l=t[d]>>n-u&h:(l=(t[d]&(1<<n+1)-1)<<u-n,d>0&&(l|=t[d-1]>>this.DB+n-u)),a=r;0==(1&l);)l>>=1,--a;if((n-=a)<0&&(n+=this.DB,--d),p)o[l].copyTo(s),p=!1;else{for(;a>1;)i.sqrTo(s,g),i.sqrTo(g,s),a-=2;a>0?i.sqrTo(s,g):(f=s,s=g,g=f),i.mulTo(g,o[l],s)}for(;d>=0&&0==(t[d]&1<<n);)i.sqrTo(s,g),f=s,s=g,g=f,--n<0&&(n=this.DB-1,--d)}return i.revert(s)},v.prototype.modInverse=function(t){var e=t.isEven();if(this.isEven()&&e||0==t.signum())return v.ZERO;for(var r=t.clone(),i=this.clone(),n=w(1),s=w(0),o=w(0),a=w(1);0!=r.signum();){for(;r.isEven();)r.rShiftTo(1,r),e?(n.isEven()&&s.isEven()||(n.addTo(this,n),s.subTo(t,s)),n.rShiftTo(1,n)):s.isEven()||s.subTo(t,s),s.rShiftTo(1,s);for(;i.isEven();)i.rShiftTo(1,i),e?(o.isEven()&&a.isEven()||(o.addTo(this,o),a.subTo(t,a)),o.rShiftTo(1,o)):a.isEven()||a.subTo(t,a),a.rShiftTo(1,a);r.compareTo(i)>=0?(r.subTo(i,r),e&&n.subTo(o,n),s.subTo(a,s)):(i.subTo(r,i),e&&o.subTo(n,o),a.subTo(s,a))}return 0!=i.compareTo(v.ONE)?v.ZERO:a.compareTo(t)>=0?a.subtract(t):a.signum()<0?(a.addTo(t,a),a.signum()<0?a.add(t):a):a},v.prototype.pow=function(t){return this.exp(t,new V)},v.prototype.gcd=function(t){var e=this.s<0?this.negate():this.clone(),r=t.s<0?t.negate():t.clone();if(e.compareTo(r)<0){var i=e;e=r,r=i}var n=e.getLowestSetBit(),s=r.getLowestSetBit();if(s<0)return e;for(n<s&&(s=n),s>0&&(e.rShiftTo(s,e),r.rShiftTo(s,r));e.signum()>0;)(n=e.getLowestSetBit())>0&&e.rShiftTo(n,e),(n=r.getLowestSetBit())>0&&r.rShiftTo(n,r),e.compareTo(r)>=0?(e.subTo(r,e),e.rShiftTo(1,e)):(r.subTo(e,r),r.rShiftTo(1,r));return s>0&&r.lShiftTo(s,r),r},v.prototype.isProbablePrime=function(t){var e,r=this.abs();if(1==r.t&&r[0]<=_[_.length-1]){for(e=0;e<_.length;++e)if(r[0]==_[e])return!0;return!1}if(r.isEven())return!1;for(e=1;e<_.length;){for(var i=_[e],n=e+1;n<_.length&&i<j;)i*=_[n++];for(i=r.modInt(i);e<n;)if(i%_[e++]==0)return!1}return r.millerRabin(t)},v.prototype.square=function(){var t=y();return this.squareTo(t),t};
|
|
360
|
+
/*! (c) Tom Wu | http://www-cs-students.stanford.edu/~tjw/jsbn/ */
|
|
361
|
+
var k="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";function K(t){var e,r,i="";for(e=0;e+3<=t.length;e+=3)r=parseInt(t.substring(e,e+3),16),i+=k.charAt(r>>6)+k.charAt(63&r);for(e+1==t.length?(r=parseInt(t.substring(e,e+1),16),i+=k.charAt(r<<2)):e+2==t.length&&(r=parseInt(t.substring(e,e+2),16),i+=k.charAt(r>>2)+k.charAt((3&r)<<4));(3&i.length)>0;)i+="=";return i}function L(t){var e,r,i,n="",s=0;for(e=0;e<t.length&&"="!=t.charAt(e);++e)(i=k.indexOf(t.charAt(e)))<0||(0==s?(n+=E(i>>2),r=3&i,s=1):1==s?(n+=E(r<<2|i>>4),r=15&i,s=2):2==s?(n+=E(r),n+=E(i>>2),r=3&i,s=3):(n+=E(r<<2|i>>4),n+=E(15&i),s=0));return 1==s&&(n+=E(r<<2)),n}
|
|
362
|
+
/*! (c) Tom Wu | http://www-cs-students.stanford.edu/~tjw/jsbn/ */function M(){this.i=0,this.j=0,this.S=new Array}M.prototype.init=function(t){var e,r,i;for(e=0;e<256;++e)this.S[e]=e;for(r=0,e=0;e<256;++e)r=r+this.S[e]+t[e%t.length]&255,i=this.S[e],this.S[e]=this.S[r],this.S[r]=i;this.i=0,this.j=0},M.prototype.next=function(){var t;return this.i=this.i+1&255,this.j=this.j+this.S[this.i]&255,t=this.S[this.i],this.S[this.i]=this.S[this.j],this.S[this.j]=t,this.S[t+this.S[this.i]&255]};var z,U,F;
|
|
363
|
+
/*! (c) Tom Wu | http://www-cs-students.stanford.edu/~tjw/jsbn/ */function q(){var t;t=(new Date).getTime(),U[F++]^=255&t,U[F++]^=t>>8&255,U[F++]^=t>>16&255,U[F++]^=t>>24&255,F>=256&&(F-=256)}if(null==U){var Q;if(U=new Array,F=0,"undefined"!=typeof window&&(void 0!==window.crypto||void 0!==window.msCrypto)){var Z=window.crypto||window.msCrypto;if(Z.getRandomValues){var Y=new Uint8Array(32);for(Z.getRandomValues(Y),Q=0;Q<32;++Q)U[F++]=Y[Q]}else if("undefined"!=typeof navigator&&"Netscape"==navigator.appName&&navigator.appVersion<"5"){var G=window.crypto.random(32);for(Q=0;Q<G.length;++Q)U[F++]=255&G.charCodeAt(Q)}}for(;F<256;)Q=Math.floor(65536*Math.random()),U[F++]=Q>>>8,U[F++]=255&Q;F=0,q()}function W(){if(null==z){for(q(),(z=new M).init(U),F=0;F<U.length;++F)U[F]=0;F=0}return z.next()}function X(){}
|
|
364
|
+
/*! (c) Tom Wu | http://www-cs-students.stanford.edu/~tjw/jsbn/ */
|
|
365
|
+
function $(t,e){return new v(t,e)}function J(t,e,r){for(var i="",n=0;i.length<e;)i+=r(String.fromCharCode.apply(String,t.concat([(4278190080&n)>>24,(16711680&n)>>16,(65280&n)>>8,255&n]))),n+=1;return i}function tt(){this.n=null,this.e=0,this.d=null,this.p=null,this.q=null,this.dmp1=null,this.dmq1=null,this.coeff=null}function et(t,e,r){for(var i="",n=0;i.length<e;)i+=r(t+String.fromCharCode.apply(String,[(4278190080&n)>>24,(16711680&n)>>16,(65280&n)>>8,255&n])),n+=1;return i}function rt(t){for(var e="",r=0;r<t.length;r++){var i=t[r].toString(16);1==i.length&&(i="0"+i),e+=i}return e}function it(t){return rt(function(t){for(var e=new Array,r=0;r<t.length;r++)e[r]=t.charCodeAt(r);return e}(t))}function nt(t){return t.length%4==2?t+="==":t.length%4==3&&(t+="="),t=(t=t.replace(/-/g,"+")).replace(/_/g,"/")}function st(t){return t.length%2==1&&(t="0"+t),function(t){return(t=(t=t.replace(/\=/g,"")).replace(/\+/g,"-")).replace(/\//g,"_")}(K(t))}function ot(t){return L(nt(t))}function at(t){return function(t){return t.replace(/%/g,"")}(function(t){for(var e=encodeURIComponent(t),r="",i=0;i<e.length;i++)"%"==e[i]?(r+=e.substr(i,3),i+=2):r=r+"%"+it(e[i]);return r}(t))}function ut(t){return decodeURIComponent(function(t){return t.replace(/(..)/g,"%$1")}(t))}function ht(t){for(var e="",r=0;r<t.length-1;r+=2)e+=String.fromCharCode(parseInt(t.substr(r,2),16));return e}function ct(t){for(var e="",r=0;r<t.length;r++)e+=("0"+t.charCodeAt(r).toString(16)).slice(-2);return e}function lt(t){var e=function(t){return K(t)}(t).replace(/(.{64})/g,"$1\r\n");return e=e.replace(/\r\n$/,"")}function ft(t,e){return"-----BEGIN "+e+"-----\r\n"+lt(t)+"\r\n-----END "+e+"-----\r\n"}function dt(t,e){if(-1==t.indexOf("-----BEGIN "))throw"can't find PEM header: "+e;return function(t){return L(t.replace(/[^0-9A-Za-z\/+=]*/g,""))}(t=void 0!==e?(t=t.replace(new RegExp("^[^]*-----BEGIN "+e+"-----"),"")).replace(new RegExp("-----END "+e+"-----[^]*$"),""):(t=t.replace(/^[^]*-----BEGIN [^-]+-----/,"")).replace(/-----END [^-]+-----[^]*$/,""))}function pt(t){var e="malformed hex value";if(!t.match(/^([0-9A-Fa-f][0-9A-Fa-f]){1,}$/))throw e;if(8!=t.length)return 32==t.length?function(t){if(!t.match(/^[0-9A-Fa-f]{32}$/))throw"malformed IPv6 address octet";for(var e=(t=t.toLowerCase()).match(/.{1,4}/g),r=0;r<8;r++)e[r]=e[r].replace(/^0+/,""),""==e[r]&&(e[r]="0");var i=(t=":"+e.join(":")+":").match(/:(0:){2,}/g);if(null===i)return t.slice(1,-1);var n="";for(r=0;r<i.length;r++)i[r].length>n.length&&(n=i[r]);return(t=t.replace(n,"::")).slice(1,-1)}(t):t;try{return parseInt(t.substr(0,2),16)+"."+parseInt(t.substr(2,2),16)+"."+parseInt(t.substr(4,2),16)+"."+parseInt(t.substr(6,2),16)}catch(t){throw e}}function gt(t){return t.match(/.{4}/g).map((function(t){var e=parseInt(t.substr(0,2),16),r=parseInt(t.substr(2),16);if(0==e&r<128)return String.fromCharCode(r);if(e<8){var i=128|63&r;return ut((192|(7&e)<<3|(192&r)>>6).toString(16)+i.toString(16))}i=128|(15&e)<<2|(192&r)>>6;var n=128|63&r;return ut((224|(240&e)>>4).toString(16)+i.toString(16)+n.toString(16))})).join("")}function vt(t){return!(t.length%2!=0||!t.match(/^[0-9a-f]+$/)&&!t.match(/^[0-9A-F]+$/))}function yt(t){return t.length%2==1?"0"+t:t.substr(0,1)>"7"?"00"+t:t}X.prototype.nextBytes=function(t){var e;for(e=0;e<t.length;++e)t[e]=W()},tt.prototype.doPublic=function(t){return t.modPowInt(this.e,this.n)},tt.prototype.setPublic=function(t,e){if(this.isPublic=!0,this.isPrivate=!1,"string"!=typeof t)this.n=t,this.e=e;else{if(!(null!=t&&null!=e&&t.length>0&&e.length>0))throw"Invalid RSA public key";this.n=$(t,16),this.e=parseInt(e,16)}},tt.prototype.encrypt=function(t){var e=function(t,e){if(e<t.length+11)throw"Message too long for RSA";for(var r=new Array,i=t.length-1;i>=0&&e>0;){var n=t.charCodeAt(i--);n<128?r[--e]=n:n>127&&n<2048?(r[--e]=63&n|128,r[--e]=n>>6|192):(r[--e]=63&n|128,r[--e]=n>>6&63|128,r[--e]=n>>12|224)}r[--e]=0;for(var s=new X,o=new Array;e>2;){for(o[0]=0;0==o[0];)s.nextBytes(o);r[--e]=o[0]}return r[--e]=2,r[--e]=0,new v(r)}(t,this.n.bitLength()+7>>3);if(null==e)return null;var r=this.doPublic(e);if(null==r)return null;var i=r.toString(16);return 0==(1&i.length)?i:"0"+i},tt.prototype.encryptOAEP=function(t,e,r){var i=function(t,e,r,i){var n=d.crypto.MessageDigest,s=d.crypto.Util,o=null;if(r||(r="sha1"),"string"==typeof r&&(o=n.getCanonicalAlgName(r),i=n.getHashLength(o),r=function(t){return ht(s.hashHex(ct(t),o))}),t.length+2*i+2>e)throw"Message too long for RSA";var a,u="";for(a=0;a<e-t.length-2*i-2;a+=1)u+="\0";var h=r("")+u+""+t,c=new Array(i);(new X).nextBytes(c);var l=J(c,h.length,r),f=[];for(a=0;a<h.length;a+=1)f[a]=h.charCodeAt(a)^l.charCodeAt(a);var p=J(f,c.length,r),g=[0];for(a=0;a<c.length;a+=1)g[a+1]=c[a]^p.charCodeAt(a);return new v(g.concat(f))}(t,this.n.bitLength()+7>>3,e,r);if(null==i)return null;var n=this.doPublic(i);if(null==n)return null;var s=n.toString(16);return 0==(1&s.length)?s:"0"+s},tt.prototype.type="RSA",tt.prototype.doPrivate=function(t){if(null==this.p||null==this.q)return t.modPow(this.d,this.n);for(var e=t.mod(this.p).modPow(this.dmp1,this.p),r=t.mod(this.q).modPow(this.dmq1,this.q);e.compareTo(r)<0;)e=e.add(this.p);return e.subtract(r).multiply(this.coeff).mod(this.p).multiply(this.q).add(r)},tt.prototype.setPrivate=function(t,e,r){if(this.isPrivate=!0,"string"!=typeof t)this.n=t,this.e=e,this.d=r;else{if(!(null!=t&&null!=e&&t.length>0&&e.length>0))throw"Invalid RSA private key";this.n=$(t,16),this.e=parseInt(e,16),this.d=$(r,16)}},tt.prototype.setPrivateEx=function(t,e,r,i,n,s,o,a){if(this.isPrivate=!0,this.isPublic=!1,null==t)throw"RSASetPrivateEx N == null";if(null==e)throw"RSASetPrivateEx E == null";if(0==t.length)throw"RSASetPrivateEx N.length == 0";if(0==e.length)throw"RSASetPrivateEx E.length == 0";if(!(null!=t&&null!=e&&t.length>0&&e.length>0))throw"Invalid RSA private key in RSASetPrivateEx";this.n=$(t,16),this.e=parseInt(e,16),this.d=$(r,16),this.p=$(i,16),this.q=$(n,16),this.dmp1=$(s,16),this.dmq1=$(o,16),this.coeff=$(a,16)},tt.prototype.generate=function(t,e){var r=new X,i=t>>1;this.e=parseInt(e,16);for(var n=new v(e,16);;){for(;this.p=new v(t-i,1,r),0!=this.p.subtract(v.ONE).gcd(n).compareTo(v.ONE)||!this.p.isProbablePrime(10););for(;this.q=new v(i,1,r),0!=this.q.subtract(v.ONE).gcd(n).compareTo(v.ONE)||!this.q.isProbablePrime(10););if(this.p.compareTo(this.q)<=0){var s=this.p;this.p=this.q,this.q=s}var o=this.p.subtract(v.ONE),a=this.q.subtract(v.ONE),u=o.multiply(a);if(0==u.gcd(n).compareTo(v.ONE)&&(this.n=this.p.multiply(this.q),this.n.bitLength()==t)){this.d=n.modInverse(u),this.dmp1=this.d.mod(o),this.dmq1=this.d.mod(a),this.coeff=this.q.modInverse(this.p);break}}this.isPrivate=!0},tt.prototype.decrypt=function(t){if(t.length!=Math.ceil(this.n.bitLength()/4))throw new Error("wrong ctext length");var e=$(t,16),r=this.doPrivate(e);return null==r?null:
|
|
366
|
+
/*! (c) Tom Wu | http://www-cs-students.stanford.edu/~tjw/jsbn/ */
|
|
367
|
+
function(t,e){for(var r=t.toByteArray(),i=0;i<r.length&&0==r[i];)++i;if(r.length-i!=e-1||2!=r[i])return null;for(++i;0!=r[i];)if(++i>=r.length)return null;for(var n="";++i<r.length;){var s=255&r[i];s<128?n+=String.fromCharCode(s):s>191&&s<224?(n+=String.fromCharCode((31&s)<<6|63&r[i+1]),++i):(n+=String.fromCharCode((15&s)<<12|(63&r[i+1])<<6|63&r[i+2]),i+=2)}return n}(r,this.n.bitLength()+7>>3)},tt.prototype.decryptOAEP=function(t,e,r){if(t.length!=Math.ceil(this.n.bitLength()/4))throw new Error("wrong ctext length");var i=$(t,16),n=this.doPrivate(i);return null==n?null:function(t,e,r,i){var n=d.crypto.MessageDigest,s=d.crypto.Util,o=null;for(r||(r="sha1"),"string"==typeof r&&(o=n.getCanonicalAlgName(r),i=n.getHashLength(o),r=function(t){return ht(s.hashHex(ct(t),o))}),t=t.toByteArray(),a=0;a<t.length;a+=1)t[a]&=255;for(;t.length<e;)t.unshift(0);if((t=String.fromCharCode.apply(String,t)).length<2*i+2)throw"Cipher too short";var a,u=t.substr(1,i),h=t.substr(i+1),c=et(h,i,r),l=[];for(a=0;a<u.length;a+=1)l[a]=u.charCodeAt(a)^c.charCodeAt(a);var f=et(String.fromCharCode.apply(String,l),t.length-i,r),p=[];for(a=0;a<h.length;a+=1)p[a]=h.charCodeAt(a)^f.charCodeAt(a);if((p=String.fromCharCode.apply(String,p)).substr(0,i)!==r(""))throw"Hash mismatch";var g=(p=p.substr(i)).indexOf("");if((-1!=g?p.substr(0,g).lastIndexOf("\0"):-1)+1!=g)throw"Malformed data";return p.substr(g+1)}(n,this.n.bitLength()+7>>3,e,r)},void 0!==d.lang&&d.lang||(d.lang={}),d.lang.String=function(){},d.lang.String.isInteger=function(t){return!!t.match(/^[0-9]+$/)||!!t.match(/^-[0-9]+$/)},d.lang.String.isHex=function(t){return vt(t)},d.lang.String.isBase64=function(t){return!(!(t=t.replace(/\s+/g,"")).match(/^[0-9A-Za-z+\/]+={0,3}$/)||t.length%4!=0)},d.lang.String.isBase64URL=function(t){return!t.match(/[+/=]/)&&(t=nt(t),d.lang.String.isBase64(t))},d.lang.String.isIntegerArray=function(t){return!!(t=t.replace(/\s+/g,"")).match(/^\[[0-9,]+\]$/)},d.lang.String.isPrintable=function(t){return null!==t.match(/^[0-9A-Za-z '()+,-./:=?]*$/)},d.lang.String.isIA5=function(t){return null!==t.match(/^[\x20-\x21\x23-\x7f]*$/)},d.lang.String.isMail=function(t){return null!==t.match(/^[A-Za-z0-9]{1}[A-Za-z0-9_.-]*@{1}[A-Za-z0-9_.-]{1,}\.[A-Za-z0-9]{1,}$/)};var mt=function(t,e,r){return null==r&&(r="0"),t.length>=e?t:new Array(e-t.length+1).join(r)+t};function xt(t,e){var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t,t.superclass=e.prototype,e.prototype.constructor==Object.prototype.constructor&&(e.prototype.constructor=e)}void 0!==d.crypto&&d.crypto||(d.crypto={}),d.crypto.Util=new function(){this.DIGESTINFOHEAD={sha1:"3021300906052b0e03021a05000414",sha224:"302d300d06096086480165030402040500041c",sha256:"3031300d060960864801650304020105000420",sha384:"3041300d060960864801650304020205000430",sha512:"3051300d060960864801650304020305000440",md2:"3020300c06082a864886f70d020205000410",md5:"3020300c06082a864886f70d020505000410",ripemd160:"3021300906052b2403020105000414"},this.DEFAULTPROVIDER={md5:"cryptojs",sha1:"cryptojs",sha224:"cryptojs",sha256:"cryptojs",sha384:"cryptojs",sha512:"cryptojs",ripemd160:"cryptojs",hmacmd5:"cryptojs",hmacsha1:"cryptojs",hmacsha224:"cryptojs",hmacsha256:"cryptojs",hmacsha384:"cryptojs",hmacsha512:"cryptojs",hmacripemd160:"cryptojs",MD5withRSA:"cryptojs/jsrsa",SHA1withRSA:"cryptojs/jsrsa",SHA224withRSA:"cryptojs/jsrsa",SHA256withRSA:"cryptojs/jsrsa",SHA384withRSA:"cryptojs/jsrsa",SHA512withRSA:"cryptojs/jsrsa",RIPEMD160withRSA:"cryptojs/jsrsa",MD5withECDSA:"cryptojs/jsrsa",SHA1withECDSA:"cryptojs/jsrsa",SHA224withECDSA:"cryptojs/jsrsa",SHA256withECDSA:"cryptojs/jsrsa",SHA384withECDSA:"cryptojs/jsrsa",SHA512withECDSA:"cryptojs/jsrsa",RIPEMD160withECDSA:"cryptojs/jsrsa",SHA1withDSA:"cryptojs/jsrsa",SHA224withDSA:"cryptojs/jsrsa",SHA256withDSA:"cryptojs/jsrsa",MD5withRSAandMGF1:"cryptojs/jsrsa",SHAwithRSAandMGF1:"cryptojs/jsrsa",SHA1withRSAandMGF1:"cryptojs/jsrsa",SHA224withRSAandMGF1:"cryptojs/jsrsa",SHA256withRSAandMGF1:"cryptojs/jsrsa",SHA384withRSAandMGF1:"cryptojs/jsrsa",SHA512withRSAandMGF1:"cryptojs/jsrsa",RIPEMD160withRSAandMGF1:"cryptojs/jsrsa"},this.CRYPTOJSMESSAGEDIGESTNAME={md5:g.algo.MD5,sha1:g.algo.SHA1,sha224:g.algo.SHA224,sha256:g.algo.SHA256,sha384:g.algo.SHA384,sha512:g.algo.SHA512,ripemd160:g.algo.RIPEMD160},this.getDigestInfoHex=function(t,e){if(void 0===this.DIGESTINFOHEAD[e])throw"alg not supported in Util.DIGESTINFOHEAD: "+e;return this.DIGESTINFOHEAD[e]+t},this.getPaddedDigestInfoHex=function(t,e,r){var i=this.getDigestInfoHex(t,e),n=r/4;if(i.length+22>n)throw"key is too short for SigAlg: keylen="+r+","+e;for(var s="0001",o="00"+i,a="",u=n-s.length-o.length,h=0;h<u;h+=2)a+="ff";return s+a+o},this.hashString=function(t,e){return new d.crypto.MessageDigest({alg:e}).digestString(t)},this.hashHex=function(t,e){return new d.crypto.MessageDigest({alg:e}).digestHex(t)},this.sha1=function(t){return this.hashString(t,"sha1")},this.sha256=function(t){return this.hashString(t,"sha256")},this.sha256Hex=function(t){return this.hashHex(t,"sha256")},this.sha512=function(t){return this.hashString(t,"sha512")},this.sha512Hex=function(t){return this.hashHex(t,"sha512")},this.isKey=function(t){return t instanceof tt||t instanceof d.crypto.DSA||t instanceof d.crypto.ECDSA}},d.crypto.Util.md5=function(t){return new d.crypto.MessageDigest({alg:"md5",prov:"cryptojs"}).digestString(t)},d.crypto.Util.ripemd160=function(t){return new d.crypto.MessageDigest({alg:"ripemd160",prov:"cryptojs"}).digestString(t)},d.crypto.Util.SECURERANDOMGEN=new X,d.crypto.Util.getRandomHexOfNbytes=function(t){var e=new Array(t);return d.crypto.Util.SECURERANDOMGEN.nextBytes(e),rt(e)},d.crypto.Util.getRandomBigIntegerOfNbytes=function(t){return new v(d.crypto.Util.getRandomHexOfNbytes(t),16)},d.crypto.Util.getRandomHexOfNbits=function(t){var e=t%8,r=new Array((t-e)/8+1);return d.crypto.Util.SECURERANDOMGEN.nextBytes(r),r[0]=(255<<e&255^255)&r[0],rt(r)},d.crypto.Util.getRandomBigIntegerOfNbits=function(t){return new v(d.crypto.Util.getRandomHexOfNbits(t),16)},d.crypto.Util.getRandomBigIntegerZeroToMax=function(t){for(var e=t.bitLength();;){var r=d.crypto.Util.getRandomBigIntegerOfNbits(e);if(-1!=t.compareTo(r))return r}},d.crypto.Util.getRandomBigIntegerMinToMax=function(t,e){var r=t.compareTo(e);if(1==r)throw"biMin is greater than biMax";if(0==r)return t;var i=e.subtract(t);return d.crypto.Util.getRandomBigIntegerZeroToMax(i).add(t)},d.crypto.MessageDigest=function(t){this.setAlgAndProvider=function(t,e){if(null!==(t=d.crypto.MessageDigest.getCanonicalAlgName(t))&&void 0===e&&(e=d.crypto.Util.DEFAULTPROVIDER[t]),-1!=":md5:sha1:sha224:sha256:sha384:sha512:ripemd160:".indexOf(t)&&"cryptojs"==e){try{this.md=d.crypto.Util.CRYPTOJSMESSAGEDIGESTNAME[t].create()}catch(e){throw"setAlgAndProvider hash alg set fail alg="+t+"/"+e}this.updateString=function(t){this.md.update(t)},this.updateHex=function(t){var e=g.enc.Hex.parse(t);this.md.update(e)},this.digest=function(){return this.md.finalize().toString(g.enc.Hex)},this.digestString=function(t){return this.updateString(t),this.digest()},this.digestHex=function(t){return this.updateHex(t),this.digest()}}if(-1!=":sha256:".indexOf(t)&&"sjcl"==e){try{this.md=new sjcl.hash.sha256}catch(e){throw"setAlgAndProvider hash alg set fail alg="+t+"/"+e}this.updateString=function(t){this.md.update(t)},this.updateHex=function(t){var e=sjcl.codec.hex.toBits(t);this.md.update(e)},this.digest=function(){var t=this.md.finalize();return sjcl.codec.hex.fromBits(t)},this.digestString=function(t){return this.updateString(t),this.digest()},this.digestHex=function(t){return this.updateHex(t),this.digest()}}},this.updateString=function(t){throw"updateString(str) not supported for this alg/prov: "+this.algName+"/"+this.provName},this.updateHex=function(t){throw"updateHex(hex) not supported for this alg/prov: "+this.algName+"/"+this.provName},this.digest=function(){throw"digest() not supported for this alg/prov: "+this.algName+"/"+this.provName},this.digestString=function(t){throw"digestString(str) not supported for this alg/prov: "+this.algName+"/"+this.provName},this.digestHex=function(t){throw"digestHex(hex) not supported for this alg/prov: "+this.algName+"/"+this.provName},void 0!==t&&void 0!==t.alg&&(this.algName=t.alg,void 0===t.prov&&(this.provName=d.crypto.Util.DEFAULTPROVIDER[this.algName]),this.setAlgAndProvider(this.algName,this.provName))},d.crypto.MessageDigest.getCanonicalAlgName=function(t){return"string"==typeof t&&(t=(t=t.toLowerCase()).replace(/-/,"")),t},d.crypto.MessageDigest.getHashLength=function(t){var e=d.crypto.MessageDigest,r=e.getCanonicalAlgName(t);if(void 0===e.HASHLENGTH[r])throw"not supported algorithm: "+t;return e.HASHLENGTH[r]},d.crypto.MessageDigest.HASHLENGTH={md5:16,sha1:20,sha224:28,sha256:32,sha384:48,sha512:64,ripemd160:20},d.crypto.Mac=function(t){this.setAlgAndProvider=function(t,e){if(null==(t=t.toLowerCase())&&(t="hmacsha1"),"hmac"!=(t=t.toLowerCase()).substr(0,4))throw"setAlgAndProvider unsupported HMAC alg: "+t;void 0===e&&(e=d.crypto.Util.DEFAULTPROVIDER[t]),this.algProv=t+"/"+e;var r=t.substr(4);if(-1!=":md5:sha1:sha224:sha256:sha384:sha512:ripemd160:".indexOf(r)&&"cryptojs"==e){try{var i=d.crypto.Util.CRYPTOJSMESSAGEDIGESTNAME[r];this.mac=g.algo.HMAC.create(i,this.pass)}catch(t){throw"setAlgAndProvider hash alg set fail hashAlg="+r+"/"+t}this.updateString=function(t){this.mac.update(t)},this.updateHex=function(t){var e=g.enc.Hex.parse(t);this.mac.update(e)},this.doFinal=function(){return this.mac.finalize().toString(g.enc.Hex)},this.doFinalString=function(t){return this.updateString(t),this.doFinal()},this.doFinalHex=function(t){return this.updateHex(t),this.doFinal()}}},this.updateString=function(t){throw"updateString(str) not supported for this alg/prov: "+this.algProv},this.updateHex=function(t){throw"updateHex(hex) not supported for this alg/prov: "+this.algProv},this.doFinal=function(){throw"digest() not supported for this alg/prov: "+this.algProv},this.doFinalString=function(t){throw"digestString(str) not supported for this alg/prov: "+this.algProv},this.doFinalHex=function(t){throw"digestHex(hex) not supported for this alg/prov: "+this.algProv},this.setPassword=function(t){if("string"==typeof t){var e=t;return t.length%2!=1&&t.match(/^[0-9A-Fa-f]+$/)||(e=ct(t)),void(this.pass=g.enc.Hex.parse(e))}if("object"!=typeof t)throw"KJUR.crypto.Mac unsupported password type: "+t;e=null;if(void 0!==t.hex){if(t.hex.length%2!=0||!t.hex.match(/^[0-9A-Fa-f]+$/))throw"Mac: wrong hex password: "+t.hex;e=t.hex}if(void 0!==t.utf8&&(e=at(t.utf8)),void 0!==t.rstr&&(e=ct(t.rstr)),void 0!==t.b64&&(e=L(t.b64)),void 0!==t.b64u&&(e=ot(t.b64u)),null==e)throw"KJUR.crypto.Mac unsupported password type: "+t;this.pass=g.enc.Hex.parse(e)},void 0!==t&&(void 0!==t.pass&&this.setPassword(t.pass),void 0!==t.alg&&(this.algName=t.alg,void 0===t.prov&&(this.provName=d.crypto.Util.DEFAULTPROVIDER[this.algName]),this.setAlgAndProvider(this.algName,this.provName)))},d.crypto.Signature=function(t){var e=null;if(this._setAlgNames=function(){var t=this.algName.match(/^(.+)with(.+)$/);t&&(this.mdAlgName=t[1].toLowerCase(),this.pubkeyAlgName=t[2].toLowerCase(),"rsaandmgf1"==this.pubkeyAlgName&&"sha"==this.mdAlgName&&(this.mdAlgName="sha1"))},this._zeroPaddingOfSignature=function(t,e){for(var r="",i=e/4-t.length,n=0;n<i;n++)r+="0";return r+t},this.setAlgAndProvider=function(t,e){if(this._setAlgNames(),"cryptojs/jsrsa"!=e)throw new Error("provider not supported: "+e);if(-1!=":md5:sha1:sha224:sha256:sha384:sha512:ripemd160:".indexOf(this.mdAlgName)){try{this.md=new d.crypto.MessageDigest({alg:this.mdAlgName})}catch(t){throw new Error("setAlgAndProvider hash alg set fail alg="+this.mdAlgName+"/"+t)}this.init=function(t,e){var r=null;try{r=void 0===e?Rt.getKey(t):Rt.getKey(t,e)}catch(t){throw"init failed:"+t}if(!0===r.isPrivate)this.prvKey=r,this.state="SIGN";else{if(!0!==r.isPublic)throw"init failed.:"+r;this.pubKey=r,this.state="VERIFY"}},this.updateString=function(t){this.md.updateString(t)},this.updateHex=function(t){this.md.updateHex(t)},this.sign=function(){if(this.sHashHex=this.md.digest(),void 0===this.prvKey&&void 0!==this.ecprvhex&&void 0!==this.eccurvename&&void 0!==d.crypto.ECDSA&&(this.prvKey=new d.crypto.ECDSA({curve:this.eccurvename,prv:this.ecprvhex})),this.prvKey instanceof tt&&"rsaandmgf1"===this.pubkeyAlgName)this.hSign=this.prvKey.signWithMessageHashPSS(this.sHashHex,this.mdAlgName,this.pssSaltLen);else if(this.prvKey instanceof tt&&"rsa"===this.pubkeyAlgName)this.hSign=this.prvKey.signWithMessageHash(this.sHashHex,this.mdAlgName);else if(this.prvKey instanceof d.crypto.ECDSA)this.hSign=this.prvKey.signWithMessageHash(this.sHashHex);else{if(!(this.prvKey instanceof d.crypto.DSA))throw"Signature: unsupported private key alg: "+this.pubkeyAlgName;this.hSign=this.prvKey.signWithMessageHash(this.sHashHex)}return this.hSign},this.signString=function(t){return this.updateString(t),this.sign()},this.signHex=function(t){return this.updateHex(t),this.sign()},this.verify=function(t){if(this.sHashHex=this.md.digest(),void 0===this.pubKey&&void 0!==this.ecpubhex&&void 0!==this.eccurvename&&void 0!==d.crypto.ECDSA&&(this.pubKey=new d.crypto.ECDSA({curve:this.eccurvename,pub:this.ecpubhex})),this.pubKey instanceof tt&&"rsaandmgf1"===this.pubkeyAlgName)return this.pubKey.verifyWithMessageHashPSS(this.sHashHex,t,this.mdAlgName,this.pssSaltLen);if(this.pubKey instanceof tt&&"rsa"===this.pubkeyAlgName)return this.pubKey.verifyWithMessageHash(this.sHashHex,t);if(void 0!==d.crypto.ECDSA&&this.pubKey instanceof d.crypto.ECDSA)return this.pubKey.verifyWithMessageHash(this.sHashHex,t);if(void 0!==d.crypto.DSA&&this.pubKey instanceof d.crypto.DSA)return this.pubKey.verifyWithMessageHash(this.sHashHex,t);throw"Signature: unsupported public key alg: "+this.pubkeyAlgName}}},this.init=function(t,e){throw"init(key, pass) not supported for this alg:prov="+this.algProvName},this.updateString=function(t){throw"updateString(str) not supported for this alg:prov="+this.algProvName},this.updateHex=function(t){throw"updateHex(hex) not supported for this alg:prov="+this.algProvName},this.sign=function(){throw"sign() not supported for this alg:prov="+this.algProvName},this.signString=function(t){throw"digestString(str) not supported for this alg:prov="+this.algProvName},this.signHex=function(t){throw"digestHex(hex) not supported for this alg:prov="+this.algProvName},this.verify=function(t){throw"verify(hSigVal) not supported for this alg:prov="+this.algProvName},this.initParams=t,void 0!==t&&(void 0!==t.alg&&(this.algName=t.alg,void 0===t.prov?this.provName=d.crypto.Util.DEFAULTPROVIDER[this.algName]:this.provName=t.prov,this.algProvName=this.algName+":"+this.provName,this.setAlgAndProvider(this.algName,this.provName),this._setAlgNames()),void 0!==t.psssaltlen&&(this.pssSaltLen=t.psssaltlen),void 0!==t.prvkeypem)){if(void 0!==t.prvkeypas)throw"both prvkeypem and prvkeypas parameters not supported";try{e=Rt.getKey(t.prvkeypem);this.init(e)}catch(t){throw"fatal error to load pem private key: "+t}}},d.crypto.Cipher=function(t){},d.crypto.Cipher.encrypt=function(t,e,r){if(e instanceof tt&&e.isPublic){var i=d.crypto.Cipher.getAlgByKeyAndName(e,r);if("RSA"===i)return e.encrypt(t);if("RSAOAEP"===i)return e.encryptOAEP(t,"sha1");var n=i.match(/^RSAOAEP(\d+)$/);if(null!==n)return e.encryptOAEP(t,"sha"+n[1]);throw"Cipher.encrypt: unsupported algorithm for RSAKey: "+r}throw"Cipher.encrypt: unsupported key or algorithm"},d.crypto.Cipher.decrypt=function(t,e,r){if(e instanceof tt&&e.isPrivate){var i=d.crypto.Cipher.getAlgByKeyAndName(e,r);if("RSA"===i)return e.decrypt(t);if("RSAOAEP"===i)return e.decryptOAEP(t,"sha1");var n=i.match(/^RSAOAEP(\d+)$/);if(null!==n)return e.decryptOAEP(t,"sha"+n[1]);throw"Cipher.decrypt: unsupported algorithm for RSAKey: "+r}throw"Cipher.decrypt: unsupported key or algorithm"},d.crypto.Cipher.getAlgByKeyAndName=function(t,e){if(t instanceof tt){if(-1!=":RSA:RSAOAEP:RSAOAEP224:RSAOAEP256:RSAOAEP384:RSAOAEP512:".indexOf(e))return e;if(null==e)return"RSA";throw"getAlgByKeyAndName: not supported algorithm name for RSAKey: "+e}throw"getAlgByKeyAndName: not supported algorithm name: "+e},d.crypto.OID=new function(){this.oidhex2name={"2a864886f70d010101":"rsaEncryption","2a8648ce3d0201":"ecPublicKey","2a8648ce380401":"dsa","2a8648ce3d030107":"secp256r1","2b8104001f":"secp192k1","2b81040021":"secp224r1","2b8104000a":"secp256k1","2b81040023":"secp521r1","2b81040022":"secp384r1","2a8648ce380403":"SHA1withDSA","608648016503040301":"SHA224withDSA","608648016503040302":"SHA256withDSA"}};var bt,Et,St,wt,At,Pt,Dt,Nt,Rt=(bt=function(t,e,r){return Et(g.AES,t,e,r)},Et=function(t,e,r,i){var n=g.enc.Hex.parse(e),s=g.enc.Hex.parse(r),o=g.enc.Hex.parse(i),a={};a.key=s,a.iv=o,a.ciphertext=n;var u=t.decrypt(a,s,{iv:o});return g.enc.Hex.stringify(u)},St=function(t,e,r){return wt(g.AES,t,e,r)},wt=function(t,e,r,i){var n=g.enc.Hex.parse(e),s=g.enc.Hex.parse(r),o=g.enc.Hex.parse(i),a=t.encrypt(n,s,{iv:o}),u=g.enc.Hex.parse(a.toString());return g.enc.Base64.stringify(u)},At={"AES-256-CBC":{proc:bt,eproc:St,keylen:32,ivlen:16},"AES-192-CBC":{proc:bt,eproc:St,keylen:24,ivlen:16},"AES-128-CBC":{proc:bt,eproc:St,keylen:16,ivlen:16},"DES-EDE3-CBC":{proc:function(t,e,r){return Et(g.TripleDES,t,e,r)},eproc:function(t,e,r){return wt(g.TripleDES,t,e,r)},keylen:24,ivlen:8},"DES-CBC":{proc:function(t,e,r){return Et(g.DES,t,e,r)},eproc:function(t,e,r){return wt(g.DES,t,e,r)},keylen:8,ivlen:8}},Pt=function(t){var e={},r=t.match(new RegExp("DEK-Info: ([^,]+),([0-9A-Fa-f]+)","m"));r&&(e.cipher=r[1],e.ivsalt=r[2]);var i=t.match(new RegExp("-----BEGIN ([A-Z]+) PRIVATE KEY-----"));i&&(e.type=i[1]);var n=-1,s=0;-1!=t.indexOf("\r\n\r\n")&&(n=t.indexOf("\r\n\r\n"),s=2),-1!=t.indexOf("\n\n")&&(n=t.indexOf("\n\n"),s=1);var o=t.indexOf("-----END");if(-1!=n&&-1!=o){var a=t.substring(n+2*s,o-s);a=a.replace(/\s+/g,""),e.data=a}return e},Dt=function(t,e,r){for(var i=r.substring(0,16),n=g.enc.Hex.parse(i),s=g.enc.Utf8.parse(e),o=At[t].keylen+At[t].ivlen,a="",u=null;;){var h=g.algo.MD5.create();if(null!=u&&h.update(u),h.update(s),h.update(n),u=h.finalize(),(a+=g.enc.Hex.stringify(u)).length>=2*o)break}var c={};return c.keyhex=a.substr(0,2*At[t].keylen),c.ivhex=a.substr(2*At[t].keylen,2*At[t].ivlen),c},Nt=function(t,e,r,i){var n=g.enc.Base64.parse(t),s=g.enc.Hex.stringify(n);return(0,At[e].proc)(s,r,i)},{version:"1.0.0",parsePKCS5PEM:function(t){return Pt(t)},getKeyAndUnusedIvByPasscodeAndIvsalt:function(t,e,r){return Dt(t,e,r)},decryptKeyB64:function(t,e,r,i){return Nt(t,e,r,i)},getDecryptedKeyHex:function(t,e){var r=Pt(t);r.type;var i=r.cipher,n=r.ivsalt,s=r.data,o=Dt(i,e,n).keyhex;return Nt(s,i,o,n)},getEncryptedPKCS5PEMFromPrvKeyHex:function(t,e,r,i,n){var s="";if(void 0!==i&&null!=i||(i="AES-256-CBC"),void 0===At[i])throw"KEYUTIL unsupported algorithm: "+i;void 0!==n&&null!=n||(n=function(t){var e=g.lib.WordArray.random(t);return g.enc.Hex.stringify(e)}(At[i].ivlen).toUpperCase());var o=function(t,e,r,i){return(0,At[e].eproc)(t,r,i)}(e,i,Dt(i,r,n).keyhex,n);return s="-----BEGIN "+t+" PRIVATE KEY-----\r\n",s+="Proc-Type: 4,ENCRYPTED\r\n",s+="DEK-Info: "+i+","+n+"\r\n",s+="\r\n",s+=o.replace(/(.{64})/g,"$1\r\n"),s+="\r\n-----END "+t+" PRIVATE KEY-----\r\n"},parseHexOfEncryptedPKCS8:function(t){var e=Tt,r=e.getChildIdx,i=e.getV,n={},s=r(t,0);if(2!=s.length)throw"malformed format: SEQUENCE(0).items != 2: "+s.length;n.ciphertext=i(t,s[1]);var o=r(t,s[0]);if(2!=o.length)throw"malformed format: SEQUENCE(0.0).items != 2: "+o.length;if("2a864886f70d01050d"!=i(t,o[0]))throw"this only supports pkcs5PBES2";var a=r(t,o[1]);if(2!=o.length)throw"malformed format: SEQUENCE(0.0.1).items != 2: "+a.length;var u=r(t,a[1]);if(2!=u.length)throw"malformed format: SEQUENCE(0.0.1.1).items != 2: "+u.length;if("2a864886f70d0307"!=i(t,u[0]))throw"this only supports TripleDES";n.encryptionSchemeAlg="TripleDES",n.encryptionSchemeIV=i(t,u[1]);var h=r(t,a[0]);if(2!=h.length)throw"malformed format: SEQUENCE(0.0.1.0).items != 2: "+h.length;if("2a864886f70d01050c"!=i(t,h[0]))throw"this only supports pkcs5PBKDF2";var c=r(t,h[1]);if(c.length<2)throw"malformed format: SEQUENCE(0.0.1.0.1).items < 2: "+c.length;n.pbkdf2Salt=i(t,c[0]);var l=i(t,c[1]);try{n.pbkdf2Iter=parseInt(l,16)}catch(t){throw"malformed format pbkdf2Iter: "+l}return n},getPBKDF2KeyHexFromParam:function(t,e){var r=g.enc.Hex.parse(t.pbkdf2Salt),i=t.pbkdf2Iter,n=g.PBKDF2(e,r,{keySize:6,iterations:i});return g.enc.Hex.stringify(n)},_getPlainPKCS8HexFromEncryptedPKCS8PEM:function(t,e){var r=dt(t,"ENCRYPTED PRIVATE KEY"),i=this.parseHexOfEncryptedPKCS8(r),n=Rt.getPBKDF2KeyHexFromParam(i,e),s={};s.ciphertext=g.enc.Hex.parse(i.ciphertext);var o=g.enc.Hex.parse(n),a=g.enc.Hex.parse(i.encryptionSchemeIV),u=g.TripleDES.decrypt(s,o,{iv:a});return g.enc.Hex.stringify(u)},getKeyFromEncryptedPKCS8PEM:function(t,e){var r=this._getPlainPKCS8HexFromEncryptedPKCS8PEM(t,e);return this.getKeyFromPlainPrivatePKCS8Hex(r)},parsePlainPrivatePKCS8Hex:function(t){var e=Tt,r=e.getChildIdx,i=e.getV,n={algparam:null};if("30"!=t.substr(0,2))throw new Error("malformed plain PKCS8 private key(code:001)");var s=r(t,0);if(s.length<3)throw new Error("malformed plain PKCS8 private key(code:002)");if("30"!=t.substr(s[1],2))throw new Error("malformed PKCS8 private key(code:003)");var o=r(t,s[1]);if(2!=o.length)throw new Error("malformed PKCS8 private key(code:004)");if("06"!=t.substr(o[0],2))throw new Error("malformed PKCS8 private key(code:005)");if(n.algoid=i(t,o[0]),"06"==t.substr(o[1],2)&&(n.algparam=i(t,o[1])),"04"!=t.substr(s[2],2))throw new Error("malformed PKCS8 private key(code:006)");return n.keyidx=e.getVidx(t,s[2]),n},getKeyFromPlainPrivatePKCS8PEM:function(t){var e=dt(t,"PRIVATE KEY");return this.getKeyFromPlainPrivatePKCS8Hex(e)},getKeyFromPlainPrivatePKCS8Hex:function(t){var e,r=this.parsePlainPrivatePKCS8Hex(t);if("2a864886f70d010101"==r.algoid)e=new tt;else if("2a8648ce380401"==r.algoid)e=new d.crypto.DSA;else{if("2a8648ce3d0201"!=r.algoid)throw"unsupported private key algorithm";e=new d.crypto.ECDSA}return e.readPKCS8PrvKeyHex(t),e},_getKeyFromPublicPKCS8Hex:function(t){var e,r=Tt.getVbyList(t,0,[0,0],"06");if("2a864886f70d010101"===r)e=new tt;else if("2a8648ce380401"===r)e=new d.crypto.DSA;else{if("2a8648ce3d0201"!==r)throw"unsupported PKCS#8 public key hex";e=new d.crypto.ECDSA}return e.readPKCS8PubKeyHex(t),e},parsePublicRawRSAKeyHex:function(t){var e=Tt,r=e.getChildIdx,i=e.getV,n={};if("30"!=t.substr(0,2))throw"malformed RSA key(code:001)";var s=r(t,0);if(2!=s.length)throw"malformed RSA key(code:002)";if("02"!=t.substr(s[0],2))throw"malformed RSA key(code:003)";if(n.n=i(t,s[0]),"02"!=t.substr(s[1],2))throw"malformed RSA key(code:004)";return n.e=i(t,s[1]),n},parsePublicPKCS8Hex:function(t){var e=Tt,r=e.getChildIdx,i=e.getV,n={algparam:null},s=r(t,0);if(2!=s.length)throw"outer DERSequence shall have 2 elements: "+s.length;var o=s[0];if("30"!=t.substr(o,2))throw"malformed PKCS8 public key(code:001)";var a=r(t,o);if(2!=a.length)throw"malformed PKCS8 public key(code:002)";if("06"!=t.substr(a[0],2))throw"malformed PKCS8 public key(code:003)";if(n.algoid=i(t,a[0]),"06"==t.substr(a[1],2)?n.algparam=i(t,a[1]):"30"==t.substr(a[1],2)&&(n.algparam={},n.algparam.p=e.getVbyList(t,a[1],[0],"02"),n.algparam.q=e.getVbyList(t,a[1],[1],"02"),n.algparam.g=e.getVbyList(t,a[1],[2],"02")),"03"!=t.substr(s[1],2))throw"malformed PKCS8 public key(code:004)";return n.key=i(t,s[1]).substr(2),n}});Rt.getKey=function(t,e,r){var i=(m=Tt).getChildIdx;m.getV;var n=m.getVbyList,s=d.crypto,o=s.ECDSA,a=s.DSA,u=tt,h=dt,c=Rt;if(void 0!==u&&t instanceof u)return t;if(void 0!==o&&t instanceof o)return t;if(void 0!==a&&t instanceof a)return t;if(void 0!==t.curve&&void 0!==t.xy&&void 0===t.d)return new o({pub:t.xy,curve:t.curve});if(void 0!==t.curve&&void 0!==t.d)return new o({prv:t.d,curve:t.curve});if(void 0===t.kty&&void 0!==t.n&&void 0!==t.e&&void 0===t.d)return(T=new u).setPublic(t.n,t.e),T;if(void 0===t.kty&&void 0!==t.n&&void 0!==t.e&&void 0!==t.d&&void 0!==t.p&&void 0!==t.q&&void 0!==t.dp&&void 0!==t.dq&&void 0!==t.co&&void 0===t.qi)return(T=new u).setPrivateEx(t.n,t.e,t.d,t.p,t.q,t.dp,t.dq,t.co),T;if(void 0===t.kty&&void 0!==t.n&&void 0!==t.e&&void 0!==t.d&&void 0===t.p)return(T=new u).setPrivate(t.n,t.e,t.d),T;if(void 0!==t.p&&void 0!==t.q&&void 0!==t.g&&void 0!==t.y&&void 0===t.x)return(T=new a).setPublic(t.p,t.q,t.g,t.y),T;if(void 0!==t.p&&void 0!==t.q&&void 0!==t.g&&void 0!==t.y&&void 0!==t.x)return(T=new a).setPrivate(t.p,t.q,t.g,t.y,t.x),T;if("RSA"===t.kty&&void 0!==t.n&&void 0!==t.e&&void 0===t.d)return(T=new u).setPublic(ot(t.n),ot(t.e)),T;if("RSA"===t.kty&&void 0!==t.n&&void 0!==t.e&&void 0!==t.d&&void 0!==t.p&&void 0!==t.q&&void 0!==t.dp&&void 0!==t.dq&&void 0!==t.qi)return(T=new u).setPrivateEx(ot(t.n),ot(t.e),ot(t.d),ot(t.p),ot(t.q),ot(t.dp),ot(t.dq),ot(t.qi)),T;if("RSA"===t.kty&&void 0!==t.n&&void 0!==t.e&&void 0!==t.d)return(T=new u).setPrivate(ot(t.n),ot(t.e),ot(t.d)),T;if("EC"===t.kty&&void 0!==t.crv&&void 0!==t.x&&void 0!==t.y&&void 0===t.d){var l=(R=new o({curve:t.crv})).ecparams.keylen/4,f="04"+("0000000000"+ot(t.x)).slice(-l)+("0000000000"+ot(t.y)).slice(-l);return R.setPublicKeyHex(f),R}if("EC"===t.kty&&void 0!==t.crv&&void 0!==t.x&&void 0!==t.y&&void 0!==t.d){l=(R=new o({curve:t.crv})).ecparams.keylen/4,f="04"+("0000000000"+ot(t.x)).slice(-l)+("0000000000"+ot(t.y)).slice(-l);var p=("0000000000"+ot(t.d)).slice(-l);return R.setPublicKeyHex(f),R.setPrivateKeyHex(p),R}if("pkcs5prv"===r){var g,y=t,m=Tt;if(9===(g=i(y,0)).length)(T=new u).readPKCS5PrvKeyHex(y);else if(6===g.length)(T=new a).readPKCS5PrvKeyHex(y);else{if(!(g.length>2&&"04"===y.substr(g[1],2)))throw"unsupported PKCS#1/5 hexadecimal key";(T=new o).readPKCS5PrvKeyHex(y)}return T}if("pkcs8prv"===r)return T=c.getKeyFromPlainPrivatePKCS8Hex(t);if("pkcs8pub"===r)return c._getKeyFromPublicPKCS8Hex(t);if("x509pub"===r)return Vt.getPublicKeyFromCertHex(t);if(-1!=t.indexOf("-END CERTIFICATE-",0)||-1!=t.indexOf("-END X509 CERTIFICATE-",0)||-1!=t.indexOf("-END TRUSTED CERTIFICATE-",0))return Vt.getPublicKeyFromCertPEM(t);if(-1!=t.indexOf("-END PUBLIC KEY-")){var x=dt(t,"PUBLIC KEY");return c._getKeyFromPublicPKCS8Hex(x)}if(-1!=t.indexOf("-END RSA PRIVATE KEY-")&&-1==t.indexOf("4,ENCRYPTED")){var b=h(t,"RSA PRIVATE KEY");return c.getKey(b,null,"pkcs5prv")}if(-1!=t.indexOf("-END DSA PRIVATE KEY-")&&-1==t.indexOf("4,ENCRYPTED")){var E=n(O=h(t,"DSA PRIVATE KEY"),0,[1],"02"),S=n(O,0,[2],"02"),w=n(O,0,[3],"02"),A=n(O,0,[4],"02"),P=n(O,0,[5],"02");return(T=new a).setPrivate(new v(E,16),new v(S,16),new v(w,16),new v(A,16),new v(P,16)),T}if(-1!=t.indexOf("-END EC PRIVATE KEY-")&&-1==t.indexOf("4,ENCRYPTED")){b=h(t,"EC PRIVATE KEY");return c.getKey(b,null,"pkcs5prv")}if(-1!=t.indexOf("-END PRIVATE KEY-"))return c.getKeyFromPlainPrivatePKCS8PEM(t);if(-1!=t.indexOf("-END RSA PRIVATE KEY-")&&-1!=t.indexOf("4,ENCRYPTED")){var D=c.getDecryptedKeyHex(t,e),N=new tt;return N.readPKCS5PrvKeyHex(D),N}if(-1!=t.indexOf("-END EC PRIVATE KEY-")&&-1!=t.indexOf("4,ENCRYPTED")){var R,T=n(O=c.getDecryptedKeyHex(t,e),0,[1],"04"),C=n(O,0,[2,0],"06"),I=n(O,0,[3,0],"03").substr(2);if(void 0===d.crypto.OID.oidhex2name[C])throw"undefined OID(hex) in KJUR.crypto.OID: "+C;return(R=new o({curve:d.crypto.OID.oidhex2name[C]})).setPublicKeyHex(I),R.setPrivateKeyHex(T),R.isPublic=!1,R}if(-1!=t.indexOf("-END DSA PRIVATE KEY-")&&-1!=t.indexOf("4,ENCRYPTED")){var O;E=n(O=c.getDecryptedKeyHex(t,e),0,[1],"02"),S=n(O,0,[2],"02"),w=n(O,0,[3],"02"),A=n(O,0,[4],"02"),P=n(O,0,[5],"02");return(T=new a).setPrivate(new v(E,16),new v(S,16),new v(w,16),new v(A,16),new v(P,16)),T}if(-1!=t.indexOf("-END ENCRYPTED PRIVATE KEY-"))return c.getKeyFromEncryptedPKCS8PEM(t,e);throw new Error("not supported argument")},Rt.generateKeypair=function(t,e){if("RSA"==t){var r=e;(o=new tt).generate(r,"10001"),o.isPrivate=!0,o.isPublic=!0;var i=new tt,n=o.n.toString(16),s=o.e.toString(16);return i.setPublic(n,s),i.isPrivate=!1,i.isPublic=!0,(a={}).prvKeyObj=o,a.pubKeyObj=i,a}if("EC"==t){var o,a,u=e,h=new d.crypto.ECDSA({curve:u}).generateKeyPairHex();return(o=new d.crypto.ECDSA({curve:u})).setPublicKeyHex(h.ecpubhex),o.setPrivateKeyHex(h.ecprvhex),o.isPrivate=!0,o.isPublic=!1,(i=new d.crypto.ECDSA({curve:u})).setPublicKeyHex(h.ecpubhex),i.isPrivate=!1,i.isPublic=!0,(a={}).prvKeyObj=o,a.pubKeyObj=i,a}throw"unknown algorithm: "+t},Rt.getPEM=function(t,e,r,i,n,s){var o=d,a=o.asn1,u=a.DERObjectIdentifier,h=a.DERInteger,c=a.ASN1Util.newObject,l=a.x509.SubjectPublicKeyInfo,f=o.crypto,p=f.DSA,v=f.ECDSA,y=tt;function m(t){return c({seq:[{int:0},{int:{bigint:t.n}},{int:t.e},{int:{bigint:t.d}},{int:{bigint:t.p}},{int:{bigint:t.q}},{int:{bigint:t.dmp1}},{int:{bigint:t.dmq1}},{int:{bigint:t.coeff}}]})}function x(t){return c({seq:[{int:1},{octstr:{hex:t.prvKeyHex}},{tag:["a0",!0,{oid:{name:t.curveName}}]},{tag:["a1",!0,{bitstr:{hex:"00"+t.pubKeyHex}}]}]})}function b(t){return c({seq:[{int:0},{int:{bigint:t.p}},{int:{bigint:t.q}},{int:{bigint:t.g}},{int:{bigint:t.y}},{int:{bigint:t.x}}]})}if((void 0!==y&&t instanceof y||void 0!==p&&t instanceof p||void 0!==v&&t instanceof v)&&1==t.isPublic&&(void 0===e||"PKCS8PUB"==e))return ft(A=new l(t).getEncodedHex(),"PUBLIC KEY");if("PKCS1PRV"==e&&void 0!==y&&t instanceof y&&(void 0===r||null==r)&&1==t.isPrivate)return ft(A=m(t).getEncodedHex(),"RSA PRIVATE KEY");if("PKCS1PRV"==e&&void 0!==v&&t instanceof v&&(void 0===r||null==r)&&1==t.isPrivate){var E=new u({name:t.curveName}).getEncodedHex(),S=x(t).getEncodedHex(),w="";return w+=ft(E,"EC PARAMETERS"),w+=ft(S,"EC PRIVATE KEY")}if("PKCS1PRV"==e&&void 0!==p&&t instanceof p&&(void 0===r||null==r)&&1==t.isPrivate)return ft(A=b(t).getEncodedHex(),"DSA PRIVATE KEY");if("PKCS5PRV"==e&&void 0!==y&&t instanceof y&&void 0!==r&&null!=r&&1==t.isPrivate){var A=m(t).getEncodedHex();return void 0===i&&(i="DES-EDE3-CBC"),this.getEncryptedPKCS5PEMFromPrvKeyHex("RSA",A,r,i,s)}if("PKCS5PRV"==e&&void 0!==v&&t instanceof v&&void 0!==r&&null!=r&&1==t.isPrivate){A=x(t).getEncodedHex();return void 0===i&&(i="DES-EDE3-CBC"),this.getEncryptedPKCS5PEMFromPrvKeyHex("EC",A,r,i,s)}if("PKCS5PRV"==e&&void 0!==p&&t instanceof p&&void 0!==r&&null!=r&&1==t.isPrivate){A=b(t).getEncodedHex();return void 0===i&&(i="DES-EDE3-CBC"),this.getEncryptedPKCS5PEMFromPrvKeyHex("DSA",A,r,i,s)}var P=function(t,e){var r=D(t,e);return new c({seq:[{seq:[{oid:{name:"pkcs5PBES2"}},{seq:[{seq:[{oid:{name:"pkcs5PBKDF2"}},{seq:[{octstr:{hex:r.pbkdf2Salt}},{int:r.pbkdf2Iter}]}]},{seq:[{oid:{name:"des-EDE3-CBC"}},{octstr:{hex:r.encryptionSchemeIV}}]}]}]},{octstr:{hex:r.ciphertext}}]}).getEncodedHex()},D=function(t,e){var r=g.lib.WordArray.random(8),i=g.lib.WordArray.random(8),n=g.PBKDF2(e,r,{keySize:6,iterations:100}),s=g.enc.Hex.parse(t),o=g.TripleDES.encrypt(s,n,{iv:i})+"",a={};return a.ciphertext=o,a.pbkdf2Salt=g.enc.Hex.stringify(r),a.pbkdf2Iter=100,a.encryptionSchemeAlg="DES-EDE3-CBC",a.encryptionSchemeIV=g.enc.Hex.stringify(i),a};if("PKCS8PRV"==e&&null!=y&&t instanceof y&&1==t.isPrivate){var N=m(t).getEncodedHex();A=c({seq:[{int:0},{seq:[{oid:{name:"rsaEncryption"}},{null:!0}]},{octstr:{hex:N}}]}).getEncodedHex();return void 0===r||null==r?ft(A,"PRIVATE KEY"):ft(S=P(A,r),"ENCRYPTED PRIVATE KEY")}if("PKCS8PRV"==e&&void 0!==v&&t instanceof v&&1==t.isPrivate){N=new c({seq:[{int:1},{octstr:{hex:t.prvKeyHex}},{tag:["a1",!0,{bitstr:{hex:"00"+t.pubKeyHex}}]}]}).getEncodedHex(),A=c({seq:[{int:0},{seq:[{oid:{name:"ecPublicKey"}},{oid:{name:t.curveName}}]},{octstr:{hex:N}}]}).getEncodedHex();return void 0===r||null==r?ft(A,"PRIVATE KEY"):ft(S=P(A,r),"ENCRYPTED PRIVATE KEY")}if("PKCS8PRV"==e&&void 0!==p&&t instanceof p&&1==t.isPrivate){N=new h({bigint:t.x}).getEncodedHex(),A=c({seq:[{int:0},{seq:[{oid:{name:"dsa"}},{seq:[{int:{bigint:t.p}},{int:{bigint:t.q}},{int:{bigint:t.g}}]}]},{octstr:{hex:N}}]}).getEncodedHex();return void 0===r||null==r?ft(A,"PRIVATE KEY"):ft(S=P(A,r),"ENCRYPTED PRIVATE KEY")}throw new Error("unsupported object nor format")},Rt.getKeyFromCSRPEM=function(t){var e=dt(t,"CERTIFICATE REQUEST");return Rt.getKeyFromCSRHex(e)},Rt.getKeyFromCSRHex=function(t){var e=Rt.parseCSRHex(t);return Rt.getKey(e.p8pubkeyhex,null,"pkcs8pub")},Rt.parseCSRHex=function(t){var e=Tt,r=e.getChildIdx,i=e.getTLV,n={},s=t;if("30"!=s.substr(0,2))throw"malformed CSR(code:001)";var o=r(s,0);if(o.length<1)throw"malformed CSR(code:002)";if("30"!=s.substr(o[0],2))throw"malformed CSR(code:003)";var a=r(s,o[0]);if(a.length<3)throw"malformed CSR(code:004)";return n.p8pubkeyhex=i(s,a[2]),n},Rt.getKeyID=function(t){var e=Rt,r=Tt;"string"==typeof t&&-1!=t.indexOf("BEGIN ")&&(t=e.getKey(t));var i=dt(e.getPEM(t)),n=r.getIdxbyList(i,0,[1]),s=r.getV(i,n).substring(2);return d.crypto.Util.hashHex(s,"sha1")},Rt.getJWKFromKey=function(t){var e={};if(t instanceof tt&&t.isPrivate)return e.kty="RSA",e.n=st(t.n.toString(16)),e.e=st(t.e.toString(16)),e.d=st(t.d.toString(16)),e.p=st(t.p.toString(16)),e.q=st(t.q.toString(16)),e.dp=st(t.dmp1.toString(16)),e.dq=st(t.dmq1.toString(16)),e.qi=st(t.coeff.toString(16)),e;if(t instanceof tt&&t.isPublic)return e.kty="RSA",e.n=st(t.n.toString(16)),e.e=st(t.e.toString(16)),e;if(t instanceof d.crypto.ECDSA&&t.isPrivate){if("P-256"!==(i=t.getShortNISTPCurveName())&&"P-384"!==i)throw"unsupported curve name for JWT: "+i;var r=t.getPublicKeyXYHex();return e.kty="EC",e.crv=i,e.x=st(r.x),e.y=st(r.y),e.d=st(t.prvKeyHex),e}if(t instanceof d.crypto.ECDSA&&t.isPublic){var i;if("P-256"!==(i=t.getShortNISTPCurveName())&&"P-384"!==i)throw"unsupported curve name for JWT: "+i;r=t.getPublicKeyXYHex();return e.kty="EC",e.crv=i,e.x=st(r.x),e.y=st(r.y),e}throw"not supported key object"},void 0!==d.asn1&&d.asn1||(d.asn1={}),d.asn1.ASN1Util=new function(){this.integerToByteHex=function(t){var e=t.toString(16);return e.length%2==1&&(e="0"+e),e},this.bigIntToMinTwosComplementsHex=function(t){var e=t.toString(16);if("-"!=e.substr(0,1))e.length%2==1?e="0"+e:e.match(/^[0-7]/)||(e="00"+e);else{var r=e.substr(1).length;r%2==1?r+=1:e.match(/^[0-7]/)||(r+=2);for(var i="",n=0;n<r;n++)i+="f";e=new v(i,16).xor(t).add(v.ONE).toString(16).replace(/^-/,"")}return e},this.getPEMStringFromHex=function(t,e){return ft(t,e)},this.newObject=function(t){var e=d.asn1,r=e.ASN1Object,i=e.DERBoolean,n=e.DERInteger,s=e.DERBitString,o=e.DEROctetString,a=e.DERNull,u=e.DERObjectIdentifier,h=e.DEREnumerated,c=e.DERUTF8String,l=e.DERNumericString,f=e.DERPrintableString,p=e.DERTeletexString,g=e.DERIA5String,v=e.DERUTCTime,y=e.DERGeneralizedTime,m=e.DERVisibleString,x=e.DERBMPString,b=e.DERSequence,E=e.DERSet,S=e.DERTaggedObject,w=e.ASN1Util.newObject;if(t instanceof e.ASN1Object)return t;var A=Object.keys(t);if(1!=A.length)throw new Error("key of param shall be only one.");var P=A[0];if(-1==":asn1:bool:int:bitstr:octstr:null:oid:enum:utf8str:numstr:prnstr:telstr:ia5str:utctime:gentime:visstr:bmpstr:seq:set:tag:".indexOf(":"+P+":"))throw new Error("undefined key: "+P);if("bool"==P)return new i(t[P]);if("int"==P)return new n(t[P]);if("bitstr"==P)return new s(t[P]);if("octstr"==P)return new o(t[P]);if("null"==P)return new a(t[P]);if("oid"==P)return new u(t[P]);if("enum"==P)return new h(t[P]);if("utf8str"==P)return new c(t[P]);if("numstr"==P)return new l(t[P]);if("prnstr"==P)return new f(t[P]);if("telstr"==P)return new p(t[P]);if("ia5str"==P)return new g(t[P]);if("utctime"==P)return new v(t[P]);if("gentime"==P)return new y(t[P]);if("visstr"==P)return new m(t[P]);if("bmpstr"==P)return new x(t[P]);if("asn1"==P)return new r(t[P]);if("seq"==P){for(var D=t[P],N=[],R=0;R<D.length;R++){var T=w(D[R]);N.push(T)}return new b({array:N})}if("set"==P){for(D=t[P],N=[],R=0;R<D.length;R++){T=w(D[R]);N.push(T)}return new E({array:N})}if("tag"==P){var C=t[P];if("[object Array]"===Object.prototype.toString.call(C)&&3==C.length){var I=w(C[2]);return new S({tag:C[0],explicit:C[1],obj:I})}return new S(C)}},this.jsonToASN1HEX=function(t){return this.newObject(t).getEncodedHex()}},d.asn1.ASN1Util.oidHexToInt=function(t){for(var e="",r=parseInt(t.substr(0,2),16),i=(e=Math.floor(r/40)+"."+r%40,""),n=2;n<t.length;n+=2){var s=("00000000"+parseInt(t.substr(n,2),16).toString(2)).slice(-8);if(i+=s.substr(1,7),"0"==s.substr(0,1))e=e+"."+new v(i,2).toString(10),i=""}return e},d.asn1.ASN1Util.oidIntToHex=function(t){var e=function(t){var e=t.toString(16);return 1==e.length&&(e="0"+e),e},r=function(t){var r="",i=new v(t,10).toString(2),n=7-i.length%7;7==n&&(n=0);for(var s="",o=0;o<n;o++)s+="0";i=s+i;for(o=0;o<i.length-1;o+=7){var a=i.substr(o,7);o!=i.length-7&&(a="1"+a),r+=e(parseInt(a,2))}return r};if(!t.match(/^[0-9.]+$/))throw"malformed oid string: "+t;var i="",n=t.split("."),s=40*parseInt(n[0])+parseInt(n[1]);i+=e(s),n.splice(0,2);for(var o=0;o<n.length;o++)i+=r(n[o]);return i},d.asn1.ASN1Object=function(t){this.params=null,this.getLengthHexFromValue=function(){if(void 0===this.hV||null==this.hV)throw new Error("this.hV is null or undefined");if(this.hV.length%2==1)throw new Error("value hex must be even length: n="+"".length+",v="+this.hV);var t=this.hV.length/2,e=t.toString(16);if(e.length%2==1&&(e="0"+e),t<128)return e;var r=e.length/2;if(r>15)throw"ASN.1 length too long to represent by 8x: n = "+t.toString(16);return(128+r).toString(16)+e},this.getEncodedHex=function(){return(null==this.hTLV||this.isModified)&&(this.hV=this.getFreshValueHex(),this.hL=this.getLengthHexFromValue(),this.hTLV=this.hT+this.hL+this.hV,this.isModified=!1),this.hTLV},this.getValueHex=function(){return this.getEncodedHex(),this.hV},this.getFreshValueHex=function(){return""},this.setByParam=function(t){this.params=t},null!=t&&null!=t.tlv&&(this.hTLV=t.tlv,this.isModified=!1)},d.asn1.DERAbstractString=function(t){d.asn1.DERAbstractString.superclass.constructor.call(this),this.getString=function(){return this.s},this.setString=function(t){this.hTLV=null,this.isModified=!0,this.s=t,this.hV=at(this.s).toLowerCase()},this.setStringHex=function(t){this.hTLV=null,this.isModified=!0,this.s=null,this.hV=t},this.getFreshValueHex=function(){return this.hV},void 0!==t&&("string"==typeof t?this.setString(t):void 0!==t.str?this.setString(t.str):void 0!==t.hex&&this.setStringHex(t.hex))},p.lang.extend(d.asn1.DERAbstractString,d.asn1.ASN1Object),d.asn1.DERAbstractTime=function(t){d.asn1.DERAbstractTime.superclass.constructor.call(this),this.localDateToUTC=function(t){var e=t.getTime()+6e4*t.getTimezoneOffset();return new Date(e)},this.formatDate=function(t,e,r){var i=this.zeroPadding,n=this.localDateToUTC(t),s=String(n.getFullYear());"utc"==e&&(s=s.substr(2,2));var o=s+i(String(n.getMonth()+1),2)+i(String(n.getDate()),2)+i(String(n.getHours()),2)+i(String(n.getMinutes()),2)+i(String(n.getSeconds()),2);if(!0===r){var a=n.getMilliseconds();if(0!=a){var u=i(String(a),3);o=o+"."+(u=u.replace(/[0]+$/,""))}}return o+"Z"},this.zeroPadding=function(t,e){return t.length>=e?t:new Array(e-t.length+1).join("0")+t},this.getString=function(){return this.s},this.setString=function(t){this.hTLV=null,this.isModified=!0,this.s=t,this.hV=it(t)},this.setByDateValue=function(t,e,r,i,n,s){var o=new Date(Date.UTC(t,e-1,r,i,n,s,0));this.setByDate(o)},this.getFreshValueHex=function(){return this.hV}},p.lang.extend(d.asn1.DERAbstractTime,d.asn1.ASN1Object),d.asn1.DERAbstractStructured=function(t){d.asn1.DERAbstractString.superclass.constructor.call(this),this.setByASN1ObjectArray=function(t){this.hTLV=null,this.isModified=!0,this.asn1Array=t},this.appendASN1Object=function(t){this.hTLV=null,this.isModified=!0,this.asn1Array.push(t)},this.asn1Array=new Array,void 0!==t&&void 0!==t.array&&(this.asn1Array=t.array)},p.lang.extend(d.asn1.DERAbstractStructured,d.asn1.ASN1Object),d.asn1.DERBoolean=function(t){d.asn1.DERBoolean.superclass.constructor.call(this),this.hT="01",this.hTLV=0==t?"010100":"0101ff"},p.lang.extend(d.asn1.DERBoolean,d.asn1.ASN1Object),d.asn1.DERInteger=function(t){d.asn1.DERInteger.superclass.constructor.call(this),this.hT="02",this.setByBigInteger=function(t){this.hTLV=null,this.isModified=!0,this.hV=d.asn1.ASN1Util.bigIntToMinTwosComplementsHex(t)},this.setByInteger=function(t){var e=new v(String(t),10);this.setByBigInteger(e)},this.setValueHex=function(t){this.hV=t},this.getFreshValueHex=function(){return this.hV},void 0!==t&&(void 0!==t.bigint?this.setByBigInteger(t.bigint):void 0!==t.int?this.setByInteger(t.int):"number"==typeof t?this.setByInteger(t):void 0!==t.hex&&this.setValueHex(t.hex))},p.lang.extend(d.asn1.DERInteger,d.asn1.ASN1Object),d.asn1.DERBitString=function(t){if(void 0!==t&&void 0!==t.obj){var e=d.asn1.ASN1Util.newObject(t.obj);t.hex="00"+e.getEncodedHex()}d.asn1.DERBitString.superclass.constructor.call(this),this.hT="03",this.setHexValueIncludingUnusedBits=function(t){this.hTLV=null,this.isModified=!0,this.hV=t},this.setUnusedBitsAndHexValue=function(t,e){if(t<0||7<t)throw"unused bits shall be from 0 to 7: u = "+t;var r="0"+t;this.hTLV=null,this.isModified=!0,this.hV=r+e},this.setByBinaryString=function(t){var e=8-(t=t.replace(/0+$/,"")).length%8;8==e&&(e=0);for(var r=0;r<=e;r++)t+="0";var i="";for(r=0;r<t.length-1;r+=8){var n=t.substr(r,8),s=parseInt(n,2).toString(16);1==s.length&&(s="0"+s),i+=s}this.hTLV=null,this.isModified=!0,this.hV="0"+e+i},this.setByBooleanArray=function(t){for(var e="",r=0;r<t.length;r++)1==t[r]?e+="1":e+="0";this.setByBinaryString(e)},this.newFalseArray=function(t){for(var e=new Array(t),r=0;r<t;r++)e[r]=!1;return e},this.getFreshValueHex=function(){return this.hV},void 0!==t&&("string"==typeof t&&t.toLowerCase().match(/^[0-9a-f]+$/)?this.setHexValueIncludingUnusedBits(t):void 0!==t.hex?this.setHexValueIncludingUnusedBits(t.hex):void 0!==t.bin?this.setByBinaryString(t.bin):void 0!==t.array&&this.setByBooleanArray(t.array))},p.lang.extend(d.asn1.DERBitString,d.asn1.ASN1Object),d.asn1.DEROctetString=function(t){if(void 0!==t&&void 0!==t.obj){var e=d.asn1.ASN1Util.newObject(t.obj);t.hex=e.getEncodedHex()}d.asn1.DEROctetString.superclass.constructor.call(this,t),this.hT="04"},p.lang.extend(d.asn1.DEROctetString,d.asn1.DERAbstractString),d.asn1.DERNull=function(){d.asn1.DERNull.superclass.constructor.call(this),this.hT="05",this.hTLV="0500"},p.lang.extend(d.asn1.DERNull,d.asn1.ASN1Object),d.asn1.DERObjectIdentifier=function(t){d.asn1.DERObjectIdentifier.superclass.constructor.call(this),this.hT="06",this.setValueHex=function(t){this.hTLV=null,this.isModified=!0,this.s=null,this.hV=t},this.setValueOidString=function(t){var e=function(t){var e=function(t){var e=t.toString(16);return 1==e.length&&(e="0"+e),e},r=function(t){var r="",i=parseInt(t,10).toString(2),n=7-i.length%7;7==n&&(n=0);for(var s="",o=0;o<n;o++)s+="0";for(i=s+i,o=0;o<i.length-1;o+=7){var a=i.substr(o,7);o!=i.length-7&&(a="1"+a),r+=e(parseInt(a,2))}return r};try{if(!t.match(/^[0-9.]+$/))return null;var i="",n=t.split("."),s=40*parseInt(n[0],10)+parseInt(n[1],10);i+=e(s),n.splice(0,2);for(var o=0;o<n.length;o++)i+=r(n[o]);return i}catch(t){return null}}(t);if(null==e)throw new Error("malformed oid string: "+t);this.hTLV=null,this.isModified=!0,this.s=null,this.hV=e},this.setValueName=function(t){var e=d.asn1.x509.OID.name2oid(t);if(""===e)throw new Error("DERObjectIdentifier oidName undefined: "+t);this.setValueOidString(e)},this.setValueNameOrOid=function(t){t.match(/^[0-2].[0-9.]+$/)?this.setValueOidString(t):this.setValueName(t)},this.getFreshValueHex=function(){return this.hV},this.setByParam=function(t){"string"==typeof t?this.setValueNameOrOid(t):void 0!==t.oid?this.setValueNameOrOid(t.oid):void 0!==t.name?this.setValueNameOrOid(t.name):void 0!==t.hex&&this.setValueHex(t.hex)},void 0!==t&&this.setByParam(t)},p.lang.extend(d.asn1.DERObjectIdentifier,d.asn1.ASN1Object),d.asn1.DEREnumerated=function(t){d.asn1.DEREnumerated.superclass.constructor.call(this),this.hT="0a",this.setByBigInteger=function(t){this.hTLV=null,this.isModified=!0,this.hV=d.asn1.ASN1Util.bigIntToMinTwosComplementsHex(t)},this.setByInteger=function(t){var e=new v(String(t),10);this.setByBigInteger(e)},this.setValueHex=function(t){this.hV=t},this.getFreshValueHex=function(){return this.hV},void 0!==t&&(void 0!==t.int?this.setByInteger(t.int):"number"==typeof t?this.setByInteger(t):void 0!==t.hex&&this.setValueHex(t.hex))},p.lang.extend(d.asn1.DEREnumerated,d.asn1.ASN1Object),d.asn1.DERUTF8String=function(t){d.asn1.DERUTF8String.superclass.constructor.call(this,t),this.hT="0c"},p.lang.extend(d.asn1.DERUTF8String,d.asn1.DERAbstractString),d.asn1.DERNumericString=function(t){d.asn1.DERNumericString.superclass.constructor.call(this,t),this.hT="12"},p.lang.extend(d.asn1.DERNumericString,d.asn1.DERAbstractString),d.asn1.DERPrintableString=function(t){d.asn1.DERPrintableString.superclass.constructor.call(this,t),this.hT="13"},p.lang.extend(d.asn1.DERPrintableString,d.asn1.DERAbstractString),d.asn1.DERTeletexString=function(t){d.asn1.DERTeletexString.superclass.constructor.call(this,t),this.hT="14"},p.lang.extend(d.asn1.DERTeletexString,d.asn1.DERAbstractString),d.asn1.DERIA5String=function(t){d.asn1.DERIA5String.superclass.constructor.call(this,t),this.hT="16"},p.lang.extend(d.asn1.DERIA5String,d.asn1.DERAbstractString),d.asn1.DERVisibleString=function(t){d.asn1.DERIA5String.superclass.constructor.call(this,t),this.hT="1a"},p.lang.extend(d.asn1.DERVisibleString,d.asn1.DERAbstractString),d.asn1.DERBMPString=function(t){d.asn1.DERBMPString.superclass.constructor.call(this,t),this.hT="1e"},p.lang.extend(d.asn1.DERBMPString,d.asn1.DERAbstractString),d.asn1.DERUTCTime=function(t){d.asn1.DERUTCTime.superclass.constructor.call(this,t),this.hT="17",this.setByDate=function(t){this.hTLV=null,this.isModified=!0,this.date=t,this.s=this.formatDate(this.date,"utc"),this.hV=it(this.s)},this.getFreshValueHex=function(){return void 0===this.date&&void 0===this.s&&(this.date=new Date,this.s=this.formatDate(this.date,"utc"),this.hV=it(this.s)),this.hV},void 0!==t&&(void 0!==t.str?this.setString(t.str):"string"==typeof t&&t.match(/^[0-9]{12}Z$/)?this.setString(t):void 0!==t.hex?this.setStringHex(t.hex):void 0!==t.date&&this.setByDate(t.date))},p.lang.extend(d.asn1.DERUTCTime,d.asn1.DERAbstractTime),d.asn1.DERGeneralizedTime=function(t){d.asn1.DERGeneralizedTime.superclass.constructor.call(this,t),this.hT="18",this.withMillis=!1,this.setByDate=function(t){this.hTLV=null,this.isModified=!0,this.date=t,this.s=this.formatDate(this.date,"gen",this.withMillis),this.hV=it(this.s)},this.getFreshValueHex=function(){return void 0===this.date&&void 0===this.s&&(this.date=new Date,this.s=this.formatDate(this.date,"gen",this.withMillis),this.hV=it(this.s)),this.hV},void 0!==t&&(void 0!==t.str?this.setString(t.str):"string"==typeof t&&t.match(/^[0-9]{14}Z$/)?this.setString(t):void 0!==t.hex?this.setStringHex(t.hex):void 0!==t.date&&this.setByDate(t.date),!0===t.millis&&(this.withMillis=!0))},p.lang.extend(d.asn1.DERGeneralizedTime,d.asn1.DERAbstractTime),d.asn1.DERSequence=function(t){d.asn1.DERSequence.superclass.constructor.call(this,t),this.hT="30",this.getFreshValueHex=function(){for(var t="",e=0;e<this.asn1Array.length;e++){t+=this.asn1Array[e].getEncodedHex()}return this.hV=t,this.hV}},p.lang.extend(d.asn1.DERSequence,d.asn1.DERAbstractStructured),d.asn1.DERSet=function(t){d.asn1.DERSet.superclass.constructor.call(this,t),this.hT="31",this.sortFlag=!0,this.getFreshValueHex=function(){for(var t=new Array,e=0;e<this.asn1Array.length;e++){var r=this.asn1Array[e];t.push(r.getEncodedHex())}return 1==this.sortFlag&&t.sort(),this.hV=t.join(""),this.hV},void 0!==t&&void 0!==t.sortflag&&0==t.sortflag&&(this.sortFlag=!1)},p.lang.extend(d.asn1.DERSet,d.asn1.DERAbstractStructured),d.asn1.DERTaggedObject=function(t){d.asn1.DERTaggedObject.superclass.constructor.call(this);var e=d.asn1;this.hT="a0",this.hV="",this.isExplicit=!0,this.asn1Object=null,this.setASN1Object=function(t,e,r){this.hT=e,this.isExplicit=t,this.asn1Object=r,this.isExplicit?(this.hV=this.asn1Object.getEncodedHex(),this.hTLV=null,this.isModified=!0):(this.hV=null,this.hTLV=r.getEncodedHex(),this.hTLV=this.hTLV.replace(/^../,e),this.isModified=!1)},this.getFreshValueHex=function(){return this.hV},this.setByParam=function(t){null!=t.tag&&(this.hT=t.tag),null!=t.explicit&&(this.isExplicit=t.explicit),null!=t.tage&&(this.hT=t.tage,this.isExplicit=!0),null!=t.tagi&&(this.hT=t.tagi,this.isExplicit=!1),null!=t.obj&&(t.obj instanceof e.ASN1Object?(this.asn1Object=t.obj,this.setASN1Object(this.isExplicit,this.hT,this.asn1Object)):"object"==typeof t.obj&&(this.asn1Object=e.ASN1Util.newObject(t.obj),this.setASN1Object(this.isExplicit,this.hT,this.asn1Object)))},null!=t&&this.setByParam(t)},p.lang.extend(d.asn1.DERTaggedObject,d.asn1.ASN1Object);var Tt=new function(){};function Ct(t,e){for(var r="",i=e/4-t.length,n=0;n<i;n++)r+="0";return r+t}function It(t,e,r){for(var i="",n=0;i.length<e;)i+=ht(r(ct(t+String.fromCharCode.apply(String,[(4278190080&n)>>24,(16711680&n)>>16,(65280&n)>>8,255&n])))),n+=1;return i}function Ot(t){for(var e in d.crypto.Util.DIGESTINFOHEAD){var r=d.crypto.Util.DIGESTINFOHEAD[e],i=r.length;if(t.substring(0,i)==r)return[e,t.substring(i)]}return[]}function Vt(t){var e,r=Tt,i=r.getChildIdx,n=r.getV,s=r.getTLV,o=r.getVbyList,a=r.getVbyListEx,u=r.getTLVbyList,h=r.getTLVbyListEx,c=r.getIdxbyList,l=r.getIdxbyListEx,f=r.getVidx,p=r.getInt,g=r.oidname,v=r.hextooidstr,y=dt;try{e=d.asn1.x509.AlgorithmIdentifier.PSSNAME2ASN1TLV}catch(t){}this.HEX2STAG={"0c":"utf8",13:"prn",16:"ia5","1a":"vis","1e":"bmp"},this.hex=null,this.version=0,this.foffset=0,this.aExtInfo=null,this.getVersion=function(){if(null===this.hex||0!==this.version)return this.version;var t=u(this.hex,0,[0,0]);if("a0"==t.substr(0,2)){var e=u(t,0,[0]),r=p(e,0);if(r<0||2<r)throw new Error("malformed version field");return this.version=r+1,this.version}return this.version=1,this.foffset=-1,1},this.getSerialNumberHex=function(){return a(this.hex,0,[0,0],"02")},this.getSignatureAlgorithmField=function(){var t=h(this.hex,0,[0,1]);return this.getAlgorithmIdentifierName(t)},this.getAlgorithmIdentifierName=function(t){for(var r in e)if(t===e[r])return r;return g(a(t,0,[0],"06"))},this.getIssuer=function(){return this.getX500Name(this.getIssuerHex())},this.getIssuerHex=function(){return u(this.hex,0,[0,3+this.foffset],"30")},this.getIssuerString=function(){return this.getIssuer().str},this.getSubject=function(){return this.getX500Name(this.getSubjectHex())},this.getSubjectHex=function(){return u(this.hex,0,[0,5+this.foffset],"30")},this.getSubjectString=function(){return this.getSubject().str},this.getNotBefore=function(){var t=o(this.hex,0,[0,4+this.foffset,0]);return t=t.replace(/(..)/g,"%$1"),t=decodeURIComponent(t)},this.getNotAfter=function(){var t=o(this.hex,0,[0,4+this.foffset,1]);return t=t.replace(/(..)/g,"%$1"),t=decodeURIComponent(t)},this.getPublicKeyHex=function(){return r.getTLVbyList(this.hex,0,[0,6+this.foffset],"30")},this.getPublicKeyIdx=function(){return c(this.hex,0,[0,6+this.foffset],"30")},this.getPublicKeyContentIdx=function(){var t=this.getPublicKeyIdx();return c(this.hex,t,[1,0],"30")},this.getPublicKey=function(){return Rt.getKey(this.getPublicKeyHex(),null,"pkcs8pub")},this.getSignatureAlgorithmName=function(){var t=u(this.hex,0,[1],"30");return this.getAlgorithmIdentifierName(t)},this.getSignatureValueHex=function(){return o(this.hex,0,[2],"03",!0)},this.verifySignature=function(t){var e=this.getSignatureAlgorithmField(),r=this.getSignatureValueHex(),i=u(this.hex,0,[0],"30"),n=new d.crypto.Signature({alg:e});return n.init(t),n.updateHex(i),n.verify(r)},this.parseExt=function(t){var e,s,a;if(void 0===t){if(a=this.hex,3!==this.version)return-1;e=c(a,0,[0,7,0],"30"),s=i(a,e)}else{a=dt(t);var u=c(a,0,[0,3,0,0],"06");if("2a864886f70d01090e"!=n(a,u))return void(this.aExtInfo=new Array);e=c(a,0,[0,3,0,1,0],"30"),s=i(a,e),this.hex=a}this.aExtInfo=new Array;for(var h=0;h<s.length;h++){var l={critical:!1},d=0;3===i(a,s[h]).length&&(l.critical=!0,d=1),l.oid=r.hextooidstr(o(a,s[h],[0],"06"));var p=c(a,s[h],[1+d]);l.vidx=f(a,p),this.aExtInfo.push(l)}},this.getExtInfo=function(t){var e=this.aExtInfo,r=t;if(t.match(/^[0-9.]+$/)||(r=d.asn1.x509.OID.name2oid(t)),""!==r)for(var i=0;i<e.length;i++)if(e[i].oid===r)return e[i]},this.getExtBasicConstraints=function(t,e){if(void 0===t&&void 0===e){var r=this.getExtInfo("basicConstraints");if(void 0===r)return;t=s(this.hex,r.vidx),e=r.critical}var i={extname:"basicConstraints"};if(e&&(i.critical=!0),"3000"===t)return i;if("30030101ff"===t)return i.cA=!0,i;if("30060101ff02"===t.substr(0,12)){var o=n(t,10),a=parseInt(o,16);return i.cA=!0,i.pathLen=a,i}throw new Error("hExtV parse error: "+t)},this.getExtKeyUsage=function(t,e){if(void 0===t&&void 0===e){var r=this.getExtInfo("keyUsage");if(void 0===r)return;t=s(this.hex,r.vidx),e=r.critical}var i={extname:"keyUsage"};return e&&(i.critical=!0),i.names=this.getExtKeyUsageString(t).split(","),i},this.getExtKeyUsageBin=function(t){if(void 0===t){var e=this.getExtInfo("keyUsage");if(void 0===e)return"";t=s(this.hex,e.vidx)}if(8!=t.length&&10!=t.length)throw new Error("malformed key usage value: "+t);var r="000000000000000"+parseInt(t.substr(6),16).toString(2);return 8==t.length&&(r=r.slice(-8)),10==t.length&&(r=r.slice(-16)),""==(r=r.replace(/0+$/,""))&&(r="0"),r},this.getExtKeyUsageString=function(t){for(var e=this.getExtKeyUsageBin(t),r=new Array,i=0;i<e.length;i++)"1"==e.substr(i,1)&&r.push(Vt.KEYUSAGE_NAME[i]);return r.join(",")},this.getExtSubjectKeyIdentifier=function(t,e){if(void 0===t&&void 0===e){var r=this.getExtInfo("subjectKeyIdentifier");if(void 0===r)return;t=s(this.hex,r.vidx),e=r.critical}var i={extname:"subjectKeyIdentifier"};e&&(i.critical=!0);var o=n(t,0);return i.kid={hex:o},i},this.getExtAuthorityKeyIdentifier=function(t,e){if(void 0===t&&void 0===e){var r=this.getExtInfo("authorityKeyIdentifier");if(void 0===r)return;t=s(this.hex,r.vidx),e=r.critical}var o={extname:"authorityKeyIdentifier"};e&&(o.critical=!0);for(var a=i(t,0),u=0;u<a.length;u++){var h=t.substr(a[u],2);if("80"===h&&(o.kid={hex:n(t,a[u])}),"a1"===h){var c=s(t,a[u]),l=this.getGeneralNames(c);o.issuer=l[0].dn}"82"===h&&(o.sn={hex:n(t,a[u])})}return o},this.getExtExtKeyUsage=function(t,e){if(void 0===t&&void 0===e){var r=this.getExtInfo("extKeyUsage");if(void 0===r)return;t=s(this.hex,r.vidx),e=r.critical}var o={extname:"extKeyUsage",array:[]};e&&(o.critical=!0);for(var a=i(t,0),u=0;u<a.length;u++)o.array.push(g(n(t,a[u])));return o},this.getExtExtKeyUsageName=function(){var t=this.getExtInfo("extKeyUsage");if(void 0===t)return t;var e=new Array,r=s(this.hex,t.vidx);if(""===r)return e;for(var o=i(r,0),a=0;a<o.length;a++)e.push(g(n(r,o[a])));return e},this.getExtSubjectAltName=function(t,e){if(void 0===t&&void 0===e){var r=this.getExtInfo("subjectAltName");if(void 0===r)return;t=s(this.hex,r.vidx),e=r.critical}var i={extname:"subjectAltName",array:[]};return e&&(i.critical=!0),i.array=this.getGeneralNames(t),i},this.getExtIssuerAltName=function(t,e){if(void 0===t&&void 0===e){var r=this.getExtInfo("issuerAltName");if(void 0===r)return;t=s(this.hex,r.vidx),e=r.critical}var i={extname:"issuerAltName",array:[]};return e&&(i.critical=!0),i.array=this.getGeneralNames(t),i},this.getGeneralNames=function(t){for(var e=i(t,0),r=[],n=0;n<e.length;n++){var o=this.getGeneralName(s(t,e[n]));void 0!==o&&r.push(o)}return r},this.getGeneralName=function(t){var e=t.substr(0,2),r=n(t,0),i=ht(r);return"81"==e?{rfc822:i}:"82"==e?{dns:i}:"86"==e?{uri:i}:"87"==e?{ip:pt(r)}:"a4"==e?{dn:this.getX500Name(r)}:void 0},this.getExtSubjectAltName2=function(){var t,e,r,o=this.getExtInfo("subjectAltName");if(void 0===o)return o;for(var a=new Array,u=s(this.hex,o.vidx),h=i(u,0),c=0;c<h.length;c++)r=u.substr(h[c],2),t=n(u,h[c]),"81"===r&&(e=ut(t),a.push(["MAIL",e])),"82"===r&&(e=ut(t),a.push(["DNS",e])),"84"===r&&(e=Vt.hex2dn(t,0),a.push(["DN",e])),"86"===r&&(e=ut(t),a.push(["URI",e])),"87"===r&&(e=pt(t),a.push(["IP",e]));return a},this.getExtCRLDistributionPoints=function(t,e){if(void 0===t&&void 0===e){var r=this.getExtInfo("cRLDistributionPoints");if(void 0===r)return;t=s(this.hex,r.vidx),e=r.critical}var n={extname:"cRLDistributionPoints",array:[]};e&&(n.critical=!0);for(var o=i(t,0),a=0;a<o.length;a++){var u=s(t,o[a]);n.array.push(this.getDistributionPoint(u))}return n},this.getDistributionPoint=function(t){for(var e={},r=i(t,0),n=0;n<r.length;n++){var o=t.substr(r[n],2),a=s(t,r[n]);"a0"==o&&(e.dpname=this.getDistributionPointName(a))}return e},this.getDistributionPointName=function(t){for(var e={},r=i(t,0),n=0;n<r.length;n++){var o=t.substr(r[n],2),a=s(t,r[n]);"a0"==o&&(e.full=this.getGeneralNames(a))}return e},this.getExtCRLDistributionPointsURI=function(){var t=this.getExtInfo("cRLDistributionPoints");if(void 0===t)return t;for(var e=new Array,r=i(this.hex,t.vidx),n=0;n<r.length;n++)try{var s=ut(o(this.hex,r[n],[0,0,0],"86"));e.push(s)}catch(t){}return e},this.getExtAIAInfo=function(){var t=this.getExtInfo("authorityInfoAccess");if(void 0===t)return t;for(var e={ocsp:[],caissuer:[]},r=i(this.hex,t.vidx),n=0;n<r.length;n++){var s=o(this.hex,r[n],[0],"06"),a=o(this.hex,r[n],[1],"86");"2b06010505073001"===s&&e.ocsp.push(ut(a)),"2b06010505073002"===s&&e.caissuer.push(ut(a))}return e},this.getExtAuthorityInfoAccess=function(t,e){if(void 0===t&&void 0===e){var r=this.getExtInfo("authorityInfoAccess");if(void 0===r)return;t=s(this.hex,r.vidx),e=r.critical}var n={extname:"authorityInfoAccess",array:[]};e&&(n.critical=!0);for(var u=i(t,0),h=0;h<u.length;h++){var c=a(t,u[h],[0],"06"),l=ut(o(t,u[h],[1],"86"));if("2b06010505073001"==c)n.array.push({ocsp:l});else{if("2b06010505073002"!=c)throw new Error("unknown method: "+c);n.array.push({caissuer:l})}}return n},this.getExtCertificatePolicies=function(t,e){if(void 0===t&&void 0===e){var r=this.getExtInfo("certificatePolicies");if(void 0===r)return;t=s(this.hex,r.vidx),e=r.critical}var n={extname:"certificatePolicies",array:[]};e&&(n.critical=!0);for(var o=i(t,0),a=0;a<o.length;a++){var u=s(t,o[a]),h=this.getPolicyInformation(u);n.array.push(h)}return n},this.getPolicyInformation=function(t){var e={},r=o(t,0,[0],"06");e.policyoid=g(r);var n=l(t,0,[1],"30");if(-1!=n){e.array=[];for(var a=i(t,n),u=0;u<a.length;u++){var h=s(t,a[u]),c=this.getPolicyQualifierInfo(h);e.array.push(c)}}return e},this.getPolicyQualifierInfo=function(t){var e={},r=o(t,0,[0],"06");if("2b06010505070201"===r){var i=a(t,0,[1],"16");e.cps=ht(i)}else if("2b06010505070202"===r){var n=u(t,0,[1],"30");e.unotice=this.getUserNotice(n)}return e},this.getUserNotice=function(t){for(var e={},r=i(t,0),n=0;n<r.length;n++){var o=s(t,r[n]);"30"!=o.substr(0,2)&&(e.exptext=this.getDisplayText(o))}return e},this.getDisplayText=function(t){var e={};return e.type={"0c":"utf8",16:"ia5","1a":"vis","1e":"bmp"}[t.substr(0,2)],e.str=ht(n(t,0)),e},this.getExtCRLNumber=function(t,e){var r={extname:"cRLNumber"};if(e&&(r.critical=!0),"02"==t.substr(0,2))return r.num={hex:n(t,0)},r;throw new Error("hExtV parse error: "+t)},this.getExtCRLReason=function(t,e){var r={extname:"cRLReason"};if(e&&(r.critical=!0),"0a"==t.substr(0,2))return r.code=parseInt(n(t,0),16),r;throw new Error("hExtV parse error: "+t)},this.getExtOcspNonce=function(t,e){var r={extname:"ocspNonce"};e&&(r.critical=!0);var i=n(t,0);return r.hex=i,r},this.getExtOcspNoCheck=function(t,e){var r={extname:"ocspNoCheck"};return e&&(r.critical=!0),r},this.getExtAdobeTimeStamp=function(t,e){if(void 0===t&&void 0===e){var r=this.getExtInfo("adobeTimeStamp");if(void 0===r)return;t=s(this.hex,r.vidx),e=r.critical}var n={extname:"adobeTimeStamp"};e&&(n.critical=!0);var o=i(t,0);if(o.length>1){var a=s(t,o[1]),u=this.getGeneralName(a);null!=u.uri&&(n.uri=u.uri)}if(o.length>2){var h=s(t,o[2]);"0101ff"==h&&(n.reqauth=!0),"010100"==h&&(n.reqauth=!1)}return n},this.getX500NameRule=function(t){for(var e=null,r=[],i=0;i<t.length;i++)for(var n=t[i],s=0;s<n.length;s++)r.push(n[s]);for(i=0;i<r.length;i++){var o=r[i],a=o.ds,u=o.value,h=o.type;if("prn"!=a&&"utf8"!=a&&"ia5"!=a)return"mixed";if("ia5"==a){if("CN"!=h)return"mixed";if(d.lang.String.isMail(u))continue;return"mixed"}if("C"==h){if("prn"==a)continue;return"mixed"}if(null==e)e=a;else if(e!==a)return"mixed"}return null==e?"prn":e},this.getX500Name=function(t){var e=this.getX500NameArray(t);return{array:e,str:this.dnarraytostr(e)}},this.getX500NameArray=function(t){for(var e=[],r=i(t,0),n=0;n<r.length;n++)e.push(this.getRDN(s(t,r[n])));return e},this.getRDN=function(t){for(var e=[],r=i(t,0),n=0;n<r.length;n++)e.push(this.getAttrTypeAndValue(s(t,r[n])));return e},this.getAttrTypeAndValue=function(t){var e={type:null,value:null,ds:null},r=i(t,0),n=o(t,r[0],[],"06"),s=o(t,r[1],[]),a=d.asn1.ASN1Util.oidHexToInt(n);return e.type=d.asn1.x509.OID.oid2atype(a),e.ds=this.HEX2STAG[t.substr(r[1],2)],"bmp"!=e.ds?e.value=ut(s):e.value=gt(s),e},this.readCertPEM=function(t){this.readCertHex(y(t))},this.readCertHex=function(t){this.hex=t,this.getVersion();try{c(this.hex,0,[0,7],"a3"),this.parseExt()}catch(t){}},this.getParam=function(){var t={};return t.version=this.getVersion(),t.serial={hex:this.getSerialNumberHex()},t.sigalg=this.getSignatureAlgorithmField(),t.issuer=this.getIssuer(),t.notbefore=this.getNotBefore(),t.notafter=this.getNotAfter(),t.subject=this.getSubject(),t.sbjpubkey=ft(this.getPublicKeyHex(),"PUBLIC KEY"),this.aExtInfo.length>0&&(t.ext=this.getExtParamArray()),t.sighex=this.getSignatureValueHex(),t},this.getExtParamArray=function(t){null==t&&(-1!=l(this.hex,0,[0,"[3]"])&&(t=h(this.hex,0,[0,"[3]",0],"30")));for(var e=[],r=i(t,0),n=0;n<r.length;n++){var o=s(t,r[n]),a=this.getExtParam(o);null!=a&&e.push(a)}return e},this.getExtParam=function(t){var e=i(t,0).length;if(2!=e&&3!=e)throw new Error("wrong number elements in Extension: "+e+" "+t);var r=v(o(t,0,[0],"06")),n=!1;3==e&&"0101ff"==u(t,0,[1])&&(n=!0);var s=u(t,0,[e-1,0]),a=void 0;if("2.5.29.14"==r?a=this.getExtSubjectKeyIdentifier(s,n):"2.5.29.15"==r?a=this.getExtKeyUsage(s,n):"2.5.29.17"==r?a=this.getExtSubjectAltName(s,n):"2.5.29.18"==r?a=this.getExtIssuerAltName(s,n):"2.5.29.19"==r?a=this.getExtBasicConstraints(s,n):"2.5.29.31"==r?a=this.getExtCRLDistributionPoints(s,n):"2.5.29.32"==r?a=this.getExtCertificatePolicies(s,n):"2.5.29.35"==r?a=this.getExtAuthorityKeyIdentifier(s,n):"2.5.29.37"==r?a=this.getExtExtKeyUsage(s,n):"1.3.6.1.5.5.7.1.1"==r?a=this.getExtAuthorityInfoAccess(s,n):"2.5.29.20"==r?a=this.getExtCRLNumber(s,n):"2.5.29.21"==r?a=this.getExtCRLReason(s,n):"1.3.6.1.5.5.7.48.1.2"==r?a=this.getExtOcspNonce(s,n):"1.3.6.1.5.5.7.48.1.5"==r?a=this.getExtOcspNoCheck(s,n):"1.2.840.113583.1.1.9.1"==r&&(a=this.getExtAdobeTimeStamp(s,n)),null!=a)return a;var h={extname:r,extn:s};return n&&(h.critical=!0),h},this.findExt=function(t,e){for(var r=0;r<t.length;r++)if(t[r].extname==e)return t[r];return null},this.updateExtCDPFullURI=function(t,e){var r=this.findExt(t,"cRLDistributionPoints");if(null!=r&&null!=r.array)for(var i=r.array,n=0;n<i.length;n++)if(null!=i[n].dpname&&null!=i[n].dpname.full)for(var s=i[n].dpname.full,o=0;o<s.length;o++){var a=s[n];null!=a.uri&&(a.uri=e)}},this.updateExtAIAOCSP=function(t,e){var r=this.findExt(t,"authorityInfoAccess");if(null!=r&&null!=r.array)for(var i=r.array,n=0;n<i.length;n++)null!=i[n].ocsp&&(i[n].ocsp=e)},this.updateExtAIACAIssuer=function(t,e){var r=this.findExt(t,"authorityInfoAccess");if(null!=r&&null!=r.array)for(var i=r.array,n=0;n<i.length;n++)null!=i[n].caissuer&&(i[n].caissuer=e)},this.dnarraytostr=function(t){return"/"+t.map((function(t){return function(t){return t.map((function(t){return function(t){return t.type+"="+t.value}(t).replace(/\+/,"\\+")})).join("+")}(t).replace(/\//,"\\/")})).join("/")},this.getInfo=function(){var t,e,r,i,n=function(t){for(var e="",r=t.array,i=0;i<r.length;i++){var n=r[i];if(e+=" policy oid: "+n.policyoid+"\n",void 0!==n.array)for(var s=0;s<n.array.length;s++){var o=n.array[s];void 0!==o.cps&&(e+=" cps: "+o.cps+"\n")}}return e},s=function(t){for(var e="",r=t.array,i=0;i<r.length;i++){var n=r[i];try{void 0!==n.dpname.full[0].uri&&(e+=" "+n.dpname.full[0].uri+"\n")}catch(t){}try{void 0!==n.dname.full[0].dn.hex&&(e+=" "+Vt.hex2dn(n.dpname.full[0].dn.hex)+"\n")}catch(t){}}return e},o=function(t){for(var e="",r=t.array,i=0;i<r.length;i++){var n=r[i];void 0!==n.caissuer&&(e+=" caissuer: "+n.caissuer+"\n"),void 0!==n.ocsp&&(e+=" ocsp: "+n.ocsp+"\n")}return e};if(t="Basic Fields\n",t+=" serial number: "+this.getSerialNumberHex()+"\n",t+=" signature algorithm: "+this.getSignatureAlgorithmField()+"\n",t+=" issuer: "+this.getIssuerString()+"\n",t+=" notBefore: "+this.getNotBefore()+"\n",t+=" notAfter: "+this.getNotAfter()+"\n",t+=" subject: "+this.getSubjectString()+"\n",t+=" subject public key info: \n",t+=" key algorithm: "+(e=this.getPublicKey()).type+"\n","RSA"===e.type&&(t+=" n="+yt(e.n.toString(16)).substr(0,16)+"...\n",t+=" e="+yt(e.e.toString(16))+"\n"),null!=(r=this.aExtInfo)){t+="X509v3 Extensions:\n";for(var a=0;a<r.length;a++){var u=r[a],h=d.asn1.x509.OID.oid2name(u.oid);""===h&&(h=u.oid);var c="";if(!0===u.critical&&(c="CRITICAL"),t+=" "+h+" "+c+":\n","basicConstraints"===h){var l=this.getExtBasicConstraints();void 0===l.cA?t+=" {}\n":(t+=" cA=true",void 0!==l.pathLen&&(t+=", pathLen="+l.pathLen),t+="\n")}else if("keyUsage"===h)t+=" "+this.getExtKeyUsageString()+"\n";else if("subjectKeyIdentifier"===h)t+=" "+this.getExtSubjectKeyIdentifier().kid.hex+"\n";else if("authorityKeyIdentifier"===h){var f=this.getExtAuthorityKeyIdentifier();void 0!==f.kid&&(t+=" kid="+f.kid.hex+"\n")}else{if("extKeyUsage"===h)t+=" "+this.getExtExtKeyUsage().array.join(", ")+"\n";else if("subjectAltName"===h)t+=" "+(i=this.getExtSubjectAltName(),JSON.stringify(i.array).replace(/[\[\]\{\}\"]/g,""))+"\n";else if("cRLDistributionPoints"===h)t+=s(this.getExtCRLDistributionPoints());else if("authorityInfoAccess"===h)t+=o(this.getExtAuthorityInfoAccess());else"certificatePolicies"===h&&(t+=n(this.getExtCertificatePolicies()))}}}return t+="signature algorithm: "+this.getSignatureAlgorithmName()+"\n",t+="signature: "+this.getSignatureValueHex().substr(0,16)+"...\n"},"string"==typeof t&&(-1!=t.indexOf("-----BEGIN")?this.readCertPEM(t):d.lang.String.isHex(t)&&this.readCertHex(t))}function Bt(t){return g.SHA256(t).toString()}Tt.getLblen=function(t,e){if("8"!=t.substr(e+2,1))return 1;var r=parseInt(t.substr(e+3,1));return 0==r?-1:0<r&&r<10?r+1:-2},Tt.getL=function(t,e){var r=Tt.getLblen(t,e);return r<1?"":t.substr(e+2,2*r)},Tt.getVblen=function(t,e){var r;return""==(r=Tt.getL(t,e))?-1:("8"===r.substr(0,1)?new v(r.substr(2),16):new v(r,16)).intValue()},Tt.getVidx=function(t,e){var r=Tt.getLblen(t,e);return r<0?r:e+2*(r+1)},Tt.getV=function(t,e){var r=Tt.getVidx(t,e),i=Tt.getVblen(t,e);return t.substr(r,2*i)},Tt.getTLV=function(t,e){return t.substr(e,2)+Tt.getL(t,e)+Tt.getV(t,e)},Tt.getTLVblen=function(t,e){return 2+2*Tt.getLblen(t,e)+2*Tt.getVblen(t,e)},Tt.getNextSiblingIdx=function(t,e){return Tt.getVidx(t,e)+2*Tt.getVblen(t,e)},Tt.getChildIdx=function(t,e){var r,i,n,s=Tt,o=[];r=s.getVidx(t,e),i=2*s.getVblen(t,e),"03"==t.substr(e,2)&&(r+=2,i-=2),n=0;for(var a=r;n<=i;){var u=s.getTLVblen(t,a);if((n+=u)<=i&&o.push(a),a+=u,n>=i)break}return o},Tt.getNthChildIdx=function(t,e,r){return Tt.getChildIdx(t,e)[r]},Tt.getIdxbyList=function(t,e,r,i){var n,s,o=Tt;return 0==r.length?void 0!==i&&t.substr(e,2)!==i?-1:e:(n=r.shift())>=(s=o.getChildIdx(t,e)).length?-1:o.getIdxbyList(t,s[n],r,i)},Tt.getIdxbyListEx=function(t,e,r,i){var n,s,o=Tt;if(0==r.length)return void 0!==i&&t.substr(e,2)!==i?-1:e;n=r.shift(),s=o.getChildIdx(t,e);for(var a=0,u=0;u<s.length;u++){var h=t.substr(s[u],2);if("number"==typeof n&&!o.isContextTag(h)&&a==n||"string"==typeof n&&o.isContextTag(h,n))return o.getIdxbyListEx(t,s[u],r,i);o.isContextTag(h)||a++}return-1},Tt.getTLVbyList=function(t,e,r,i){var n=Tt,s=n.getIdxbyList(t,e,r,i);return-1==s||s>=t.length?null:n.getTLV(t,s)},Tt.getTLVbyListEx=function(t,e,r,i){var n=Tt,s=n.getIdxbyListEx(t,e,r,i);return-1==s?null:n.getTLV(t,s)},Tt.getVbyList=function(t,e,r,i,n){var s,o,a=Tt;return-1==(s=a.getIdxbyList(t,e,r,i))||s>=t.length?null:(o=a.getV(t,s),!0===n&&(o=o.substr(2)),o)},Tt.getVbyListEx=function(t,e,r,i,n){var s,o,a=Tt;return-1==(s=a.getIdxbyListEx(t,e,r,i))?null:(o=a.getV(t,s),"03"==t.substr(s,2)&&!1!==n&&(o=o.substr(2)),o)},Tt.getInt=function(t,e,r){null==r&&(r=-1);try{var i=t.substr(e,2);if("02"!=i&&"03"!=i)return r;var n=Tt.getV(t,e);return"02"==i?parseInt(n,16):function(t){try{var e=t.substr(0,2);if("00"==e)return parseInt(t.substr(2),16);var r=parseInt(e,16),i=t.substr(2),n=parseInt(i,16).toString(2);return"0"==n&&(n="00000000"),n=n.slice(0,0-r),parseInt(n,2)}catch(t){return-1}}(n)}catch(t){return r}},Tt.getOID=function(t,e,r){null==r&&(r=null);try{return"06"!=t.substr(e,2)?r:function(t){if(!vt(t))return null;try{var e=[],r=t.substr(0,2),i=parseInt(r,16);e[0]=new String(Math.floor(i/40)),e[1]=new String(i%40);for(var n=t.substr(2),s=[],o=0;o<n.length/2;o++)s.push(parseInt(n.substr(2*o,2),16));var a=[],u="";for(o=0;o<s.length;o++)128&s[o]?u+=mt((127&s[o]).toString(2),7):(u+=mt((127&s[o]).toString(2),7),a.push(new String(parseInt(u,2))),u="");var h=e.join(".");return a.length>0&&(h=h+"."+a.join(".")),h}catch(t){return null}}(Tt.getV(t,e))}catch(t){return r}},Tt.getOIDName=function(t,e,r){null==r&&(r=null);try{var i=Tt.getOID(t,e,r);if(i==r)return r;var n=d.asn1.x509.OID.oid2name(i);return""==n?i:n}catch(t){return r}},Tt.getString=function(t,e,r){null==r&&(r=null);try{return ht(Tt.getV(t,e))}catch(t){return r}},Tt.hextooidstr=function(t){var e=function(t,e){return t.length>=e?t:new Array(e-t.length+1).join("0")+t},r=[],i=t.substr(0,2),n=parseInt(i,16);r[0]=new String(Math.floor(n/40)),r[1]=new String(n%40);for(var s=t.substr(2),o=[],a=0;a<s.length/2;a++)o.push(parseInt(s.substr(2*a,2),16));var u=[],h="";for(a=0;a<o.length;a++)128&o[a]?h+=e((127&o[a]).toString(2),7):(h+=e((127&o[a]).toString(2),7),u.push(new String(parseInt(h,2))),h="");var c=r.join(".");return u.length>0&&(c=c+"."+u.join(".")),c},Tt.dump=function(t,e,r,i){var n=Tt,s=n.getV,o=n.dump,a=n.getChildIdx,u=t;t instanceof d.asn1.ASN1Object&&(u=t.getEncodedHex());var h=function(t,e){return t.length<=2*e?t:t.substr(0,e)+"..(total "+t.length/2+"bytes).."+t.substr(t.length-e,e)};void 0===e&&(e={ommit_long_octet:32}),void 0===r&&(r=0),void 0===i&&(i="");var c,l=e.ommit_long_octet;if("01"==(c=u.substr(r,2)))return"00"==(f=s(u,r))?i+"BOOLEAN FALSE\n":i+"BOOLEAN TRUE\n";if("02"==c)return i+"INTEGER "+h(f=s(u,r),l)+"\n";if("03"==c){var f=s(u,r);if(n.isASN1HEX(f.substr(2))){var p=i+"BITSTRING, encapsulates\n";return p+=o(f.substr(2),e,0,i+" ")}return i+"BITSTRING "+h(f,l)+"\n"}if("04"==c){f=s(u,r);if(n.isASN1HEX(f)){p=i+"OCTETSTRING, encapsulates\n";return p+=o(f,e,0,i+" ")}return i+"OCTETSTRING "+h(f,l)+"\n"}if("05"==c)return i+"NULL\n";if("06"==c){var g=s(u,r),v=d.asn1.ASN1Util.oidHexToInt(g),y=d.asn1.x509.OID.oid2name(v),m=v.replace(/\./g," ");return""!=y?i+"ObjectIdentifier "+y+" ("+m+")\n":i+"ObjectIdentifier ("+m+")\n"}if("0a"==c)return i+"ENUMERATED "+parseInt(s(u,r))+"\n";if("0c"==c)return i+"UTF8String '"+ut(s(u,r))+"'\n";if("13"==c)return i+"PrintableString '"+ut(s(u,r))+"'\n";if("14"==c)return i+"TeletexString '"+ut(s(u,r))+"'\n";if("16"==c)return i+"IA5String '"+ut(s(u,r))+"'\n";if("17"==c)return i+"UTCTime "+ut(s(u,r))+"\n";if("18"==c)return i+"GeneralizedTime "+ut(s(u,r))+"\n";if("1a"==c)return i+"VisualString '"+ut(s(u,r))+"'\n";if("1e"==c)return i+"BMPString '"+gt(s(u,r))+"'\n";if("30"==c){if("3000"==u.substr(r,4))return i+"SEQUENCE {}\n";p=i+"SEQUENCE\n";var x=e;if((2==(S=a(u,r)).length||3==S.length)&&"06"==u.substr(S[0],2)&&"04"==u.substr(S[S.length-1],2)){y=n.oidname(s(u,S[0]));var b=JSON.parse(JSON.stringify(e));b.x509ExtName=y,x=b}for(var E=0;E<S.length;E++)p+=o(u,x,S[E],i+" ");return p}if("31"==c){p=i+"SET\n";var S=a(u,r);for(E=0;E<S.length;E++)p+=o(u,e,S[E],i+" ");return p}if(0!=(128&(c=parseInt(c,16)))){var w=31&c;if(0!=(32&c)){for(p=i+"["+w+"]\n",S=a(u,r),E=0;E<S.length;E++)p+=o(u,e,S[E],i+" ");return p}f=s(u,r);if(Tt.isASN1HEX(f)){var p=i+"["+w+"]\n";return p+=o(f,e,0,i+" ")}return("68747470"==f.substr(0,8)||"subjectAltName"===e.x509ExtName&&2==w)&&(f=ut(f)),p=i+"["+w+"] "+f+"\n"}return i+"UNKNOWN("+c+") "+s(u,r)+"\n"},Tt.isContextTag=function(t,e){var r,i;t=t.toLowerCase();try{r=parseInt(t,16)}catch(t){return-1}if(void 0===e)return 128==(192&r);try{return null!=e.match(/^\[[0-9]+\]$/)&&(!((i=parseInt(e.substr(1,e.length-1),10))>31)&&(128==(192&r)&&(31&r)==i))}catch(t){return!1}},Tt.isASN1HEX=function(t){var e=Tt;if(t.length%2==1)return!1;var r=e.getVblen(t,0),i=t.substr(0,2),n=e.getL(t,0);return t.length-i.length-n.length==2*r},Tt.checkStrictDER=function(t,e,r,i,n){var s=Tt;if(void 0===r){if("string"!=typeof t)throw new Error("not hex string");if(t=t.toLowerCase(),!d.lang.String.isHex(t))throw new Error("not hex string");r=t.length,n=(i=t.length/2)<128?1:Math.ceil(i.toString(16))+1}if(s.getL(t,e).length>2*n)throw new Error("L of TLV too long: idx="+e);var o=s.getVblen(t,e);if(o>i)throw new Error("value of L too long than hex: idx="+e);var a=s.getTLV(t,e),u=a.length-2-s.getL(t,e).length;if(u!==2*o)throw new Error("V string length and L's value not the same:"+u+"/"+2*o);if(0===e&&t.length!=a.length)throw new Error("total length and TLV length unmatch:"+t.length+"!="+a.length);var h=t.substr(e,2);if("02"===h){var c=s.getVidx(t,e);if("00"==t.substr(c,2)&&t.charCodeAt(c+2)<56)throw new Error("not least zeros for DER INTEGER")}if(32&parseInt(h,16)){for(var l=s.getVblen(t,e),f=0,p=s.getChildIdx(t,e),g=0;g<p.length;g++){f+=s.getTLV(t,p[g]).length,s.checkStrictDER(t,p[g],r,i,n)}if(2*l!=f)throw new Error("sum of children's TLV length and L unmatch: "+2*l+"!="+f)}},Tt.oidname=function(t){var e=d.asn1;d.lang.String.isHex(t)&&(t=e.ASN1Util.oidHexToInt(t));var r=e.x509.OID.oid2name(t);return""===r&&(r=t),r},void 0!==d.asn1&&d.asn1||(d.asn1={}),void 0!==d.asn1.x509&&d.asn1.x509||(d.asn1.x509={}),d.asn1.x509.Certificate=function(t){d.asn1.x509.Certificate.superclass.constructor.call(this);var e=d.asn1,r=e.DERBitString,i=e.DERSequence,n=e.x509,s=n.TBSCertificate,o=n.AlgorithmIdentifier;this.params=void 0,this.setByParam=function(t){this.params=t},this.sign=function(){var t=this.params,e=t.sigalg;null!=t.sigalg.name&&(e=t.sigalg.name);var r=t.tbsobj.getEncodedHex(),i=new d.crypto.Signature({alg:e});i.init(t.cakey),i.updateHex(r),t.sighex=i.sign()},this.getPEM=function(){return ft(this.getEncodedHex(),"CERTIFICATE")},this.getEncodedHex=function(){var t=this.params;if(null!=t.tbsobj&&null!=t.tbsobj||(t.tbsobj=new s(t)),null==t.sighex&&null!=t.cakey&&this.sign(),null==t.sighex)throw new Error("sighex or cakey parameter not defined");var e=[];return e.push(t.tbsobj),e.push(new o({name:t.sigalg})),e.push(new r({hex:"00"+t.sighex})),new i({array:e}).getEncodedHex()},null!=t&&(this.params=t)},xt(d.asn1.x509.Certificate,d.asn1.ASN1Object),d.asn1.x509.TBSCertificate=function(t){d.asn1.x509.TBSCertificate.superclass.constructor.call(this);var e=d.asn1,r=e.x509,i=e.DERTaggedObject,n=e.DERInteger,s=e.DERSequence,o=r.AlgorithmIdentifier,a=r.Time,u=r.X500Name,h=r.Extensions,c=r.SubjectPublicKeyInfo;this.params=null,this.setByParam=function(t){this.params=t},this.getEncodedHex=function(){var t=[],e=this.params;if(null!=e.version||1!=e.version){var r=2;null!=e.version&&(r=e.version-1);var l=new i({obj:new n({int:r})});t.push(l)}return t.push(new n(e.serial)),t.push(new o({name:e.sigalg})),t.push(new u(e.issuer)),t.push(new s({array:[new a(e.notbefore),new a(e.notafter)]})),t.push(new u(e.subject)),t.push(new c(Rt.getKey(e.sbjpubkey))),void 0!==e.ext&&e.ext.length>0&&t.push(new i({tag:"a3",obj:new h(e.ext)})),new d.asn1.DERSequence({array:t}).getEncodedHex()},void 0!==t&&this.setByParam(t)},xt(d.asn1.x509.TBSCertificate,d.asn1.ASN1Object),d.asn1.x509.Extensions=function(t){d.asn1.x509.Extensions.superclass.constructor.call(this);var e=d.asn1,r=e.DERSequence,i=e.x509;this.aParam=[],this.setByParam=function(t){this.aParam=t},this.getEncodedHex=function(){for(var t=[],e=0;e<this.aParam.length;e++){var n=this.aParam[e],s=n.extname,o=null;if(null!=n.extn)o=new i.PrivateExtension(n);else if("subjectKeyIdentifier"==s)o=new i.SubjectKeyIdentifier(n);else if("keyUsage"==s)o=new i.KeyUsage(n);else if("subjectAltName"==s)o=new i.SubjectAltName(n);else if("issuerAltName"==s)o=new i.IssuerAltName(n);else if("basicConstraints"==s)o=new i.BasicConstraints(n);else if("cRLDistributionPoints"==s)o=new i.CRLDistributionPoints(n);else if("certificatePolicies"==s)o=new i.CertificatePolicies(n);else if("authorityKeyIdentifier"==s)o=new i.AuthorityKeyIdentifier(n);else if("extKeyUsage"==s)o=new i.ExtKeyUsage(n);else if("authorityInfoAccess"==s)o=new i.AuthorityInfoAccess(n);else if("cRLNumber"==s)o=new i.CRLNumber(n);else if("cRLReason"==s)o=new i.CRLReason(n);else if("ocspNonce"==s)o=new i.OCSPNonce(n);else if("ocspNoCheck"==s)o=new i.OCSPNoCheck(n);else if("adobeTimeStamp"==s)o=new i.AdobeTimeStamp(n);else{if("subjectDirectoryAttributes"!=s)throw new Error("extension not supported:"+JSON.stringify(n));o=new i.SubjectDirectoryAttributes(n)}null!=o&&t.push(o)}return new r({array:t}).getEncodedHex()},null!=t&&this.setByParam(t)},xt(d.asn1.x509.Extensions,d.asn1.ASN1Object),d.asn1.x509.Extension=function(t){d.asn1.x509.Extension.superclass.constructor.call(this);var e=d.asn1,r=e.DERObjectIdentifier,i=e.DEROctetString;e.DERBitString;var n=e.DERBoolean,s=e.DERSequence;this.getEncodedHex=function(){var t=new r({oid:this.oid}),e=new i({hex:this.getExtnValueHex()}),o=new Array;return o.push(t),this.critical&&o.push(new n),o.push(e),new s({array:o}).getEncodedHex()},this.critical=!1,void 0!==t&&void 0!==t.critical&&(this.critical=t.critical)},xt(d.asn1.x509.Extension,d.asn1.ASN1Object),d.asn1.x509.KeyUsage=function(t){d.asn1.x509.KeyUsage.superclass.constructor.call(this,t);var e=Vt.KEYUSAGE_NAME;if(this.getExtnValueHex=function(){return this.asn1ExtnValue.getEncodedHex()},this.oid="2.5.29.15",void 0!==t&&(void 0!==t.bin&&(this.asn1ExtnValue=new d.asn1.DERBitString(t)),void 0!==t.names&&void 0!==t.names.length)){for(var r=t.names,i="000000000",n=0;n<r.length;n++)for(var s=0;s<e.length;s++)r[n]===e[s]&&(i=i.substring(0,s)+"1"+i.substring(s+1,i.length));this.asn1ExtnValue=new d.asn1.DERBitString({bin:i})}},xt(d.asn1.x509.KeyUsage,d.asn1.x509.Extension),d.asn1.x509.BasicConstraints=function(t){d.asn1.x509.BasicConstraints.superclass.constructor.call(this,t);var e=d.asn1,r=e.DERBoolean,i=e.DERInteger,n=e.DERSequence;this.getExtnValueHex=function(){var t=new Array;this.cA&&t.push(new r),this.pathLen>-1&&t.push(new i({int:this.pathLen}));var e=new n({array:t});return this.asn1ExtnValue=e,this.asn1ExtnValue.getEncodedHex()},this.oid="2.5.29.19",this.cA=!1,this.pathLen=-1,void 0!==t&&(void 0!==t.cA&&(this.cA=t.cA),void 0!==t.pathLen&&(this.pathLen=t.pathLen))},xt(d.asn1.x509.BasicConstraints,d.asn1.x509.Extension),d.asn1.x509.CRLDistributionPoints=function(t){d.asn1.x509.CRLDistributionPoints.superclass.constructor.call(this,t);var e=d.asn1,r=e.x509;this.getExtnValueHex=function(){return this.asn1ExtnValue.getEncodedHex()},this.setByDPArray=function(t){for(var i=[],n=0;n<t.length;n++)if(t[n]instanceof d.asn1.ASN1Object)i.push(t[n]);else{var s=new r.DistributionPoint(t[n]);i.push(s)}this.asn1ExtnValue=new e.DERSequence({array:i})},this.setByOneURI=function(t){var e=new r.DistributionPoint({fulluri:t});this.setByDPArray([e])},this.oid="2.5.29.31",void 0!==t&&(void 0!==t.array?this.setByDPArray(t.array):void 0!==t.uri&&this.setByOneURI(t.uri))},xt(d.asn1.x509.CRLDistributionPoints,d.asn1.x509.Extension),d.asn1.x509.DistributionPoint=function(t){d.asn1.x509.DistributionPoint.superclass.constructor.call(this);var e=d.asn1,r=e.x509.DistributionPointName;this.getEncodedHex=function(){var t=new e.DERSequence;if(null!=this.asn1DP){var r=new e.DERTaggedObject({explicit:!0,tag:"a0",obj:this.asn1DP});t.appendASN1Object(r)}return this.hTLV=t.getEncodedHex(),this.hTLV},void 0!==t&&(void 0!==t.dpobj?this.asn1DP=t.dpobj:void 0!==t.dpname?this.asn1DP=new r(t.dpname):void 0!==t.fulluri&&(this.asn1DP=new r({full:[{uri:t.fulluri}]})))},xt(d.asn1.x509.DistributionPoint,d.asn1.ASN1Object),d.asn1.x509.DistributionPointName=function(t){d.asn1.x509.DistributionPointName.superclass.constructor.call(this);var e=d.asn1,r=e.DERTaggedObject;if(this.getEncodedHex=function(){if("full"!=this.type)throw new Error("currently type shall be 'full': "+this.type);return this.asn1Obj=new r({explicit:!1,tag:this.tag,obj:this.asn1V}),this.hTLV=this.asn1Obj.getEncodedHex(),this.hTLV},void 0!==t)if(e.x509.GeneralNames.prototype.isPrototypeOf(t))this.type="full",this.tag="a0",this.asn1V=t;else{if(void 0===t.full)throw new Error("This class supports GeneralNames only as argument");this.type="full",this.tag="a0",this.asn1V=new e.x509.GeneralNames(t.full)}},xt(d.asn1.x509.DistributionPointName,d.asn1.ASN1Object),d.asn1.x509.CertificatePolicies=function(t){d.asn1.x509.CertificatePolicies.superclass.constructor.call(this,t);var e=d.asn1,r=e.x509,i=e.DERSequence,n=r.PolicyInformation;this.params=null,this.getExtnValueHex=function(){for(var t=[],e=0;e<this.params.array.length;e++)t.push(new n(this.params.array[e]));var r=new i({array:t});return this.asn1ExtnValue=r,this.asn1ExtnValue.getEncodedHex()},this.oid="2.5.29.32",void 0!==t&&(this.params=t)},xt(d.asn1.x509.CertificatePolicies,d.asn1.x509.Extension),d.asn1.x509.PolicyInformation=function(t){d.asn1.x509.PolicyInformation.superclass.constructor.call(this,t);var e=d.asn1,r=e.DERSequence,i=e.DERObjectIdentifier,n=e.x509.PolicyQualifierInfo;this.params=null,this.getEncodedHex=function(){if(void 0===this.params.policyoid&&void 0===this.params.array)throw new Error("parameter oid and array missing");var t=[new i(this.params.policyoid)];if(void 0!==this.params.array){for(var e=[],s=0;s<this.params.array.length;s++)e.push(new n(this.params.array[s]));e.length>0&&t.push(new r({array:e}))}return new r({array:t}).getEncodedHex()},void 0!==t&&(this.params=t)},xt(d.asn1.x509.PolicyInformation,d.asn1.ASN1Object),d.asn1.x509.PolicyQualifierInfo=function(t){d.asn1.x509.PolicyQualifierInfo.superclass.constructor.call(this,t);var e=d.asn1,r=e.DERSequence,i=e.DERIA5String,n=e.DERObjectIdentifier,s=e.x509.UserNotice;this.params=null,this.getEncodedHex=function(){return void 0!==this.params.cps?new r({array:[new n({oid:"1.3.6.1.5.5.7.2.1"}),new i({str:this.params.cps})]}).getEncodedHex():null!=this.params.unotice?new r({array:[new n({oid:"1.3.6.1.5.5.7.2.2"}),new s(this.params.unotice)]}).getEncodedHex():void 0},void 0!==t&&(this.params=t)},xt(d.asn1.x509.PolicyQualifierInfo,d.asn1.ASN1Object),d.asn1.x509.UserNotice=function(t){d.asn1.x509.UserNotice.superclass.constructor.call(this,t);var e=d.asn1.DERSequence;d.asn1.DERInteger;var r=d.asn1.x509.DisplayText,i=d.asn1.x509.NoticeReference;this.params=null,this.getEncodedHex=function(){var t=[];return void 0!==this.params.noticeref&&t.push(new i(this.params.noticeref)),void 0!==this.params.exptext&&t.push(new r(this.params.exptext)),new e({array:t}).getEncodedHex()},void 0!==t&&(this.params=t)},xt(d.asn1.x509.UserNotice,d.asn1.ASN1Object),d.asn1.x509.NoticeReference=function(t){d.asn1.x509.NoticeReference.superclass.constructor.call(this,t);var e=d.asn1.DERSequence,r=d.asn1.DERInteger,i=d.asn1.x509.DisplayText;this.params=null,this.getEncodedHex=function(){var t=[];if(void 0!==this.params.org&&t.push(new i(this.params.org)),void 0!==this.params.noticenum){for(var n=[],s=this.params.noticenum,o=0;o<s.length;o++)n.push(new r(s[o]));t.push(new e({array:n}))}if(0==t.length)throw new Error("parameter is empty");return new e({array:t}).getEncodedHex()},void 0!==t&&(this.params=t)},xt(d.asn1.x509.NoticeReference,d.asn1.ASN1Object),d.asn1.x509.DisplayText=function(t){d.asn1.x509.DisplayText.superclass.constructor.call(this,t),this.hT="0c",void 0!==t&&("ia5"===t.type?this.hT="16":"vis"===t.type?this.hT="1a":"bmp"===t.type&&(this.hT="1e"))},xt(d.asn1.x509.DisplayText,d.asn1.DERAbstractString),d.asn1.x509.ExtKeyUsage=function(t){d.asn1.x509.ExtKeyUsage.superclass.constructor.call(this,t);var e=d.asn1;this.setPurposeArray=function(t){this.asn1ExtnValue=new e.DERSequence;for(var r=0;r<t.length;r++){var i=new e.DERObjectIdentifier(t[r]);this.asn1ExtnValue.appendASN1Object(i)}},this.getExtnValueHex=function(){return this.asn1ExtnValue.getEncodedHex()},this.oid="2.5.29.37",void 0!==t&&void 0!==t.array&&this.setPurposeArray(t.array)},xt(d.asn1.x509.ExtKeyUsage,d.asn1.x509.Extension),d.asn1.x509.AuthorityKeyIdentifier=function(t){d.asn1.x509.AuthorityKeyIdentifier.superclass.constructor.call(this,t);var e=d,r=e.asn1,i=r.DERTaggedObject,n=r.x509.GeneralNames;e.crypto.Util.isKey,this.asn1KID=null,this.asn1CertIssuer=null,this.asn1CertSN=null,this.getExtnValueHex=function(){var t=new Array;this.asn1KID&&t.push(new i({explicit:!1,tag:"80",obj:this.asn1KID})),this.asn1CertIssuer&&t.push(new i({explicit:!1,tag:"a1",obj:new n([{dn:this.asn1CertIssuer}])})),this.asn1CertSN&&t.push(new i({explicit:!1,tag:"82",obj:this.asn1CertSN}));var e=new r.DERSequence({array:t});return this.asn1ExtnValue=e,this.asn1ExtnValue.getEncodedHex()},this.setKIDByParam=function(t){if(void 0!==t.str||void 0!==t.hex)this.asn1KID=new d.asn1.DEROctetString(t);else if("object"==typeof t&&d.crypto.Util.isKey(t)||"string"==typeof t&&-1!=t.indexOf("BEGIN ")){var e=t;"string"==typeof t&&(e=Rt.getKey(t));var r=Rt.getKeyID(e);this.asn1KID=new d.asn1.DEROctetString({hex:r})}},this.setCertIssuerByParam=function(t){void 0!==t.str||void 0!==t.ldapstr||void 0!==t.hex||void 0!==t.certsubject||void 0!==t.certissuer?this.asn1CertIssuer=new d.asn1.x509.X500Name(t):"string"==typeof t&&-1!=t.indexOf("BEGIN ")&&-1!=t.indexOf("CERTIFICATE")&&(this.asn1CertIssuer=new d.asn1.x509.X500Name({certissuer:t}))},this.setCertSNByParam=function(t){if(void 0!==t.str||void 0!==t.bigint||void 0!==t.hex)this.asn1CertSN=new d.asn1.DERInteger(t);else if("string"==typeof t&&-1!=t.indexOf("BEGIN ")&&t.indexOf("CERTIFICATE")){var e=new Vt;e.readCertPEM(t);var r=e.getSerialNumberHex();this.asn1CertSN=new d.asn1.DERInteger({hex:r})}},this.oid="2.5.29.35",void 0!==t&&(void 0!==t.kid&&this.setKIDByParam(t.kid),void 0!==t.issuer&&this.setCertIssuerByParam(t.issuer),void 0!==t.sn&&this.setCertSNByParam(t.sn),void 0!==t.issuersn&&"string"==typeof t.issuersn&&-1!=t.issuersn.indexOf("BEGIN ")&&t.issuersn.indexOf("CERTIFICATE")&&(this.setCertSNByParam(t.issuersn),this.setCertIssuerByParam(t.issuersn)))},xt(d.asn1.x509.AuthorityKeyIdentifier,d.asn1.x509.Extension),d.asn1.x509.SubjectKeyIdentifier=function(t){d.asn1.x509.SubjectKeyIdentifier.superclass.constructor.call(this,t);var e=d.asn1.DEROctetString;this.asn1KID=null,this.getExtnValueHex=function(){return this.asn1ExtnValue=this.asn1KID,this.asn1ExtnValue.getEncodedHex()},this.setKIDByParam=function(t){if(void 0!==t.str||void 0!==t.hex)this.asn1KID=new e(t);else if("object"==typeof t&&d.crypto.Util.isKey(t)||"string"==typeof t&&-1!=t.indexOf("BEGIN")){var r=t;"string"==typeof t&&(r=Rt.getKey(t));var i=Rt.getKeyID(r);this.asn1KID=new d.asn1.DEROctetString({hex:i})}},this.oid="2.5.29.14",void 0!==t&&void 0!==t.kid&&this.setKIDByParam(t.kid)},xt(d.asn1.x509.SubjectKeyIdentifier,d.asn1.x509.Extension),d.asn1.x509.AuthorityInfoAccess=function(t){d.asn1.x509.AuthorityInfoAccess.superclass.constructor.call(this,t),this.setAccessDescriptionArray=function(t){for(var e=new Array,r=d.asn1,i=r.DERSequence,n=r.DERObjectIdentifier,s=r.x509.GeneralName,o=0;o<t.length;o++){var a,u=t[o];if(void 0!==u.ocsp)a=new i({array:[new n({oid:"1.3.6.1.5.5.7.48.1"}),new s({uri:u.ocsp})]});else{if(void 0===u.caissuer)throw new Error("unknown AccessMethod parameter: "+JSON.stringify(u));a=new i({array:[new n({oid:"1.3.6.1.5.5.7.48.2"}),new s({uri:u.caissuer})]})}e.push(a)}this.asn1ExtnValue=new i({array:e})},this.getExtnValueHex=function(){return this.asn1ExtnValue.getEncodedHex()},this.oid="1.3.6.1.5.5.7.1.1",void 0!==t&&void 0!==t.array&&this.setAccessDescriptionArray(t.array)},xt(d.asn1.x509.AuthorityInfoAccess,d.asn1.x509.Extension),d.asn1.x509.SubjectAltName=function(t){d.asn1.x509.SubjectAltName.superclass.constructor.call(this,t),this.setNameArray=function(t){this.asn1ExtnValue=new d.asn1.x509.GeneralNames(t)},this.getExtnValueHex=function(){return this.asn1ExtnValue.getEncodedHex()},this.oid="2.5.29.17",void 0!==t&&void 0!==t.array&&this.setNameArray(t.array)},xt(d.asn1.x509.SubjectAltName,d.asn1.x509.Extension),d.asn1.x509.IssuerAltName=function(t){d.asn1.x509.IssuerAltName.superclass.constructor.call(this,t),this.setNameArray=function(t){this.asn1ExtnValue=new d.asn1.x509.GeneralNames(t)},this.getExtnValueHex=function(){return this.asn1ExtnValue.getEncodedHex()},this.oid="2.5.29.18",void 0!==t&&void 0!==t.array&&this.setNameArray(t.array)},xt(d.asn1.x509.IssuerAltName,d.asn1.x509.Extension),d.asn1.x509.SubjectDirectoryAttributes=function(t){d.asn1.x509.SubjectDirectoryAttributes.superclass.constructor.call(this,t);var e=d.asn1,r=e.DERSequence,i=e.ASN1Util.newObject,n=e.x509.OID.name2oid;this.params=null,this.getExtnValueHex=function(){for(var t=[],e=0;e<this.params.array.length;e++){var s=this.params.array[e],o={seq:[{oid:"1.2.3.4"},{set:[{utf8str:"DE"}]}]};if("dateOfBirth"==s.attr)o.seq[0].oid=n(s.attr),o.seq[1].set[0]={gentime:s.str};else if("placeOfBirth"==s.attr)o.seq[0].oid=n(s.attr),o.seq[1].set[0]={utf8str:s.str};else if("gender"==s.attr)o.seq[0].oid=n(s.attr),o.seq[1].set[0]={prnstr:s.str};else if("countryOfCitizenship"==s.attr)o.seq[0].oid=n(s.attr),o.seq[1].set[0]={prnstr:s.str};else{if("countryOfResidence"!=s.attr)throw new Error("unsupported attribute: "+s.attr);o.seq[0].oid=n(s.attr),o.seq[1].set[0]={prnstr:s.str}}t.push(new i(o))}var a=new r({array:t});return this.asn1ExtnValue=a,this.asn1ExtnValue.getEncodedHex()},this.oid="2.5.29.9",void 0!==t&&(this.params=t)},xt(d.asn1.x509.SubjectDirectoryAttributes,d.asn1.x509.Extension),d.asn1.x509.PrivateExtension=function(t){d.asn1.x509.PrivateExtension.superclass.constructor.call(this,t);var e=d,r=e.lang.String.isHex,i=e.asn1,n=i.x509.OID.name2oid,s=i.ASN1Util.newObject;this.params=null,this.setByParam=function(t){this.oid=n(t.extname),this.params=t},this.getExtnValueHex=function(){if(null==this.params.extname||null==this.params.extn)throw new Error("extname or extnhex not specified");var t=this.params.extn;if("string"==typeof t&&r(t))return t;if("object"==typeof t)try{return s(t).getEncodedHex()}catch(t){}throw new Error("unsupported extn value")},null!=t&&this.setByParam(t)},xt(d.asn1.x509.PrivateExtension,d.asn1.x509.Extension),d.asn1.x509.CRL=function(t){d.asn1.x509.CRL.superclass.constructor.call(this);var e=d.asn1,r=e.DERSequence,i=e.DERBitString,n=e.x509,s=n.AlgorithmIdentifier,o=n.TBSCertList;this.params=void 0,this.setByParam=function(t){this.params=t},this.sign=function(){var t=new o(this.params).getEncodedHex(),e=new d.crypto.Signature({alg:this.params.sigalg});e.init(this.params.cakey),e.updateHex(t);var r=e.sign();this.params.sighex=r},this.getPEM=function(){return ft(this.getEncodedHex(),"X509 CRL")},this.getEncodedHex=function(){var t=this.params;if(null==t.tbsobj&&(t.tbsobj=new o(t)),null==t.sighex&&null!=t.cakey&&this.sign(),null==t.sighex)throw new Error("sighex or cakey parameter not defined");var e=[];return e.push(t.tbsobj),e.push(new s({name:t.sigalg})),e.push(new i({hex:"00"+t.sighex})),new r({array:e}).getEncodedHex()},null!=t&&(this.params=t)},xt(d.asn1.x509.CRL,d.asn1.ASN1Object),d.asn1.x509.TBSCertList=function(t){d.asn1.x509.TBSCertList.superclass.constructor.call(this);var e=d.asn1,r=e.DERInteger,i=e.DERSequence,n=e.DERTaggedObject;e.DERObjectIdentifier;var s=e.x509,o=s.AlgorithmIdentifier,a=s.Time,u=s.Extensions,h=s.X500Name;this.params=null,this.setByParam=function(t){this.params=t},this.getRevCertSequence=function(){for(var t=[],e=this.params.revcert,n=0;n<e.length;n++){var s=[new r(e[n].sn),new a(e[n].date)];null!=e[n].ext&&s.push(new u(e[n].ext)),t.push(new i({array:s}))}return new i({array:t})},this.getEncodedHex=function(){var t=[],e=this.params;if(null!=e.version){var s=e.version-1,c=new r({int:s});t.push(c)}if(t.push(new o({name:e.sigalg})),t.push(new h(e.issuer)),t.push(new a(e.thisupdate)),null!=e.nextupdate&&t.push(new a(e.nextupdate)),null!=e.revcert&&t.push(this.getRevCertSequence()),null!=e.ext){var l=new u(e.ext);t.push(new n({tag:"a0",explicit:!0,obj:l}))}return new i({array:t}).getEncodedHex()},void 0!==t&&this.setByParam(t)},xt(d.asn1.x509.TBSCertList,d.asn1.ASN1Object),d.asn1.x509.CRLEntry=function(t){d.asn1.x509.CRLEntry.superclass.constructor.call(this);var e=d.asn1;this.setCertSerial=function(t){this.sn=new e.DERInteger(t)},this.setRevocationDate=function(t){this.time=new e.x509.Time(t)},this.getEncodedHex=function(){var t=new e.DERSequence({array:[this.sn,this.time]});return this.TLV=t.getEncodedHex(),this.TLV},void 0!==t&&(void 0!==t.time&&this.setRevocationDate(t.time),void 0!==t.sn&&this.setCertSerial(t.sn))},xt(d.asn1.x509.CRLEntry,d.asn1.ASN1Object),d.asn1.x509.CRLNumber=function(t){d.asn1.x509.CRLNumber.superclass.constructor.call(this,t),this.params=void 0,this.getExtnValueHex=function(){return this.asn1ExtnValue=new d.asn1.DERInteger(this.params.num),this.asn1ExtnValue.getEncodedHex()},this.oid="2.5.29.20",null!=t&&(this.params=t)},xt(d.asn1.x509.CRLNumber,d.asn1.x509.Extension),d.asn1.x509.CRLReason=function(t){d.asn1.x509.CRLReason.superclass.constructor.call(this,t),this.params=void 0,this.getExtnValueHex=function(){return this.asn1ExtnValue=new d.asn1.DEREnumerated(this.params.code),this.asn1ExtnValue.getEncodedHex()},this.oid="2.5.29.21",null!=t&&(this.params=t)},xt(d.asn1.x509.CRLReason,d.asn1.x509.Extension),d.asn1.x509.OCSPNonce=function(t){d.asn1.x509.OCSPNonce.superclass.constructor.call(this,t),this.params=void 0,this.getExtnValueHex=function(){return this.asn1ExtnValue=new d.asn1.DEROctetString(this.params),this.asn1ExtnValue.getEncodedHex()},this.oid="1.3.6.1.5.5.7.48.1.2",null!=t&&(this.params=t)},xt(d.asn1.x509.OCSPNonce,d.asn1.x509.Extension),d.asn1.x509.OCSPNoCheck=function(t){d.asn1.x509.OCSPNoCheck.superclass.constructor.call(this,t),this.params=void 0,this.getExtnValueHex=function(){return this.asn1ExtnValue=new d.asn1.DERNull,this.asn1ExtnValue.getEncodedHex()},this.oid="1.3.6.1.5.5.7.48.1.5",null!=t&&(this.params=t)},xt(d.asn1.x509.OCSPNoCheck,d.asn1.x509.Extension),d.asn1.x509.AdobeTimeStamp=function(t){d.asn1.x509.AdobeTimeStamp.superclass.constructor.call(this,t);var e=d.asn1,r=e.DERInteger,i=e.DERBoolean,n=e.DERSequence,s=e.x509.GeneralName;this.params=null,this.getExtnValueHex=function(){var t=this.params,e=[new r(1)];return e.push(new s({uri:t.uri})),null!=t.reqauth&&e.push(new i(t.reqauth)),this.asn1ExtnValue=new n({array:e}),this.asn1ExtnValue.getEncodedHex()},this.oid="1.2.840.113583.1.1.9.1",void 0!==t&&this.setByParam(t)},xt(d.asn1.x509.AdobeTimeStamp,d.asn1.x509.Extension),d.asn1.x509.X500Name=function(t){d.asn1.x509.X500Name.superclass.constructor.call(this),this.asn1Array=[],this.paramArray=[],this.sRule="utf8";var e=d.asn1,r=e.x509,i=r.RDN;this.setByString=function(t,e){void 0!==e&&(this.sRule=e);var r=t.split("/");r.shift();for(var n=[],s=0;s<r.length;s++)if(r[s].match(/^[^=]+=.+$/))n.push(r[s]);else{var o=n.length-1;n[o]=n[o]+"/"+r[s]}for(s=0;s<n.length;s++)this.asn1Array.push(new i({str:n[s],rule:this.sRule}))},this.setByLdapString=function(t,e){void 0!==e&&(this.sRule=e);var i=r.X500Name.ldapToCompat(t);this.setByString(i,e)},this.setByObject=function(t,e){for(var r in void 0!==e&&(this.sRule=e),t)if(t.hasOwnProperty(r)){var n=new i({str:r+"="+t[r],rule:this.sRule});this.asn1Array?this.asn1Array.push(n):this.asn1Array=[n]}},this.setByParam=function(t){var e;(void 0!==t.rule&&(this.sRule=t.rule),void 0!==t.array)?this.paramArray=t.array:void 0!==t.str?this.setByString(t.str):void 0!==t.ldapstr?this.setByLdapString(t.ldapstr):void 0!==t.hex?this.hTLV=t.hex:void 0!==t.certissuer?((e=new Vt).readCertPEM(t.certissuer),this.hTLV=e.getIssuerHex()):void 0!==t.certsubject?((e=new Vt).readCertPEM(t.certsubject),this.hTLV=e.getSubjectHex()):"object"==typeof t&&void 0===t.certsubject&&void 0===t.certissuer&&this.setByObject(t)},this.getEncodedHex=function(){if("string"==typeof this.hTLV)return this.hTLV;if(0==this.asn1Array.length&&this.paramArray.length>0)for(var t=0;t<this.paramArray.length;t++){var r={array:this.paramArray[t]};"utf8"!=this.sRule&&(r.rule=this.sRule);var n=new i(r);this.asn1Array.push(n)}var s=new e.DERSequence({array:this.asn1Array});return this.hTLV=s.getEncodedHex(),this.hTLV},void 0!==t&&this.setByParam(t)},xt(d.asn1.x509.X500Name,d.asn1.ASN1Object),d.asn1.x509.X500Name.compatToLDAP=function(t){if("/"!==t.substr(0,1))throw"malformed input";var e=(t=t.substr(1)).split("/");return e.reverse(),(e=e.map((function(t){return t.replace(/,/,"\\,")}))).join(",")},d.asn1.x509.X500Name.onelineToLDAP=function(t){return d.asn1.x509.X500Name.compatToLDAP(t)},d.asn1.x509.X500Name.ldapToCompat=function(t){for(var e=t.split(","),r=!1,i=[],n=0;e.length>0;n++){var s=e.shift();if(!0===r){var o=(i.pop()+","+s).replace(/\\,/g,",");i.push(o),r=!1}else i.push(s);"\\"===s.substr(-1,1)&&(r=!0)}return(i=i.map((function(t){return t.replace("/","\\/")}))).reverse(),"/"+i.join("/")},d.asn1.x509.X500Name.ldapToOneline=function(t){return d.asn1.x509.X500Name.ldapToCompat(t)},d.asn1.x509.RDN=function(t){d.asn1.x509.RDN.superclass.constructor.call(this),this.asn1Array=[],this.paramArray=[],this.sRule="utf8";var e=d.asn1.x509.AttributeTypeAndValue;this.setByParam=function(t){void 0!==t.rule&&(this.sRule=t.rule),void 0!==t.str&&this.addByMultiValuedString(t.str),void 0!==t.array&&(this.paramArray=t.array)},this.addByString=function(t){this.asn1Array.push(new d.asn1.x509.AttributeTypeAndValue({str:t,rule:this.sRule}))},this.addByMultiValuedString=function(t){for(var e=d.asn1.x509.RDN.parseString(t),r=0;r<e.length;r++)this.addByString(e[r])},this.getEncodedHex=function(){if(0==this.asn1Array.length&&this.paramArray.length>0)for(var t=0;t<this.paramArray.length;t++){var r=this.paramArray[t];void 0!==r.rule&&"utf8"!=this.sRule&&(r.rule=this.sRule);var i=new e(r);this.asn1Array.push(i)}var n=new d.asn1.DERSet({array:this.asn1Array});return this.TLV=n.getEncodedHex(),this.TLV},void 0!==t&&this.setByParam(t)},xt(d.asn1.x509.RDN,d.asn1.ASN1Object),d.asn1.x509.RDN.parseString=function(t){for(var e=t.split(/\+/),r=!1,i=[],n=0;e.length>0;n++){var s=e.shift();if(!0===r){var o=(i.pop()+"+"+s).replace(/\\\+/g,"+");i.push(o),r=!1}else i.push(s);"\\"===s.substr(-1,1)&&(r=!0)}var a=!1,u=[];for(n=0;i.length>0;n++){s=i.shift();if(!0===a){var h=u.pop();if(s.match(/"$/)){o=(h+"+"+s).replace(/^([^=]+)="(.*)"$/,"$1=$2");u.push(o),a=!1}else u.push(h+"+"+s)}else u.push(s);s.match(/^[^=]+="/)&&(a=!0)}return u},d.asn1.x509.AttributeTypeAndValue=function(t){d.asn1.x509.AttributeTypeAndValue.superclass.constructor.call(this),this.sRule="utf8",this.sType=null,this.sValue=null,this.dsType=null;var e=d,r=e.asn1,i=r.DERSequence,n=r.DERUTF8String,s=r.DERPrintableString,o=r.DERTeletexString,a=r.DERIA5String,u=r.DERVisibleString,h=r.DERBMPString,c=e.lang.String.isMail,l=e.lang.String.isPrintable;this.setByParam=function(t){if(void 0!==t.rule&&(this.sRule=t.rule),void 0!==t.ds&&(this.dsType=t.ds),void 0===t.value&&void 0!==t.str){var e=t.str.match(/^([^=]+)=(.+)$/);if(!e)throw new Error("malformed attrTypeAndValueStr: "+attrTypeAndValueStr);this.sType=e[1],this.sValue=e[2]}else this.sType=t.type,this.sValue=t.value},this.setByString=function(t,e){void 0!==e&&(this.sRule=e);var r=t.match(/^([^=]+)=(.+)$/);if(!r)throw new Error("malformed attrTypeAndValueStr: "+attrTypeAndValueStr);this.setByAttrTypeAndValueStr(r[1],r[2])},this._getDsType=function(){var t=this.sType,e=this.sValue,r=this.sRule;return"prn"===r?"CN"==t&&c(e)?"ia5":l(e)?"prn":"utf8":"utf8"===r?"CN"==t&&c(e)?"ia5":"C"==t?"prn":"utf8":"utf8"},this.setByAttrTypeAndValueStr=function(t,e,r){void 0!==r&&(this.sRule=r),this.sType=t,this.sValue=e},this.getValueObj=function(t,e){if("utf8"==t)return new n({str:e});if("prn"==t)return new s({str:e});if("tel"==t)return new o({str:e});if("ia5"==t)return new a({str:e});if("vis"==t)return new u({str:e});if("bmp"==t)return new h({str:e});throw new Error("unsupported directory string type: type="+t+" value="+e)},this.getEncodedHex=function(){null==this.dsType&&(this.dsType=this._getDsType());var t=d.asn1.x509.OID.atype2obj(this.sType),e=this.getValueObj(this.dsType,this.sValue),r=new i({array:[t,e]});return this.TLV=r.getEncodedHex(),this.TLV},void 0!==t&&this.setByParam(t)},xt(d.asn1.x509.AttributeTypeAndValue,d.asn1.ASN1Object),d.asn1.x509.SubjectPublicKeyInfo=function(t){d.asn1.x509.SubjectPublicKeyInfo.superclass.constructor.call(this);var e=d,r=e.asn1,i=r.DERInteger,n=r.DERBitString,s=r.DERObjectIdentifier,o=r.DERSequence,a=r.ASN1Util.newObject,u=r.x509.AlgorithmIdentifier,h=e.crypto;h.ECDSA,h.DSA,this.getASN1Object=function(){if(null==this.asn1AlgId||null==this.asn1SubjPKey)throw"algId and/or subjPubKey not set";return new o({array:[this.asn1AlgId,this.asn1SubjPKey]})},this.getEncodedHex=function(){var t=this.getASN1Object();return this.hTLV=t.getEncodedHex(),this.hTLV},this.setPubKey=function(t){try{if(t instanceof tt){var e=a({seq:[{int:{bigint:t.n}},{int:{int:t.e}}]}).getEncodedHex();this.asn1AlgId=new u({name:"rsaEncryption"}),this.asn1SubjPKey=new n({hex:"00"+e})}}catch(t){}try{if(t instanceof d.crypto.ECDSA){var r=new s({name:t.curveName});this.asn1AlgId=new u({name:"ecPublicKey",asn1params:r}),this.asn1SubjPKey=new n({hex:"00"+t.pubKeyHex})}}catch(t){}try{if(t instanceof d.crypto.DSA){r=new a({seq:[{int:{bigint:t.p}},{int:{bigint:t.q}},{int:{bigint:t.g}}]});this.asn1AlgId=new u({name:"dsa",asn1params:r});var o=new i({bigint:t.y});this.asn1SubjPKey=new n({hex:"00"+o.getEncodedHex()})}}catch(t){}},void 0!==t&&this.setPubKey(t)},xt(d.asn1.x509.SubjectPublicKeyInfo,d.asn1.ASN1Object),d.asn1.x509.Time=function(t){d.asn1.x509.Time.superclass.constructor.call(this);var e=d.asn1,r=e.DERUTCTime,i=e.DERGeneralizedTime;this.setTimeParams=function(t){this.timeParams=t},this.getEncodedHex=function(){var t=null;return t=null!=this.timeParams?"utc"==this.type?new r(this.timeParams):new i(this.timeParams):"utc"==this.type?new r:new i,this.TLV=t.getEncodedHex(),this.TLV},this.type="utc",void 0!==t&&(void 0!==t.type?this.type=t.type:void 0!==t.str&&(t.str.match(/^[0-9]{12}Z$/)&&(this.type="utc"),t.str.match(/^[0-9]{14}Z$/)&&(this.type="gen")),this.timeParams=t)},xt(d.asn1.x509.Time,d.asn1.ASN1Object),d.asn1.x509.AlgorithmIdentifier=function(t){d.asn1.x509.AlgorithmIdentifier.superclass.constructor.call(this),this.nameAlg=null,this.asn1Alg=null,this.asn1Params=null,this.paramEmpty=!1;var e=d.asn1,r=e.x509.AlgorithmIdentifier.PSSNAME2ASN1TLV;if(this.getEncodedHex=function(){if(null===this.nameAlg&&null===this.asn1Alg)throw new Error("algorithm not specified");if(null!==this.nameAlg){var t=null;for(var i in r)i===this.nameAlg&&(t=r[i]);if(null!==t)return this.hTLV=t,this.hTLV}null!==this.nameAlg&&null===this.asn1Alg&&(this.asn1Alg=e.x509.OID.name2obj(this.nameAlg));var n=[this.asn1Alg];null!==this.asn1Params&&n.push(this.asn1Params);var s=new e.DERSequence({array:n});return this.hTLV=s.getEncodedHex(),this.hTLV},void 0!==t&&(void 0!==t.name&&(this.nameAlg=t.name),void 0!==t.asn1params&&(this.asn1Params=t.asn1params),void 0!==t.paramempty&&(this.paramEmpty=t.paramempty)),null===this.asn1Params&&!1===this.paramEmpty&&null!==this.nameAlg){void 0!==this.nameAlg.name&&(this.nameAlg=this.nameAlg.name);var i=this.nameAlg.toLowerCase();"withdsa"!==i.substr(-7,7)&&"withecdsa"!==i.substr(-9,9)&&(this.asn1Params=new e.DERNull)}},xt(d.asn1.x509.AlgorithmIdentifier,d.asn1.ASN1Object),d.asn1.x509.AlgorithmIdentifier.PSSNAME2ASN1TLV={SHAwithRSAandMGF1:"300d06092a864886f70d01010a3000",SHA256withRSAandMGF1:"303d06092a864886f70d01010a3030a00d300b0609608648016503040201a11a301806092a864886f70d010108300b0609608648016503040201a203020120",SHA384withRSAandMGF1:"303d06092a864886f70d01010a3030a00d300b0609608648016503040202a11a301806092a864886f70d010108300b0609608648016503040202a203020130",SHA512withRSAandMGF1:"303d06092a864886f70d01010a3030a00d300b0609608648016503040203a11a301806092a864886f70d010108300b0609608648016503040203a203020140"},d.asn1.x509.GeneralName=function(t){d.asn1.x509.GeneralName.superclass.constructor.call(this);var e={rfc822:"81",dns:"82",dn:"a4",uri:"86",ip:"87"},r=d.asn1;r.DERSequence;var i=r.DEROctetString,n=r.DERIA5String,s=r.DERTaggedObject,o=r.ASN1Object,a=r.x509.X500Name,u=dt;this.explicit=!1,this.setByParam=function(t){var r=null;if(void 0!==t){if(void 0!==t.rfc822&&(this.type="rfc822",r=new n({str:t[this.type]})),void 0!==t.dns&&(this.type="dns",r=new n({str:t[this.type]})),void 0!==t.uri&&(this.type="uri",r=new n({str:t[this.type]})),void 0!==t.dn&&(this.type="dn",this.explicit=!0,r="string"==typeof t.dn?new a({str:t.dn}):t.dn instanceof d.asn1.x509.X500Name?t.dn:new a(t.dn)),void 0!==t.ldapdn&&(this.type="dn",this.explicit=!0,r=new a({ldapstr:t.ldapdn})),void 0!==t.certissuer){this.type="dn",this.explicit=!0;var h=null;if((l=t.certissuer).match(/^[0-9A-Fa-f]+$/),-1!=l.indexOf("-----BEGIN ")&&(h=u(l)),null==h)throw"certissuer param not cert";(f=new Vt).hex=h;var c=f.getIssuerHex();(r=new o).hTLV=c}if(void 0!==t.certsubj){this.type="dn",this.explicit=!0;var l,f;h=null;if((l=t.certsubj).match(/^[0-9A-Fa-f]+$/),-1!=l.indexOf("-----BEGIN ")&&(h=u(l)),null==h)throw"certsubj param not cert";(f=new Vt).hex=h;c=f.getSubjectHex();(r=new o).hTLV=c}if(void 0!==t.ip){this.type="ip",this.explicit=!1;var p,g=t.ip,v="malformed IP address";if(g.match(/^[0-9.]+[.][0-9.]+$/)){if(8!==(p=function(t){t=(t=(t=t.replace(/^\s*\[\s*/,"")).replace(/\s*\]\s*$/,"")).replace(/\s*/g,"");try{return t.split(/,/).map((function(t,e,r){var i=parseInt(t);if(i<0||255<i)throw"integer not in range 0-255";return("00"+i.toString(16)).slice(-2)})).join("")}catch(t){throw"malformed integer array string: "+t}}("["+g.split(".").join(",")+"]")).length)throw v}else if(g.match(/^[0-9A-Fa-f:]+:[0-9A-Fa-f:]+$/))p=function(t){var e="malformed IPv6 address";if(!t.match(/^[0-9A-Fa-f:]+$/))throw e;var r=(t=t.toLowerCase()).split(":").length-1;if(r<2)throw e;var i=":".repeat(7-r+2),n=(t=t.replace("::",i)).split(":");if(8!=n.length)throw e;for(var s=0;s<8;s++)n[s]=("0000"+n[s]).slice(-4);return n.join("")}(g);else{if(!g.match(/^([0-9A-Fa-f][0-9A-Fa-f]){1,}$/))throw v;p=g}r=new i({hex:p})}if(null==this.type)throw"unsupported type in params="+t;this.asn1Obj=new s({explicit:this.explicit,tag:e[this.type],obj:r})}},this.getEncodedHex=function(){return this.asn1Obj.getEncodedHex()},void 0!==t&&this.setByParam(t)},xt(d.asn1.x509.GeneralName,d.asn1.ASN1Object),d.asn1.x509.GeneralNames=function(t){d.asn1.x509.GeneralNames.superclass.constructor.call(this);var e=d.asn1;this.setByParamArray=function(t){for(var r=0;r<t.length;r++){var i=new e.x509.GeneralName(t[r]);this.asn1Array.push(i)}},this.getEncodedHex=function(){return new e.DERSequence({array:this.asn1Array}).getEncodedHex()},this.asn1Array=new Array,void 0!==t&&this.setByParamArray(t)},xt(d.asn1.x509.GeneralNames,d.asn1.ASN1Object),d.asn1.x509.OID=new function(t){this.atype2oidList={CN:"2.5.4.3",L:"2.5.4.7",ST:"2.5.4.8",O:"2.5.4.10",OU:"2.5.4.11",C:"2.5.4.6",STREET:"2.5.4.9",DC:"0.9.2342.19200300.100.1.25",UID:"0.9.2342.19200300.100.1.1",SN:"2.5.4.4",T:"2.5.4.12",DN:"2.5.4.49",E:"1.2.840.113549.1.9.1",description:"2.5.4.13",businessCategory:"2.5.4.15",postalCode:"2.5.4.17",serialNumber:"2.5.4.5",uniqueIdentifier:"2.5.4.45",organizationIdentifier:"2.5.4.97",jurisdictionOfIncorporationL:"1.3.6.1.4.1.311.60.2.1.1",jurisdictionOfIncorporationSP:"1.3.6.1.4.1.311.60.2.1.2",jurisdictionOfIncorporationC:"1.3.6.1.4.1.311.60.2.1.3"},this.name2oidList={sha1:"1.3.14.3.2.26",sha256:"2.16.840.1.101.3.4.2.1",sha384:"2.16.840.1.101.3.4.2.2",sha512:"2.16.840.1.101.3.4.2.3",sha224:"2.16.840.1.101.3.4.2.4",md5:"1.2.840.113549.2.5",md2:"1.3.14.7.2.2.1",ripemd160:"1.3.36.3.2.1",MD2withRSA:"1.2.840.113549.1.1.2",MD4withRSA:"1.2.840.113549.1.1.3",MD5withRSA:"1.2.840.113549.1.1.4",SHA1withRSA:"1.2.840.113549.1.1.5","pkcs1-MGF":"1.2.840.113549.1.1.8",rsaPSS:"1.2.840.113549.1.1.10",SHA224withRSA:"1.2.840.113549.1.1.14",SHA256withRSA:"1.2.840.113549.1.1.11",SHA384withRSA:"1.2.840.113549.1.1.12",SHA512withRSA:"1.2.840.113549.1.1.13",SHA1withECDSA:"1.2.840.10045.4.1",SHA224withECDSA:"1.2.840.10045.4.3.1",SHA256withECDSA:"1.2.840.10045.4.3.2",SHA384withECDSA:"1.2.840.10045.4.3.3",SHA512withECDSA:"1.2.840.10045.4.3.4",dsa:"1.2.840.10040.4.1",SHA1withDSA:"1.2.840.10040.4.3",SHA224withDSA:"2.16.840.1.101.3.4.3.1",SHA256withDSA:"2.16.840.1.101.3.4.3.2",rsaEncryption:"1.2.840.113549.1.1.1",commonName:"2.5.4.3",countryName:"2.5.4.6",localityName:"2.5.4.7",stateOrProvinceName:"2.5.4.8",streetAddress:"2.5.4.9",organizationName:"2.5.4.10",organizationalUnitName:"2.5.4.11",domainComponent:"0.9.2342.19200300.100.1.25",userId:"0.9.2342.19200300.100.1.1",surname:"2.5.4.4",givenName:"2.5.4.42",title:"2.5.4.12",distinguishedName:"2.5.4.49",emailAddress:"1.2.840.113549.1.9.1",description:"2.5.4.13",businessCategory:"2.5.4.15",postalCode:"2.5.4.17",uniqueIdentifier:"2.5.4.45",organizationIdentifier:"2.5.4.97",jurisdictionOfIncorporationL:"1.3.6.1.4.1.311.60.2.1.1",jurisdictionOfIncorporationSP:"1.3.6.1.4.1.311.60.2.1.2",jurisdictionOfIncorporationC:"1.3.6.1.4.1.311.60.2.1.3",subjectDirectoryAttributes:"2.5.29.9",subjectKeyIdentifier:"2.5.29.14",keyUsage:"2.5.29.15",subjectAltName:"2.5.29.17",issuerAltName:"2.5.29.18",basicConstraints:"2.5.29.19",cRLNumber:"2.5.29.20",cRLReason:"2.5.29.21",nameConstraints:"2.5.29.30",cRLDistributionPoints:"2.5.29.31",certificatePolicies:"2.5.29.32",anyPolicy:"2.5.29.32.0",authorityKeyIdentifier:"2.5.29.35",policyConstraints:"2.5.29.36",extKeyUsage:"2.5.29.37",authorityInfoAccess:"1.3.6.1.5.5.7.1.1",ocsp:"1.3.6.1.5.5.7.48.1",ocspBasic:"1.3.6.1.5.5.7.48.1.1",ocspNonce:"1.3.6.1.5.5.7.48.1.2",ocspNoCheck:"1.3.6.1.5.5.7.48.1.5",caIssuers:"1.3.6.1.5.5.7.48.2",anyExtendedKeyUsage:"2.5.29.37.0",serverAuth:"1.3.6.1.5.5.7.3.1",clientAuth:"1.3.6.1.5.5.7.3.2",codeSigning:"1.3.6.1.5.5.7.3.3",emailProtection:"1.3.6.1.5.5.7.3.4",timeStamping:"1.3.6.1.5.5.7.3.8",ocspSigning:"1.3.6.1.5.5.7.3.9",dateOfBirth:"1.3.6.1.5.5.7.9.1",placeOfBirth:"1.3.6.1.5.5.7.9.2",gender:"1.3.6.1.5.5.7.9.3",countryOfCitizenship:"1.3.6.1.5.5.7.9.4",countryOfResidence:"1.3.6.1.5.5.7.9.5",ecPublicKey:"1.2.840.10045.2.1","P-256":"1.2.840.10045.3.1.7",secp256r1:"1.2.840.10045.3.1.7",secp256k1:"1.3.132.0.10",secp384r1:"1.3.132.0.34",pkcs5PBES2:"1.2.840.113549.1.5.13",pkcs5PBKDF2:"1.2.840.113549.1.5.12","des-EDE3-CBC":"1.2.840.113549.3.7",data:"1.2.840.113549.1.7.1","signed-data":"1.2.840.113549.1.7.2","enveloped-data":"1.2.840.113549.1.7.3","digested-data":"1.2.840.113549.1.7.5","encrypted-data":"1.2.840.113549.1.7.6","authenticated-data":"1.2.840.113549.1.9.16.1.2",tstinfo:"1.2.840.113549.1.9.16.1.4",signingCertificate:"1.2.840.113549.1.9.16.2.12",timeStampToken:"1.2.840.113549.1.9.16.2.14",signaturePolicyIdentifier:"1.2.840.113549.1.9.16.2.15",etsArchiveTimeStamp:"1.2.840.113549.1.9.16.2.27",signingCertificateV2:"1.2.840.113549.1.9.16.2.47",etsArchiveTimeStampV2:"1.2.840.113549.1.9.16.2.48",extensionRequest:"1.2.840.113549.1.9.14",contentType:"1.2.840.113549.1.9.3",messageDigest:"1.2.840.113549.1.9.4",signingTime:"1.2.840.113549.1.9.5",counterSignature:"1.2.840.113549.1.9.6",archiveTimeStampV3:"0.4.0.1733.2.4",pdfRevocationInfoArchival:"1.2.840.113583.1.1.8",adobeTimeStamp:"1.2.840.113583.1.1.9.1"},this.objCache={},this.name2obj=function(t){if(void 0!==this.objCache[t])return this.objCache[t];if(void 0===this.name2oidList[t])throw"Name of ObjectIdentifier not defined: "+t;var e=this.name2oidList[t],r=new d.asn1.DERObjectIdentifier({oid:e});return this.objCache[t]=r,r},this.atype2obj=function(t){if(void 0!==this.objCache[t])return this.objCache[t];var e;if(t.match(/^\d+\.\d+\.[0-9.]+$/))e=t;else if(void 0!==this.atype2oidList[t])e=this.atype2oidList[t];else{if(void 0===this.name2oidList[t])throw"AttributeType name undefined: "+t;e=this.name2oidList[t]}var r=new d.asn1.DERObjectIdentifier({oid:e});return this.objCache[t]=r,r}},d.asn1.x509.OID.oid2name=function(t){var e=d.asn1.x509.OID.name2oidList;for(var r in e)if(e[r]==t)return r;return""},d.asn1.x509.OID.oid2atype=function(t){var e=d.asn1.x509.OID.atype2oidList;for(var r in e)if(e[r]==t)return r;return t},d.asn1.x509.OID.name2oid=function(t){if(t.match(/^[0-9.]+$/))return t;var e=d.asn1.x509.OID.name2oidList;return void 0===e[t]?"":e[t]},d.asn1.x509.X509Util={},d.asn1.x509.X509Util.newCertPEM=function(t){var e=d.asn1.x509;return e.TBSCertificate,new(0,e.Certificate)(t).getPEM()},tt.getPosArrayOfChildrenFromHex=function(t){return Tt.getChildIdx(t,0)},tt.getHexValueArrayOfChildrenFromHex=function(t){var e,r=Tt.getV,i=r(t,(e=tt.getPosArrayOfChildrenFromHex(t))[0]),n=r(t,e[1]),s=r(t,e[2]),o=r(t,e[3]),a=r(t,e[4]),u=r(t,e[5]),h=r(t,e[6]),c=r(t,e[7]),l=r(t,e[8]);return(e=new Array).push(i,n,s,o,a,u,h,c,l),e},tt.prototype.readPrivateKeyFromPEMString=function(t){var e=dt(t),r=tt.getHexValueArrayOfChildrenFromHex(e);this.setPrivateEx(r[1],r[2],r[3],r[4],r[5],r[6],r[7],r[8])},tt.prototype.readPKCS5PrvKeyHex=function(t){var e=tt.getHexValueArrayOfChildrenFromHex(t);this.setPrivateEx(e[1],e[2],e[3],e[4],e[5],e[6],e[7],e[8])},tt.prototype.readPKCS8PrvKeyHex=function(t){var e,r,i,n,s,o,a,u,h=Tt,c=h.getVbyListEx;if(!1===h.isASN1HEX(t))throw new Error("not ASN.1 hex string");try{e=c(t,0,[2,0,1],"02"),r=c(t,0,[2,0,2],"02"),i=c(t,0,[2,0,3],"02"),n=c(t,0,[2,0,4],"02"),s=c(t,0,[2,0,5],"02"),o=c(t,0,[2,0,6],"02"),a=c(t,0,[2,0,7],"02"),u=c(t,0,[2,0,8],"02")}catch(t){throw new Error("malformed PKCS#8 plain RSA private key")}this.setPrivateEx(e,r,i,n,s,o,a,u)},tt.prototype.readPKCS5PubKeyHex=function(t){var e=Tt,r=e.getV;if(!1===e.isASN1HEX(t))throw new Error("keyHex is not ASN.1 hex string");var i=e.getChildIdx(t,0);if(2!==i.length||"02"!==t.substr(i[0],2)||"02"!==t.substr(i[1],2))throw new Error("wrong hex for PKCS#5 public key");var n=r(t,i[0]),s=r(t,i[1]);this.setPublic(n,s)},tt.prototype.readPKCS8PubKeyHex=function(t){var e=Tt;if(!1===e.isASN1HEX(t))throw new Error("not ASN.1 hex string");if("06092a864886f70d010101"!==e.getTLVbyListEx(t,0,[0,0]))throw new Error("not PKCS8 RSA public key");var r=e.getTLVbyListEx(t,0,[1,0]);this.readPKCS5PubKeyHex(r)},tt.prototype.readCertPubKeyHex=function(t,e){var r,i;(r=new Vt).readCertHex(t),i=r.getPublicKeyHex(),this.readPKCS8PubKeyHex(i)},tt.prototype.sign=function(t,e){var r,i=(r=t,d.crypto.Util.hashString(r,e));return this.signWithMessageHash(i,e)},tt.prototype.signWithMessageHash=function(t,e){var r=$(d.crypto.Util.getPaddedDigestInfoHex(t,e,this.n.bitLength()),16);return Ct(this.doPrivate(r).toString(16),this.n.bitLength())},tt.prototype.signPSS=function(t,e,r){var i,n=(i=ct(t),d.crypto.Util.hashHex(i,e));return void 0===r&&(r=-1),this.signWithMessageHashPSS(n,e,r)},tt.prototype.signWithMessageHashPSS=function(t,e,r){var i,n=ht(t),s=n.length,o=this.n.bitLength()-1,a=Math.ceil(o/8),u=function(t){return d.crypto.Util.hashHex(t,e)};if(-1===r||void 0===r)r=s;else if(-2===r)r=a-s-2;else if(r<-2)throw new Error("invalid salt length");if(a<s+r+2)throw new Error("data too long");var h="";r>0&&(h=new Array(r),(new X).nextBytes(h),h=String.fromCharCode.apply(String,h));var c=ht(u(ct("\0\0\0\0\0\0\0\0"+n+h))),l=[];for(i=0;i<a-r-s-2;i+=1)l[i]=0;var f=String.fromCharCode.apply(String,l)+""+h,p=It(c,f.length,u),g=[];for(i=0;i<f.length;i+=1)g[i]=f.charCodeAt(i)^p.charCodeAt(i);var y=65280>>8*a-o&255;for(g[0]&=~y,i=0;i<s;i++)g.push(c.charCodeAt(i));return g.push(188),Ct(this.doPrivate(new v(g)).toString(16),this.n.bitLength())},tt.prototype.verify=function(t,e){if(null==(e=e.toLowerCase()).match(/^[0-9a-f]+$/))return!1;var r=$(e,16),i=this.n.bitLength();if(r.bitLength()>i)return!1;var n=this.doPublic(r).toString(16);if(n.length+3!=i/4)return!1;var s=Ot(n.replace(/^1f+00/,""));if(0==s.length)return!1;var o,a=s[0];return s[1]==(o=t,d.crypto.Util.hashString(o,a))},tt.prototype.verifyWithMessageHash=function(t,e){if(e.length!=Math.ceil(this.n.bitLength()/4))return!1;var r=$(e,16);if(r.bitLength()>this.n.bitLength())return 0;var i=Ot(this.doPublic(r).toString(16).replace(/^1f+00/,""));return 0!=i.length&&(i[0],i[1]==t)},tt.prototype.verifyPSS=function(t,e,r,i){var n=function(t){return d.crypto.Util.hashHex(t,r)}(ct(t));return void 0===i&&(i=-1),this.verifyWithMessageHashPSS(n,e,r,i)},tt.prototype.verifyWithMessageHashPSS=function(t,e,r,i){if(e.length!=Math.ceil(this.n.bitLength()/4))return!1;var n,s=new v(e,16),o=function(t){return d.crypto.Util.hashHex(t,r)},a=ht(t),u=a.length,h=this.n.bitLength()-1,c=Math.ceil(h/8);if(-1===i||void 0===i)i=u;else if(-2===i)i=c-u-2;else if(i<-2)throw new Error("invalid salt length");if(c<u+i+2)throw new Error("data too long");var l=this.doPublic(s).toByteArray();for(n=0;n<l.length;n+=1)l[n]&=255;for(;l.length<c;)l.unshift(0);if(188!==l[c-1])throw new Error("encoded message does not end in 0xbc");var f=(l=String.fromCharCode.apply(String,l)).substr(0,c-u-1),p=l.substr(f.length,u),g=65280>>8*c-h&255;if(0!=(f.charCodeAt(0)&g))throw new Error("bits beyond keysize not zero");var y=It(p,f.length,o),m=[];for(n=0;n<f.length;n+=1)m[n]=f.charCodeAt(n)^y.charCodeAt(n);m[0]&=~g;var x=c-u-i-2;for(n=0;n<x;n+=1)if(0!==m[n])throw new Error("leftmost octets not zero");if(1!==m[x])throw new Error("0x01 marker not found");return p===ht(o(ct("\0\0\0\0\0\0\0\0"+a+String.fromCharCode.apply(String,m.slice(-i)))))},tt.SALT_LEN_HLEN=-1,tt.SALT_LEN_MAX=-2,tt.SALT_LEN_RECOVER=-2,Vt.hex2dn=function(t,e){void 0===e&&(e=0);var r=new Vt;return Tt.getTLV(t,e),r.getX500Name(t).str},Vt.hex2rdn=function(t,e){if(void 0===e&&(e=0),"31"!==t.substr(e,2))throw new Error("malformed RDN");for(var r=new Array,i=Tt.getChildIdx(t,e),n=0;n<i.length;n++)r.push(Vt.hex2attrTypeValue(t,i[n]));return(r=r.map((function(t){return t.replace("+","\\+")}))).join("+")},Vt.hex2attrTypeValue=function(t,e){var r=Tt,i=r.getV;if(void 0===e&&(e=0),"30"!==t.substr(e,2))throw new Error("malformed attribute type and value");var n=r.getChildIdx(t,e);2!==n.length||t.substr(n[0],2);var s=i(t,n[0]),o=d.asn1.ASN1Util.oidHexToInt(s);return d.asn1.x509.OID.oid2atype(o)+"="+ht(i(t,n[1]))},Vt.getPublicKeyFromCertHex=function(t){var e=new Vt;return e.readCertHex(t),e.getPublicKey()},Vt.getPublicKeyFromCertPEM=function(t){var e=new Vt;return e.readCertPEM(t),e.getPublicKey()},Vt.getPublicKeyInfoPropOfCertPEM=function(t){var e,r,i=Tt.getVbyList,n={};return n.algparam=null,(e=new Vt).readCertPEM(t),r=e.getPublicKeyHex(),n.keyhex=i(r,0,[1],"03").substr(2),n.algoid=i(r,0,[0,0],"06"),"2a8648ce3d0201"===n.algoid&&(n.algparam=i(r,0,[0,1],"06")),n},Vt.KEYUSAGE_NAME=["digitalSignature","nonRepudiation","keyEncipherment","dataEncipherment","keyAgreement","keyCertSign","cRLSign","encipherOnly","decipherOnly"];var Ht,_t=[(Ht=new Vt,Ht.readCertPEM(function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var r=113,i=126,n=0,s="";return arguments[n].split(s).map((function(t){return t.charCodeAt(n)>i?t:String.fromCharCode((t.charCodeAt(n)+r)%i)})).join(s)}(":::::ORTV[-PR_aVSVPNaR:::::ZVVS@\tPPNErtNVONtVWNZR}@]nU\0ZaZN=TP`\0T`Vo@Q^ROPbNZVTSZ^P^fQc^^TRWQawR^ZNATN>bRPNU^zc}nzyg\tR^ZNATN>bROU^zc}nzyg\tR]ZN=TN>bRPtTn?bf?FZ_NQtfQc^^YQNq`gdSp?cyZ^P^fQc^^QQNWQ^aRvZPNTP`\0T`Vo@Q^RWN_fapzFqSFwfbOndSnzyuYz[oaNrS=\\QN>Z\tN\\Q^B[QqnS=\b\\QN>Zwp\\Q^B[QqnZVTSZ^P^fQc^^TRWQawR^ZNATN>bRPNU^zc}nzyg\tR^ZNATN>bROU^zc}nzyg\tR]ZN=TN>bRPtTn?bf?FZ_NQtfQc^^YQNq`gdSp?cyZ^P^fQc^^QQNWQ^aRvZPNTP`\0T`Vo@Q^RWN_fapzFqSFwfbOndSnzyuYz[oaPPNvVQ^fWX|gVup[N^ROO^NQttV]NQPPNt|PttVONZU|C\b\\@@e^Xv{[vTtd8`nyO@ebN[bqx=ng?\tS^w@|XAz|qUTwfzn]Bu<qs_ae\\y<}u`eRAoE`_\\s\0r|b{rp_o<oC@o=x\bw_cUUZPApQevD\\FxFoFgE=<sq[p<coqyn>TEpP@aSC_YDU8\0|8TB?c>r\\=rp`pcwP}c\0PP_\\RS\\EPVSy8x`\0?R|NP\tP>}A^VP}Ex\bUZa=syDw}>Ya8wPp[pRnn\brU^dE8U?a\bcW|<FEbbupn^`ZNr\tsof[wA}e{\\z}w[YDQ|dt=wC\tNvbRZ@@U|ZAYpFsabCBB\\`wrqxsYW8uFyWdaWezeUeA_8VoVupvY[TD[OYdpO\bC[wX\\O]=[QRpV\0d`N\0RXt^Z}vEpdC=\bY?=V}?^W\bad|qN@Ww>@PycaqANE]asPcE^OB_VA?>wzeftac\tZ\tguf\bF]DCP?znNYf\tuaYu[`=b|v]Bp=RAS``\\PRDW]_`UXdUg=SuqwVFDeB\tD8{B>\\sPYbEU\tFQXz\0@`zsqgfD\0[WY\bPeZc}\t\0bx?Rfed}BUe|Uo\0y?\bsSXZOSBCgbFqf\0Bs?b?d<VE\\Zzns\\d@?dPvf\\{}_\0Sd[<q_YBY`Ffg=sY>{t<fu]xrFNtZONNTwbQO\\ZO=TN>bqQt^dOOaAFXw=\tPCVxsv?{`a\bvS8YQ[aNsOt[cU`ZRTQNdtOaAFXw=\tPCVxsv?{`a\bvS8YQ[aNZOt[cU_ZROaNQN^U<ZN=TP`\0T`Vo@Q^ROPbNNAVPN^P\0{y\0Bs\\8\0R[z]w??qZP?NpgdenSuvv?>|f_?UpYPcQ\\gCb8zxtSvsOQNg>[\\\0\bx\b_o@8\0g`Z<PyUE`8yu}\\g{@`s`zUgErRtve{YdCvoO@>WFDtABNp\0feUWszpQaEYNAc]^xB[@]BDAN8\b}XA=EnO}Pud8TA\t?yPrVv{\\>E]o`BO^RE^X[W[rEU?x\bf>V\tOUwY=>X[\\E`tW[8}VwpFBQcnrPF}yUtd8<Doe_\b[oOVUep@pYY\0cegY{r\t?\bAbq?ff8}UaXoN_D]_X_8yozYFT`N{`\\{zvu?\bDWT}=_<StX\tNx\0\b\t\0aT=c@ucnWfR[vf>RFxAFV}{N`dN^\\<eawBPxx}quT=|{T_R@Fp^Y<ZevRsWaZ]V\tCVrRVtAAc[\tQp|d|tqoQ=T|XX\t=u\\N8XNCx\\aU>wz\tX<e@Vc?dy\\|^FEq|=p`pBdF@bs^d<]vp\\^TZ\tP\bZ\b\\YNNSZ_\\w^|TsD8db\t_\tY\\o^Cw>Z\0x\\^aN]wWf\bA}\tC^d_{ZC@\by]gY@E\tBFY?OsaqbDcVgQbZeFc\tovtucxnq|<TnuyXRveYFOegCpAs{YTe|>bE<OXsSqCBWD_SVepfvCCUg]z\tZvQ[\0s|U>pFz\b=OwT``fNJJ:::::R[Q-PR_aVSVPNaR:::::")),Ht)];function jt(t,e){var r=t.getIssuerHex();if(r===t.getSubjectHex())return t.verifySignature(t.getPublicKey());var i=function(t,e){for(var r=0,i=e;r<i.length;r++){var n=i[r];if(n.getSubjectHex()===t)return n}}(r,e);return!!i&&(!1!==t.verifySignature(i.getPublicKey())&&jt(i,e))}function kt(t){return t.getIssuerHex()!==t.getSubjectHex()&&jt(t,_t)}!function(t){var e=new Vt;"string"==typeof t?e.readCertPEM(t):e.readCertHex(t.hex);var r=kt(e);_t.push(e)}(function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var r=113,i=126,n=0,s="";return arguments[n].split(s).map((function(t){return t.charCodeAt(n)>i?t:String.fromCharCode((t.charCodeAt(n)+r)%i)})).join(s)}(":::::ORTV[-PR_aVSVPNaR:::::ZVVTU\tPPONrtNVONtVWNW=_SVw\tVE=ZN=TP`\0T`Vo@Q^ROPbNZVTSZ^P^fQc^^TRWQawR^ZNATN>bRPNU^zc}nzyg\tR^ZNATN>bROU^zc}nzyg\tR]ZN=TN>bRPtTn?bf?FZ_NQtfQc^^YQNq`gdSp?cyZ^P^fQc^^QQNWQ^aRvZPNTP`\0T`Vo@Q^RWN_fapzFqSFwfbOndSnzyuYz[oaNrS=\bZQNAZaN\\aZ\t[QSnS=\b[aNBZQZ\\aZ\t[QSnZVTaZ^P^fQc^^TRWQawR^ZNATN>bRPNU^zc}nzyg\tR^ZNATN>bROU^zc}nzyg\tRbZOVTN>bRPtYoTyuoz}}f`Bwo?=RQN\\Ot[cONZO>Wyfd\tgdbRaN]Ot[cONZZPRuupz_@feWyZ`bVfWX|gVup[N^xOSugnec|fdyndB{^T}fdB\0ndRf?FZVVPVwN[Otx\0uxvTF=ON^RSNN\\PNtENZVVPPtXPNtRN?=?]q[VD|{\\oyo`oOu}F\tSAe`tn[t\tu\b8^a]qx\bE_^ZN?[QC\0yuOpybY8r\\RPAS=8rUq\0E8>xean^e\bf]Y`XO}{C[Ur^?\0x[SRXvVQ\\CFr}QnAPRQFO=Yw\0_TePCOFV@|N>ROXcDrT<>bW<ssO?NOT{^s]uU\0gS\bBffsfE\0AfDyQEZR`]XBo|Qw}yYdwwTvOFcBndUz^\\{]\tb=^yQYSTQ`]\0?tR{WRUun\\\0bVe_E|VWWV|r\tAo\0\tF`fdzCnRtq\br\t\b8eBp=Z\\TRaadc}@Eub`quuNqAdF\0aUay{}x>tgVz`\t_YBFwu_q?egt8v[o\x008\twTQcrA\t<z{DZoEE^rZTrpaZQzqpBY]^zt8[bQv}yEWw\tXDYQB\0QB\bx_^X]|uEDtPf[n[r_bpB[bE}?ung|bnU|NYOoedY_tvXySZfYPdWV]OE^\bOFwA}<uXoO}_NDz8aonzWOfcv@?>snfqu@FeEx^\\\bVfuO`\\\0tSg]zDU}QrAT|\tOZV|OvpVD<sN@z`<_cSrNCW>?=Au?g_8v{|}}WF>Sr>QBxO\td_D}eBb?Uq^b\t[y}x]}{?P|BQtecTB[pQBW>|p|nfv\0zUxOO}WqwE=<PURZy@X8r\\]u=<pPNRNNn\\OtaO<ZOETPdPT`NTT8RVOQ^^`SuO`gdSp?cyVRg\bo?B=VR[OZO=TN>bqQt^dOO`FyWadZcAD\tpeXybcW@}Qf\\QNsOt[cU`ZRTQNdtOaAFXw=\tPCVxsv?{`a\bvS8YQ[aN]Ot[cU_ZONsEROaNQN^U<ZNTN>bqQ^RNVOOwN[Otx\0uxvTF=ON^SNN\\PNtRNrx\ta[}tP_g8FbD\0^\0qt<f88ufuN]^}]gp\bqYudF88Fas_Ef`\t?^x>X}esa{>\\r?eE]CC_cZ[vQs\t\t>gX[szONg=^pn=<e]nbSz\bZvac\b[w^nA_`vP|@8w[}nQobe=??oRYf{vpRxcC}yCd>8[NDx{Ne\\t8oou=guC>>gvb}ACd\t``Ntq\0yC[Q{|ynpNQqSqzxF<_PFDw<]Bnnu>F<XgU_Zf\\\\A=gu\\codOwQ]oQ<f>gv_pwozwC}xX>C`c]suEdfW?cbeo\b`BbyR@eFTUwSud=t]sS\\onc\tXSq\t{\0DvAVBbnTqEE[QzDyqF`bF}R=Q?VeDo<Vzb\0w}D}NZ\0t}^?OyFP\bVaVNrTNYqe?[NRYTSQby@yzWvT`wQo}y]c_WgxBYCy\tRNRg@NZCaaq8?`\t^`?ryD\t=obzw?E]Ou]n@>bVzqAQT?@_zo@}CxWVTUsAYdNd?{APQr8{P]]AZ>aR\0[D<z?Tr@`u@X|YDwd_<p<>zWE>]\0=X`\b@uucp|^_Qb@uZouTX^o\0\\{PCq{ug8^f[YQAWad8FNqxFQE?ZOo\t}RnO\bsQc\txyccn=nxvs>bDBf\b\bW\\TuTnvAO^U\0QXC>xx8FxRFf<tJ:::::R[Q-PR_aVSVPNaR:::::"));var Kt,Lt,Mt,zt,Ut=function(){function t(t,e,r){this.x=t,this.y=e,this.z=r}return t.prototype.copy=function(t){return this.x=t.x,this.y=t.y,this.z=t.z,this},t.prototype.set=function(t,e,r){return this.x=t,this.y=e,this.z=r,this},t.prototype.fromArray=function(t,e){return void 0===e&&(e=0),this.x=t[e],this.y=t[e+1],this.z=t[e+2],this},t.prototype.add=function(t){return this.x+=t.x,this.y+=t.y,this.z+=t.z,this},t.prototype.multiplyScalar=function(t){return this.x*=t,this.y*=t,this.z*=t,this},t.prototype.subVectors=function(t,e){return this.x=t.x-e.x,this.y=t.y-e.y,this.z=t.z-e.z,this},t.prototype.dot=function(t){return this.x*t.x+this.y*t.y+this.z*t.z},t.prototype.cross=function(t){var e=this.x,r=this.y,i=this.z;return this.x=r*t.z-i*t.y,this.y=i*t.x-e*t.z,this.z=e*t.y-r*t.x,this},t.prototype.crossVectors=function(t,e){var r=t.x,i=t.y,n=t.z,s=e.x,o=e.y,a=e.z;return this.x=i*a-n*o,this.y=n*s-r*a,this.z=r*o-i*s,this},t.prototype.clone=function(){return new t(this.x,this.y,this.z)},t}(),Ft=function(){function t(t,e,r,i){this.extents=t,this.startIndex=e,this.endIndex=r,this.level=i,this.node0=null,this.node1=null}return t.prototype.clearShapes=function(){this.startIndex=-1,this.endIndex=-1},t}(),qt=(Kt=new Ut(0,0,0),Lt=new Ut(0,0,0),Mt=new Ut(0,0,0),zt=new Ut(0,0,0),function(t,e,r,i,n,s){Lt.subVectors(e,t),Mt.subVectors(r,t),zt.crossVectors(Lt,Mt);var o,a=n.dot(zt);if(a>0){if(s)return null;o=1}else{if(!(a<0))return null;o=-1,a=-a}Kt.subVectors(i,t);var u=o*n.dot(Mt.crossVectors(Kt,Mt));if(u<0)return null;var h=o*n.dot(Lt.cross(Kt));if(h<0)return null;if(u+h>a)return null;var c=-o*Kt.dot(zt);if(c<0)return null;var l=c/a;return new Ut(0,0,0).copy(n).multiplyScalar(l).add(i)}),Qt=function(t,e){this.min=t,this.max=e};function Zt(t,e,r){var i=new Qt(0,0);e.x>=0?(i.min=(r.extents[0]-t.x)*e.x,i.max=(r.extents[3]-t.x)*e.x):(i.min=(r.extents[3]-t.x)*e.x,i.max=(r.extents[0]-t.x)*e.x);var n=new Qt(0,0);if(e.y>=0?(n.min=(r.extents[1]-t.y)*e.y,n.max=(r.extents[4]-t.y)*e.y):(n.min=(r.extents[4]-t.y)*e.y,n.max=(r.extents[1]-t.y)*e.y),i.min>n.max||n.min>i.max)return!1;n.min>i.min&&(i.min=n.min),n.max<i.max&&(i.max=n.max);var s=new Qt(0,0);return e.z>=0?(s.min=(r.extents[2]-t.z)*e.z,s.max=(r.extents[5]-t.z)*e.z):(s.min=(r.extents[5]-t.z)*e.z,s.max=(r.extents[2]-t.z)*e.z),!(i.min>s.max||s.min>i.max)&&(s.min>i.min&&(i.min=s.min),s.max<i.max&&(i.max=s.max),!(i.max<0))}var Yt=[0,0,0,0,0,0];function Gt(t,e,r,i,n){if(r>=i)return Yt;var s,o=r,a=6*t[o],u=e[a],h=e[a+1],c=e[a+2],l=e[a+3],f=e[a+4],d=e[a+5];for(++o;o<i;o++)(s=e[a=6*t[o]])<u&&(u=s),(s=e[a+1])<h&&(h=s),(s=e[a+2])<c&&(c=s),(s=e[a+3])>l&&(l=s),(s=e[a+4])>f&&(f=s),(s=e[a+5])>d&&(d=s);return[u-n,h-n,c-n,l+n,f+n,d+n]}var Wt=function(t,e,r){this.triangle=t,this.triangleIndex=e,this.intersectionPoint=r},Xt=function(){function t(t,e){this.trianglesArray=t,this.maxTrianglesPerNode=e;var r,i,n,s,o,a,u=t.length/9,h=new Uint32Array(u),c=new Float32Array(6*u);r=s=t[0],i=o=t[1],n=a=t[2];for(var l=0,f=void 0,d=void 0,p=void 0,g=void 0,v=void 0,y=void 0,m=void 0,x=void 0,b=void 0;l<u;l++)x=6*l,f=g=t[b=9*l],(m=t[b+3])<f?f=m:m>g&&(g=m),(m=t[b+6])<f?f=m:m>g&&(g=m),f<r&&(r=f),g>s&&(s=g),d=v=t[b+1],(m=t[b+4])<d?d=m:m>v&&(v=m),(m=t[b+7])<d?d=m:m>v&&(v=m),d<i&&(i=d),v>o&&(o=v),p=y=t[b+2],(m=t[b+5])<p?p=m:m>y&&(y=m),(m=t[b+8])<p?p=m:m>y&&(y=m),p<n&&(n=p),y>a&&(a=y),h[l]=l,c[x]=f,c[x+1]=d,c[x+2]=p,c[x+3]=g,c[x+4]=v,c[x+5]=y;this.offsetArray=h,this.bboxArray=c,this.rootNode=new Ft([r,i,n,s,o,a],0,u,0),this.nodesToSplit=[],u>this.maxTrianglesPerNode&&this.nodesToSplit.push(this.rootNode),this.splitNode()}return t.prototype.splitNode=function(){var t,e=this.offsetArray,r=this.bboxArray,i=this.maxTrianglesPerNode,n=this.nodesToSplit;function s(t){var s=t.startIndex,o=t.endIndex,a=t.extents,u=[0,1,2],h=[a[3]-a[0],a[4]-a[1],a[5]-a[2]];u.sort((function(t,e){return h[e]-h[t]}));for(var c=0;c<3;c++){for(var l=u[c],f=a[l]+a[l+3],d=s,p=o-1,g=null;d<p;)null===g?r[6*e[d]+l]+r[6*e[d]+l+3]<f?d++:g=e[d]:(r[6*e[p]+l]+r[6*e[p]+l+3]>=f||(e[d]=e[p],e[p]=g,g=null,d++),p--);if(!(d<=s)){var v=Gt(e,r,s,d,1e-6),y=new Ft(v,s,d,t.level+1);t.node0=y,y.endIndex-y.startIndex>i&&n.push(y);var m=Gt(e,r,d,o,1e-6),x=new Ft(m,d,o,t.level+1);return t.node1=x,x.endIndex-x.startIndex>i&&n.push(x),void t.clearShapes()}}}for(;t=n.shift();)s(t)},t.prototype.intersectRay=function(t,e,r){for(var i=[this.rootNode],n=[],s=[],o=new Ut(1/e.x,1/e.y,1/e.z);i.length>0;){var a=i.pop();if(Zt(t,o,a)){a.node0&&i.push(a.node0),a.node1&&i.push(a.node1);for(var u=a.startIndex;u<a.endIndex;u++)n.push(this.offsetArray[u])}}for(var h=new Ut(0,0,0),c=new Ut(0,0,0),l=new Ut(0,0,0),f=new Ut(t.x,t.y,t.z),d=new Ut(e.x,e.y,e.z),p=(u=0,void 0),g=void 0;u<n.length;u++){g=9*(p=n[u]),h.set(this.trianglesArray[g],this.trianglesArray[g+1],this.trianglesArray[g+2]),c.set(this.trianglesArray[g+3],this.trianglesArray[g+3+1],this.trianglesArray[g+3+2]),l.set(this.trianglesArray[g+6],this.trianglesArray[g+6+1],this.trianglesArray[g+6+2]);var v=qt(h,c,l,f,d,r);if(v){var y=new Wt([h.clone(),c.clone(),l.clone()],p,v);s.push(y)}}return s},t.prototype.dispose=function(){this.trianglesArray=new Float32Array,this.bboxArray=new Float32Array,this.offsetArray=new Uint32Array,this.rootNode=null,this.nodesToSplit.length=0},t}();function $t(t){return null==t}var Jt={computeTangents:function(t){var e=t.index,r=t.attributes;if(null!==e&&void 0!==r.position&&void 0!==r.normal&&void 0!==r.uv){var i=e.array,n=r.position.array,s=r.normal.array,o=r.uv.array,u=n.length/3;void 0===r.tangent&&t.setAttribute("tangent",new a.BufferAttribute(new Float32Array(4*u),4));for(var h=r.tangent.array,c=[],l=[],f=0;f<u;f++)c[f]=new a.Vector3,l[f]=new a.Vector3;var d=new a.Vector3,p=new a.Vector3,g=new a.Vector3,v=new a.Vector2,y=new a.Vector2,m=new a.Vector2,x=new a.Vector3,b=new a.Vector3,E=t.groups;0===E.length&&(E=[{start:0,count:i.length}]);f=0;for(var S=E.length;f<S;++f)for(var w=V=(O=E[f]).start,A=V+O.count;w<A;w+=3)B(i[w+0],i[w+1],i[w+2]);var P,D,N,R=new a.Vector3,T=new a.Vector3,C=new a.Vector3,I=new a.Vector3;for(f=0,S=E.length;f<S;++f){var O,V;for(w=V=(O=E[f]).start,A=V+O.count;w<A;w+=3)H(i[w+0]),H(i[w+1]),H(i[w+2])}}else console.warn("THREE.BufferGeometry: Missing required attributes (index, position, normal or uv) in BufferGeometry.computeTangents()");function B(t,e,r){d.fromArray(n,3*t),p.fromArray(n,3*e),g.fromArray(n,3*r),v.fromArray(o,2*t),y.fromArray(o,2*e),m.fromArray(o,2*r);var i=p.x-d.x,s=g.x-d.x,a=p.y-d.y,u=g.y-d.y,h=p.z-d.z,f=g.z-d.z,E=y.x-v.x,S=m.x-v.x,w=y.y-v.y,A=m.y-v.y,P=1/(E*A-S*w);x.set((A*i-w*s)*P,(A*a-w*u)*P,(A*h-w*f)*P),b.set((E*s-S*i)*P,(E*u-S*a)*P,(E*f-S*h)*P),c[t].add(x),c[e].add(x),c[r].add(x),l[t].add(b),l[e].add(b),l[r].add(b)}function H(t){C.fromArray(s,3*t),I.copy(C),D=c[t],R.copy(D),R.sub(C.multiplyScalar(C.dot(D))).normalize(),T.crossVectors(I,D),N=T.dot(l[t]),P=N<0?-1:1,h[4*t]=R.x,h[4*t+1]=R.y,h[4*t+2]=R.z,h[4*t+3]=P}},mergeBufferGeometries:function(t,e){for(var r=null!==t[0].index,i=new Set(Object.keys(t[0].attributes)),n=new Set(Object.keys(t[0].morphAttributes)),s={},o={},u=new a.BufferGeometry,h=0,c=0;c<t.length;++c){var l=t[c];if(r!==(null!==l.index))return null;for(var f in l.attributes){if(!i.has(f))return null;void 0===s[f]&&(s[f]=[]),s[f].push(l.attributes[f])}for(var f in l.morphAttributes){if(!n.has(f))return null;void 0===o[f]&&(o[f]=[]),o[f].push(l.morphAttributes[f])}if(u.userData.mergedUserData=u.userData.mergedUserData||[],u.userData.mergedUserData.push(l.userData),e){var d;if(r)d=l.index.count;else{if(void 0===l.attributes.position)return null;d=l.attributes.position.count}u.addGroup(h,d,c),h+=d}}if(r){var p=0,g=[];for(c=0;c<t.length;++c){for(var v=t[c].index,y=0;y<v.count;++y)g.push(v.getX(y)+p);p+=t[c].attributes.position.count}u.setIndex(g)}for(var f in s){var m=this.mergeBufferAttributes(s[f]);if(!m)return null;u.setAttribute(f,m)}for(var f in o){var x=o[f][0].length;if(0===x)break;u.morphAttributes=u.morphAttributes||{},u.morphAttributes[f]=[];for(c=0;c<x;++c){var b=[];for(y=0;y<o[f].length;++y)b.push(o[f][y][c]);var E=this.mergeBufferAttributes(b);if(!E)return null;u.morphAttributes[f].push(E)}}return u},mergeBufferAttributes:function(t){for(var e,r,i,n=0,s=0;s<t.length;++s){var o=t[s];if(o.isInterleavedBufferAttribute)return null;if(void 0===e&&(e=o.array.constructor),e!==o.array.constructor)return null;if(void 0===r&&(r=o.itemSize),r!==o.itemSize)return null;if(void 0===i&&(i=o.normalized),i!==o.normalized)return null;n+=o.array.length}var u=new e(n),h=0;for(s=0;s<t.length;++s)u.set(t[s].array,h),h+=t[s].array.length;return new a.BufferAttribute(u,r,i)},interleaveAttributes:function(t){for(var e,r=0,i=0,n=0,s=t.length;n<s;++n){var o=t[n];if(void 0===e&&(e=o.array.constructor),e!==o.array.constructor)return console.warn("AttributeBuffers of different types cannot be interleaved"),null;r+=o.array.length,i+=o.itemSize}var u=new a.InterleavedBuffer(new e(r),i),h=0,c=[],l=["getX","getY","getZ","getW"],f=["setX","setY","setZ","setW"],d=0;for(s=t.length;d<s;d++){var p=(o=t[d]).itemSize,g=o.count,v=new a.InterleavedBufferAttribute(u,p,h,o.normalized);c.push(v),h+=p;for(var y=0;y<g;y++)for(var m=0;m<p;m++)v[f[m]](y,o[l[m]](y))}return c},estimateBytesUsed:function(t){var e=0;for(var r in t.attributes){var i=t.getAttribute(r);e+=i.count*i.itemSize*i.array.BYTES_PER_ELEMENT}var n=t.getIndex();return e+=n?n.count*n.itemSize*n.array.BYTES_PER_ELEMENT:0},mergeVertices:function(t,e){void 0===e&&(e=1e-4),e=Math.max(e,Number.EPSILON);for(var r={},i=t.getIndex(),n=t.getAttribute("position"),s=i?i.count:n.count,o=0,u=Object.keys(t.attributes),h={},c={},l=[],f=["getX","getY","getZ","getW"],d=0,p=u.length;d<p;d++){h[b=u[d]]=[],(A=t.morphAttributes[b])&&(c[b]=new Array(A.length).fill().map((function(){return[]})))}var g=Math.log10(1/e),v=Math.pow(10,g);for(d=0;d<s;d++){var y=i?i.getX(d):d,m="",x=0;for(p=u.length;x<p;x++)for(var b=u[x],E=(w=t.getAttribute(b)).itemSize,S=0;S<E;S++)m+="".concat(~~(w[f[S]](y)*v),",");if(m in r)l.push(r[m]);else{for(x=0,p=u.length;x<p;x++){b=u[x];var w=t.getAttribute(b),A=t.morphAttributes[b],P=(E=w.itemSize,h[b]),D=c[b];for(S=0;S<E;S++){var N=f[S];if(P.push(w[N](y)),A)for(var R=0,T=A.length;R<T;R++)D[R].push(A[R][N](y))}}r[m]=o,l.push(o),o++}}var C=t.clone();for(d=0,p=u.length;d<p;d++){b=u[d];var I=t.getAttribute(b),O=new I.array.constructor(h[b]);w=new a.BufferAttribute(O,I.itemSize,I.normalized);if(C.setAttribute(b,w),b in c)for(x=0;x<c[b].length;x++){var V=t.morphAttributes[b][x],B=(O=new V.array.constructor(c[b][x]),new a.BufferAttribute(O,V.itemSize,V.normalized));C.morphAttributes[b][x]=B}}return C.setIndex(l),C}},te=function(t){function r(){var e=null!==t&&t.apply(this,arguments)||this;return e.floorIndex=0,e.needsRender=!0,e}return e.__extends(r,t),r}(a.Mesh);function ee(t){return new Promise((function(e,r){(/^https\:/.test(t)?h.default:u.default).get(t,(function(t){var i=[];t.on("data",(function(t){return i.push(t)})),t.on("end",(function(){e(Buffer.concat(i).buffer)})),t.on("error",(function(t){return r(t)}))})).on("error",(function(t){return r(t)}))}))}const re=c.Reader,ie=c.util,ne=c.roots["@REALSEE/FIVE:five/server/model/proto/pbm.proto"]||(c.roots["@REALSEE/FIVE:five/server/model/proto/pbm.proto"]={}),se=ne.Model=(()=>{function t(t){if(this.chunks=[],t)for(let e=Object.keys(t),r=0;r<e.length;++r)null!=t[e[r]]&&(this[e[r]]=t[e[r]])}return t.prototype.chunks=ie.emptyArray,t.decode=function(t,e){t instanceof re||(t=re.create(t));let r=void 0===e?t.len:t.pos+e,i=new ne.Model;for(;t.pos<r;){let e=t.uint32();switch(e>>>3){case 1:i.chunks&&i.chunks.length||(i.chunks=[]),i.chunks.push(ne.Chunk.decode(t,t.uint32()));break;default:t.skipType(7&e)}}return i},t})();ne.Chunk=(()=>{function t(t){if(t)for(let e=Object.keys(t),r=0;r<e.length;++r)null!=t[e[r]]&&(this[e[r]]=t[e[r]])}return t.prototype.vertices=null,t.prototype.faces=null,t.prototype.name="",t.prototype.texture="",t.decode=function(t,e){t instanceof re||(t=re.create(t));let r=void 0===e?t.len:t.pos+e,i=new ne.Chunk;for(;t.pos<r;){let e=t.uint32();switch(e>>>3){case 1:i.vertices=ne.Vertices.decode(t,t.uint32());break;case 2:i.faces=ne.Faces.decode(t,t.uint32());break;case 3:i.name=t.string();break;case 4:i.texture=t.string();break;default:t.skipType(7&e)}}if(!i.hasOwnProperty("vertices"))throw ie.ProtocolError("missing required 'vertices'",{instance:i});if(!i.hasOwnProperty("faces"))throw ie.ProtocolError("missing required 'faces'",{instance:i});if(!i.hasOwnProperty("name"))throw ie.ProtocolError("missing required 'name'",{instance:i});return i},t})(),ne.Vertices=(()=>{function t(t){if(this.xyz=[],this.uvs=[],t)for(let e=Object.keys(t),r=0;r<e.length;++r)null!=t[e[r]]&&(this[e[r]]=t[e[r]])}return t.prototype.xyz=ie.emptyArray,t.prototype.uvs=ie.emptyArray,t.decode=function(t,e){t instanceof re||(t=re.create(t));let r=void 0===e?t.len:t.pos+e,i=new ne.Vertices;for(;t.pos<r;){let e=t.uint32();switch(e>>>3){case 1:if(i.xyz&&i.xyz.length||(i.xyz=[]),2==(7&e)){let e=t.uint32()+t.pos;for(;t.pos<e;)i.xyz.push(t.float())}else i.xyz.push(t.float());break;case 2:if(i.uvs&&i.uvs.length||(i.uvs=[]),2==(7&e)){let e=t.uint32()+t.pos;for(;t.pos<e;)i.uvs.push(t.float())}else i.uvs.push(t.float());break;default:t.skipType(7&e)}}return i},t})(),ne.Faces=(()=>{function t(t){if(this.indices=[],t)for(let e=Object.keys(t),r=0;r<e.length;++r)null!=t[e[r]]&&(this[e[r]]=t[e[r]])}return t.prototype.indices=ie.emptyArray,t.decode=function(t,e){t instanceof re||(t=re.create(t));let r=void 0===e?t.len:t.pos+e,i=new ne.Faces;for(;t.pos<r;){let e=t.uint32();switch(e>>>3){case 1:if(i.indices&&i.indices.length||(i.indices=[]),2==(7&e)){let e=t.uint32()+t.pos;for(;t.pos<e;)i.indices.push(t.uint32())}else i.indices.push(t.uint32());break;default:t.skipType(7&e)}}return i},t})();var oe=(new a.Matrix4).set(1,0,0,0,0,0,1,0,0,-1,0,0,0,0,0,1);function ae(t){var e=t.match(/(group|floor)-?(\d+)/);return e?parseInt(e[2],10):0}function ue(t){var e=t.indices,r=t.vertices,i=t.uvs,n=new a.BufferGeometry;n.setIndex(new a.BufferAttribute(new Uint32Array(e),1)),n.setAttribute("position",new a.BufferAttribute(new Float32Array(r),3)),n.attributes.position.applyMatrix4(oe),$t(i)||n.setAttribute("uv",new a.BufferAttribute(new Float32Array(i),2));for(var s=new Float32Array(r.length),o=new a.Vector3,u=new a.Vector3,h=new a.Vector3,c=new a.Vector3,l=new a.Vector3,f=new a.Vector3,d=0,p=n.index.array.length,g=void 0,v=void 0,y=void 0;d<p;d+=3)g=3*e[d+0],v=3*e[d+1],y=3*e[d+2],o.x=r[g],o.y=r[g+1],o.z=r[g+2],u.x=r[v],u.y=r[v+1],u.z=r[v+2],h.x=r[y],h.y=r[y+1],h.z=r[y+2],c.x=h.x-u.x,c.y=h.y-u.y,c.z=h.z-u.z,l.x=o.x-u.x,l.y=o.y-u.y,l.z=o.z-u.z,f.x=c.y*l.z-c.z*l.y,f.y=c.z*l.x-c.x*l.z,f.z=c.x*l.y-c.y*l.x,s[g]+=f.x,s[g+1]+=f.y,s[g+2]+=f.z,s[v]+=f.x,s[v+1]+=f.y,s[v+2]+=f.z,s[y]+=f.x,s[y+1]+=f.y,s[y+2]+=f.z;return n.setAttribute("normal",new a.BufferAttribute(s,3)),n}function he(t){for(var e=0,r=t;e<r.length;e++){(u=r[e]).chunkName=(i=u.name,n=void 0,(n=i.match(/(chunk)-?(\d+)/))?parseInt(n[2],10):0),u.floorName=ae(u.name)}var i,n;t.sort((function(t,e){return 1e3*t.floorName+t.chunkName-(1e3*e.floorName+e.chunkName)}));for(var s=[],o=[],a=0;a<t.length;a++){var u,h=ae((u=t[a]).name),c=s[h]=s[h]||{geometries:[]};(f=ue({vertices:u.vertices.xyz,uvs:u.vertices.uvs,indices:u.faces.indices})).name="model_geo_chunk_"+a,c.geometries.push(f)}for(var l=0;l<s.length;l++){if(c=s[l]){var f=Jt.mergeBufferGeometries(c.geometries,!0);c.geometries.forEach((function(t){return t.dispose()}));var d=new te(f);d.floorIndex=l,d.name="model_floor_"+l,o.push(d)}}return{objects:o}}var ce={};function le(t){return Array.prototype.reduce.call(t,(function(t,e,r){return t|e<<8*r}),0)}function fe(t){for(var e=new Uint8Array(t),r=le(e.slice(0,4)),i=[],n=[],s=4+4*r,o=0;o<r;o++)n[o]=le(e.slice(4+4*o,8+4*o)),i[o]=o===r-1?e.subarray(s,s+n[o]):e.slice(s,s+n[o]),s+=n[o];return Promise.resolve(function(t){for(var e,r=[],i=t.length,n=function(i){var n={data:t[i],offset:0,readByte:function(){return this.data[this.offset++]}},s=n.data.length,o={data:[],offset:0,writeByte:function(t){var e=Math.floor(this.offset/s);this.data[e]||(this.data[e]=new Uint8Array(s)),this.data[e][this.offset%s]=t,this.offset++}};ce.decompressFile(n,o),e=new Uint8Array(o.offset);for(var a=0;a<o.offset;a++)e[a]=o.data[Math.floor(a/s)][a%s];r.push(e)},s=0;s<i;s++)n(s);return r}(i))}ce.OutWindow=function(){this._windowSize=0},ce.OutWindow.prototype.create=function(t){this._buffer&&this._windowSize===t||(this._buffer=[]),this._windowSize=t,this._pos=0,this._streamPos=0},ce.OutWindow.prototype.flush=function(){var t=this._pos-this._streamPos;if(0!==t){for(;t--;)this._stream.writeByte(this._buffer[this._streamPos++]);this._pos>=this._windowSize&&(this._pos=0),this._streamPos=this._pos}},ce.OutWindow.prototype.releaseStream=function(){this.flush(),this._stream=null},ce.OutWindow.prototype.setStream=function(t){this.releaseStream(),this._stream=t},ce.OutWindow.prototype.init=function(t){t||(this._streamPos=0,this._pos=0)},ce.OutWindow.prototype.copyBlock=function(t,e){var r=this._pos-t-1;for(r<0&&(r+=this._windowSize);e--;)r>=this._windowSize&&(r=0),this._buffer[this._pos++]=this._buffer[r++],this._pos>=this._windowSize&&this.flush()},ce.OutWindow.prototype.putByte=function(t){this._buffer[this._pos++]=t,this._pos>=this._windowSize&&this.flush()},ce.OutWindow.prototype.getByte=function(t){var e=this._pos-t-1;return e<0&&(e+=this._windowSize),this._buffer[e]},ce.RangeDecoder=function(){},ce.RangeDecoder.prototype.setStream=function(t){this._stream=t},ce.RangeDecoder.prototype.releaseStream=function(){this._stream=null},ce.RangeDecoder.prototype.init=function(){var t=5;for(this._code=0,this._range=-1;t--;)this._code=this._code<<8|this._stream.readByte()},ce.RangeDecoder.prototype.decodeDirectBits=function(t){for(var e,r=0,i=t;i--;)this._range>>>=1,e=this._code-this._range>>>31,this._code-=this._range&e-1,r=r<<1|1-e,0==(4278190080&this._range)&&(this._code=this._code<<8|this._stream.readByte(),this._range<<=8);return r},ce.RangeDecoder.prototype.decodeBit=function(t,e){var r=t[e],i=(this._range>>>11)*r;return(2147483648^this._code)<(2147483648^i)?(this._range=i,t[e]+=2048-r>>>5,0==(4278190080&this._range)&&(this._code=this._code<<8|this._stream.readByte(),this._range<<=8),0):(this._range-=i,this._code-=i,t[e]-=r>>>5,0==(4278190080&this._range)&&(this._code=this._code<<8|this._stream.readByte(),this._range<<=8),1)},ce.initBitModels=function(t,e){for(;e--;)t[e]=1024},ce.BitTreeDecoder=function(t){this._models=[],this._numBitLevels=t},ce.BitTreeDecoder.prototype.init=function(){ce.initBitModels(this._models,1<<this._numBitLevels)},ce.BitTreeDecoder.prototype.decode=function(t){for(var e=1,r=this._numBitLevels;r--;)e=e<<1|t.decodeBit(this._models,e);return e-(1<<this._numBitLevels)},ce.BitTreeDecoder.prototype.reverseDecode=function(t){for(var e,r=1,i=0,n=0;n<this._numBitLevels;++n)r=r<<1|(e=t.decodeBit(this._models,r)),i|=e<<n;return i},ce.reverseDecode2=function(t,e,r,i){for(var n,s=1,o=0,a=0;a<i;++a)s=s<<1|(n=r.decodeBit(t,e+s)),o|=n<<a;return o},ce.LenDecoder=function(){this._choice=[],this._lowCoder=[],this._midCoder=[],this._highCoder=new ce.BitTreeDecoder(8),this._numPosStates=0},ce.LenDecoder.prototype.create=function(t){for(;this._numPosStates<t;++this._numPosStates)this._lowCoder[this._numPosStates]=new ce.BitTreeDecoder(3),this._midCoder[this._numPosStates]=new ce.BitTreeDecoder(3)},ce.LenDecoder.prototype.init=function(){var t=this._numPosStates;for(ce.initBitModels(this._choice,2);t--;)this._lowCoder[t].init(),this._midCoder[t].init();this._highCoder.init()},ce.LenDecoder.prototype.decode=function(t,e){return 0===t.decodeBit(this._choice,0)?this._lowCoder[e].decode(t):0===t.decodeBit(this._choice,1)?8+this._midCoder[e].decode(t):16+this._highCoder.decode(t)},ce.Decoder2=function(){this._decoders=[]},ce.Decoder2.prototype.init=function(){ce.initBitModels(this._decoders,768)},ce.Decoder2.prototype.decodeNormal=function(t){var e=1;do{e=e<<1|t.decodeBit(this._decoders,e)}while(e<256);return 255&e},ce.Decoder2.prototype.decodeWithMatchByte=function(t,e){var r,i,n=1;do{if(r=e>>7&1,e<<=1,n=n<<1|(i=t.decodeBit(this._decoders,(1+r<<8)+n)),r!==i){for(;n<256;)n=n<<1|t.decodeBit(this._decoders,n);break}}while(n<256);return 255&n},ce.LiteralDecoder=function(){},ce.LiteralDecoder.prototype.create=function(t,e){var r;if(!this._coders||this._numPrevBits!==e||this._numPosBits!==t)for(this._numPosBits=t,this._posMask=(1<<t)-1,this._numPrevBits=e,this._coders=[],r=1<<this._numPrevBits+this._numPosBits;r--;)this._coders[r]=new ce.Decoder2},ce.LiteralDecoder.prototype.init=function(){for(var t=1<<this._numPrevBits+this._numPosBits;t--;)this._coders[t].init()},ce.LiteralDecoder.prototype.getDecoder=function(t,e){return this._coders[((t&this._posMask)<<this._numPrevBits)+((255&e)>>>8-this._numPrevBits)]},ce.Decoder=function(){this._outWindow=new ce.OutWindow,this._rangeDecoder=new ce.RangeDecoder,this._isMatchDecoders=[],this._isRepDecoders=[],this._isRepG0Decoders=[],this._isRepG1Decoders=[],this._isRepG2Decoders=[],this._isRep0LongDecoders=[],this._posSlotDecoder=[],this._posDecoders=[],this._posAlignDecoder=new ce.BitTreeDecoder(4),this._lenDecoder=new ce.LenDecoder,this._repLenDecoder=new ce.LenDecoder,this._literalDecoder=new ce.LiteralDecoder,this._dictionarySize=-1,this._dictionarySizeCheck=-1,this._posSlotDecoder[0]=new ce.BitTreeDecoder(6),this._posSlotDecoder[1]=new ce.BitTreeDecoder(6),this._posSlotDecoder[2]=new ce.BitTreeDecoder(6),this._posSlotDecoder[3]=new ce.BitTreeDecoder(6)},ce.Decoder.prototype.setDictionarySize=function(t){return!(t<0)&&(this._dictionarySize!==t&&(this._dictionarySize=t,this._dictionarySizeCheck=Math.max(this._dictionarySize,1),this._outWindow.create(Math.max(this._dictionarySizeCheck,4096))),!0)},ce.Decoder.prototype.setLcLpPb=function(t,e,r){var i=1<<r;return!(t>8||e>4||r>4)&&(this._literalDecoder.create(e,t),this._lenDecoder.create(i),this._repLenDecoder.create(i),this._posStateMask=i-1,!0)},ce.Decoder.prototype.init=function(){var t=4;for(this._outWindow.init(!1),ce.initBitModels(this._isMatchDecoders,192),ce.initBitModels(this._isRep0LongDecoders,192),ce.initBitModels(this._isRepDecoders,12),ce.initBitModels(this._isRepG0Decoders,12),ce.initBitModels(this._isRepG1Decoders,12),ce.initBitModels(this._isRepG2Decoders,12),ce.initBitModels(this._posDecoders,114),this._literalDecoder.init();t--;)this._posSlotDecoder[t].init();this._lenDecoder.init(),this._repLenDecoder.init(),this._posAlignDecoder.init(),this._rangeDecoder.init()},ce.Decoder.prototype.decode=function(t,e,r){var i,n,s,o,a,u,h=0,c=0,l=0,f=0,d=0,p=0,g=0;for(this._rangeDecoder.setStream(t),this._outWindow.setStream(e),this.init();r<0||p<r;)if(i=p&this._posStateMask,0===this._rangeDecoder.decodeBit(this._isMatchDecoders,(h<<4)+i))n=this._literalDecoder.getDecoder(p++,g),g=h>=7?n.decodeWithMatchByte(this._rangeDecoder,this._outWindow.getByte(c)):n.decodeNormal(this._rangeDecoder),this._outWindow.putByte(g),h=h<4?0:h-(h<10?3:6);else{if(1===this._rangeDecoder.decodeBit(this._isRepDecoders,h))s=0,0===this._rangeDecoder.decodeBit(this._isRepG0Decoders,h)?0===this._rangeDecoder.decodeBit(this._isRep0LongDecoders,(h<<4)+i)&&(h=h<7?9:11,s=1):(0===this._rangeDecoder.decodeBit(this._isRepG1Decoders,h)?o=l:(0===this._rangeDecoder.decodeBit(this._isRepG2Decoders,h)?o=f:(o=d,d=f),f=l),l=c,c=o),0===s&&(s=2+this._repLenDecoder.decode(this._rangeDecoder,i),h=h<7?8:11);else if(d=f,f=l,l=c,s=2+this._lenDecoder.decode(this._rangeDecoder,i),h=h<7?7:10,(a=this._posSlotDecoder[s<=5?s-2:3].decode(this._rangeDecoder))>=4){if(c=(2|1&a)<<(u=(a>>1)-1),a<14)c+=ce.reverseDecode2(this._posDecoders,c-a-1,this._rangeDecoder,u);else if(c+=this._rangeDecoder.decodeDirectBits(u-4)<<4,(c+=this._posAlignDecoder.reverseDecode(this._rangeDecoder))<0){if(-1===c)break;return!1}}else c=a;if(c>=p||c>=this._dictionarySizeCheck)return!1;this._outWindow.copyBlock(c,s),p+=s,g=this._outWindow.getByte(0)}return this._outWindow.flush(),this._outWindow.releaseStream(),this._rangeDecoder.releaseStream(),!0},ce.Decoder.prototype.setDecoderProperties=function(t){var e,r,i,n,s;return!(t.size<5)&&(r=(e=t.readByte())%9,i=(e=~~(e/9))%5,n=~~(e/5),!!this.setLcLpPb(r,i,n)&&(s=t.readByte(),s|=t.readByte()<<8,s|=t.readByte()<<16,s+=16777216*t.readByte(),this.setDictionarySize(s)))},ce.decompress=function(t,e,r,i){var n=new ce.Decoder;if(!n.setDecoderProperties(t))throw"Incorrect stream properties";if(!n.decode(e,r,i))throw"Error in data stream";return!0},ce.decompressFile=function(t,e){var r,i=new ce.Decoder;if(!i.setDecoderProperties(t))throw"Incorrect stream properties";if(r=t.readByte(),r|=t.readByte()<<8,r|=t.readByte()<<16,r+=16777216*t.readByte(),t.readByte(),t.readByte(),t.readByte(),t.readByte(),!i.decode(t,e,r))throw"Error in data stream";return!0};var de=function(t){function r(){var e=null!==t&&t.apply(this,arguments)||this;return e.floorIndex=0,e.needsRender=!0,e}return e.__extends(r,t),r.prototype.disposeGeometry=function(){this.traverse((function(t){t instanceof te&&t.geometry.dispose()}))},r}(a.Group);const pe=c.Reader,ge=c.util,ve=c.roots["@REALSEE/FIVE:five/server/model/proto/dome.proto"]||(c.roots["@REALSEE/FIVE:five/server/model/proto/dome.proto"]={}),ye=ve.Model=(()=>{function t(t){if(this.meshes=[],t)for(let e=Object.keys(t),r=0;r<e.length;++r)null!=t[e[r]]&&(this[e[r]]=t[e[r]])}return t.prototype.meshes=ge.emptyArray,t.decode=function(t,e){t instanceof pe||(t=pe.create(t));let r=void 0===e?t.len:t.pos+e,i=new ve.Model;for(;t.pos<r;){let e=t.uint32();switch(e>>>3){case 1:i.meshes&&i.meshes.length||(i.meshes=[]),i.meshes.push(ve.Mesh.decode(t,t.uint32()));break;default:t.skipType(7&e)}}return i},t})();ve.Mesh=(()=>{function t(t){if(this.chunks=[],this.matrix=[],t)for(let e=Object.keys(t),r=0;r<e.length;++r)null!=t[e[r]]&&(this[e[r]]=t[e[r]])}return t.prototype.name="",t.prototype.chunks=ge.emptyArray,t.prototype.matrix=ge.emptyArray,t.decode=function(t,e){t instanceof pe||(t=pe.create(t));let r=void 0===e?t.len:t.pos+e,i=new ve.Mesh;for(;t.pos<r;){let e=t.uint32();switch(e>>>3){case 1:i.name=t.string();break;case 2:i.chunks&&i.chunks.length||(i.chunks=[]),i.chunks.push(ve.Chunk.decode(t,t.uint32()));break;case 3:i.matrix&&i.matrix.length||(i.matrix=[]),i.matrix.push(ve.Matrix.decode(t,t.uint32()));break;default:t.skipType(7&e)}}if(!i.hasOwnProperty("name"))throw ge.ProtocolError("missing required 'name'",{instance:i});return i},t})(),ve.Matrix=(()=>{function t(t){if(this.elements=[],t)for(let e=Object.keys(t),r=0;r<e.length;++r)null!=t[e[r]]&&(this[e[r]]=t[e[r]])}return t.prototype.elements=ge.emptyArray,t.decode=function(t,e){t instanceof pe||(t=pe.create(t));let r=void 0===e?t.len:t.pos+e,i=new ve.Matrix;for(;t.pos<r;){let e=t.uint32();switch(e>>>3){case 1:if(i.elements&&i.elements.length||(i.elements=[]),2==(7&e)){let e=t.uint32()+t.pos;for(;t.pos<e;)i.elements.push(t.float())}else i.elements.push(t.float());break;default:t.skipType(7&e)}}return i},t})(),ve.Chunk=(()=>{function t(t){if(this.material=[],t)for(let e=Object.keys(t),r=0;r<e.length;++r)null!=t[e[r]]&&(this[e[r]]=t[e[r]])}return t.prototype.geometry=null,t.prototype.material=ge.emptyArray,t.decode=function(t,e){t instanceof pe||(t=pe.create(t));let r=void 0===e?t.len:t.pos+e,i=new ve.Chunk;for(;t.pos<r;){let e=t.uint32();switch(e>>>3){case 2:i.geometry=ve.Geometry.decode(t,t.uint32());break;case 3:i.material&&i.material.length||(i.material=[]),i.material.push(ve.Material.decode(t,t.uint32()));break;default:t.skipType(7&e)}}if(!i.hasOwnProperty("geometry"))throw ge.ProtocolError("missing required 'geometry'",{instance:i});return i},t})(),ve.Geometry=(()=>{function t(t){if(this.groups=[],t)for(let e=Object.keys(t),r=0;r<e.length;++r)null!=t[e[r]]&&(this[e[r]]=t[e[r]])}return t.prototype.position=null,t.prototype.uv=null,t.prototype.uv2=null,t.prototype.normal=null,t.prototype.groups=ge.emptyArray,t.decode=function(t,e){t instanceof pe||(t=pe.create(t));let r=void 0===e?t.len:t.pos+e,i=new ve.Geometry;for(;t.pos<r;){let e=t.uint32();switch(e>>>3){case 1:i.position=ve.Position.decode(t,t.uint32());break;case 2:i.uv=ve.UV.decode(t,t.uint32());break;case 3:i.uv2=ve.UV.decode(t,t.uint32());break;case 4:i.normal=ve.Normal.decode(t,t.uint32());break;case 5:i.groups&&i.groups.length||(i.groups=[]),i.groups.push(ve.Group.decode(t,t.uint32()));break;default:t.skipType(7&e)}}if(!i.hasOwnProperty("position"))throw ge.ProtocolError("missing required 'position'",{instance:i});if(!i.hasOwnProperty("normal"))throw ge.ProtocolError("missing required 'normal'",{instance:i});return i},t})(),ve.Position=(()=>{function t(t){if(this.array=[],t)for(let e=Object.keys(t),r=0;r<e.length;++r)null!=t[e[r]]&&(this[e[r]]=t[e[r]])}return t.prototype.array=ge.emptyArray,t.decode=function(t,e){t instanceof pe||(t=pe.create(t));let r=void 0===e?t.len:t.pos+e,i=new ve.Position;for(;t.pos<r;){let e=t.uint32();switch(e>>>3){case 1:if(i.array&&i.array.length||(i.array=[]),2==(7&e)){let e=t.uint32()+t.pos;for(;t.pos<e;)i.array.push(t.float())}else i.array.push(t.float());break;default:t.skipType(7&e)}}return i},t})(),ve.UV=(()=>{function t(t){if(this.array=[],t)for(let e=Object.keys(t),r=0;r<e.length;++r)null!=t[e[r]]&&(this[e[r]]=t[e[r]])}return t.prototype.array=ge.emptyArray,t.decode=function(t,e){t instanceof pe||(t=pe.create(t));let r=void 0===e?t.len:t.pos+e,i=new ve.UV;for(;t.pos<r;){let e=t.uint32();switch(e>>>3){case 1:if(i.array&&i.array.length||(i.array=[]),2==(7&e)){let e=t.uint32()+t.pos;for(;t.pos<e;)i.array.push(t.float())}else i.array.push(t.float());break;default:t.skipType(7&e)}}return i},t})(),ve.Normal=(()=>{function t(t){if(this.array=[],t)for(let e=Object.keys(t),r=0;r<e.length;++r)null!=t[e[r]]&&(this[e[r]]=t[e[r]])}return t.prototype.array=ge.emptyArray,t.decode=function(t,e){t instanceof pe||(t=pe.create(t));let r=void 0===e?t.len:t.pos+e,i=new ve.Normal;for(;t.pos<r;){let e=t.uint32();switch(e>>>3){case 1:if(i.array&&i.array.length||(i.array=[]),2==(7&e)){let e=t.uint32()+t.pos;for(;t.pos<e;)i.array.push(t.float())}else i.array.push(t.float());break;default:t.skipType(7&e)}}return i},t})(),ve.Group=(()=>{function t(t){if(t)for(let e=Object.keys(t),r=0;r<e.length;++r)null!=t[e[r]]&&(this[e[r]]=t[e[r]])}return t.prototype.start=0,t.prototype.count=0,t.prototype.materialIndex=0,t.decode=function(t,e){t instanceof pe||(t=pe.create(t));let r=void 0===e?t.len:t.pos+e,i=new ve.Group;for(;t.pos<r;){let e=t.uint32();switch(e>>>3){case 1:i.start=t.uint32();break;case 2:i.count=t.uint32();break;case 3:i.materialIndex=t.uint32();break;default:t.skipType(7&e)}}if(!i.hasOwnProperty("start"))throw ge.ProtocolError("missing required 'start'",{instance:i});if(!i.hasOwnProperty("count"))throw ge.ProtocolError("missing required 'count'",{instance:i});if(!i.hasOwnProperty("materialIndex"))throw ge.ProtocolError("missing required 'materialIndex'",{instance:i});return i},t})(),ve.Material=(()=>{function t(t){if(t)for(let e=Object.keys(t),r=0;r<e.length;++r)null!=t[e[r]]&&(this[e[r]]=t[e[r]])}return t.prototype.kd=null,t.prototype.ks=null,t.prototype.ke=null,t.prototype.mapkd="",t.prototype.mapks="",t.prototype.mapke="",t.prototype.norm="",t.prototype.mapbump="",t.prototype.bump="",t.prototype.mapd="",t.prototype.ns=0,t.prototype.d=0,t.prototype.tr=0,t.prototype.mapkdrepeat="",t.decode=function(t,e){t instanceof pe||(t=pe.create(t));let r=void 0===e?t.len:t.pos+e,i=new ve.Material;for(;t.pos<r;){let e=t.uint32();switch(e>>>3){case 1:i.kd=ve.Color.decode(t,t.uint32());break;case 2:i.ks=ve.Color.decode(t,t.uint32());break;case 3:i.ke=ve.Color.decode(t,t.uint32());break;case 4:i.mapkd=t.string();break;case 5:i.mapks=t.string();break;case 6:i.mapke=t.string();break;case 7:i.norm=t.string();break;case 8:i.mapbump=t.string();break;case 9:i.bump=t.string();break;case 10:i.mapd=t.string();break;case 11:i.ns=t.float();break;case 12:i.d=t.float();break;case 13:i.tr=t.float();break;case 14:i.mapkdrepeat=t.string();break;default:t.skipType(7&e)}}return i},t})(),ve.Color=(()=>{function t(t){if(this.rgb=[],t)for(let e=Object.keys(t),r=0;r<e.length;++r)null!=t[e[r]]&&(this[e[r]]=t[e[r]])}return t.prototype.rgb=ge.emptyArray,t.decode=function(t,e){t instanceof pe||(t=pe.create(t));let r=void 0===e?t.len:t.pos+e,i=new ve.Color;for(;t.pos<r;){let e=t.uint32();switch(e>>>3){case 1:if(i.rgb&&i.rgb.length||(i.rgb=[]),2==(7&e)){let e=t.uint32()+t.pos;for(;t.pos<e;)i.rgb.push(t.float())}else i.rgb.push(t.float());break;default:t.skipType(7&e)}}return i},t})();var me={};function xe(t){var e,r=[];function i(t,e,r){var i=function(t){var e=t.position,r=t.normal,i=t.uv,n=t.uv2,s=t.groups,o=new a.BufferGeometry;return o.setAttribute("position",new a.BufferAttribute(new Float32Array(e.array),3)),r&&o.setAttribute("normal",new a.BufferAttribute(new Float32Array(r.array),3)),i&&o.setAttribute("uv",new a.BufferAttribute(new Float32Array(i.array),2)),n&&o.setAttribute("uv2",new a.BufferAttribute(new Float32Array(n.array),2)),s.forEach((function(t){return o.addGroup(t.start,t.count,t.materialIndex)})),o}(t);i.applyMatrix4(r);var n=new a.Vector3,s=new a.Quaternion,o=new a.Vector3;return r.decompose(n,s,o),o.x*o.y*o.z<0&&i.attributes.normal&&i.attributes.position&&i.attributes.uv&&function(t){for(var e=[0,0,0],r=0;r<t.attributes.normal.array.length/9;r++)e[0]=t.attributes.normal.array[9*r],e[1]=t.attributes.normal.array[9*r+1],e[2]=t.attributes.normal.array[9*r+2],t.attributes.normal.array[9*r]=t.attributes.normal.array[9*r+6],t.attributes.normal.array[9*r+1]=t.attributes.normal.array[9*r+7],t.attributes.normal.array[9*r+2]=t.attributes.normal.array[9*r+8],t.attributes.normal.array[9*r+6]=e[0],t.attributes.normal.array[9*r+7]=e[1],t.attributes.normal.array[9*r+8]=e[2];for(r=0;r<t.attributes.position.array.length/9;r++)e[0]=t.attributes.position.array[9*r],e[1]=t.attributes.position.array[9*r+1],e[2]=t.attributes.position.array[9*r+2],t.attributes.position.array[9*r]=t.attributes.position.array[9*r+6],t.attributes.position.array[9*r+1]=t.attributes.position.array[9*r+7],t.attributes.position.array[9*r+2]=t.attributes.position.array[9*r+8],t.attributes.position.array[9*r+6]=e[0],t.attributes.position.array[9*r+7]=e[1],t.attributes.position.array[9*r+8]=e[2];for(r=0;r<t.attributes.uv.array.length/6;r++)e[0]=t.attributes.uv.array[6*r],e[1]=t.attributes.uv.array[6*r+1],t.attributes.uv.array[6*r]=t.attributes.uv.array[6*r+4],t.attributes.uv.array[6*r+1]=t.attributes.uv.array[6*r+5],t.attributes.uv.array[6*r+4]=e[0],t.attributes.uv.array[6*r+5]=e[1];t.attributes.normal.needsUpdate=!0,t.attributes.position.needsUpdate=!0,t.attributes.uv.needsUpdate=!0}(i),new te(i)}return(e=t,ye.decode(e).meshes).forEach((function(t){var e=t.name,n=t.chunks,s=t.matrix;"Ceiling"!==e&&"CeilingDrop"!==e&&s.map((function(t){var s,o=new a.Matrix4;if(o.elements=t.elements,1===n.length){var u=n[0],h=u.geometry;u.material;s=i(h,0,o)}else s=new de,n.forEach((function(t,e){var r=t.geometry,n=(t.material,i(r,0,o));n.name="chunk"+e,s.add(n)}));s.floorIndex=0,s.name=e,r.push(s)}))})),{objects:r}}function be(){Object.keys(me).forEach((function(t){me[t].dispose(),delete me[t]}))}var Ee,Se=(Ee="$$FIVE_EVENT$$","undefined"==typeof Symbol?"$Symbol<".concat(Ee,">$"):Symbol(Ee));function we(t){return t[Se]||(t[Se]={}),t[Se]}var Ae=function(){function t(){}return t.prototype.hasListener=function(t){var e=we(this);return e&&e[t]&&e[t].length>0},t.prototype.on=function(t,e,r){var i=this,n=we(this);return n[t]||(n[t]=[]),n[t].push([e,r||!1]),function(){return i.off(t,e)}},t.prototype.once=function(t,e){return this.on(t,e,!0)},t.prototype.off=function(t,e){if(void 0!==t){var r,i=we(this);if(i[t]||(i[t]=[]),void 0!==e){for(var n=0;n<i[t].length&&i[t][n][0]!==e;n++);n<i[t].length&&i[t].splice(n,1)}else i[t].length=0}else(r=this)[Se]||delete r[Se]},t.prototype.emit=function(t){for(var e=[],r=1;r<arguments.length;r++)e[r-1]=arguments[r];for(var i=!1,n=we(this),s=n[t]||[],o=0,a=s.slice();o<a.length;o++){var u=a[o],h=u[0],c=u[1],l=void 0!==c&&c,f=h.apply(void 0,e);l&&this.off(t,h),!1===f&&(i=!0)}return i},t}();function Pe(t){var r;return new((r=a.Triangle).bind.apply(r,e.__spreadArray([void 0],t.map((function(t){return new a.Vector3(t.x,t.y,t.z)})),!1)))}var De={at3d:function(t){return Promise.resolve().then((function(){return ee(t.file)})).then((function(t){return fe(t)})).then((function(t){for(var e=[],r=0,i=t;r<i.length;r++){var n=i[r],s=se.decode(n);e.push.apply(e,s.chunks)}return e})).then((function(t){return he(t)}))},pbm:function(t){return Promise.resolve().then((function(){return ee(t.file)})).then((function(t){var e=new Uint8Array(t),r=se.decode(e);return[].concat(r.chunks)})).then((function(t){return he(t)}))},dome:function(t){return Promise.resolve().then((function(){return be()})).then((function(){return ee(t.file)})).then((function(t){return xe(new Uint8Array(t))}))},domez:function(t){return Promise.resolve().then((function(){return be()})).then((function(){return ee(t.file)})).then((function(t){return fe(t)})).then((function(t){var e=t.reduce((function(t,e){return t+e.length}),0),r=new Uint8Array(e),i=0;return t.forEach((function(t){r.set(t,i),i+=t.length})),r})).then((function(t){return xe(t)}))}},Ne=function(t){function r(){var e=t.call(this)||this;return e.empty=!1,e.name="model",e.loaded=!1,e.bvhs=[],e.bounding=new a.Box3,e.shownfloor=null,e}return e.__extends(r,t),r.prototype.getEdges=function(t){var e;void 0===t&&(t=30/180*Math.PI);for(var r=Math.cos(t),i=[],n=0,s=this.children;n<s.length;n++){var o=s[n];if(o instanceof te){for(var u={},h=["a","b","c"],c=Jt.mergeVertices(o.geometry),l=c.getAttribute("position").array,f=(null===(e=c.getIndex())||void 0===e?void 0:e.array)||[],d=[],p=[],g=0,v=l.length;g<v;g+=3)d.push(new a.Vector3(l[g],l[g+1],l[g+2]));for(g=0,v=f.length;g<v;g+=3){var y=f[g],m=f[g+1],x=f[g+2],b=(new a.Vector3).crossVectors(d[m].clone().sub(d[y]),d[x].clone().sub(d[y])).normalize();p.push({a:y,b:m,c:x,normal:b})}for(g=0,v=p.length;g<v;g++)for(var E=p[g],S=0;S<3;S++){var w=E[h[S]],A=E[h[(S+1)%3]],P=[Math.min(w,A),Math.max(w,A)];void 0===u[D=P[0]+"-"+P[1]]?u[D]={index1:P[0],index2:P[1],face1:g}:u[D].face2=g}for(var D in u){var N=u[D];if(void 0===N.face2||p[N.face1].normal.dot(p[N.face2].normal)<=r){var R=d[N.index1],T=d[N.index2];i.push(new a.Line3(R,T))}}c.dispose(),d.length=0,p.length=0}}return i},r.prototype.hasFloors=function(){var t=[];return this.traverse((function(e){e instanceof te&&(t[e.floorIndex]=!0)})),t.length},r.prototype.show=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var r=0!==t.length;this.shownfloor=r?t[0]:null,this.needsRender=!0},r.prototype.intersectRaycaster=function(t,e){var r=t.ray,i=r.origin,n=r.direction;if($t(e))if($t(this.shownfloor)){var s=this.hasFloors();e=[];for(var o=0;o<s;o++)e.push(o)}else e=[this.shownfloor];var u=[],h=[];Array.isArray(e)?h.push.apply(h,e):h.push(e);for(var c=function(e){var r=l.bvhs&&l.bvhs[e];if(r){var s=new Ut(i.x,i.y,i.z),o=new Ut(n.x,n.y,n.z);(h=r.intersectRay(s,o,!0).map((function(t){var e=t.intersectionPoint,r=t.triangle,n=new a.Vector3(e.x,e.y,e.z);return{point:n,face:{normal:Pe(r).getNormal(new a.Vector3)},distance:i.distanceTo(n)}}))).length&&u.push.apply(u,h)}else{var h,c=[];l.traverse((function(t){t instanceof te&&t.floorIndex===e&&c.push(t)})),(h=t.intersectObjects(c).map((function(t){var e=t.face?{normal:t.face.normal}:void 0;return{point:t.point,face:e,distance:t.distance}}))).length&&u.push.apply(u,h)}},l=this,f=0,d=h;f<d.length;f++){c(d[f])}return u.filter((function(e){var r=e.distance;return r<=t.far&&r>=t.near})).sort((function(t,e){return t.distance-e.distance}))},r.prototype.buildBVH=function(){var t,e=[];this.traverse((function(t){t instanceof te&&(e[t.floorIndex]=e[t.floorIndex]||[],e[t.floorIndex].push(t.geometry))}));var r=e.map((function(t){var e=t.reduce((function(t,e){return t+(e.index?e.index.array.length:e.attributes.position.array.length)}),0),r=new Float32Array(3*e);return t.reduce((function(t,e){for(var i=e.index?e.index.array:null,n=e.attributes.position.array,s=i?i.length:n.length/3,o=0;o<s;o++){var a=3*(t+o),u=i?3*i[o]:3*o;r[a+0]=n[u+0],r[a+1]=n[u+1],r[a+2]=n[u+2]}return t+s}),0),new Xt(r,10)}));this.bvhs.length=0,(t=this.bvhs).push.apply(t,r),this.bvhs.loaded=!0,this.emit("bvhLoaded")},r.prototype.load=function(t){var e=this;if(!0===this.loaded)throw new Error("model 只能被 load 一次");var r=De[function(t,e){void 0===e&&(e=[]);var r=/([0-9a-z\.\_\-]+)([\?\#].*)?$/i.exec(t);if(r)for(var i=String(r[1]).trim().split("."),n=0,s=e;n<s.length;n++){var o=s[n];if(i.indexOf(o)>=0)return o}}(t.file,Object.keys(De))||""];if(!r)throw new Error("文件类型错误");return r(t).then((function(t){for(var r=t.objects,i=[],n=0,s=r;n<s.length;n++){var o=s[n];o.traverse((function(t){t instanceof te&&(t.geometry.computeBoundingBox(),t.geometry.computeBoundingSphere(),i.push(t.geometry.boundingBox))})),e.add(o)}e.emit("geometryLoaded"),i.length=0,e.emit("loaded"),e.loaded=!0})).catch((function(t){return e.emit("error",t),Promise.reject(t)}))},r.prototype.dispose=function(){for(this.off(),this.disposeGeometry();this.children.length;)this.remove(this.children[0]);this.bvhs.length=0,delete this.bvhs.loaded},r}(de);Object.assign(Ne.prototype,{on:Ae.prototype.on,once:Ae.prototype.once,off:Ae.prototype.off,emit:Ae.prototype.emit,hasListener:Ae.prototype.hasListener});function Re(t){return 0===t.indexOf("//")||/^[0-9a-z]+\:\/\//i.test(t)}function Te(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var r=[];t=t.map((function(t){return t.trim()})).filter((function(t){return t.length>0&&!/^\/+$/.test(t)}));for(var i=0;i<t.length;i++){var n=0===i,s=i===t.length-1,o=t[i];n||(o=o.replace(/^\/+/,"")),s||(o=o.replace(/\/+$/,"")),r.push(o)}return r.join("/")}function Ce(t){Object.freeze(t);var e="function"==typeof t,r=Object.prototype.hasOwnProperty;return Object.getOwnPropertyNames(t).forEach((function(i){!r.call(t,i)||e&&("caller"===i||"callee"===i||"arguments"===i)||null===t[i]||"object"!=typeof t[i]&&"function"!=typeof t[i]||Object.isFrozen(t[i])||Ce(t[i])})),t}function Ie(t,e){if(t===e)return!0;if(t&&e&&"object"==typeof t&&"object"==typeof e){if(t.constructor!==e.constructor)return!1;var r,i,n;if(Array.isArray(t)){if((r=t.length)!=e.length)return!1;for(i=r;0!=i--;)if(!Ie(t[i],e[i]))return!1;return!0}if(t.constructor===RegExp)return t.source===e.source&&t.flags===e.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===e.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===e.toString();if((r=(n=Object.keys(t)).length)!==Object.keys(e).length)return!1;for(i=r;0!=i--;)if(!Object.prototype.hasOwnProperty.call(e,n[i]))return!1;for(i=r;0!=i--;){var s=n[i];if(!Ie(t[s],e[s]))return!1}return!0}return t!=t&&e!=e}function Oe(t){return"number"==typeof t}var Ve=/^([^.]+)(\.([^.]+))*$/;function Be(t,e){return Ve.test(t)&&Ve.test(e)&&function(t,e){if("*"===t)return!0;var r=t.split(".").reverse(),i=e.split(".").reverse();if(r.length<=1)return t===e;for(var n=0;n<r.length;n++)if(r[n]!==i[n])return!1;return!0}(t,e)}"undefined"!=typeof performance&&void 0!==performance.timing?performance.timing.navigationStart:Date.now();var He=Ce(JSON.parse(function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var r=113,i=126,n=0,s="";return arguments[n].split(s).map((function(t){return t.charCodeAt(n)>i?t:String.fromCharCode((t.charCodeAt(n)+r)%i)})).join(s)}("h-/y|pnyu|/9-/xr;p|z/9-/yvn{wvn;p|z/9-/rnyrr;p|z/9-/rnyrr;p{/9-/uv;p|z/9-/uv;p{/9-/ywpq{;p|z/9-/pnyp{|qr;vr/9-/rnyrr;w}/9-/rnyrr:pq{;p|z/-j")));!function(t){function r(e,r,i){return t.call(this,"[NETWORK]: response error(type: ".concat(r,", reason: ").concat(i,"): ").concat(e))||this}e.__extends(r,t)}(Error),function(t){function r(e,r,i){var n=t.call(this,"[NETWORK]: response error(type: ".concat(r,", status: ").concat(i,"): ").concat(e))||this;return n.httpStatus=i,n}e.__extends(r,t)}(Error),function(t){function r(e,r){return t.call(this,"[NETWORK]: request abort(type: ".concat(r,"): ").concat(e))||this}e.__extends(r,t)}(Error),function(t){function r(e,r,i){return t.call(this,"[NETWORK]: request timeout(type: ".concat(r,", timeout: ").concat(i,"ms): ").concat(e))||this}e.__extends(r,t)}(Error),function(t){function r(e,r,i){return t.call(this,"[NETWORK]: request forbidden(type: ".concat(r,", reason: ").concat(i,"): ").concat(e))||this}e.__extends(r,t)}(Error),function(t){function r(){return null!==t&&t.apply(this,arguments)||this}e.__extends(r,t)}(Ae);var _e=function(){return new Error("Invalid input.")},je=function(){return new Error("Invalid certificate.")},ke=function(){return new Error("Invalid signature.")};function Ke(t,e){void 0===e&&(e=!1);var r=typeof t;if("string"===r)return JSON.stringify(t);if(!0===t)return"true";if(!1===t)return"false";if(null===t)return"null";if(t instanceof Array){for(var i="[",n=t.length-1,s=0;s<n;s++)i+=Ke(t[s],!1)+",";return n>-1&&(i+=Ke(t[s],!1)),i+"]"}if(t instanceof Object){if("function"==typeof t.toJSON)return Ke(t.toJSON(),e);var o=Object.keys(t).sort(),a=o.length;for(i="",s=0;s<a;){var u=o[s],h=Ke(t[u],!0);void 0!==h&&(s&&""!==i&&(i+=","),i+=JSON.stringify(u)+":"+h),s++}return"{"+i+"}"}switch(r){case"function":case"undefined":return e?void 0:null;case"number":return 0;default:return isFinite(t)?t:null}}function Le(t){return String(Ke(t,!1))}function Me(t){var e,r,i;if(Array.isArray(t)){var n,s,o=void 0;if(t.length<=0)return _e();for(var a=function(e){var r=Me(t[e]);if(r instanceof Error)return{value:r};if(o){if(o!==r.issuer)return{value:je()}}else o=r.issuer;n?r.expire.getTime()<n.getTime()&&(n=r.expire):n=r.expire,s=s?s.filter((function(t){return-1!==r.allowHosts.indexOf(t)})):r.allowHosts},u=0;u<t.length;u++){var h=a(u);if("object"==typeof h)return h.value}return Ce({issuer:o,expire:n,allowHosts:s})}var c=JSON.parse(t),l="undefined"!=typeof location?location.hostname:"",f=Date.now();if("object"!=typeof c)return _e();var d=new Date("string"==typeof c.expire_at&&/^\d+$/.test(c.expire_at)?Number(c.expire_at):c.expire_at),p=Array.isArray(c.allow_hosts)?c.allow_hosts:[];if(0===l.length||/^(([1-9]?\d|1\d\d|2[0-4]\d|25[0-5])(\.(?!$)|$)){4}$/.test(l)||He.filter((function(t){return Be(t,l)})).length>0){var g=String(null!==(e=c.certificate)&&void 0!==e?e:"");if(g){var v=new Vt;return v.readCertPEM(g),Ce({issuer:v.getSubjectString(),expire:d,allowHosts:p})}return Ce({issuer:"none",expire:d,allowHosts:p})}var y=String(null!==(r=c.certificate)&&void 0!==r?r:"");if(!y)return je();var m=new Vt;m.readCertPEM(y);var x=String(null!==(i=c._signature)&&void 0!==i?i:"");return x?!1===function(t,e,r){var i=new Vt;if("string"==typeof r?i.readCertPEM(r):i.readCertHex(r.hex),!1===kt(i))return!1;var n=new tt;return n.readCertPubKeyHex(i.hex,6),!!n.verify(t,L(e))}(Le(function(t,e){for(var r={},i=0,n=Object.keys(t);i<n.length;i++){var s=n[i];-1===e.indexOf(s)&&(r[s]=t[s])}return r}(c,["_signature"])),x,m)?ke():f<d.getTime()?0===p.filter((function(t){return Be(t,l)})).length?function(t){return new Error("host(".concat(JSON.stringify(t),") is not allowed."))}(l):Ce({issuer:m.getSubjectString(),expire:d,allowHosts:p}):function(t){return new Error("date(".concat(t.toString(),") expired."))}(d):ke()}var ze=new WeakMap,Ue=function(){function t(){this.name="",this.workCode="",this.expire=new Date,this.allowHosts=[],this.initial={mode:"Panorama",latitude:0,longitude:0,panoIndex:0,fov:80},this.observers=[],this.issuer="none",this.raw={works:[""],options:""}}return t.prototype.toJSON=function(){return this.raw.works},t.parse=Ze,t}();function Fe(t){return null==t?"null":Array.isArray(t)?"dict":"object"==typeof t?"array":"value"}function qe(t,e){var r=Fe(t),i=Fe(e);if("null"===i)return t;if("value"===i)return e;if(i!==r)return JSON.parse(JSON.stringify(e));if("array"===e)for(var n=0;n<e.length;n++)t[n]=qe(t[n],e[n]);else if("dict"===e)for(var s in e)t[s]=qe(t[s],e[s]);return t}function Qe(t,e,r){for(var i,n=JSON.stringify(e),s=[],o=0,u=[].concat(t);o<u.length;o++){var h=u[o];h instanceof Ue?s.push.apply(s,h.raw.works):"string"==typeof h?s.push(h):s.push(JSON.stringify(h))}var c=Me(s);if(c instanceof Error)return c;e=JSON.parse(n),t=s.map((function(t){return JSON.parse(t)})).reduce((function(t,e){return qe(t,e)}));var l=new Ue;if(c instanceof Error)return c;l.issuer=c.issuer,l.expire=c.expire,l.allowHosts=c.allowHosts,l.raw={works:s,options:n};var f=null!==(i=t.base_url)&&void 0!==i?i:"";f&&"/"!==f[f.length-1]&&(f+="/");var d=function(t,e){return 0===t.indexOf(e)},p=function(t,i){var n,s=t;if(!0===e.jsonp){s=t.replace(/([\?\#].*)?$/i,"");var o=Bt("".concat(s)).slice(0,7);s="".concat(s,".").concat(o,".jsonp")}if(!0===e.shortPath){var a=s.replace(f,"").split("."),u=null!==(n=a.shift())&&void 0!==n?n:"",h=a.join(".");s=Te(f,Bt(u))+(h?"."+h:"")}var c=s.replace(f,"");return e.baseURL&&(s=Te(e.baseURL,c)),r&&r(t,s,c,i),s},g=function(e,r){var i,n,s,o,a,u,h=e;if(!Re(e)){var c=null!==(u=null!==(o=null!==(n=null===(i=t.panorama)||void 0===i?void 0:i.pano_high_cube_base_url)&&void 0!==n?n:null===(s=t.panorama)||void 0===s?void 0:s.pano_cube_base_url)&&void 0!==o?o:null===(a=t.panorama)||void 0===a?void 0:a.base_url)&&void 0!==u?u:"";c&&(c=Te(c,String(r))),h=Te(c,h)}return Re(h)||(h=Te(f,h)),d(h,f)||console.warn("".concat(h," is not start with base_url(").concat(f,").")),p(h,"panorama")},v=function(t){var e=t;return Re(e)||(e=Te(f,t)),d(e,f)||console.warn("".concat(e," is not start with base_url(").concat(f,").")),p(e,"model")},y=function(t,e){void 0===e&&(e="");var r=t;return Re(r)||(r=Te(e,r)),Re(r)||(r=Te(f,r)),d(r,f)||console.warn("".concat(r," is not start with base_url(").concat(f,").")),p(r,"texture")};if(c instanceof Error)return c;if(l.workCode=String(t.work_code||t.code||t.vr_code||t.workCode),l.name=String(t.name),c instanceof Error)return c;if(t.initial&&("Floorplan"!==t.initial.mode&&"Topview"!==t.initial.mode&&"Panorama"!==t.initial.mode&&"VRPanorama"!==t.initial.mode&&"Model"!==t.initial.mode&&"DepthPanorama"!==t.initial.mode||(l.initial.mode=t.initial.mode),Oe(t.initial.latitude)&&(l.initial.latitude=t.initial.latitude),Oe(t.initial.longitude)?l.initial.longitude=t.initial.longitude:Oe(t.initial.heading)&&(l.initial.longitude=-(360*(t.initial.heading-.25)+90)/180*Math.PI),Oe(t.initial.fov)&&(l.initial.fov=t.initial.fov),Oe(t.initial.panoIndex)?l.initial.panoIndex=t.initial.panoIndex:Oe(t.initial.pano_index)?l.initial.panoIndex=t.initial.pano_index:Oe(t.initial.pano)&&(l.initial.panoIndex=t.initial.pano)),c instanceof Error)return c;if(t.model){var m={bvh:!0,async:!1,textureBase:"",textures:[]};"boolean"==typeof e.modelBvh?m.bvh=e.modelBvh:"boolean"==typeof t.model.bvh?m.bvh=t.model.bvh:"boolean"==typeof t.bvh&&(m.bvh=t.bvh),t.model.file?m.file=v(t.model.file):t.model.file_url&&(m.file=v(t.model.file_url)),t.model.textureBase?m.textureBase=t.model.textureBase:t.model.material_base_url&&(m.textureBase=t.model.material_base_url),Array.isArray(t.model.textures)?m.textures=t.model.textures.map((function(t){return y(t,m.textureBase)})):Array.isArray(t.model.material_textures)&&(m.textures=t.model.material_textures.map((function(t){return y(t,m.textureBase)}))),m.file&&(l.model=m)}if(c instanceof Error)return c;if(t.observers&&Array.isArray(t.observers)){var x=[];t.panorama&&(Array.isArray(t.panorama)?x=t.panorama:Array.isArray(t.panorama.list)?x=t.panorama.list:Array.isArray(t.panorama.info)&&(x=t.panorama.info));for(var b=0;b<t.observers.length;b++){var E={},S=t.observers[b];if(!S)break;var w=x[b];if(!w)break;S=Object.assign({},S,w,{active:!1!==S.active&&!1!==w.active}),E.panoIndex=b,E.active=!1!==S.active,E.loadable=!0===S.loadable,E.images={up:g(S.images?S.images.up:S.up,b),down:g(S.images?S.images.down:S.down,b),right:g(S.images?S.images.right:S.right,b),left:g(S.images?S.images.left:S.left,b),front:g(S.images?S.images.front:S.front,b),back:g(S.images?S.images.back:S.back,b)};var A=S.images?S.images.depth:S.depth;A&&(E.images.depth=g(A,b));var P=S.images?S.images.luminance:S.luminance;P&&(E.images.luminance={up:g(P.up,b),down:g(P.down,b),right:g(P.right,b),left:g(P.left,b),front:g(P.front,b),back:g(P.back,b)});var D=S.images?S.images.tiles:S.tiles;if(D){for(var N=[],R=function(t){var e,r=t.match(/\/cube_(\d+)\//);if(r){var i=Number(r[1]);if(0==((e=i)&e-1)&&0!==e)return i}return!1},T=function(t,e){return t.replace(/\/cube_(\d+)\//,(function(){return"/cube_".concat(e,"/")}))},C=0,I=D;C<I.length;C++){var O=I[C];if("number"==typeof O){var V=O,B=R(E.images.front);if(!1===B)continue;if((M=Math.max(B,512*Math.pow(2,V)))>2048){var H=T(E.images.up,M),_=T(E.images.down,M),j=T(E.images.right,M),k=T(E.images.left,M),K=T(E.images.front,M),L=T(E.images.back,M);N.push({level:V,size:M,up:H,down:_,right:j,left:k,front:K,back:L})}else{H=E.images.up,_=E.images.down,j=E.images.right,k=E.images.left,K=E.images.front,L=E.images.back;N.push({level:V,size:M,up:H,down:_,right:j,left:k,front:K,back:L})}}else{var M;if("number"!=typeof(V=O.level))continue;if("number"!=typeof(M=O.size))continue;H=g(O.up,b),_=g(O.down,b),j=g(O.right,b),k=g(O.left,b),K=g(O.front,b),L=g(O.back,b);N.push({level:V,size:M,up:H,down:_,right:j,left:k,front:K,back:L})}}N.sort((function(t,e){return t.level-e.level})),E.images.tiles=N}if(S.position instanceof a.Vector3)E.position=S.position.clone();else{if(!Array.isArray(S.position))break;E.position=(new a.Vector3).fromArray(S.position)}if(S.standingPosition instanceof a.Vector3)E.standingPosition=S.standingPosition.clone();else if(Array.isArray(S.standingPosition))E.standingPosition=(new a.Vector3).fromArray(S.standingPosition);else if(S.standing_position instanceof a.Vector3)E.standingPosition=S.standing_position.clone();else{if(!Array.isArray(S.standing_position))break;E.standingPosition=(new a.Vector3).fromArray(S.standing_position)}if(S.quaternion instanceof a.Quaternion)E.quaternion=S.quaternion.clone();else if(Array.isArray(S.quaternion))E.quaternion=(new a.Quaternion).fromArray(S.quaternion);else{if(!S.quaternion)break;var z=S.quaternion,U=z.x,F=z.y,q=z.z,Q=z.w;E.quaternion=new a.Quaternion(U,F,q,Q)}if(Array.isArray(S.accessibleNodes)?E.accessibleNodes=S.accessibleNodes.slice():Array.isArray(S.accessible_nodes)&&(E.accessibleNodes=S.accessible_nodes.slice()),Array.isArray(S.visibleNodes)?E.visibleNodes=S.visibleNodes.slice():Array.isArray(S.visible_nodes)&&(E.visibleNodes=S.visible_nodes.slice()),Oe(S.floorIndex)?E.floorIndex=S.floorIndex:Oe(S.floor_index)?E.floorIndex=S.floor_index:E.floorIndex=0,S.video){var Z={};"string"==typeof S.video.source&&(Z.source=S.video.source),S.video.matrix instanceof a.Matrix4?Z.matrix=S.video.matrix.clone():Array.isArray(S.video.matrix)&&(Z.matrix=(new a.Matrix4).fromArray(S.video.matrix)),S.video.size instanceof a.Vector2?Z.size=S.video.size.clone():Array.isArray(S.video.size)&&(Z.size=(new a.Vector2).fromArray(S.video.size)),Z.source&&Z.matrix&&Z.size&&(E.video=Z)}l.observers[b]=E}}if(c instanceof Error)return c;for(var Y=0,G=l.observers;Y<G.length;Y++){if(!(E=G[Y]).accessibleNodes){E.accessibleNodes=[];for(var W=0;W<l.observers.length;W++)l.observers[W]!==E&&E.accessibleNodes.push(W)}if(!E.visibleNodes){E.visibleNodes=[];for(W=0;W<l.observers.length;W++)l.observers[W]!==E&&E.visibleNodes.push(W)}}if(c instanceof Error)return c;var X=Ce(l);return ze.set(X,{works:s,options:n}),X}function Ze(t,e,r){"string"==typeof t&&"{"===t.trim()[0]&&(t=JSON.parse(t));var i=ze.get(t);if(i){if(e&&!Ie(JSON.parse(i.options),e))throw new Error("[PARSE FAILED]: work is parsed with different options.");return t}var n=Qe(t,null!=e?e:{},r);if(n instanceof Error)throw new Error("[PARSE FAILED]: "+n.message);return n}exports.BVH=Xt,exports.BVHIntersect=Wt,exports.BVHNode=Ft,exports.BVHVector3=Ut,exports.Model=Ne,exports.PBMGroup=de,exports.PBMMesh=te,exports.Subscribe=Ae,exports.Work=Ue,exports.parseWork=Ze;
|