@leocuvee/turtlecoin-utils 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (132) hide show
  1. package/.github/workflows/ci.yml +27 -0
  2. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  3. package/.idea/inspectionProfiles/Project_Default.xml +7 -0
  4. package/.idea/misc.xml +6 -0
  5. package/.idea/modules.xml +8 -0
  6. package/.idea/turtlecoin-utils.iml +12 -0
  7. package/.idea/vcs.xml +6 -0
  8. package/.travis.yml +11 -0
  9. package/CONTRIBUTING.md +3 -0
  10. package/LICENSE +674 -0
  11. package/README.md +203 -0
  12. package/config.json +7 -0
  13. package/docs/.nojekyll +0 -0
  14. package/docs/CNAME +1 -0
  15. package/docs/assets/css/main.css +2321 -0
  16. package/docs/assets/images/icons.png +0 -0
  17. package/docs/assets/images/icons@2x.png +0 -0
  18. package/docs/assets/images/widgets.png +0 -0
  19. package/docs/assets/images/widgets@2x.png +0 -0
  20. package/docs/assets/js/main.js +1 -0
  21. package/docs/assets/js/search.js +3 -0
  22. package/docs/classes/address.html +964 -0
  23. package/docs/classes/addressprefix.html +431 -0
  24. package/docs/classes/block.html +965 -0
  25. package/docs/classes/blocktemplate.html +695 -0
  26. package/docs/classes/cryptonote.html +1137 -0
  27. package/docs/classes/ed25519.keypair.html +400 -0
  28. package/docs/classes/ed25519.keys.html +373 -0
  29. package/docs/classes/extranoncetag.extranoncedata.html +454 -0
  30. package/docs/classes/extranoncetag.extranoncepaymentid.html +453 -0
  31. package/docs/classes/extranoncetag.iextranonce.html +347 -0
  32. package/docs/classes/extratag.extramergedmining.html +494 -0
  33. package/docs/classes/extratag.extranonce.html +530 -0
  34. package/docs/classes/extratag.extrapadding.html +456 -0
  35. package/docs/classes/extratag.extrapublickey.html +460 -0
  36. package/docs/classes/extratag.iextratag.html +355 -0
  37. package/docs/classes/levinpacket.html +674 -0
  38. package/docs/classes/levinpayloads.handshake.html +731 -0
  39. package/docs/classes/levinpayloads.ilevinpayload.html +318 -0
  40. package/docs/classes/levinpayloads.liteblock.html +494 -0
  41. package/docs/classes/levinpayloads.missingtransactions.html +494 -0
  42. package/docs/classes/levinpayloads.newblock.html +540 -0
  43. package/docs/classes/levinpayloads.newtransactions.html +402 -0
  44. package/docs/classes/levinpayloads.peerentry.html +610 -0
  45. package/docs/classes/levinpayloads.ping.html +450 -0
  46. package/docs/classes/levinpayloads.rawblock.html +344 -0
  47. package/docs/classes/levinpayloads.requestchain.html +402 -0
  48. package/docs/classes/levinpayloads.requestgetobjects.html +448 -0
  49. package/docs/classes/levinpayloads.requesttxpool.html +402 -0
  50. package/docs/classes/levinpayloads.responsechain.html +494 -0
  51. package/docs/classes/levinpayloads.responsegetobjects.html +540 -0
  52. package/docs/classes/levinpayloads.timedsync.html +540 -0
  53. package/docs/classes/multisig.html +930 -0
  54. package/docs/classes/multisigmessage.html +694 -0
  55. package/docs/classes/parentblock.html +347 -0
  56. package/docs/classes/transaction.html +925 -0
  57. package/docs/classes/transactioninputs.coinbaseinput.html +390 -0
  58. package/docs/classes/transactioninputs.itransactioninput.html +321 -0
  59. package/docs/classes/transactioninputs.keyinput.html +459 -0
  60. package/docs/classes/transactionoutputs.itransactionoutput.html +317 -0
  61. package/docs/classes/transactionoutputs.keyoutput.html +422 -0
  62. package/docs/enums/extranoncetag.noncetagtype.html +246 -0
  63. package/docs/enums/extratag.extratagtype.html +280 -0
  64. package/docs/enums/levinprotocol.commandtype.html +391 -0
  65. package/docs/enums/transactioninputs.inputtype.html +246 -0
  66. package/docs/enums/transactionoutputs.outputtype.html +229 -0
  67. package/docs/globals.html +238 -0
  68. package/docs/index.html +271 -0
  69. package/docs/interfaces/interfaces.config.html +590 -0
  70. package/docs/interfaces/interfaces.daemonblocktemplateresponse.html +323 -0
  71. package/docs/interfaces/interfaces.generatedinput.html +304 -0
  72. package/docs/interfaces/interfaces.generatedoutput.html +285 -0
  73. package/docs/interfaces/interfaces.inputkeys.html +304 -0
  74. package/docs/interfaces/interfaces.ipreparedtransaction.html +268 -0
  75. package/docs/interfaces/interfaces.output.html +399 -0
  76. package/docs/interfaces/interfaces.preparedringsignature.html +377 -0
  77. package/docs/interfaces/interfaces.preparedtransaction.html +329 -0
  78. package/docs/interfaces/interfaces.randomoutput.html +285 -0
  79. package/docs/interfaces/interfaces.transactionrecipient.html +285 -0
  80. package/docs/interfaces/multisiginterfaces.partialkeyimage.html +277 -0
  81. package/docs/interfaces/multisiginterfaces.partialsigningkey.html +277 -0
  82. package/docs/modules/ed25519.html +195 -0
  83. package/docs/modules/extranoncetag.html +208 -0
  84. package/docs/modules/extratag.html +216 -0
  85. package/docs/modules/interfaces.html +231 -0
  86. package/docs/modules/levinpayloads.html +247 -0
  87. package/docs/modules/levinprotocol.html +191 -0
  88. package/docs/modules/multisiginterfaces.html +195 -0
  89. package/docs/modules/transactioninputs.html +208 -0
  90. package/docs/modules/transactionoutputs.html +204 -0
  91. package/index.d.ts +417 -0
  92. package/index.js +1508 -0
  93. package/lib/base58.js +220 -0
  94. package/lib/biginteger.js +1591 -0
  95. package/lib/blocktemplate.js +408 -0
  96. package/lib/crypto.js +19698 -0
  97. package/lib/mnemonic.js +1204 -0
  98. package/lib/nacl-fast-cn.js +608 -0
  99. package/lib/ringsigs.js +24262 -0
  100. package/lib/sha3.js +477 -0
  101. package/package.json +58 -0
  102. package/src/Address.ts +433 -0
  103. package/src/AddressPrefix.ts +117 -0
  104. package/src/Block.ts +556 -0
  105. package/src/BlockTemplate.ts +289 -0
  106. package/src/Common.ts +105 -0
  107. package/src/Config.ts +66 -0
  108. package/src/CryptoNote.ts +1072 -0
  109. package/src/LevinPacket.ts +366 -0
  110. package/src/Multisig.ts +600 -0
  111. package/src/MultisigMessage.ts +374 -0
  112. package/src/ParentBlock.ts +39 -0
  113. package/src/Transaction.ts +628 -0
  114. package/src/Types/ED25519.ts +187 -0
  115. package/src/Types/IExtraNonce.ts +225 -0
  116. package/src/Types/IExtraTag.ts +507 -0
  117. package/src/Types/ITransaction.ts +230 -0
  118. package/src/Types/ITransactionInput.ts +190 -0
  119. package/src/Types/ITransactionOutput.ts +108 -0
  120. package/src/Types/LevinPayloads.ts +1576 -0
  121. package/src/Types/MultisigInterfaces.ts +65 -0
  122. package/src/Types/PortableStorage.ts +289 -0
  123. package/src/Types.ts +36 -0
  124. package/src/index.ts +36 -0
  125. package/test/template.json +6 -0
  126. package/test/test.js +1457 -0
  127. package/tests/blocktemplate.json +6 -0
  128. package/tests/tests.js +215 -0
  129. package/tsconfig.json +15 -0
  130. package/tslint.json +36 -0
  131. package/typedoc.json +10 -0
  132. package/webpack.config.js +15 -0
@@ -0,0 +1,2321 @@
1
+ /*! normalize.css v1.1.3 | MIT License | git.io/normalize */
2
+ /* ==========================================================================
3
+ * HTML5 display definitions
4
+ * ========================================================================== */
5
+ /**
6
+ * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3. */
7
+ article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
8
+ display: block; }
9
+
10
+ /**
11
+ * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3. */
12
+ audio, canvas, video {
13
+ display: inline-block;
14
+ *display: inline;
15
+ *zoom: 1; }
16
+
17
+ /**
18
+ * Prevent modern browsers from displaying `audio` without controls.
19
+ * Remove excess height in iOS 5 devices. */
20
+ audio:not([controls]) {
21
+ display: none;
22
+ height: 0; }
23
+
24
+ /**
25
+ * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
26
+ * Known issue: no IE 6 support. */
27
+ [hidden] {
28
+ display: none; }
29
+
30
+ /* ==========================================================================
31
+ * Base
32
+ * ========================================================================== */
33
+ /**
34
+ * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
35
+ * `em` units.
36
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
37
+ * user zoom. */
38
+ html {
39
+ font-size: 100%;
40
+ /* 1 */
41
+ -ms-text-size-adjust: 100%;
42
+ /* 2 */
43
+ -webkit-text-size-adjust: 100%;
44
+ /* 2 */
45
+ font-family: sans-serif; }
46
+
47
+ /**
48
+ * Address `font-family` inconsistency between `textarea` and other form
49
+ * elements. */
50
+ button, input, select, textarea {
51
+ font-family: sans-serif; }
52
+
53
+ /**
54
+ * Address margins handled incorrectly in IE 6/7. */
55
+ body {
56
+ margin: 0; }
57
+
58
+ /* ==========================================================================
59
+ * Links
60
+ * ========================================================================== */
61
+ /**
62
+ * Address `outline` inconsistency between Chrome and other browsers. */
63
+ a:focus {
64
+ outline: thin dotted; }
65
+
66
+ a:active, a:hover {
67
+ outline: 0; }
68
+
69
+ /**
70
+ * Improve readability when focused and also mouse hovered in all browsers. */
71
+ /* ==========================================================================
72
+ * Typography
73
+ * ========================================================================== */
74
+ /**
75
+ * Address font sizes and margins set differently in IE 6/7.
76
+ * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
77
+ * and Chrome. */
78
+ h1 {
79
+ font-size: 2em;
80
+ margin: 0.67em 0; }
81
+
82
+ h2 {
83
+ font-size: 1.5em;
84
+ margin: 0.83em 0; }
85
+
86
+ h3 {
87
+ font-size: 1.17em;
88
+ margin: 1em 0; }
89
+
90
+ h4, .tsd-index-panel h3 {
91
+ font-size: 1em;
92
+ margin: 1.33em 0; }
93
+
94
+ h5 {
95
+ font-size: 0.83em;
96
+ margin: 1.67em 0; }
97
+
98
+ h6 {
99
+ font-size: 0.67em;
100
+ margin: 2.33em 0; }
101
+
102
+ /**
103
+ * Address styling not present in IE 7/8/9, Safari 5, and Chrome. */
104
+ abbr[title] {
105
+ border-bottom: 1px dotted; }
106
+
107
+ /**
108
+ * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome. */
109
+ b, strong {
110
+ font-weight: bold; }
111
+
112
+ blockquote {
113
+ margin: 1em 40px; }
114
+
115
+ /**
116
+ * Address styling not present in Safari 5 and Chrome. */
117
+ dfn {
118
+ font-style: italic; }
119
+
120
+ /**
121
+ * Address differences between Firefox and other browsers.
122
+ * Known issue: no IE 6/7 normalization. */
123
+ hr {
124
+ box-sizing: content-box;
125
+ height: 0; }
126
+
127
+ /**
128
+ * Address styling not present in IE 6/7/8/9. */
129
+ mark {
130
+ background: #ff0;
131
+ color: #000; }
132
+
133
+ /**
134
+ * Address margins set differently in IE 6/7. */
135
+ p, pre {
136
+ margin: 1em 0; }
137
+
138
+ /**
139
+ * Correct font family set oddly in IE 6, Safari 4/5, and Chrome. */
140
+ code, kbd, pre, samp {
141
+ font-family: monospace, serif;
142
+ _font-family: 'courier new', monospace;
143
+ font-size: 1em; }
144
+
145
+ /**
146
+ * Improve readability of pre-formatted text in all browsers. */
147
+ pre {
148
+ white-space: pre;
149
+ white-space: pre-wrap;
150
+ word-wrap: break-word; }
151
+
152
+ /**
153
+ * Address CSS quotes not supported in IE 6/7. */
154
+ q {
155
+ quotes: none; }
156
+ q:before, q:after {
157
+ content: '';
158
+ content: none; }
159
+
160
+ /**
161
+ * Address `quotes` property not supported in Safari 4. */
162
+ /**
163
+ * Address inconsistent and variable font size in all browsers. */
164
+ small {
165
+ font-size: 80%; }
166
+
167
+ /**
168
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
169
+ sub {
170
+ font-size: 75%;
171
+ line-height: 0;
172
+ position: relative;
173
+ vertical-align: baseline; }
174
+
175
+ sup {
176
+ font-size: 75%;
177
+ line-height: 0;
178
+ position: relative;
179
+ vertical-align: baseline;
180
+ top: -0.5em; }
181
+
182
+ sub {
183
+ bottom: -0.25em; }
184
+
185
+ /* ==========================================================================
186
+ * Lists
187
+ * ========================================================================== */
188
+ /**
189
+ * Address margins set differently in IE 6/7. */
190
+ dl, menu, ol, ul {
191
+ margin: 1em 0; }
192
+
193
+ dd {
194
+ margin: 0 0 0 40px; }
195
+
196
+ /**
197
+ * Address paddings set differently in IE 6/7. */
198
+ menu, ol, ul {
199
+ padding: 0 0 0 40px; }
200
+
201
+ /**
202
+ * Correct list images handled incorrectly in IE 7. */
203
+ nav ul, nav ol {
204
+ list-style: none;
205
+ list-style-image: none; }
206
+
207
+ /* ==========================================================================
208
+ * Embedded content
209
+ * ========================================================================== */
210
+ /**
211
+ * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
212
+ * 2. Improve image quality when scaled in IE 7. */
213
+ img {
214
+ border: 0;
215
+ /* 1 */
216
+ -ms-interpolation-mode: bicubic; }
217
+
218
+ /* 2 */
219
+ /**
220
+ * Correct overflow displayed oddly in IE 9. */
221
+ svg:not(:root) {
222
+ overflow: hidden; }
223
+
224
+ /* ==========================================================================
225
+ * Figures
226
+ * ========================================================================== */
227
+ /**
228
+ * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11. */
229
+ figure, form {
230
+ margin: 0; }
231
+
232
+ /* ==========================================================================
233
+ * Forms
234
+ * ========================================================================== */
235
+ /**
236
+ * Correct margin displayed oddly in IE 6/7. */
237
+ /**
238
+ * Define consistent border, margin, and padding. */
239
+ fieldset {
240
+ border: 1px solid #c0c0c0;
241
+ margin: 0 2px;
242
+ padding: 0.35em 0.625em 0.75em; }
243
+
244
+ /**
245
+ * 1. Correct color not being inherited in IE 6/7/8/9.
246
+ * 2. Correct text not wrapping in Firefox 3.
247
+ * 3. Correct alignment displayed oddly in IE 6/7. */
248
+ legend {
249
+ border: 0;
250
+ /* 1 */
251
+ padding: 0;
252
+ white-space: normal;
253
+ /* 2 */
254
+ *margin-left: -7px; }
255
+
256
+ /* 3 */
257
+ /**
258
+ * 1. Correct font size not being inherited in all browsers.
259
+ * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
260
+ * and Chrome.
261
+ * 3. Improve appearance and consistency in all browsers. */
262
+ button, input, select, textarea {
263
+ font-size: 100%;
264
+ /* 1 */
265
+ margin: 0;
266
+ /* 2 */
267
+ vertical-align: baseline;
268
+ /* 3 */
269
+ *vertical-align: middle; }
270
+
271
+ /* 3 */
272
+ /**
273
+ * Address Firefox 3+ setting `line-height` on `input` using `!important` in
274
+ * the UA stylesheet. */
275
+ button, input {
276
+ line-height: normal; }
277
+
278
+ /**
279
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
280
+ * All other form control elements do not inherit `text-transform` values.
281
+ * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
282
+ * Correct `select` style inheritance in Firefox 4+ and Opera. */
283
+ button, select {
284
+ text-transform: none; }
285
+
286
+ /**
287
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
288
+ * and `video` controls.
289
+ * 2. Correct inability to style clickable `input` types in iOS.
290
+ * 3. Improve usability and consistency of cursor style between image-type
291
+ * `input` and others.
292
+ * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
293
+ * Known issue: inner spacing remains in IE 6. */
294
+ button, html input[type="button"] {
295
+ -webkit-appearance: button;
296
+ /* 2 */
297
+ cursor: pointer;
298
+ /* 3 */
299
+ *overflow: visible; }
300
+
301
+ /* 4 */
302
+ input[type="reset"], input[type="submit"] {
303
+ -webkit-appearance: button;
304
+ /* 2 */
305
+ cursor: pointer;
306
+ /* 3 */
307
+ *overflow: visible; }
308
+
309
+ /* 4 */
310
+ /**
311
+ * Re-set default cursor for disabled elements. */
312
+ button[disabled], html input[disabled] {
313
+ cursor: default; }
314
+
315
+ /**
316
+ * 1. Address box sizing set to content-box in IE 8/9.
317
+ * 2. Remove excess padding in IE 8/9.
318
+ * 3. Remove excess padding in IE 7.
319
+ * Known issue: excess padding remains in IE 6. */
320
+ input {
321
+ /* 3 */ }
322
+ input[type="checkbox"], input[type="radio"] {
323
+ box-sizing: border-box;
324
+ /* 1 */
325
+ padding: 0;
326
+ /* 2 */
327
+ *height: 13px;
328
+ /* 3 */
329
+ *width: 13px; }
330
+ input[type="search"] {
331
+ -webkit-appearance: textfield;
332
+ /* 1 */
333
+ /* 2 */
334
+ box-sizing: content-box; }
335
+ input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
336
+ -webkit-appearance: none; }
337
+
338
+ /**
339
+ * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
340
+ * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
341
+ * (include `-moz` to future-proof). */
342
+ /**
343
+ * Remove inner padding and search cancel button in Safari 5 and Chrome
344
+ * on OS X. */
345
+ /**
346
+ * Remove inner padding and border in Firefox 3+. */
347
+ button::-moz-focus-inner, input::-moz-focus-inner {
348
+ border: 0;
349
+ padding: 0; }
350
+
351
+ /**
352
+ * 1. Remove default vertical scrollbar in IE 6/7/8/9.
353
+ * 2. Improve readability and alignment in all browsers. */
354
+ textarea {
355
+ overflow: auto;
356
+ /* 1 */
357
+ vertical-align: top; }
358
+
359
+ /* 2 */
360
+ /* ==========================================================================
361
+ * Tables
362
+ * ========================================================================== */
363
+ /**
364
+ * Remove most spacing between table cells. */
365
+ table {
366
+ border-collapse: collapse;
367
+ border-spacing: 0; }
368
+
369
+ /*
370
+ *
371
+ *Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name> */
372
+ .hljs {
373
+ display: inline-block;
374
+ padding: 0.5em;
375
+ background: white;
376
+ color: black; }
377
+
378
+ .hljs-comment, .hljs-annotation, .hljs-template_comment, .diff .hljs-header, .hljs-chunk, .apache .hljs-cbracket {
379
+ color: #008000; }
380
+
381
+ .hljs-keyword, .hljs-id, .hljs-built_in, .css .smalltalk .hljs-class, .hljs-winutils, .bash .hljs-variable, .tex .hljs-command, .hljs-request, .hljs-status, .nginx .hljs-title {
382
+ color: #00f; }
383
+
384
+ .xml .hljs-tag {
385
+ color: #00f; }
386
+ .xml .hljs-tag .hljs-value {
387
+ color: #00f; }
388
+
389
+ .hljs-string, .hljs-title, .hljs-parent, .hljs-tag .hljs-value, .hljs-rules .hljs-value {
390
+ color: #a31515; }
391
+
392
+ .ruby .hljs-symbol {
393
+ color: #a31515; }
394
+ .ruby .hljs-symbol .hljs-string {
395
+ color: #a31515; }
396
+
397
+ .hljs-template_tag, .django .hljs-variable, .hljs-addition, .hljs-flow, .hljs-stream, .apache .hljs-tag, .hljs-date, .tex .hljs-formula, .coffeescript .hljs-attribute {
398
+ color: #a31515; }
399
+
400
+ .ruby .hljs-string, .hljs-decorator, .hljs-filter .hljs-argument, .hljs-localvars, .hljs-array, .hljs-attr_selector, .hljs-pseudo, .hljs-pi, .hljs-doctype, .hljs-deletion, .hljs-envvar, .hljs-shebang, .hljs-preprocessor, .hljs-pragma, .userType, .apache .hljs-sqbracket, .nginx .hljs-built_in, .tex .hljs-special, .hljs-prompt {
401
+ color: #2b91af; }
402
+
403
+ .hljs-phpdoc, .hljs-javadoc, .hljs-xmlDocTag {
404
+ color: #808080; }
405
+
406
+ .vhdl .hljs-typename {
407
+ font-weight: bold; }
408
+
409
+ .vhdl .hljs-string {
410
+ color: #666666; }
411
+
412
+ .vhdl .hljs-literal {
413
+ color: #a31515; }
414
+
415
+ .vhdl .hljs-attribute {
416
+ color: #00b0e8; }
417
+
418
+ .xml .hljs-attribute {
419
+ color: #f00; }
420
+
421
+ .col > :first-child, .col-1 > :first-child, .col-2 > :first-child, .col-3 > :first-child, .col-4 > :first-child, .col-5 > :first-child, .col-6 > :first-child, .col-7 > :first-child, .col-8 > :first-child, .col-9 > :first-child, .col-10 > :first-child, .col-11 > :first-child, .tsd-panel > :first-child, ul.tsd-descriptions > li > :first-child,
422
+ .col > :first-child > :first-child,
423
+ .col-1 > :first-child > :first-child,
424
+ .col-2 > :first-child > :first-child,
425
+ .col-3 > :first-child > :first-child,
426
+ .col-4 > :first-child > :first-child,
427
+ .col-5 > :first-child > :first-child,
428
+ .col-6 > :first-child > :first-child,
429
+ .col-7 > :first-child > :first-child,
430
+ .col-8 > :first-child > :first-child,
431
+ .col-9 > :first-child > :first-child,
432
+ .col-10 > :first-child > :first-child,
433
+ .col-11 > :first-child > :first-child,
434
+ .tsd-panel > :first-child > :first-child,
435
+ ul.tsd-descriptions > li > :first-child > :first-child,
436
+ .col > :first-child > :first-child > :first-child,
437
+ .col-1 > :first-child > :first-child > :first-child,
438
+ .col-2 > :first-child > :first-child > :first-child,
439
+ .col-3 > :first-child > :first-child > :first-child,
440
+ .col-4 > :first-child > :first-child > :first-child,
441
+ .col-5 > :first-child > :first-child > :first-child,
442
+ .col-6 > :first-child > :first-child > :first-child,
443
+ .col-7 > :first-child > :first-child > :first-child,
444
+ .col-8 > :first-child > :first-child > :first-child,
445
+ .col-9 > :first-child > :first-child > :first-child,
446
+ .col-10 > :first-child > :first-child > :first-child,
447
+ .col-11 > :first-child > :first-child > :first-child,
448
+ .tsd-panel > :first-child > :first-child > :first-child,
449
+ ul.tsd-descriptions > li > :first-child > :first-child > :first-child {
450
+ margin-top: 0; }
451
+
452
+ .col > :last-child, .col-1 > :last-child, .col-2 > :last-child, .col-3 > :last-child, .col-4 > :last-child, .col-5 > :last-child, .col-6 > :last-child, .col-7 > :last-child, .col-8 > :last-child, .col-9 > :last-child, .col-10 > :last-child, .col-11 > :last-child, .tsd-panel > :last-child, ul.tsd-descriptions > li > :last-child,
453
+ .col > :last-child > :last-child,
454
+ .col-1 > :last-child > :last-child,
455
+ .col-2 > :last-child > :last-child,
456
+ .col-3 > :last-child > :last-child,
457
+ .col-4 > :last-child > :last-child,
458
+ .col-5 > :last-child > :last-child,
459
+ .col-6 > :last-child > :last-child,
460
+ .col-7 > :last-child > :last-child,
461
+ .col-8 > :last-child > :last-child,
462
+ .col-9 > :last-child > :last-child,
463
+ .col-10 > :last-child > :last-child,
464
+ .col-11 > :last-child > :last-child,
465
+ .tsd-panel > :last-child > :last-child,
466
+ ul.tsd-descriptions > li > :last-child > :last-child,
467
+ .col > :last-child > :last-child > :last-child,
468
+ .col-1 > :last-child > :last-child > :last-child,
469
+ .col-2 > :last-child > :last-child > :last-child,
470
+ .col-3 > :last-child > :last-child > :last-child,
471
+ .col-4 > :last-child > :last-child > :last-child,
472
+ .col-5 > :last-child > :last-child > :last-child,
473
+ .col-6 > :last-child > :last-child > :last-child,
474
+ .col-7 > :last-child > :last-child > :last-child,
475
+ .col-8 > :last-child > :last-child > :last-child,
476
+ .col-9 > :last-child > :last-child > :last-child,
477
+ .col-10 > :last-child > :last-child > :last-child,
478
+ .col-11 > :last-child > :last-child > :last-child,
479
+ .tsd-panel > :last-child > :last-child > :last-child,
480
+ ul.tsd-descriptions > li > :last-child > :last-child > :last-child {
481
+ margin-bottom: 0; }
482
+
483
+ .container {
484
+ max-width: 1200px;
485
+ margin: 0 auto;
486
+ padding: 0 40px; }
487
+ @media (max-width: 640px) {
488
+ .container {
489
+ padding: 0 20px; } }
490
+
491
+ .container-main {
492
+ padding-bottom: 200px; }
493
+
494
+ .row {
495
+ display: -ms-flexbox;
496
+ display: flex;
497
+ position: relative;
498
+ margin: 0 -10px; }
499
+ .row:after {
500
+ visibility: hidden;
501
+ display: block;
502
+ content: "";
503
+ clear: both;
504
+ height: 0; }
505
+
506
+ .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11 {
507
+ box-sizing: border-box;
508
+ float: left;
509
+ padding: 0 10px; }
510
+
511
+ .col-1 {
512
+ width: 8.3333333333%; }
513
+
514
+ .offset-1 {
515
+ margin-left: 8.3333333333%; }
516
+
517
+ .col-2 {
518
+ width: 16.6666666667%; }
519
+
520
+ .offset-2 {
521
+ margin-left: 16.6666666667%; }
522
+
523
+ .col-3 {
524
+ width: 25%; }
525
+
526
+ .offset-3 {
527
+ margin-left: 25%; }
528
+
529
+ .col-4 {
530
+ width: 33.3333333333%; }
531
+
532
+ .offset-4 {
533
+ margin-left: 33.3333333333%; }
534
+
535
+ .col-5 {
536
+ width: 41.6666666667%; }
537
+
538
+ .offset-5 {
539
+ margin-left: 41.6666666667%; }
540
+
541
+ .col-6 {
542
+ width: 50%; }
543
+
544
+ .offset-6 {
545
+ margin-left: 50%; }
546
+
547
+ .col-7 {
548
+ width: 58.3333333333%; }
549
+
550
+ .offset-7 {
551
+ margin-left: 58.3333333333%; }
552
+
553
+ .col-8 {
554
+ width: 66.6666666667%; }
555
+
556
+ .offset-8 {
557
+ margin-left: 66.6666666667%; }
558
+
559
+ .col-9 {
560
+ width: 75%; }
561
+
562
+ .offset-9 {
563
+ margin-left: 75%; }
564
+
565
+ .col-10 {
566
+ width: 83.3333333333%; }
567
+
568
+ .offset-10 {
569
+ margin-left: 83.3333333333%; }
570
+
571
+ .col-11 {
572
+ width: 91.6666666667%; }
573
+
574
+ .offset-11 {
575
+ margin-left: 91.6666666667%; }
576
+
577
+ .tsd-kind-icon {
578
+ display: block;
579
+ position: relative;
580
+ padding-left: 20px;
581
+ text-indent: -20px; }
582
+ .tsd-kind-icon:before {
583
+ content: '';
584
+ display: inline-block;
585
+ vertical-align: middle;
586
+ width: 17px;
587
+ height: 17px;
588
+ margin: 0 3px 2px 0;
589
+ background-image: url(../images/icons.png); }
590
+ @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
591
+ .tsd-kind-icon:before {
592
+ background-image: url(../images/icons@2x.png);
593
+ background-size: 238px 204px; } }
594
+
595
+ .tsd-signature.tsd-kind-icon:before {
596
+ background-position: 0 -153px; }
597
+
598
+ .tsd-kind-object-literal > .tsd-kind-icon:before {
599
+ background-position: 0px -17px; }
600
+
601
+ .tsd-kind-object-literal.tsd-is-protected > .tsd-kind-icon:before {
602
+ background-position: -17px -17px; }
603
+
604
+ .tsd-kind-object-literal.tsd-is-private > .tsd-kind-icon:before {
605
+ background-position: -34px -17px; }
606
+
607
+ .tsd-kind-class > .tsd-kind-icon:before {
608
+ background-position: 0px -34px; }
609
+
610
+ .tsd-kind-class.tsd-is-protected > .tsd-kind-icon:before {
611
+ background-position: -17px -34px; }
612
+
613
+ .tsd-kind-class.tsd-is-private > .tsd-kind-icon:before {
614
+ background-position: -34px -34px; }
615
+
616
+ .tsd-kind-class.tsd-has-type-parameter > .tsd-kind-icon:before {
617
+ background-position: 0px -51px; }
618
+
619
+ .tsd-kind-class.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before {
620
+ background-position: -17px -51px; }
621
+
622
+ .tsd-kind-class.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before {
623
+ background-position: -34px -51px; }
624
+
625
+ .tsd-kind-interface > .tsd-kind-icon:before {
626
+ background-position: 0px -68px; }
627
+
628
+ .tsd-kind-interface.tsd-is-protected > .tsd-kind-icon:before {
629
+ background-position: -17px -68px; }
630
+
631
+ .tsd-kind-interface.tsd-is-private > .tsd-kind-icon:before {
632
+ background-position: -34px -68px; }
633
+
634
+ .tsd-kind-interface.tsd-has-type-parameter > .tsd-kind-icon:before {
635
+ background-position: 0px -85px; }
636
+
637
+ .tsd-kind-interface.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before {
638
+ background-position: -17px -85px; }
639
+
640
+ .tsd-kind-interface.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before {
641
+ background-position: -34px -85px; }
642
+
643
+ .tsd-kind-module > .tsd-kind-icon:before {
644
+ background-position: 0px -102px; }
645
+
646
+ .tsd-kind-module.tsd-is-protected > .tsd-kind-icon:before {
647
+ background-position: -17px -102px; }
648
+
649
+ .tsd-kind-module.tsd-is-private > .tsd-kind-icon:before {
650
+ background-position: -34px -102px; }
651
+
652
+ .tsd-kind-external-module > .tsd-kind-icon:before {
653
+ background-position: 0px -102px; }
654
+
655
+ .tsd-kind-external-module.tsd-is-protected > .tsd-kind-icon:before {
656
+ background-position: -17px -102px; }
657
+
658
+ .tsd-kind-external-module.tsd-is-private > .tsd-kind-icon:before {
659
+ background-position: -34px -102px; }
660
+
661
+ .tsd-kind-enum > .tsd-kind-icon:before {
662
+ background-position: 0px -119px; }
663
+
664
+ .tsd-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
665
+ background-position: -17px -119px; }
666
+
667
+ .tsd-kind-enum.tsd-is-private > .tsd-kind-icon:before {
668
+ background-position: -34px -119px; }
669
+
670
+ .tsd-kind-enum-member > .tsd-kind-icon:before {
671
+ background-position: 0px -136px; }
672
+
673
+ .tsd-kind-enum-member.tsd-is-protected > .tsd-kind-icon:before {
674
+ background-position: -17px -136px; }
675
+
676
+ .tsd-kind-enum-member.tsd-is-private > .tsd-kind-icon:before {
677
+ background-position: -34px -136px; }
678
+
679
+ .tsd-kind-signature > .tsd-kind-icon:before {
680
+ background-position: 0px -153px; }
681
+
682
+ .tsd-kind-signature.tsd-is-protected > .tsd-kind-icon:before {
683
+ background-position: -17px -153px; }
684
+
685
+ .tsd-kind-signature.tsd-is-private > .tsd-kind-icon:before {
686
+ background-position: -34px -153px; }
687
+
688
+ .tsd-kind-type-alias > .tsd-kind-icon:before {
689
+ background-position: 0px -170px; }
690
+
691
+ .tsd-kind-type-alias.tsd-is-protected > .tsd-kind-icon:before {
692
+ background-position: -17px -170px; }
693
+
694
+ .tsd-kind-type-alias.tsd-is-private > .tsd-kind-icon:before {
695
+ background-position: -34px -170px; }
696
+
697
+ .tsd-kind-type-alias.tsd-has-type-parameter > .tsd-kind-icon:before {
698
+ background-position: 0px -187px; }
699
+
700
+ .tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before {
701
+ background-position: -17px -187px; }
702
+
703
+ .tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before {
704
+ background-position: -34px -187px; }
705
+
706
+ .tsd-kind-variable > .tsd-kind-icon:before {
707
+ background-position: -136px -0px; }
708
+
709
+ .tsd-kind-variable.tsd-is-protected > .tsd-kind-icon:before {
710
+ background-position: -153px -0px; }
711
+
712
+ .tsd-kind-variable.tsd-is-private > .tsd-kind-icon:before {
713
+ background-position: -119px -0px; }
714
+
715
+ .tsd-kind-variable.tsd-parent-kind-class > .tsd-kind-icon:before {
716
+ background-position: -51px -0px; }
717
+
718
+ .tsd-kind-variable.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
719
+ background-position: -68px -0px; }
720
+
721
+ .tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
722
+ background-position: -85px -0px; }
723
+
724
+ .tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
725
+ background-position: -102px -0px; }
726
+
727
+ .tsd-kind-variable.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
728
+ background-position: -119px -0px; }
729
+
730
+ .tsd-kind-variable.tsd-parent-kind-enum > .tsd-kind-icon:before {
731
+ background-position: -170px -0px; }
732
+
733
+ .tsd-kind-variable.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
734
+ background-position: -187px -0px; }
735
+
736
+ .tsd-kind-variable.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
737
+ background-position: -119px -0px; }
738
+
739
+ .tsd-kind-variable.tsd-parent-kind-interface > .tsd-kind-icon:before {
740
+ background-position: -204px -0px; }
741
+
742
+ .tsd-kind-variable.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
743
+ background-position: -221px -0px; }
744
+
745
+ .tsd-kind-property > .tsd-kind-icon:before {
746
+ background-position: -136px -0px; }
747
+
748
+ .tsd-kind-property.tsd-is-protected > .tsd-kind-icon:before {
749
+ background-position: -153px -0px; }
750
+
751
+ .tsd-kind-property.tsd-is-private > .tsd-kind-icon:before {
752
+ background-position: -119px -0px; }
753
+
754
+ .tsd-kind-property.tsd-parent-kind-class > .tsd-kind-icon:before {
755
+ background-position: -51px -0px; }
756
+
757
+ .tsd-kind-property.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
758
+ background-position: -68px -0px; }
759
+
760
+ .tsd-kind-property.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
761
+ background-position: -85px -0px; }
762
+
763
+ .tsd-kind-property.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
764
+ background-position: -102px -0px; }
765
+
766
+ .tsd-kind-property.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
767
+ background-position: -119px -0px; }
768
+
769
+ .tsd-kind-property.tsd-parent-kind-enum > .tsd-kind-icon:before {
770
+ background-position: -170px -0px; }
771
+
772
+ .tsd-kind-property.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
773
+ background-position: -187px -0px; }
774
+
775
+ .tsd-kind-property.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
776
+ background-position: -119px -0px; }
777
+
778
+ .tsd-kind-property.tsd-parent-kind-interface > .tsd-kind-icon:before {
779
+ background-position: -204px -0px; }
780
+
781
+ .tsd-kind-property.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
782
+ background-position: -221px -0px; }
783
+
784
+ .tsd-kind-get-signature > .tsd-kind-icon:before {
785
+ background-position: -136px -17px; }
786
+
787
+ .tsd-kind-get-signature.tsd-is-protected > .tsd-kind-icon:before {
788
+ background-position: -153px -17px; }
789
+
790
+ .tsd-kind-get-signature.tsd-is-private > .tsd-kind-icon:before {
791
+ background-position: -119px -17px; }
792
+
793
+ .tsd-kind-get-signature.tsd-parent-kind-class > .tsd-kind-icon:before {
794
+ background-position: -51px -17px; }
795
+
796
+ .tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
797
+ background-position: -68px -17px; }
798
+
799
+ .tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
800
+ background-position: -85px -17px; }
801
+
802
+ .tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
803
+ background-position: -102px -17px; }
804
+
805
+ .tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
806
+ background-position: -119px -17px; }
807
+
808
+ .tsd-kind-get-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {
809
+ background-position: -170px -17px; }
810
+
811
+ .tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
812
+ background-position: -187px -17px; }
813
+
814
+ .tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
815
+ background-position: -119px -17px; }
816
+
817
+ .tsd-kind-get-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {
818
+ background-position: -204px -17px; }
819
+
820
+ .tsd-kind-get-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
821
+ background-position: -221px -17px; }
822
+
823
+ .tsd-kind-set-signature > .tsd-kind-icon:before {
824
+ background-position: -136px -34px; }
825
+
826
+ .tsd-kind-set-signature.tsd-is-protected > .tsd-kind-icon:before {
827
+ background-position: -153px -34px; }
828
+
829
+ .tsd-kind-set-signature.tsd-is-private > .tsd-kind-icon:before {
830
+ background-position: -119px -34px; }
831
+
832
+ .tsd-kind-set-signature.tsd-parent-kind-class > .tsd-kind-icon:before {
833
+ background-position: -51px -34px; }
834
+
835
+ .tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
836
+ background-position: -68px -34px; }
837
+
838
+ .tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
839
+ background-position: -85px -34px; }
840
+
841
+ .tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
842
+ background-position: -102px -34px; }
843
+
844
+ .tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
845
+ background-position: -119px -34px; }
846
+
847
+ .tsd-kind-set-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {
848
+ background-position: -170px -34px; }
849
+
850
+ .tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
851
+ background-position: -187px -34px; }
852
+
853
+ .tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
854
+ background-position: -119px -34px; }
855
+
856
+ .tsd-kind-set-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {
857
+ background-position: -204px -34px; }
858
+
859
+ .tsd-kind-set-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
860
+ background-position: -221px -34px; }
861
+
862
+ .tsd-kind-accessor > .tsd-kind-icon:before {
863
+ background-position: -136px -51px; }
864
+
865
+ .tsd-kind-accessor.tsd-is-protected > .tsd-kind-icon:before {
866
+ background-position: -153px -51px; }
867
+
868
+ .tsd-kind-accessor.tsd-is-private > .tsd-kind-icon:before {
869
+ background-position: -119px -51px; }
870
+
871
+ .tsd-kind-accessor.tsd-parent-kind-class > .tsd-kind-icon:before {
872
+ background-position: -51px -51px; }
873
+
874
+ .tsd-kind-accessor.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
875
+ background-position: -68px -51px; }
876
+
877
+ .tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
878
+ background-position: -85px -51px; }
879
+
880
+ .tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
881
+ background-position: -102px -51px; }
882
+
883
+ .tsd-kind-accessor.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
884
+ background-position: -119px -51px; }
885
+
886
+ .tsd-kind-accessor.tsd-parent-kind-enum > .tsd-kind-icon:before {
887
+ background-position: -170px -51px; }
888
+
889
+ .tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
890
+ background-position: -187px -51px; }
891
+
892
+ .tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
893
+ background-position: -119px -51px; }
894
+
895
+ .tsd-kind-accessor.tsd-parent-kind-interface > .tsd-kind-icon:before {
896
+ background-position: -204px -51px; }
897
+
898
+ .tsd-kind-accessor.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
899
+ background-position: -221px -51px; }
900
+
901
+ .tsd-kind-function > .tsd-kind-icon:before {
902
+ background-position: -136px -68px; }
903
+
904
+ .tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before {
905
+ background-position: -153px -68px; }
906
+
907
+ .tsd-kind-function.tsd-is-private > .tsd-kind-icon:before {
908
+ background-position: -119px -68px; }
909
+
910
+ .tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before {
911
+ background-position: -51px -68px; }
912
+
913
+ .tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
914
+ background-position: -68px -68px; }
915
+
916
+ .tsd-kind-function.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
917
+ background-position: -85px -68px; }
918
+
919
+ .tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
920
+ background-position: -102px -68px; }
921
+
922
+ .tsd-kind-function.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
923
+ background-position: -119px -68px; }
924
+
925
+ .tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before {
926
+ background-position: -170px -68px; }
927
+
928
+ .tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
929
+ background-position: -187px -68px; }
930
+
931
+ .tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
932
+ background-position: -119px -68px; }
933
+
934
+ .tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before {
935
+ background-position: -204px -68px; }
936
+
937
+ .tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
938
+ background-position: -221px -68px; }
939
+
940
+ .tsd-kind-method > .tsd-kind-icon:before {
941
+ background-position: -136px -68px; }
942
+
943
+ .tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before {
944
+ background-position: -153px -68px; }
945
+
946
+ .tsd-kind-method.tsd-is-private > .tsd-kind-icon:before {
947
+ background-position: -119px -68px; }
948
+
949
+ .tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before {
950
+ background-position: -51px -68px; }
951
+
952
+ .tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
953
+ background-position: -68px -68px; }
954
+
955
+ .tsd-kind-method.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
956
+ background-position: -85px -68px; }
957
+
958
+ .tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
959
+ background-position: -102px -68px; }
960
+
961
+ .tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
962
+ background-position: -119px -68px; }
963
+
964
+ .tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before {
965
+ background-position: -170px -68px; }
966
+
967
+ .tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
968
+ background-position: -187px -68px; }
969
+
970
+ .tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
971
+ background-position: -119px -68px; }
972
+
973
+ .tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before {
974
+ background-position: -204px -68px; }
975
+
976
+ .tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
977
+ background-position: -221px -68px; }
978
+
979
+ .tsd-kind-call-signature > .tsd-kind-icon:before {
980
+ background-position: -136px -68px; }
981
+
982
+ .tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before {
983
+ background-position: -153px -68px; }
984
+
985
+ .tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before {
986
+ background-position: -119px -68px; }
987
+
988
+ .tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before {
989
+ background-position: -51px -68px; }
990
+
991
+ .tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
992
+ background-position: -68px -68px; }
993
+
994
+ .tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
995
+ background-position: -85px -68px; }
996
+
997
+ .tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
998
+ background-position: -102px -68px; }
999
+
1000
+ .tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
1001
+ background-position: -119px -68px; }
1002
+
1003
+ .tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {
1004
+ background-position: -170px -68px; }
1005
+
1006
+ .tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
1007
+ background-position: -187px -68px; }
1008
+
1009
+ .tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
1010
+ background-position: -119px -68px; }
1011
+
1012
+ .tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {
1013
+ background-position: -204px -68px; }
1014
+
1015
+ .tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
1016
+ background-position: -221px -68px; }
1017
+
1018
+ .tsd-kind-function.tsd-has-type-parameter > .tsd-kind-icon:before {
1019
+ background-position: -136px -85px; }
1020
+
1021
+ .tsd-kind-function.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before {
1022
+ background-position: -153px -85px; }
1023
+
1024
+ .tsd-kind-function.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before {
1025
+ background-position: -119px -85px; }
1026
+
1027
+ .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class > .tsd-kind-icon:before {
1028
+ background-position: -51px -85px; }
1029
+
1030
+ .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
1031
+ background-position: -68px -85px; }
1032
+
1033
+ .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
1034
+ background-position: -85px -85px; }
1035
+
1036
+ .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
1037
+ background-position: -102px -85px; }
1038
+
1039
+ .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
1040
+ background-position: -119px -85px; }
1041
+
1042
+ .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum > .tsd-kind-icon:before {
1043
+ background-position: -170px -85px; }
1044
+
1045
+ .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
1046
+ background-position: -187px -85px; }
1047
+
1048
+ .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
1049
+ background-position: -119px -85px; }
1050
+
1051
+ .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface > .tsd-kind-icon:before {
1052
+ background-position: -204px -85px; }
1053
+
1054
+ .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
1055
+ background-position: -221px -85px; }
1056
+
1057
+ .tsd-kind-method.tsd-has-type-parameter > .tsd-kind-icon:before {
1058
+ background-position: -136px -85px; }
1059
+
1060
+ .tsd-kind-method.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before {
1061
+ background-position: -153px -85px; }
1062
+
1063
+ .tsd-kind-method.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before {
1064
+ background-position: -119px -85px; }
1065
+
1066
+ .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class > .tsd-kind-icon:before {
1067
+ background-position: -51px -85px; }
1068
+
1069
+ .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
1070
+ background-position: -68px -85px; }
1071
+
1072
+ .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
1073
+ background-position: -85px -85px; }
1074
+
1075
+ .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
1076
+ background-position: -102px -85px; }
1077
+
1078
+ .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
1079
+ background-position: -119px -85px; }
1080
+
1081
+ .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum > .tsd-kind-icon:before {
1082
+ background-position: -170px -85px; }
1083
+
1084
+ .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
1085
+ background-position: -187px -85px; }
1086
+
1087
+ .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
1088
+ background-position: -119px -85px; }
1089
+
1090
+ .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface > .tsd-kind-icon:before {
1091
+ background-position: -204px -85px; }
1092
+
1093
+ .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
1094
+ background-position: -221px -85px; }
1095
+
1096
+ .tsd-kind-constructor > .tsd-kind-icon:before {
1097
+ background-position: -136px -102px; }
1098
+
1099
+ .tsd-kind-constructor.tsd-is-protected > .tsd-kind-icon:before {
1100
+ background-position: -153px -102px; }
1101
+
1102
+ .tsd-kind-constructor.tsd-is-private > .tsd-kind-icon:before {
1103
+ background-position: -119px -102px; }
1104
+
1105
+ .tsd-kind-constructor.tsd-parent-kind-class > .tsd-kind-icon:before {
1106
+ background-position: -51px -102px; }
1107
+
1108
+ .tsd-kind-constructor.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
1109
+ background-position: -68px -102px; }
1110
+
1111
+ .tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
1112
+ background-position: -85px -102px; }
1113
+
1114
+ .tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
1115
+ background-position: -102px -102px; }
1116
+
1117
+ .tsd-kind-constructor.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
1118
+ background-position: -119px -102px; }
1119
+
1120
+ .tsd-kind-constructor.tsd-parent-kind-enum > .tsd-kind-icon:before {
1121
+ background-position: -170px -102px; }
1122
+
1123
+ .tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
1124
+ background-position: -187px -102px; }
1125
+
1126
+ .tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
1127
+ background-position: -119px -102px; }
1128
+
1129
+ .tsd-kind-constructor.tsd-parent-kind-interface > .tsd-kind-icon:before {
1130
+ background-position: -204px -102px; }
1131
+
1132
+ .tsd-kind-constructor.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
1133
+ background-position: -221px -102px; }
1134
+
1135
+ .tsd-kind-constructor-signature > .tsd-kind-icon:before {
1136
+ background-position: -136px -102px; }
1137
+
1138
+ .tsd-kind-constructor-signature.tsd-is-protected > .tsd-kind-icon:before {
1139
+ background-position: -153px -102px; }
1140
+
1141
+ .tsd-kind-constructor-signature.tsd-is-private > .tsd-kind-icon:before {
1142
+ background-position: -119px -102px; }
1143
+
1144
+ .tsd-kind-constructor-signature.tsd-parent-kind-class > .tsd-kind-icon:before {
1145
+ background-position: -51px -102px; }
1146
+
1147
+ .tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
1148
+ background-position: -68px -102px; }
1149
+
1150
+ .tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
1151
+ background-position: -85px -102px; }
1152
+
1153
+ .tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
1154
+ background-position: -102px -102px; }
1155
+
1156
+ .tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
1157
+ background-position: -119px -102px; }
1158
+
1159
+ .tsd-kind-constructor-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {
1160
+ background-position: -170px -102px; }
1161
+
1162
+ .tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
1163
+ background-position: -187px -102px; }
1164
+
1165
+ .tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
1166
+ background-position: -119px -102px; }
1167
+
1168
+ .tsd-kind-constructor-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {
1169
+ background-position: -204px -102px; }
1170
+
1171
+ .tsd-kind-constructor-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
1172
+ background-position: -221px -102px; }
1173
+
1174
+ .tsd-kind-index-signature > .tsd-kind-icon:before {
1175
+ background-position: -136px -119px; }
1176
+
1177
+ .tsd-kind-index-signature.tsd-is-protected > .tsd-kind-icon:before {
1178
+ background-position: -153px -119px; }
1179
+
1180
+ .tsd-kind-index-signature.tsd-is-private > .tsd-kind-icon:before {
1181
+ background-position: -119px -119px; }
1182
+
1183
+ .tsd-kind-index-signature.tsd-parent-kind-class > .tsd-kind-icon:before {
1184
+ background-position: -51px -119px; }
1185
+
1186
+ .tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
1187
+ background-position: -68px -119px; }
1188
+
1189
+ .tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
1190
+ background-position: -85px -119px; }
1191
+
1192
+ .tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
1193
+ background-position: -102px -119px; }
1194
+
1195
+ .tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
1196
+ background-position: -119px -119px; }
1197
+
1198
+ .tsd-kind-index-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {
1199
+ background-position: -170px -119px; }
1200
+
1201
+ .tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
1202
+ background-position: -187px -119px; }
1203
+
1204
+ .tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
1205
+ background-position: -119px -119px; }
1206
+
1207
+ .tsd-kind-index-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {
1208
+ background-position: -204px -119px; }
1209
+
1210
+ .tsd-kind-index-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
1211
+ background-position: -221px -119px; }
1212
+
1213
+ .tsd-kind-event > .tsd-kind-icon:before {
1214
+ background-position: -136px -136px; }
1215
+
1216
+ .tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before {
1217
+ background-position: -153px -136px; }
1218
+
1219
+ .tsd-kind-event.tsd-is-private > .tsd-kind-icon:before {
1220
+ background-position: -119px -136px; }
1221
+
1222
+ .tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before {
1223
+ background-position: -51px -136px; }
1224
+
1225
+ .tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
1226
+ background-position: -68px -136px; }
1227
+
1228
+ .tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
1229
+ background-position: -85px -136px; }
1230
+
1231
+ .tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
1232
+ background-position: -102px -136px; }
1233
+
1234
+ .tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
1235
+ background-position: -119px -136px; }
1236
+
1237
+ .tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before {
1238
+ background-position: -170px -136px; }
1239
+
1240
+ .tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
1241
+ background-position: -187px -136px; }
1242
+
1243
+ .tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
1244
+ background-position: -119px -136px; }
1245
+
1246
+ .tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before {
1247
+ background-position: -204px -136px; }
1248
+
1249
+ .tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
1250
+ background-position: -221px -136px; }
1251
+
1252
+ .tsd-is-static > .tsd-kind-icon:before {
1253
+ background-position: -136px -153px; }
1254
+
1255
+ .tsd-is-static.tsd-is-protected > .tsd-kind-icon:before {
1256
+ background-position: -153px -153px; }
1257
+
1258
+ .tsd-is-static.tsd-is-private > .tsd-kind-icon:before {
1259
+ background-position: -119px -153px; }
1260
+
1261
+ .tsd-is-static.tsd-parent-kind-class > .tsd-kind-icon:before {
1262
+ background-position: -51px -153px; }
1263
+
1264
+ .tsd-is-static.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
1265
+ background-position: -68px -153px; }
1266
+
1267
+ .tsd-is-static.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
1268
+ background-position: -85px -153px; }
1269
+
1270
+ .tsd-is-static.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
1271
+ background-position: -102px -153px; }
1272
+
1273
+ .tsd-is-static.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
1274
+ background-position: -119px -153px; }
1275
+
1276
+ .tsd-is-static.tsd-parent-kind-enum > .tsd-kind-icon:before {
1277
+ background-position: -170px -153px; }
1278
+
1279
+ .tsd-is-static.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
1280
+ background-position: -187px -153px; }
1281
+
1282
+ .tsd-is-static.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
1283
+ background-position: -119px -153px; }
1284
+
1285
+ .tsd-is-static.tsd-parent-kind-interface > .tsd-kind-icon:before {
1286
+ background-position: -204px -153px; }
1287
+
1288
+ .tsd-is-static.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
1289
+ background-position: -221px -153px; }
1290
+
1291
+ .tsd-is-static.tsd-kind-function > .tsd-kind-icon:before {
1292
+ background-position: -136px -170px; }
1293
+
1294
+ .tsd-is-static.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before {
1295
+ background-position: -153px -170px; }
1296
+
1297
+ .tsd-is-static.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before {
1298
+ background-position: -119px -170px; }
1299
+
1300
+ .tsd-is-static.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before {
1301
+ background-position: -51px -170px; }
1302
+
1303
+ .tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
1304
+ background-position: -68px -170px; }
1305
+
1306
+ .tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
1307
+ background-position: -85px -170px; }
1308
+
1309
+ .tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
1310
+ background-position: -102px -170px; }
1311
+
1312
+ .tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
1313
+ background-position: -119px -170px; }
1314
+
1315
+ .tsd-is-static.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before {
1316
+ background-position: -170px -170px; }
1317
+
1318
+ .tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
1319
+ background-position: -187px -170px; }
1320
+
1321
+ .tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
1322
+ background-position: -119px -170px; }
1323
+
1324
+ .tsd-is-static.tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before {
1325
+ background-position: -204px -170px; }
1326
+
1327
+ .tsd-is-static.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
1328
+ background-position: -221px -170px; }
1329
+
1330
+ .tsd-is-static.tsd-kind-method > .tsd-kind-icon:before {
1331
+ background-position: -136px -170px; }
1332
+
1333
+ .tsd-is-static.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before {
1334
+ background-position: -153px -170px; }
1335
+
1336
+ .tsd-is-static.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before {
1337
+ background-position: -119px -170px; }
1338
+
1339
+ .tsd-is-static.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before {
1340
+ background-position: -51px -170px; }
1341
+
1342
+ .tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
1343
+ background-position: -68px -170px; }
1344
+
1345
+ .tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
1346
+ background-position: -85px -170px; }
1347
+
1348
+ .tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
1349
+ background-position: -102px -170px; }
1350
+
1351
+ .tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
1352
+ background-position: -119px -170px; }
1353
+
1354
+ .tsd-is-static.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before {
1355
+ background-position: -170px -170px; }
1356
+
1357
+ .tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
1358
+ background-position: -187px -170px; }
1359
+
1360
+ .tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
1361
+ background-position: -119px -170px; }
1362
+
1363
+ .tsd-is-static.tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before {
1364
+ background-position: -204px -170px; }
1365
+
1366
+ .tsd-is-static.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
1367
+ background-position: -221px -170px; }
1368
+
1369
+ .tsd-is-static.tsd-kind-call-signature > .tsd-kind-icon:before {
1370
+ background-position: -136px -170px; }
1371
+
1372
+ .tsd-is-static.tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before {
1373
+ background-position: -153px -170px; }
1374
+
1375
+ .tsd-is-static.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before {
1376
+ background-position: -119px -170px; }
1377
+
1378
+ .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before {
1379
+ background-position: -51px -170px; }
1380
+
1381
+ .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
1382
+ background-position: -68px -170px; }
1383
+
1384
+ .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
1385
+ background-position: -85px -170px; }
1386
+
1387
+ .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
1388
+ background-position: -102px -170px; }
1389
+
1390
+ .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
1391
+ background-position: -119px -170px; }
1392
+
1393
+ .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {
1394
+ background-position: -170px -170px; }
1395
+
1396
+ .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
1397
+ background-position: -187px -170px; }
1398
+
1399
+ .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
1400
+ background-position: -119px -170px; }
1401
+
1402
+ .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {
1403
+ background-position: -204px -170px; }
1404
+
1405
+ .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
1406
+ background-position: -221px -170px; }
1407
+
1408
+ .tsd-is-static.tsd-kind-event > .tsd-kind-icon:before {
1409
+ background-position: -136px -187px; }
1410
+
1411
+ .tsd-is-static.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before {
1412
+ background-position: -153px -187px; }
1413
+
1414
+ .tsd-is-static.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before {
1415
+ background-position: -119px -187px; }
1416
+
1417
+ .tsd-is-static.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before {
1418
+ background-position: -51px -187px; }
1419
+
1420
+ .tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
1421
+ background-position: -68px -187px; }
1422
+
1423
+ .tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
1424
+ background-position: -85px -187px; }
1425
+
1426
+ .tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
1427
+ background-position: -102px -187px; }
1428
+
1429
+ .tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
1430
+ background-position: -119px -187px; }
1431
+
1432
+ .tsd-is-static.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before {
1433
+ background-position: -170px -187px; }
1434
+
1435
+ .tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
1436
+ background-position: -187px -187px; }
1437
+
1438
+ .tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
1439
+ background-position: -119px -187px; }
1440
+
1441
+ .tsd-is-static.tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before {
1442
+ background-position: -204px -187px; }
1443
+
1444
+ .tsd-is-static.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
1445
+ background-position: -221px -187px; }
1446
+
1447
+ .no-transition {
1448
+ transition: none !important; }
1449
+
1450
+ @keyframes fade-in {
1451
+ from {
1452
+ opacity: 0; }
1453
+ to {
1454
+ opacity: 1; } }
1455
+
1456
+ @keyframes fade-out {
1457
+ from {
1458
+ opacity: 1;
1459
+ visibility: visible; }
1460
+ to {
1461
+ opacity: 0; } }
1462
+
1463
+ @keyframes fade-in-delayed {
1464
+ 0% {
1465
+ opacity: 0; }
1466
+ 33% {
1467
+ opacity: 0; }
1468
+ 100% {
1469
+ opacity: 1; } }
1470
+
1471
+ @keyframes fade-out-delayed {
1472
+ 0% {
1473
+ opacity: 1;
1474
+ visibility: visible; }
1475
+ 66% {
1476
+ opacity: 0; }
1477
+ 100% {
1478
+ opacity: 0; } }
1479
+
1480
+ @keyframes shift-to-left {
1481
+ from {
1482
+ transform: translate(0, 0); }
1483
+ to {
1484
+ transform: translate(-25%, 0); } }
1485
+
1486
+ @keyframes unshift-to-left {
1487
+ from {
1488
+ transform: translate(-25%, 0); }
1489
+ to {
1490
+ transform: translate(0, 0); } }
1491
+
1492
+ @keyframes pop-in-from-right {
1493
+ from {
1494
+ transform: translate(100%, 0); }
1495
+ to {
1496
+ transform: translate(0, 0); } }
1497
+
1498
+ @keyframes pop-out-to-right {
1499
+ from {
1500
+ transform: translate(0, 0);
1501
+ visibility: visible; }
1502
+ to {
1503
+ transform: translate(100%, 0); } }
1504
+
1505
+ body {
1506
+ background: #fdfdfd;
1507
+ font-family: "Segoe UI", sans-serif;
1508
+ font-size: 16px;
1509
+ color: #222; }
1510
+
1511
+ a {
1512
+ color: #4da6ff;
1513
+ text-decoration: none; }
1514
+ a:hover {
1515
+ text-decoration: underline; }
1516
+
1517
+ code, pre {
1518
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
1519
+ padding: 0.2em;
1520
+ margin: 0;
1521
+ font-size: 14px;
1522
+ background-color: rgba(0, 0, 0, 0.04); }
1523
+
1524
+ pre {
1525
+ padding: 10px; }
1526
+ pre code {
1527
+ padding: 0;
1528
+ font-size: 100%;
1529
+ background-color: transparent; }
1530
+
1531
+ .tsd-typography {
1532
+ line-height: 1.333em; }
1533
+ .tsd-typography ul {
1534
+ list-style: square;
1535
+ padding: 0 0 0 20px;
1536
+ margin: 0; }
1537
+ .tsd-typography h4, .tsd-typography .tsd-index-panel h3, .tsd-index-panel .tsd-typography h3, .tsd-typography h5, .tsd-typography h6 {
1538
+ font-size: 1em;
1539
+ margin: 0; }
1540
+ .tsd-typography h5, .tsd-typography h6 {
1541
+ font-weight: normal; }
1542
+ .tsd-typography p, .tsd-typography ul, .tsd-typography ol {
1543
+ margin: 1em 0; }
1544
+
1545
+ @media (min-width: 901px) and (max-width: 1024px) {
1546
+ html.default .col-content {
1547
+ width: 72%; }
1548
+ html.default .col-menu {
1549
+ width: 28%; }
1550
+ html.default .tsd-navigation {
1551
+ padding-left: 10px; } }
1552
+
1553
+ @media (max-width: 900px) {
1554
+ html.default .col-content {
1555
+ float: none;
1556
+ width: 100%; }
1557
+ html.default .col-menu {
1558
+ position: fixed !important;
1559
+ overflow: auto;
1560
+ -webkit-overflow-scrolling: touch;
1561
+ z-index: 1024;
1562
+ top: 0 !important;
1563
+ bottom: 0 !important;
1564
+ left: auto !important;
1565
+ right: 0 !important;
1566
+ width: 100%;
1567
+ padding: 20px 20px 0 0;
1568
+ max-width: 450px;
1569
+ visibility: hidden;
1570
+ background-color: #fff;
1571
+ transform: translate(100%, 0); }
1572
+ html.default .col-menu > *:last-child {
1573
+ padding-bottom: 20px; }
1574
+ html.default .overlay {
1575
+ content: '';
1576
+ display: block;
1577
+ position: fixed;
1578
+ z-index: 1023;
1579
+ top: 0;
1580
+ left: 0;
1581
+ right: 0;
1582
+ bottom: 0;
1583
+ background-color: rgba(0, 0, 0, 0.75);
1584
+ visibility: hidden; }
1585
+ html.default.to-has-menu .overlay {
1586
+ animation: fade-in 0.4s; }
1587
+ html.default.to-has-menu header,
1588
+ html.default.to-has-menu footer,
1589
+ html.default.to-has-menu .col-content {
1590
+ animation: shift-to-left 0.4s; }
1591
+ html.default.to-has-menu .col-menu {
1592
+ animation: pop-in-from-right 0.4s; }
1593
+ html.default.from-has-menu .overlay {
1594
+ animation: fade-out 0.4s; }
1595
+ html.default.from-has-menu header,
1596
+ html.default.from-has-menu footer,
1597
+ html.default.from-has-menu .col-content {
1598
+ animation: unshift-to-left 0.4s; }
1599
+ html.default.from-has-menu .col-menu {
1600
+ animation: pop-out-to-right 0.4s; }
1601
+ html.default.has-menu body {
1602
+ overflow: hidden; }
1603
+ html.default.has-menu .overlay {
1604
+ visibility: visible; }
1605
+ html.default.has-menu header,
1606
+ html.default.has-menu footer,
1607
+ html.default.has-menu .col-content {
1608
+ transform: translate(-25%, 0); }
1609
+ html.default.has-menu .col-menu {
1610
+ visibility: visible;
1611
+ transform: translate(0, 0); } }
1612
+
1613
+ .tsd-page-title {
1614
+ padding: 70px 0 20px 0;
1615
+ margin: 0 0 40px 0;
1616
+ background: #fff;
1617
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.35); }
1618
+ .tsd-page-title h1 {
1619
+ margin: 0; }
1620
+
1621
+ .tsd-breadcrumb {
1622
+ margin: 0;
1623
+ padding: 0;
1624
+ color: #808080; }
1625
+ .tsd-breadcrumb a {
1626
+ color: #808080;
1627
+ text-decoration: none; }
1628
+ .tsd-breadcrumb a:hover {
1629
+ text-decoration: underline; }
1630
+ .tsd-breadcrumb li {
1631
+ display: inline; }
1632
+ .tsd-breadcrumb li:after {
1633
+ content: ' / '; }
1634
+
1635
+ html.minimal .container {
1636
+ margin: 0; }
1637
+
1638
+ html.minimal .container-main {
1639
+ padding-top: 50px;
1640
+ padding-bottom: 0; }
1641
+
1642
+ html.minimal .content-wrap {
1643
+ padding-left: 300px; }
1644
+
1645
+ html.minimal .tsd-navigation {
1646
+ position: fixed !important;
1647
+ overflow: auto;
1648
+ -webkit-overflow-scrolling: touch;
1649
+ box-sizing: border-box;
1650
+ z-index: 1;
1651
+ left: 0;
1652
+ top: 40px;
1653
+ bottom: 0;
1654
+ width: 300px;
1655
+ padding: 20px;
1656
+ margin: 0; }
1657
+
1658
+ html.minimal .tsd-member .tsd-member {
1659
+ margin-left: 0; }
1660
+
1661
+ html.minimal .tsd-page-toolbar {
1662
+ position: fixed;
1663
+ z-index: 2; }
1664
+
1665
+ html.minimal #tsd-filter .tsd-filter-group {
1666
+ right: 0;
1667
+ transform: none; }
1668
+
1669
+ html.minimal footer {
1670
+ background-color: transparent; }
1671
+ html.minimal footer .container {
1672
+ padding: 0; }
1673
+
1674
+ html.minimal .tsd-generator {
1675
+ padding: 0; }
1676
+
1677
+ @media (max-width: 900px) {
1678
+ html.minimal .tsd-navigation {
1679
+ display: none; }
1680
+ html.minimal .content-wrap {
1681
+ padding-left: 0; } }
1682
+
1683
+ dl.tsd-comment-tags {
1684
+ overflow: hidden; }
1685
+ dl.tsd-comment-tags dt {
1686
+ float: left;
1687
+ padding: 1px 5px;
1688
+ margin: 0 10px 0 0;
1689
+ border-radius: 4px;
1690
+ border: 1px solid #808080;
1691
+ color: #808080;
1692
+ font-size: 0.8em;
1693
+ font-weight: normal; }
1694
+ dl.tsd-comment-tags dd {
1695
+ margin: 0 0 10px 0; }
1696
+ dl.tsd-comment-tags dd:before, dl.tsd-comment-tags dd:after {
1697
+ display: table;
1698
+ content: " "; }
1699
+ dl.tsd-comment-tags dd pre, dl.tsd-comment-tags dd:after {
1700
+ clear: both; }
1701
+ dl.tsd-comment-tags p {
1702
+ margin: 0; }
1703
+
1704
+ .tsd-panel.tsd-comment .lead {
1705
+ font-size: 1.1em;
1706
+ line-height: 1.333em;
1707
+ margin-bottom: 2em; }
1708
+ .tsd-panel.tsd-comment .lead:last-child {
1709
+ margin-bottom: 0; }
1710
+
1711
+ .toggle-protected .tsd-is-private {
1712
+ display: none; }
1713
+
1714
+ .toggle-public .tsd-is-private,
1715
+ .toggle-public .tsd-is-protected,
1716
+ .toggle-public .tsd-is-private-protected {
1717
+ display: none; }
1718
+
1719
+ .toggle-inherited .tsd-is-inherited {
1720
+ display: none; }
1721
+
1722
+ .toggle-only-exported .tsd-is-not-exported {
1723
+ display: none; }
1724
+
1725
+ .toggle-externals .tsd-is-external {
1726
+ display: none; }
1727
+
1728
+ #tsd-filter {
1729
+ position: relative;
1730
+ display: inline-block;
1731
+ height: 40px;
1732
+ vertical-align: bottom; }
1733
+ .no-filter #tsd-filter {
1734
+ display: none; }
1735
+ #tsd-filter .tsd-filter-group {
1736
+ display: inline-block;
1737
+ height: 40px;
1738
+ vertical-align: bottom;
1739
+ white-space: nowrap; }
1740
+ #tsd-filter input {
1741
+ display: none; }
1742
+ @media (max-width: 900px) {
1743
+ #tsd-filter .tsd-filter-group {
1744
+ display: block;
1745
+ position: absolute;
1746
+ top: 40px;
1747
+ right: 20px;
1748
+ height: auto;
1749
+ background-color: #fff;
1750
+ visibility: hidden;
1751
+ transform: translate(50%, 0);
1752
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); }
1753
+ .has-options #tsd-filter .tsd-filter-group {
1754
+ visibility: visible; }
1755
+ .to-has-options #tsd-filter .tsd-filter-group {
1756
+ animation: fade-in 0.2s; }
1757
+ .from-has-options #tsd-filter .tsd-filter-group {
1758
+ animation: fade-out 0.2s; }
1759
+ #tsd-filter label,
1760
+ #tsd-filter .tsd-select {
1761
+ display: block;
1762
+ padding-right: 20px; } }
1763
+
1764
+ footer {
1765
+ border-top: 1px solid #eee;
1766
+ background-color: #fff; }
1767
+ footer.with-border-bottom {
1768
+ border-bottom: 1px solid #eee; }
1769
+ footer .tsd-legend-group {
1770
+ font-size: 0; }
1771
+ footer .tsd-legend {
1772
+ display: inline-block;
1773
+ width: 25%;
1774
+ padding: 0;
1775
+ font-size: 16px;
1776
+ list-style: none;
1777
+ line-height: 1.333em;
1778
+ vertical-align: top; }
1779
+ @media (max-width: 900px) {
1780
+ footer .tsd-legend {
1781
+ width: 50%; } }
1782
+
1783
+ .tsd-hierarchy {
1784
+ list-style: square;
1785
+ padding: 0 0 0 20px;
1786
+ margin: 0; }
1787
+ .tsd-hierarchy .target {
1788
+ font-weight: bold; }
1789
+
1790
+ .tsd-index-panel .tsd-index-content {
1791
+ margin-bottom: -30px !important; }
1792
+
1793
+ .tsd-index-panel .tsd-index-section {
1794
+ margin-bottom: 30px !important; }
1795
+
1796
+ .tsd-index-panel h3 {
1797
+ margin: 0 -20px 10px -20px;
1798
+ padding: 0 20px 10px 20px;
1799
+ border-bottom: 1px solid #eee; }
1800
+
1801
+ .tsd-index-panel ul.tsd-index-list {
1802
+ -moz-column-count: 3;
1803
+ -ms-column-count: 3;
1804
+ -o-column-count: 3;
1805
+ column-count: 3;
1806
+ -moz-column-gap: 20px;
1807
+ -ms-column-gap: 20px;
1808
+ -o-column-gap: 20px;
1809
+ column-gap: 20px;
1810
+ padding: 0;
1811
+ list-style: none;
1812
+ line-height: 1.333em; }
1813
+ @media (max-width: 900px) {
1814
+ .tsd-index-panel ul.tsd-index-list {
1815
+ -moz-column-count: 1;
1816
+ -ms-column-count: 1;
1817
+ -o-column-count: 1;
1818
+ column-count: 1; } }
1819
+ @media (min-width: 901px) and (max-width: 1024px) {
1820
+ .tsd-index-panel ul.tsd-index-list {
1821
+ -moz-column-count: 2;
1822
+ -ms-column-count: 2;
1823
+ -o-column-count: 2;
1824
+ column-count: 2; } }
1825
+ .tsd-index-panel ul.tsd-index-list li {
1826
+ -webkit-page-break-inside: avoid;
1827
+ -moz-page-break-inside: avoid;
1828
+ -ms-page-break-inside: avoid;
1829
+ -o-page-break-inside: avoid;
1830
+ page-break-inside: avoid; }
1831
+
1832
+ .tsd-index-panel a,
1833
+ .tsd-index-panel .tsd-parent-kind-module a {
1834
+ color: #9600ff; }
1835
+
1836
+ .tsd-index-panel .tsd-parent-kind-interface a {
1837
+ color: #7da01f; }
1838
+
1839
+ .tsd-index-panel .tsd-parent-kind-enum a {
1840
+ color: #cc9900; }
1841
+
1842
+ .tsd-index-panel .tsd-parent-kind-class a {
1843
+ color: #4da6ff; }
1844
+
1845
+ .tsd-index-panel .tsd-kind-module a {
1846
+ color: #9600ff; }
1847
+
1848
+ .tsd-index-panel .tsd-kind-interface a {
1849
+ color: #7da01f; }
1850
+
1851
+ .tsd-index-panel .tsd-kind-enum a {
1852
+ color: #cc9900; }
1853
+
1854
+ .tsd-index-panel .tsd-kind-class a {
1855
+ color: #4da6ff; }
1856
+
1857
+ .tsd-index-panel .tsd-is-private a {
1858
+ color: #808080; }
1859
+
1860
+ .tsd-flag {
1861
+ display: inline-block;
1862
+ padding: 1px 5px;
1863
+ border-radius: 4px;
1864
+ color: #fff;
1865
+ background-color: #808080;
1866
+ text-indent: 0;
1867
+ font-size: 14px;
1868
+ font-weight: normal; }
1869
+
1870
+ .tsd-anchor {
1871
+ position: absolute;
1872
+ top: -100px; }
1873
+
1874
+ .tsd-member {
1875
+ position: relative; }
1876
+ .tsd-member .tsd-anchor + h3 {
1877
+ margin-top: 0;
1878
+ margin-bottom: 0;
1879
+ border-bottom: none; }
1880
+
1881
+ .tsd-navigation {
1882
+ margin: 0 0 0 40px; }
1883
+ .tsd-navigation a {
1884
+ display: block;
1885
+ padding-top: 2px;
1886
+ padding-bottom: 2px;
1887
+ border-left: 2px solid transparent;
1888
+ color: #222;
1889
+ text-decoration: none;
1890
+ transition: border-left-color 0.1s; }
1891
+ .tsd-navigation a:hover {
1892
+ text-decoration: underline; }
1893
+ .tsd-navigation ul {
1894
+ margin: 0;
1895
+ padding: 0;
1896
+ list-style: none; }
1897
+ .tsd-navigation li {
1898
+ padding: 0; }
1899
+
1900
+ .tsd-navigation.primary {
1901
+ padding-bottom: 40px; }
1902
+ .tsd-navigation.primary a {
1903
+ display: block;
1904
+ padding-top: 6px;
1905
+ padding-bottom: 6px; }
1906
+ .tsd-navigation.primary ul li a {
1907
+ padding-left: 5px; }
1908
+ .tsd-navigation.primary ul li li a {
1909
+ padding-left: 25px; }
1910
+ .tsd-navigation.primary ul li li li a {
1911
+ padding-left: 45px; }
1912
+ .tsd-navigation.primary ul li li li li a {
1913
+ padding-left: 65px; }
1914
+ .tsd-navigation.primary ul li li li li li a {
1915
+ padding-left: 85px; }
1916
+ .tsd-navigation.primary ul li li li li li li a {
1917
+ padding-left: 105px; }
1918
+ .tsd-navigation.primary > ul {
1919
+ border-bottom: 1px solid #eee; }
1920
+ .tsd-navigation.primary li {
1921
+ border-top: 1px solid #eee; }
1922
+ .tsd-navigation.primary li.current > a {
1923
+ font-weight: bold; }
1924
+ .tsd-navigation.primary li.label span {
1925
+ display: block;
1926
+ padding: 20px 0 6px 5px;
1927
+ color: #808080; }
1928
+ .tsd-navigation.primary li.globals + li > span,
1929
+ .tsd-navigation.primary li.globals + li > a {
1930
+ padding-top: 20px; }
1931
+
1932
+ .tsd-navigation.secondary {
1933
+ max-height: calc(100vh - 1rem - 40px);
1934
+ overflow: auto;
1935
+ position: -webkit-sticky;
1936
+ position: sticky;
1937
+ top: calc(.5rem + 40px);
1938
+ transition: .3s; }
1939
+ .tsd-navigation.secondary.tsd-navigation--toolbar-hide {
1940
+ max-height: calc(100vh - 1rem);
1941
+ top: .5rem; }
1942
+ .tsd-navigation.secondary ul {
1943
+ transition: opacity 0.2s; }
1944
+ .tsd-navigation.secondary ul li a {
1945
+ padding-left: 25px; }
1946
+ .tsd-navigation.secondary ul li li a {
1947
+ padding-left: 45px; }
1948
+ .tsd-navigation.secondary ul li li li a {
1949
+ padding-left: 65px; }
1950
+ .tsd-navigation.secondary ul li li li li a {
1951
+ padding-left: 85px; }
1952
+ .tsd-navigation.secondary ul li li li li li a {
1953
+ padding-left: 105px; }
1954
+ .tsd-navigation.secondary ul li li li li li li a {
1955
+ padding-left: 125px; }
1956
+ .tsd-navigation.secondary ul.current a {
1957
+ border-left-color: #eee; }
1958
+ .tsd-navigation.secondary li.focus > a,
1959
+ .tsd-navigation.secondary ul.current li.focus > a {
1960
+ border-left-color: #000; }
1961
+ .tsd-navigation.secondary li.current {
1962
+ margin-top: 20px;
1963
+ margin-bottom: 20px;
1964
+ border-left-color: #eee; }
1965
+ .tsd-navigation.secondary li.current > a {
1966
+ font-weight: bold; }
1967
+
1968
+ @media (min-width: 901px) {
1969
+ .menu-sticky-wrap {
1970
+ position: static; } }
1971
+
1972
+ .tsd-panel {
1973
+ margin: 20px 0;
1974
+ padding: 20px;
1975
+ background-color: #fff;
1976
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); }
1977
+ .tsd-panel:empty {
1978
+ display: none; }
1979
+ .tsd-panel > h1, .tsd-panel > h2, .tsd-panel > h3 {
1980
+ margin: 1.5em -20px 10px -20px;
1981
+ padding: 0 20px 10px 20px;
1982
+ border-bottom: 1px solid #eee; }
1983
+ .tsd-panel > h1.tsd-before-signature, .tsd-panel > h2.tsd-before-signature, .tsd-panel > h3.tsd-before-signature {
1984
+ margin-bottom: 0;
1985
+ border-bottom: 0; }
1986
+ .tsd-panel table {
1987
+ display: block;
1988
+ width: 100%;
1989
+ overflow: auto;
1990
+ margin-top: 10px;
1991
+ word-break: normal;
1992
+ word-break: keep-all; }
1993
+ .tsd-panel table th {
1994
+ font-weight: bold; }
1995
+ .tsd-panel table th, .tsd-panel table td {
1996
+ padding: 6px 13px;
1997
+ border: 1px solid #ddd; }
1998
+ .tsd-panel table tr {
1999
+ background-color: #fff;
2000
+ border-top: 1px solid #ccc; }
2001
+ .tsd-panel table tr:nth-child(2n) {
2002
+ background-color: #f8f8f8; }
2003
+
2004
+ .tsd-panel-group {
2005
+ margin: 60px 0; }
2006
+ .tsd-panel-group > h1, .tsd-panel-group > h2, .tsd-panel-group > h3 {
2007
+ padding-left: 20px;
2008
+ padding-right: 20px; }
2009
+
2010
+ #tsd-search {
2011
+ transition: background-color 0.2s; }
2012
+ #tsd-search .title {
2013
+ position: relative;
2014
+ z-index: 2; }
2015
+ #tsd-search .field {
2016
+ position: absolute;
2017
+ left: 0;
2018
+ top: 0;
2019
+ right: 40px;
2020
+ height: 40px; }
2021
+ #tsd-search .field input {
2022
+ box-sizing: border-box;
2023
+ position: relative;
2024
+ top: -50px;
2025
+ z-index: 1;
2026
+ width: 100%;
2027
+ padding: 0 10px;
2028
+ opacity: 0;
2029
+ outline: 0;
2030
+ border: 0;
2031
+ background: transparent;
2032
+ color: #222; }
2033
+ #tsd-search .field label {
2034
+ position: absolute;
2035
+ overflow: hidden;
2036
+ right: -40px; }
2037
+ #tsd-search .field input,
2038
+ #tsd-search .title {
2039
+ transition: opacity 0.2s; }
2040
+ #tsd-search .results {
2041
+ position: absolute;
2042
+ visibility: hidden;
2043
+ top: 40px;
2044
+ width: 100%;
2045
+ margin: 0;
2046
+ padding: 0;
2047
+ list-style: none;
2048
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); }
2049
+ #tsd-search .results li {
2050
+ padding: 0 10px;
2051
+ background-color: #fdfdfd; }
2052
+ #tsd-search .results li:nth-child(even) {
2053
+ background-color: #fff; }
2054
+ #tsd-search .results li.state {
2055
+ display: none; }
2056
+ #tsd-search .results li.current,
2057
+ #tsd-search .results li:hover {
2058
+ background-color: #eee; }
2059
+ #tsd-search .results a {
2060
+ display: block; }
2061
+ #tsd-search .results a:before {
2062
+ top: 10px; }
2063
+ #tsd-search .results span.parent {
2064
+ color: #808080;
2065
+ font-weight: normal; }
2066
+ #tsd-search.has-focus {
2067
+ background-color: #eee; }
2068
+ #tsd-search.has-focus .field input {
2069
+ top: 0;
2070
+ opacity: 1; }
2071
+ #tsd-search.has-focus .title {
2072
+ z-index: 0;
2073
+ opacity: 0; }
2074
+ #tsd-search.has-focus .results {
2075
+ visibility: visible; }
2076
+ #tsd-search.loading .results li.state.loading {
2077
+ display: block; }
2078
+ #tsd-search.failure .results li.state.failure {
2079
+ display: block; }
2080
+
2081
+ .tsd-signature {
2082
+ margin: 0 0 1em 0;
2083
+ padding: 10px;
2084
+ border: 1px solid #eee;
2085
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
2086
+ font-size: 14px; }
2087
+ .tsd-signature.tsd-kind-icon {
2088
+ padding-left: 30px; }
2089
+ .tsd-signature.tsd-kind-icon:before {
2090
+ top: 10px;
2091
+ left: 10px; }
2092
+ .tsd-panel > .tsd-signature {
2093
+ margin-left: -20px;
2094
+ margin-right: -20px;
2095
+ border-width: 1px 0; }
2096
+ .tsd-panel > .tsd-signature.tsd-kind-icon {
2097
+ padding-left: 40px; }
2098
+ .tsd-panel > .tsd-signature.tsd-kind-icon:before {
2099
+ left: 20px; }
2100
+
2101
+ .tsd-signature-symbol {
2102
+ color: #808080;
2103
+ font-weight: normal; }
2104
+
2105
+ .tsd-signature-type {
2106
+ font-style: italic;
2107
+ font-weight: normal; }
2108
+
2109
+ .tsd-signatures {
2110
+ padding: 0;
2111
+ margin: 0 0 1em 0;
2112
+ border: 1px solid #eee; }
2113
+ .tsd-signatures .tsd-signature {
2114
+ margin: 0;
2115
+ border-width: 1px 0 0 0;
2116
+ transition: background-color 0.1s; }
2117
+ .tsd-signatures .tsd-signature:first-child {
2118
+ border-top-width: 0; }
2119
+ .tsd-signatures .tsd-signature.current {
2120
+ background-color: #eee; }
2121
+ .tsd-signatures.active > .tsd-signature {
2122
+ cursor: pointer; }
2123
+ .tsd-panel > .tsd-signatures {
2124
+ margin-left: -20px;
2125
+ margin-right: -20px;
2126
+ border-width: 1px 0; }
2127
+ .tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon {
2128
+ padding-left: 40px; }
2129
+ .tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon:before {
2130
+ left: 20px; }
2131
+ .tsd-panel > a.anchor + .tsd-signatures {
2132
+ border-top-width: 0;
2133
+ margin-top: -20px; }
2134
+
2135
+ ul.tsd-descriptions {
2136
+ position: relative;
2137
+ overflow: hidden;
2138
+ transition: height 0.3s;
2139
+ padding: 0;
2140
+ list-style: none; }
2141
+ ul.tsd-descriptions.active > .tsd-description {
2142
+ display: none; }
2143
+ ul.tsd-descriptions.active > .tsd-description.current {
2144
+ display: block; }
2145
+ ul.tsd-descriptions.active > .tsd-description.fade-in {
2146
+ animation: fade-in-delayed 0.3s; }
2147
+ ul.tsd-descriptions.active > .tsd-description.fade-out {
2148
+ animation: fade-out-delayed 0.3s;
2149
+ position: absolute;
2150
+ display: block;
2151
+ top: 0;
2152
+ left: 0;
2153
+ right: 0;
2154
+ opacity: 0;
2155
+ visibility: hidden; }
2156
+ ul.tsd-descriptions h4, ul.tsd-descriptions .tsd-index-panel h3, .tsd-index-panel ul.tsd-descriptions h3 {
2157
+ font-size: 16px;
2158
+ margin: 1em 0 0.5em 0; }
2159
+
2160
+ ul.tsd-parameters,
2161
+ ul.tsd-type-parameters {
2162
+ list-style: square;
2163
+ margin: 0;
2164
+ padding-left: 20px; }
2165
+ ul.tsd-parameters > li.tsd-parameter-siganture,
2166
+ ul.tsd-type-parameters > li.tsd-parameter-siganture {
2167
+ list-style: none;
2168
+ margin-left: -20px; }
2169
+ ul.tsd-parameters h5,
2170
+ ul.tsd-type-parameters h5 {
2171
+ font-size: 16px;
2172
+ margin: 1em 0 0.5em 0; }
2173
+ ul.tsd-parameters .tsd-comment,
2174
+ ul.tsd-type-parameters .tsd-comment {
2175
+ margin-top: -0.5em; }
2176
+
2177
+ .tsd-sources {
2178
+ font-size: 14px;
2179
+ color: #808080;
2180
+ margin: 0 0 1em 0; }
2181
+ .tsd-sources a {
2182
+ color: #808080;
2183
+ text-decoration: underline; }
2184
+ .tsd-sources ul, .tsd-sources p {
2185
+ margin: 0 !important; }
2186
+ .tsd-sources ul {
2187
+ list-style: none;
2188
+ padding: 0; }
2189
+
2190
+ .tsd-page-toolbar {
2191
+ position: fixed;
2192
+ z-index: 1;
2193
+ top: 0;
2194
+ left: 0;
2195
+ width: 100%;
2196
+ height: 40px;
2197
+ color: #333;
2198
+ background: #fff;
2199
+ border-bottom: 1px solid #eee;
2200
+ transition: transform .3s linear; }
2201
+ .tsd-page-toolbar a {
2202
+ color: #333;
2203
+ text-decoration: none; }
2204
+ .tsd-page-toolbar a.title {
2205
+ font-weight: bold; }
2206
+ .tsd-page-toolbar a.title:hover {
2207
+ text-decoration: underline; }
2208
+ .tsd-page-toolbar .table-wrap {
2209
+ display: table;
2210
+ width: 100%;
2211
+ height: 40px; }
2212
+ .tsd-page-toolbar .table-cell {
2213
+ display: table-cell;
2214
+ position: relative;
2215
+ white-space: nowrap;
2216
+ line-height: 40px; }
2217
+ .tsd-page-toolbar .table-cell:first-child {
2218
+ width: 100%; }
2219
+
2220
+ .tsd-page-toolbar--hide {
2221
+ transform: translateY(-100%); }
2222
+
2223
+ .tsd-widget:before, .tsd-select .tsd-select-label:before, .tsd-select .tsd-select-list li:before {
2224
+ content: '';
2225
+ display: inline-block;
2226
+ width: 40px;
2227
+ height: 40px;
2228
+ margin: 0 -8px 0 0;
2229
+ background-image: url(../images/widgets.png);
2230
+ background-repeat: no-repeat;
2231
+ text-indent: -1024px;
2232
+ vertical-align: bottom; }
2233
+ @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
2234
+ .tsd-widget:before, .tsd-select .tsd-select-label:before, .tsd-select .tsd-select-list li:before {
2235
+ background-image: url(../images/widgets@2x.png);
2236
+ background-size: 320px 40px; } }
2237
+
2238
+ .tsd-widget {
2239
+ display: inline-block;
2240
+ overflow: hidden;
2241
+ opacity: 0.6;
2242
+ height: 40px;
2243
+ transition: opacity 0.1s, background-color 0.2s;
2244
+ vertical-align: bottom;
2245
+ cursor: pointer; }
2246
+ .tsd-widget:hover {
2247
+ opacity: 0.8; }
2248
+ .tsd-widget.active {
2249
+ opacity: 1;
2250
+ background-color: #eee; }
2251
+ .tsd-widget.no-caption {
2252
+ width: 40px; }
2253
+ .tsd-widget.no-caption:before {
2254
+ margin: 0; }
2255
+ .tsd-widget.search:before {
2256
+ background-position: 0 0; }
2257
+ .tsd-widget.menu:before {
2258
+ background-position: -40px 0; }
2259
+ .tsd-widget.options:before {
2260
+ background-position: -80px 0; }
2261
+ .tsd-widget.options, .tsd-widget.menu {
2262
+ display: none; }
2263
+ @media (max-width: 900px) {
2264
+ .tsd-widget.options, .tsd-widget.menu {
2265
+ display: inline-block; } }
2266
+ input[type=checkbox] + .tsd-widget:before {
2267
+ background-position: -120px 0; }
2268
+ input[type=checkbox]:checked + .tsd-widget:before {
2269
+ background-position: -160px 0; }
2270
+
2271
+ .tsd-select {
2272
+ position: relative;
2273
+ display: inline-block;
2274
+ height: 40px;
2275
+ transition: opacity 0.1s, background-color 0.2s;
2276
+ vertical-align: bottom;
2277
+ cursor: pointer; }
2278
+ .tsd-select .tsd-select-label {
2279
+ opacity: 0.6;
2280
+ transition: opacity 0.2s; }
2281
+ .tsd-select .tsd-select-label:before {
2282
+ background-position: -240px 0; }
2283
+ .tsd-select.active .tsd-select-label {
2284
+ opacity: 0.8; }
2285
+ .tsd-select.active .tsd-select-list {
2286
+ visibility: visible;
2287
+ opacity: 1;
2288
+ transition-delay: 0s; }
2289
+ .tsd-select .tsd-select-list {
2290
+ position: absolute;
2291
+ visibility: hidden;
2292
+ top: 40px;
2293
+ left: 0;
2294
+ margin: 0;
2295
+ padding: 0;
2296
+ opacity: 0;
2297
+ list-style: none;
2298
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
2299
+ transition: visibility 0s 0.2s, opacity 0.2s; }
2300
+ .tsd-select .tsd-select-list li {
2301
+ padding: 0 20px 0 0;
2302
+ background-color: #fdfdfd; }
2303
+ .tsd-select .tsd-select-list li:before {
2304
+ background-position: 40px 0; }
2305
+ .tsd-select .tsd-select-list li:nth-child(even) {
2306
+ background-color: #fff; }
2307
+ .tsd-select .tsd-select-list li:hover {
2308
+ background-color: #eee; }
2309
+ .tsd-select .tsd-select-list li.selected:before {
2310
+ background-position: -200px 0; }
2311
+ @media (max-width: 900px) {
2312
+ .tsd-select .tsd-select-list {
2313
+ top: 0;
2314
+ left: auto;
2315
+ right: 100%;
2316
+ margin-right: -5px; }
2317
+ .tsd-select .tsd-select-label:before {
2318
+ background-position: -280px 0; } }
2319
+
2320
+ img {
2321
+ max-width: 100%; }