@refinitiv-ui/phrasebook 5.3.0-alpha.0 → 5.5.0-alpha.0

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/CHANGELOG.md CHANGED
@@ -3,20 +3,24 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- # [5.3.0-alpha.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/phrasebook@5.2.2-alpha.0...@refinitiv-ui/phrasebook@5.3.0-alpha.0) (2021-12-14)
6
+ # [5.4.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/phrasebook@5.3.0...@refinitiv-ui/phrasebook@5.4.0) (2021-12-21)
7
7
 
8
8
 
9
9
  ### Features
10
10
 
11
- * **calendar:** add accessibility ([#73](https://github.com/Refinitiv/refinitiv-ui/issues/73)) ([a2576cc](https://github.com/Refinitiv/refinitiv-ui/commit/a2576cc8a1f0229bb5988af0c9d0bbf8ce7f765c))
11
+ * **pagination:** support max unknown ([d3997ce](https://github.com/Refinitiv/refinitiv-ui/commit/d3997ce16abb9c01ecc43bcf6a80386b02cd3c12))
12
12
 
13
13
 
14
14
 
15
15
 
16
16
 
17
- ## [5.2.2-alpha.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/phrasebook@5.2.1...@refinitiv-ui/phrasebook@5.2.2-alpha.0) (2021-12-13)
17
+ # [5.3.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/phrasebook@5.2.1...@refinitiv-ui/phrasebook@5.3.0) (2021-12-15)
18
18
 
19
- **Note:** Version bump only for package @refinitiv-ui/phrasebook
19
+
20
+ ### Features
21
+
22
+ * add named exports to elements, themes and locales to support full backward compatibility ([#114](https://github.com/Refinitiv/refinitiv-ui/issues/114)) ([7d25d50](https://github.com/Refinitiv/refinitiv-ui/commit/7d25d50c649308fc5a17d086e9e01467a0dabfb9))
23
+ * **calendar:** add accessibility ([#73](https://github.com/Refinitiv/refinitiv-ui/issues/73)) ([a2576cc](https://github.com/Refinitiv/refinitiv-ui/commit/a2576cc8a1f0229bb5988af0c9d0bbf8ce7f765c))
20
24
 
21
25
 
22
26
 
@@ -1,6 +1,6 @@
1
1
  import './shared.js';
2
2
  declare const translations: {
3
+ PAGE: string;
3
4
  PAGE_OF: string;
4
- ITEM_INFO: string;
5
5
  };
6
6
  export default translations;
@@ -2,19 +2,11 @@
2
2
  import { Phrasebook } from '../../translation.js';
3
3
  import './shared.js';
4
4
  const translations = {
5
+ // page: current page #
6
+ PAGE: 'Seite {page}',
5
7
  // page: current page #
6
8
  // pageTotal: total number of pages
7
- PAGE_OF: 'Seite {page} von {pageTotal}',
8
- /*
9
- * totalCount: total number of items
10
- * pageSize: Number of items per page
11
- * ** To translate
12
- * No items
13
- * of = eg page 1 of 2
14
- * item
15
- * items
16
- */
17
- ITEM_INFO: '{totalCount, plural, =0 {Keine Elemente} other {{ totalCount, plural, other { {pageSize, plural, =1 {#} other {{from} - {to}}} von {totalCount} {totalCount, plural, =1 {item} other {items}}} }} }'
9
+ PAGE_OF: 'Seite {page} von {pageTotal}'
18
10
  };
19
11
  Phrasebook.define('de', 'ef-pagination', translations);
20
12
  export default translations;
@@ -0,0 +1,10 @@
1
+ declare const translations: {
2
+ BEFORE_MIDDAY: string;
3
+ AFTER_MIDDAY: string;
4
+ TOGGLE_TIME_PERIOD: string;
5
+ SELECT_HOURS: string;
6
+ SELECT_MINUTES: string;
7
+ SELECT_SECONDS: string;
8
+ SELECTED: string;
9
+ };
10
+ export default translations;
@@ -0,0 +1,12 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ const translations = {
3
+ BEFORE_MIDDAY: 'Before Midday',
4
+ AFTER_MIDDAY: 'After Midday',
5
+ TOGGLE_TIME_PERIOD: 'Toggle Time Period',
6
+ SELECT_HOURS: '{value, select, null {Select hours} other {{value, plural, =1 {# hour} other {# hours}}}}',
7
+ SELECT_MINUTES: '{value, select, null {Select minutes} other {{value, plural, =1 {# minute} other {# minutes}}}}',
8
+ SELECT_SECONDS: '{value, select, null {Select seconds} other {{value, plural, =1 {# second} other {# seconds}}}}',
9
+ SELECTED: '{value, select, null {Selected none. Choose time} other {Selected time is: {showSeconds, select, true {{amPm, select, true {{value, time, ::hmsa}} other {{value, time, ::Hms}}}} other {{amPm, select, true {{value, time, ::hma}} other {{value, time, ::Hm}}}}}}}'
10
+ };
11
+ Phrasebook.define('de', 'ef-time-picker', translations);
12
+ export default translations;
@@ -1,6 +1,6 @@
1
1
  import './shared.js';
2
2
  declare const translations: {
3
+ PAGE: string;
3
4
  PAGE_OF: string;
4
- ITEM_INFO: string;
5
5
  };
6
6
  export default translations;
@@ -2,19 +2,11 @@
2
2
  import { Phrasebook } from '../../translation.js';
3
3
  import './shared.js';
4
4
  const translations = {
5
+ // page: current page #
6
+ PAGE: 'Page {page}',
5
7
  // page: current page #
6
8
  // pageTotal: total number of pages
7
- PAGE_OF: 'Page {page} of {pageTotal}',
8
- /*
9
- * totalCount: total number of items
10
- * pageSize: Number of items per page
11
- * ** To translate
12
- * No items
13
- * of = eg page 1 of 2
14
- * item
15
- * items
16
- */
17
- ITEM_INFO: '{totalCount, plural, =0 {No Items} other {{ totalCount, plural, other { {pageSize, plural, =1 {#} other {{from} - {to}}} of {totalCount} {totalCount, plural, =1 {item} other {items}}} }} }'
9
+ PAGE_OF: 'Page {page} of {pageTotal}'
18
10
  };
19
11
  Phrasebook.define('en', 'ef-pagination', translations);
20
12
  export default translations;
@@ -0,0 +1,10 @@
1
+ declare const translations: {
2
+ BEFORE_MIDDAY: string;
3
+ AFTER_MIDDAY: string;
4
+ TOGGLE_TIME_PERIOD: string;
5
+ SELECT_HOURS: string;
6
+ SELECT_MINUTES: string;
7
+ SELECT_SECONDS: string;
8
+ SELECTED: string;
9
+ };
10
+ export default translations;
@@ -0,0 +1,12 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ const translations = {
3
+ BEFORE_MIDDAY: 'Before Midday',
4
+ AFTER_MIDDAY: 'After Midday',
5
+ TOGGLE_TIME_PERIOD: 'Toggle Time Period',
6
+ SELECT_HOURS: '{value, select, null {Select hours} other {{value, plural, =1 {# hour} other {# hours}}}}',
7
+ SELECT_MINUTES: '{value, select, null {Select minutes} other {{value, plural, =1 {# minute} other {# minutes}}}}',
8
+ SELECT_SECONDS: '{value, select, null {Select seconds} other {{value, plural, =1 {# second} other {# seconds}}}}',
9
+ SELECTED: '{value, select, null {Selected none. Choose time} other {Selected time is: {showSeconds, select, true {{amPm, select, true {{value, time, ::hmsa}} other {{value, time, ::Hms}}}} other {{amPm, select, true {{value, time, ::hma}} other {{value, time, ::Hm}}}}}}}'
10
+ };
11
+ Phrasebook.define('en', 'ef-time-picker', translations);
12
+ export default translations;
@@ -1,20 +1,20 @@
1
1
  import { Phrasebook } from '../../translation.js';
2
2
  const translations = {
3
- PREVIOUS_MONTH: 'Previous month',
4
- NEXT_MONTH: 'Next month',
5
- PREVIOUS_YEAR: 'Previous year',
6
- NEXT_YEAR: 'Next year',
7
- PREVIOUS_DECADE: 'Previous decade',
8
- NEXT_DECADE: 'Next decade',
9
- YEAR_SELECTOR: 'Click to select year',
10
- DATE_SELECTOR: 'Click to select date',
3
+ PREVIOUS_MONTH: '前月',
4
+ NEXT_MONTH: '翌月',
5
+ PREVIOUS_YEAR: '前年',
6
+ NEXT_YEAR: '翌年',
7
+ PREVIOUS_DECADE: '前10年',
8
+ NEXT_DECADE: '翌10年',
9
+ YEAR_SELECTOR: 'クリックして年を選択',
10
+ DATE_SELECTOR: 'クリックして日付を選択',
11
11
  CELL_LABEL: '{view, select, year {{value, date, ::yyyy}} month {{value, date, ::MMMM-yyyy}} other {{value, date, full}}}',
12
- SELECTED: 'Selected: {view, select, year {{value, date, ::yyyy}} month {{value, date, ::MMMM-yyyy}} other {{value, date, full}}}',
12
+ SELECTED: '選択済み: {view, select, year {{value, date, ::yyyy}} month {{value, date, ::MMMM-yyyy}} other {{value, date, full}}}',
13
13
  NOW: '{view, select, year {Current year, {value, date, ::yyyy}} month {Current month, {value, date, ::MMMM-yyyy}} other {Today, {value, date, full}}}',
14
- SELECTED_NOW: 'Selected: {view, select, year {current year, {value, date, ::yyyy}} month {current month, {value, date, ::MMMM-yyyy}} other {today, {value, date, full}}}',
14
+ SELECTED_NOW: '選択済み: {view, select, year {current year, {value, date, ::yyyy}} month {current month, {value, date, ::MMMM-yyyy}} other {today, {value, date, full}}}',
15
15
  SELECTED_DATE: 'Selected {count, plural, =1 {date is {value, date, full}} other {# dates, {value, date, full} and others}}',
16
- SELECTED_RANGE: 'Selected range is from {from, date, full}{to, select, null {} other { to {to, date, full}}}',
17
- SELECTED_NONE: 'Selected none. Choose {range, select, true {date range} other {{multiple, select, true {dates} other {date}}}}'
16
+ SELECTED_RANGE: '選択された範囲は {from, date, full}{to, select, null {} other { to {to, date, full}}} からです',
17
+ SELECTED_NONE: '選択されていません。{range, select, true {date range} other {{multiple, select, true {dates} other {date}}}} を選択してください'
18
18
  };
19
19
  Phrasebook.define('ja', 'ef-calendar', translations);
20
20
  export default translations;
@@ -1,6 +1,6 @@
1
1
  import './shared.js';
2
2
  declare const translations: {
3
+ PAGE: string;
3
4
  PAGE_OF: string;
4
- ITEM_INFO: string;
5
5
  };
6
6
  export default translations;
@@ -2,19 +2,11 @@
2
2
  import { Phrasebook } from '../../translation.js';
3
3
  import './shared.js';
4
4
  const translations = {
5
+ // page: current page #
6
+ PAGE: 'ページ {page}',
5
7
  // page: current page #
6
8
  // pageTotal: total number of pages
7
- PAGE_OF: '{pageTotal} ページ中 {page} ページ目 ',
8
- /*
9
- * totalCount: total number of items
10
- * pageSize: Number of items per page
11
- * ** To translate
12
- * No items
13
- * of = eg page 1 of 2
14
- * item
15
- * items
16
- */
17
- ITEM_INFO: '{totalCount, plural, =0 {該当なし} other {{ totalCount, plural, other { {totalCount} {totalCount, plural, =1 { 件} other { 件}}中 {pageSize, plural, =1 {#} other {{from} - {to}}} 件目 } }} }'
9
+ PAGE_OF: '{pageTotal} ページ中 {page} ページ目 '
18
10
  };
19
11
  Phrasebook.define('ja', 'ef-pagination', translations);
20
12
  export default translations;
@@ -0,0 +1,10 @@
1
+ declare const translations: {
2
+ BEFORE_MIDDAY: string;
3
+ AFTER_MIDDAY: string;
4
+ TOGGLE_TIME_PERIOD: string;
5
+ SELECT_HOURS: string;
6
+ SELECT_MINUTES: string;
7
+ SELECT_SECONDS: string;
8
+ SELECTED: string;
9
+ };
10
+ export default translations;
@@ -0,0 +1,12 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ const translations = {
3
+ BEFORE_MIDDAY: 'Before Midday',
4
+ AFTER_MIDDAY: 'After Midday',
5
+ TOGGLE_TIME_PERIOD: 'Toggle Time Period',
6
+ SELECT_HOURS: '{value, select, null {Select hours} other {{value, plural, =1 {# hour} other {# hours}}}}',
7
+ SELECT_MINUTES: '{value, select, null {Select minutes} other {{value, plural, =1 {# minute} other {# minutes}}}}',
8
+ SELECT_SECONDS: '{value, select, null {Select seconds} other {{value, plural, =1 {# second} other {# seconds}}}}',
9
+ SELECTED: '{value, select, null {Selected none. Choose time} other {Selected time is: {showSeconds, select, true {{amPm, select, true {{value, time, ::hmsa}} other {{value, time, ::Hms}}}} other {{amPm, select, true {{value, time, ::hma}} other {{value, time, ::Hm}}}}}}}'
10
+ };
11
+ Phrasebook.define('ja', 'ef-time-picker', translations);
12
+ export default translations;
@@ -1,20 +1,20 @@
1
1
  import { Phrasebook } from '../../translation.js';
2
2
  const translations = {
3
- PREVIOUS_MONTH: 'Previous month',
4
- NEXT_MONTH: 'Next month',
5
- PREVIOUS_YEAR: 'Previous year',
6
- NEXT_YEAR: 'Next year',
7
- PREVIOUS_DECADE: 'Previous decade',
8
- NEXT_DECADE: 'Next decade',
9
- YEAR_SELECTOR: 'Click to select year',
10
- DATE_SELECTOR: 'Click to select date',
3
+ PREVIOUS_MONTH: '前一个月',
4
+ NEXT_MONTH: '下一个月',
5
+ PREVIOUS_YEAR: '前一年',
6
+ NEXT_YEAR: '下一年',
7
+ PREVIOUS_DECADE: '前十年',
8
+ NEXT_DECADE: '下一个十年',
9
+ YEAR_SELECTOR: '点击来选择年份',
10
+ DATE_SELECTOR: '点击来选择日期',
11
11
  CELL_LABEL: '{view, select, year {{value, date, ::yyyy}} month {{value, date, ::MMMM-yyyy}} other {{value, date, full}}}',
12
- SELECTED: 'Selected: {view, select, year {{value, date, ::yyyy}} month {{value, date, ::MMMM-yyyy}} other {{value, date, full}}}',
12
+ SELECTED: '已选: {view, select, year {{value, date, ::yyyy}} month {{value, date, ::MMMM-yyyy}} other {{value, date, full}}}',
13
13
  NOW: '{view, select, year {Current year, {value, date, ::yyyy}} month {Current month, {value, date, ::MMMM-yyyy}} other {Today, {value, date, full}}}',
14
- SELECTED_NOW: 'Selected: {view, select, year {current year, {value, date, ::yyyy}} month {current month, {value, date, ::MMMM-yyyy}} other {today, {value, date, full}}}',
15
- SELECTED_DATE: 'Selected {count, plural, =1 {date is {value, date, full}} other {# dates, {value, date, full} and others}}',
16
- SELECTED_RANGE: 'Selected range is from {from, date, full}{to, select, null {} other { to {to, date, full}}}',
17
- SELECTED_NONE: 'Selected none. Choose {range, select, true {date range} other {{multiple, select, true {dates} other {date}}}}'
14
+ SELECTED_NOW: '已选: {view, select, year {current year, {value, date, ::yyyy}} month {current month, {value, date, ::MMMM-yyyy}} other {today, {value, date, full}}}',
15
+ SELECTED_DATE: '已选 {count, plural, =1 {date is {value, date, full}} other {# dates, {value, date, full} and others}}',
16
+ SELECTED_RANGE: '所选范围开始于 {from, date, full}{to, select, null {} other { to {to, date, full}}}',
17
+ SELECTED_NONE: '未选择。请选择 {range, select, true {date range} other {{multiple, select, true {dates} other {date}}}}'
18
18
  };
19
19
  Phrasebook.define('zh', 'ef-calendar', translations);
20
20
  export default translations;
@@ -1,6 +1,6 @@
1
1
  import './shared.js';
2
2
  declare const translations: {
3
+ PAGE: string;
3
4
  PAGE_OF: string;
4
- ITEM_INFO: string;
5
5
  };
6
6
  export default translations;
@@ -2,19 +2,11 @@
2
2
  import { Phrasebook } from '../../translation.js';
3
3
  import './shared.js';
4
4
  const translations = {
5
+ // page: current page #
6
+ PAGE: '第 {page} 页',
5
7
  // page: current page #
6
8
  // pageTotal: total number of pages
7
- PAGE_OF: '第 {page}/{pageTotal} 页',
8
- /*
9
- * totalCount: total number of items
10
- * pageSize: Number of items per page
11
- * ** To translate
12
- * No items
13
- * of = eg page 1 of 2
14
- * item
15
- * items
16
- */
17
- ITEM_INFO: '{totalCount, plural, =0 {无项目。} other {{ totalCount, plural, other { {pageSize, plural, =1 {#} other {{from} - {to}}} 项,共 {totalCount} {totalCount, plural, =1 {项} other {项}}} }} }'
9
+ PAGE_OF: '第 {page}/{pageTotal} 页'
18
10
  };
19
11
  Phrasebook.define('zh', 'ef-pagination', translations);
20
12
  export default translations;
@@ -0,0 +1,10 @@
1
+ declare const translations: {
2
+ BEFORE_MIDDAY: string;
3
+ AFTER_MIDDAY: string;
4
+ TOGGLE_TIME_PERIOD: string;
5
+ SELECT_HOURS: string;
6
+ SELECT_MINUTES: string;
7
+ SELECT_SECONDS: string;
8
+ SELECTED: string;
9
+ };
10
+ export default translations;
@@ -0,0 +1,12 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ const translations = {
3
+ BEFORE_MIDDAY: 'Before Midday',
4
+ AFTER_MIDDAY: 'After Midday',
5
+ TOGGLE_TIME_PERIOD: 'Toggle Time Period',
6
+ SELECT_HOURS: '{value, select, null {Select hours} other {{value, plural, =1 {# hour} other {# hours}}}}',
7
+ SELECT_MINUTES: '{value, select, null {Select minutes} other {{value, plural, =1 {# minute} other {# minutes}}}}',
8
+ SELECT_SECONDS: '{value, select, null {Select seconds} other {{value, plural, =1 {# second} other {# seconds}}}}',
9
+ SELECTED: '{value, select, null {Selected none. Choose time} other {Selected time is: {showSeconds, select, true {{amPm, select, true {{value, time, ::hmsa}} other {{value, time, ::Hms}}}} other {{amPm, select, true {{value, time, ::hma}} other {{value, time, ::Hm}}}}}}}'
10
+ };
11
+ Phrasebook.define('zh', 'ef-time-picker', translations);
12
+ export default translations;
@@ -1,6 +1,6 @@
1
1
  import './shared.js';
2
2
  declare const translations: {
3
+ PAGE: string;
3
4
  PAGE_OF: string;
4
- ITEM_INFO: string;
5
5
  };
6
6
  export default translations;
@@ -2,19 +2,11 @@
2
2
  import { Phrasebook } from '../../translation.js';
3
3
  import './shared.js';
4
4
  const translations = {
5
+ // page: current page #
6
+ PAGE: '第 {page}頁',
5
7
  // page: current page #
6
8
  // pageTotal: total number of pages
7
- PAGE_OF: '第 {page}頁/共{pageTotal} 頁',
8
- /*
9
- * totalCount: total number of items
10
- * pageSize: Number of items per page
11
- * ** To translate
12
- * No items
13
- * of = eg page 1 of 2
14
- * item
15
- * items
16
- */
17
- ITEM_INFO: '{totalCount, plural, =0 {無項目} other {{ totalCount, plural, other { {pageSize, plural, =1 {#} other {{from} - {to}}} 項,共 {totalCount} {totalCount, plural, =1 {項} other {項}}} }} }'
9
+ PAGE_OF: '第 {page}頁/共{pageTotal} 頁'
18
10
  };
19
11
  Phrasebook.define('zh-Hant', 'ef-pagination', translations);
20
12
  export default translations;
@@ -0,0 +1,10 @@
1
+ declare const translations: {
2
+ BEFORE_MIDDAY: string;
3
+ AFTER_MIDDAY: string;
4
+ TOGGLE_TIME_PERIOD: string;
5
+ SELECT_HOURS: string;
6
+ SELECT_MINUTES: string;
7
+ SELECT_SECONDS: string;
8
+ SELECTED: string;
9
+ };
10
+ export default translations;
@@ -0,0 +1,12 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ const translations = {
3
+ BEFORE_MIDDAY: 'Before Midday',
4
+ AFTER_MIDDAY: 'After Midday',
5
+ TOGGLE_TIME_PERIOD: 'Toggle Time Period',
6
+ SELECT_HOURS: '{value, select, null {Select hours} other {{value, plural, =1 {# hour} other {# hours}}}}',
7
+ SELECT_MINUTES: '{value, select, null {Select minutes} other {{value, plural, =1 {# minute} other {# minutes}}}}',
8
+ SELECT_SECONDS: '{value, select, null {Select seconds} other {{value, plural, =1 {# second} other {# seconds}}}}',
9
+ SELECTED: '{value, select, null {Selected none. Choose time} other {Selected time is: {showSeconds, select, true {{amPm, select, true {{value, time, ::hmsa}} other {{value, time, ::Hms}}}} other {{amPm, select, true {{value, time, ::hma}} other {{value, time, ::Hm}}}}}}}'
10
+ };
11
+ Phrasebook.define('zh-hant', 'ef-time-picker', translations);
12
+ export default translations;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@refinitiv-ui/phrasebook",
3
- "version": "5.3.0-alpha.0",
3
+ "version": "5.5.0-alpha.0",
4
4
  "description": "Collection of messages in EF components for translation",
5
5
  "author": "Refinitiv",
6
6
  "license": "Apache-2.0",
@@ -22,6 +22,7 @@
22
22
  "./locale/de/password-field.js": "./lib/locale/de/password-field.js",
23
23
  "./locale/de/search-field.js": "./lib/locale/de/search-field.js",
24
24
  "./locale/de/shared.js": "./lib/locale/de/shared.js",
25
+ "./locale/de/time-picker.js": "./lib/locale/de/time-picker.js",
25
26
  "./locale/de/tree-select.js": "./lib/locale/de/tree-select.js",
26
27
  "./locale/en/calendar.js": "./lib/locale/en/calendar.js",
27
28
  "./locale/en/color-dialog.js": "./lib/locale/en/color-dialog.js",
@@ -31,6 +32,7 @@
31
32
  "./locale/en/password-field.js": "./lib/locale/en/password-field.js",
32
33
  "./locale/en/search-field.js": "./lib/locale/en/search-field.js",
33
34
  "./locale/en/shared.js": "./lib/locale/en/shared.js",
35
+ "./locale/en/time-picker.js": "./lib/locale/en/time-picker.js",
34
36
  "./locale/en/tree-select.js": "./lib/locale/en/tree-select.js",
35
37
  "./locale/ja/calendar.js": "./lib/locale/ja/calendar.js",
36
38
  "./locale/ja/color-dialog.js": "./lib/locale/ja/color-dialog.js",
@@ -40,6 +42,7 @@
40
42
  "./locale/ja/password-field.js": "./lib/locale/ja/password-field.js",
41
43
  "./locale/ja/search-field.js": "./lib/locale/ja/search-field.js",
42
44
  "./locale/ja/shared.js": "./lib/locale/ja/shared.js",
45
+ "./locale/ja/time-picker.js": "./lib/locale/ja/time-picker.js",
43
46
  "./locale/ja/tree-select.js": "./lib/locale/ja/tree-select.js",
44
47
  "./locale/zh/calendar.js": "./lib/locale/zh/calendar.js",
45
48
  "./locale/zh/color-dialog.js": "./lib/locale/zh/color-dialog.js",
@@ -49,6 +52,7 @@
49
52
  "./locale/zh/password-field.js": "./lib/locale/zh/password-field.js",
50
53
  "./locale/zh/search-field.js": "./lib/locale/zh/search-field.js",
51
54
  "./locale/zh/shared.js": "./lib/locale/zh/shared.js",
55
+ "./locale/zh/time-picker.js": "./lib/locale/zh/time-picker.js",
52
56
  "./locale/zh/tree-select.js": "./lib/locale/zh/tree-select.js",
53
57
  "./locale/zh-hant/calendar.js": "./lib/locale/zh-hant/calendar.js",
54
58
  "./locale/zh-hant/color-dialog.js": "./lib/locale/zh-hant/color-dialog.js",
@@ -58,6 +62,7 @@
58
62
  "./locale/zh-hant/password-field.js": "./lib/locale/zh-hant/password-field.js",
59
63
  "./locale/zh-hant/search-field.js": "./lib/locale/zh-hant/search-field.js",
60
64
  "./locale/zh-hant/shared.js": "./lib/locale/zh-hant/shared.js",
65
+ "./locale/zh-hant/time-picker.js": "./lib/locale/zh-hant/time-picker.js",
61
66
  "./locale/zh-hant/tree-select.js": "./lib/locale/zh-hant/tree-select.js",
62
67
  "./lib/locale/de/calendar.js": "./lib/locale/de/calendar.js",
63
68
  "./lib/locale/de/color-dialog.js": "./lib/locale/de/color-dialog.js",
@@ -67,6 +72,7 @@
67
72
  "./lib/locale/de/password-field.js": "./lib/locale/de/password-field.js",
68
73
  "./lib/locale/de/search-field.js": "./lib/locale/de/search-field.js",
69
74
  "./lib/locale/de/shared.js": "./lib/locale/de/shared.js",
75
+ "./lib/locale/de/time-picker.js": "./lib/locale/de/time-picker.js",
70
76
  "./lib/locale/de/tree-select.js": "./lib/locale/de/tree-select.js",
71
77
  "./lib/locale/en/calendar.js": "./lib/locale/en/calendar.js",
72
78
  "./lib/locale/en/color-dialog.js": "./lib/locale/en/color-dialog.js",
@@ -76,6 +82,7 @@
76
82
  "./lib/locale/en/password-field.js": "./lib/locale/en/password-field.js",
77
83
  "./lib/locale/en/search-field.js": "./lib/locale/en/search-field.js",
78
84
  "./lib/locale/en/shared.js": "./lib/locale/en/shared.js",
85
+ "./lib/locale/en/time-picker.js": "./lib/locale/en/time-picker.js",
79
86
  "./lib/locale/en/tree-select.js": "./lib/locale/en/tree-select.js",
80
87
  "./lib/locale/ja/calendar.js": "./lib/locale/ja/calendar.js",
81
88
  "./lib/locale/ja/color-dialog.js": "./lib/locale/ja/color-dialog.js",
@@ -85,6 +92,7 @@
85
92
  "./lib/locale/ja/password-field.js": "./lib/locale/ja/password-field.js",
86
93
  "./lib/locale/ja/search-field.js": "./lib/locale/ja/search-field.js",
87
94
  "./lib/locale/ja/shared.js": "./lib/locale/ja/shared.js",
95
+ "./lib/locale/ja/time-picker.js": "./lib/locale/ja/time-picker.js",
88
96
  "./lib/locale/ja/tree-select.js": "./lib/locale/ja/tree-select.js",
89
97
  "./lib/locale/zh/calendar.js": "./lib/locale/zh/calendar.js",
90
98
  "./lib/locale/zh/color-dialog.js": "./lib/locale/zh/color-dialog.js",
@@ -94,6 +102,7 @@
94
102
  "./lib/locale/zh/password-field.js": "./lib/locale/zh/password-field.js",
95
103
  "./lib/locale/zh/search-field.js": "./lib/locale/zh/search-field.js",
96
104
  "./lib/locale/zh/shared.js": "./lib/locale/zh/shared.js",
105
+ "./lib/locale/zh/time-picker.js": "./lib/locale/zh/time-picker.js",
97
106
  "./lib/locale/zh/tree-select.js": "./lib/locale/zh/tree-select.js",
98
107
  "./lib/locale/zh-hant/calendar.js": "./lib/locale/zh-hant/calendar.js",
99
108
  "./lib/locale/zh-hant/color-dialog.js": "./lib/locale/zh-hant/color-dialog.js",
@@ -103,10 +112,12 @@
103
112
  "./lib/locale/zh-hant/password-field.js": "./lib/locale/zh-hant/password-field.js",
104
113
  "./lib/locale/zh-hant/search-field.js": "./lib/locale/zh-hant/search-field.js",
105
114
  "./lib/locale/zh-hant/shared.js": "./lib/locale/zh-hant/shared.js",
115
+ "./lib/locale/zh-hant/time-picker.js": "./lib/locale/zh-hant/time-picker.js",
106
116
  "./lib/locale/zh-hant/tree-select.js": "./lib/locale/zh-hant/tree-select.js"
107
117
  },
108
118
  "scripts": {
109
119
  "build": "tsc --sourceMap --declarationMap",
120
+ "build:watch": "npm run build -- --watch --preserveWatchOutput",
110
121
  "build:prod": "tsc",
111
122
  "lint": "eslint .",
112
123
  "lint:fix": "eslint . --fix",
@@ -123,5 +134,5 @@
123
134
  "dependencies": {
124
135
  "tslib": "^2.3.1"
125
136
  },
126
- "gitHead": "20e555a28212760cc2657b27ca0c5f583c55c51d"
137
+ "gitHead": "41ad2a9927526e4beaccc6d519bc16b0c20e5864"
127
138
  }
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.d.ts","./src/types.ts","./src/translation.ts","./src/index.ts","./src/locale/de/calendar.ts","./src/locale/de/shared.ts","./src/locale/de/dialog.ts","./src/locale/de/color-dialog.ts","./src/locale/de/combo-box.ts","./src/locale/de/pagination.ts","./src/locale/de/password-field.ts","./src/locale/de/search-field.ts","./src/locale/de/time-picker.ts","./src/locale/de/tree-select.ts","./src/locale/en/calendar.ts","./src/locale/en/shared.ts","./src/locale/en/dialog.ts","./src/locale/en/color-dialog.ts","./src/locale/en/combo-box.ts","./src/locale/en/pagination.ts","./src/locale/en/password-field.ts","./src/locale/en/search-field.ts","./src/locale/en/time-picker.ts","./src/locale/en/tree-select.ts","./src/locale/ja/calendar.ts","./src/locale/ja/shared.ts","./src/locale/ja/dialog.ts","./src/locale/ja/color-dialog.ts","./src/locale/ja/combo-box.ts","./src/locale/ja/pagination.ts","./src/locale/ja/password-field.ts","./src/locale/ja/search-field.ts","./src/locale/ja/time-picker.ts","./src/locale/ja/tree-select.ts","./src/locale/zh/calendar.ts","./src/locale/zh/shared.ts","./src/locale/zh/dialog.ts","./src/locale/zh/color-dialog.ts","./src/locale/zh/combo-box.ts","./src/locale/zh/pagination.ts","./src/locale/zh/password-field.ts","./src/locale/zh/search-field.ts","./src/locale/zh/time-picker.ts","./src/locale/zh/tree-select.ts","./src/locale/zh-hant/calendar.ts","./src/locale/zh-hant/shared.ts","./src/locale/zh-hant/dialog.ts","./src/locale/zh-hant/color-dialog.ts","./src/locale/zh-hant/combo-box.ts","./src/locale/zh-hant/pagination.ts","./src/locale/zh-hant/password-field.ts","./src/locale/zh-hant/search-field.ts","./src/locale/zh-hant/time-picker.ts","./src/locale/zh-hant/tree-select.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/accepts/index.d.ts","../../node_modules/@types/babel__code-frame/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/browserslist-useragent/index.d.ts","../../node_modules/@types/caniuse-api/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/chai-dom/index.d.ts","../../node_modules/moment/ts3.1-typings/moment.d.ts","../../node_modules/@types/chart.js/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/co-body/index.d.ts","../../node_modules/@types/command-line-args/index.d.ts","../../node_modules/@types/command-line-usage/index.d.ts","../../node_modules/@types/component-emitter/index.d.ts","../../node_modules/@types/content-disposition/index.d.ts","../../node_modules/@types/convert-source-map/index.d.ts","../../node_modules/@types/cookie/index.d.ts","../../node_modules/@types/keygrip/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/cookies/index.d.ts","../../node_modules/@types/cors/index.d.ts","../../node_modules/@types/d3-color/index.d.ts","../../node_modules/@types/d3-interpolate/index.d.ts","../../node_modules/@types/debounce/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/etag/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/http-assert/index.d.ts","../../node_modules/@types/http-errors/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/koa-compose/index.d.ts","../../node_modules/@types/koa/index.d.ts","../../node_modules/@types/koa-compress/index.d.ts","../../node_modules/@types/koa-etag/index.d.ts","../../node_modules/@types/koa-send/index.d.ts","../../node_modules/@types/koa-static/index.d.ts","../../node_modules/@types/koa__cors/index.d.ts","../../node_modules/@types/lru-cache/index.d.ts","../../node_modules/@types/mime-types/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/mocha/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/path-is-inside/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../node_modules/@types/sinon/index.d.ts","../../node_modules/@types/sinon-chai/index.d.ts","../../node_modules/@types/trusted-types/lib/index.d.ts","../../node_modules/@types/trusted-types/index.d.ts","../../node_modules/@types/whatwg-url/index.d.ts","../../node_modules/@types/ws/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","8669f194b7f88f994d6b78a7686874c5b26dd6628f748f2e21d046d5684281fc","28c5b6eb2fd8a2f693425bdafd02fa0e73a1ff8352beaefac21cdae8b6b96085","96026375693d97b5220b7910dcf2d96ce2c7a3d29bd4e317ce8c1b87c46343b1","a8ef9ce69a712ddbc74a48cd504ba526844831545df5d947e66f532e45f9f4ff","5933cc2500f4e5abbbafb0b9aebc7e72efdabc04a1215cdb683c17d914bca2b2","38d94f3e3bc421b5156807af15e6c68ae73e92ecfaf96eabc1d9838902527ede","20b197d99216796838e4fb2d5ccaba154e840b80fef6e5110f6cf9eae430bf4e","39a9762192092835ce31c414e519527d2535f37bbd3714eb7dc7c5f3938c02a8","3326001a9fe6636f0e780a960b1024f0ca41e264468c1abda13fe1099775b4a2","295b13e37bf55a94e1ce88f1fb6d10cefe547d4780c37b280d6ae99581b1ee05","11cace5385417a326b24c7b21ca01fff9c78dbf7755bfb652ec0830c8eafe044","2628030c7b49402a54e9c698555e3833d972233edc1a1340b53cd0d3cf4b6533","c75f36224e1b609a5d5cbbb65af0a309498a427bb913c0c35963b639f1137c31","9516e7be5002d54a7000c8d8f4963be0d0beb1793a6f351f6aa52dce5ee362ed","be83d519cd7a35c42ce5fee2463cc25b1ac6afa0ae401697703410b3bce129e1","ccbe825c4df17c617ada28b21762cee2bf8babcde0fd5a00937840440d7c0955","3dd3af5858865b2ea71247e57db5addda88b04624485dffd22524bc646cc00bd","f7029257f80f7ca80f2142d6e6dd17d46965a5e136f40583b79469df3fae5d17","6bd91e78b53202850eb536dd696bd8ddef1ec9754af1159fe06ca3946a533122","5ebb5dba6751ee640efc6d4e303555ca08d55a5cc7f789b664c8055e87acb86c","55fe35b2bf0ea43fc0a05cebe2ee32282b8a66f7ab06e5057778c2297ab26cf1","3f60b2bf18fa3e9d8dea3c3ad49393c286c47fc50fa937dd8d6e2b8cd056d258","5bbde0e1d403aa133652e92ba2aae27b216055e42409cfe92e9068fb5d7352a8","d9929a72fedf5a22da51d7222d6782a84ba015a33430463934bdd2f7e7b24428","532f8096c6f6323d48d828cdadff2db8376627f32780db532e3b8f92cc106e46","1f286103f5df6770cb43c4828d92b9faa368d1ede7279db64eb39dd6e18eefe6","36d3eb61c90cfbca414504f4a04a23304eb0cc57514a42ae67a9927db398ab90","cb63e6909c49aa04b39495163b065c172b025e6c4ab9a46aa665d59ac5282f97","16814c79cd735a7ad17412f09e20ef78e22f0b5f5438cc234fea0721d5f24c36","779638852ca79be3d257aa4745364eadb01248d6196c7883ef8ad0dcf31a868d","357d831773d740b7b8a6cb2d4ba2dffdad04a8a09bac65986eb8f19b155a18e2","71c27e46934bf05e31955177c3485b57ef2d84466c57e7d71ff1463233e358fa","6d66ca7c4e85800825915a6426018bc7320885cdb73deb0c4eeb4ba24e5bed26","664bddbed52fc3cea14dd1250a1199ce006c598ce34a768dbbd9ab439bd30410","56c7ceb116542e571083a816d5dacb2d8cb0228f8176c9168217202dfb01f7e0","1c7706954055af680a78a3337238c53e501d8339237cbe19c811ad6be36cd3eb","2e3d0700927f9f6dec224d9b48f19a66e6945f02e69e551175e96c19f4d3e216","7b18e9bebf522b3be3729df229c674bcdb6eec2d11715baf8ffb1ef40107a339","26d51fe6a3e897979f2602dcda040e2fa29c29f1d84b8f7e9aaefdd8ef2ad18c","3c91fa389832237e7198be11d400c56ebc739f4b7a4aed4c28efcc594ca12069","1ecf4194fc57b77a8ca77718a86424de84b4842bf60c50dadb22484e27a22d7c","2b53346a1657919a0773017befcaf557655914555ff5d71016ab27aeb20c47a9","12d4235aa4ea583918091c04a6a904cdcb6b4aa17898693dac0c580933148af6","a1f55a98fdfd3c95e6d554aef93c2bda89ab49bb07db95c4f64d484c19d664ad","6f82af4cf3e5bb13f6a9ea9929378d2ed767fa9ac9271ce9654cc6092d0b68cd","3f189720cd3b742c9f6dc27b5d7f231a55448aca12fdae545b514598dedcc99f","508b8d1873dd069cdcb4677f8ba609da923cf9d17a4810dde3929f44c8642ce3","ff198175c7a905c74ad0497ed5d76aa7b4b68c879bc269f7fbee64b3c599a5dd","206066b2f6d1e3d6a0bcd59de63287c29f6817ed5bb00cb294d2a8042bb01198","7f532440a2a9114b47c6e1fa029515be0ba037586df448c3a8aee1e032f3e883","8885fec5434e8979fdf9c0c44a1e41dc7612b30ddc9657047aed5dfc2648409a","d0c23b3a850d8a3067e2ec063fd2fd16387c2bd4b7b2099633c34e6fa1165424","add5cd975cabefa3089e93fc7b4c3fec098c258dd440ed422ce0c48b850bb25e","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"2a801b0322994c3dd7f0ef30265d19b3dd3bae6d793596879166ed6219c3da68","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","bcc8caf03ee65fe8610d258752f255fbdddbb2e4de7b6c5628956a5a0d859ec8","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"c28e5baab1b53377c90d12970e207a2644bc3627840066449e37e2a59125d07e","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","fce6a1a1553ff7d54ffb8bb3ae488c9cb5f2f4f4e52212c1abe40f544819ef35","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7","1835259a20b9fa6b1882931375b69ae5978195f2b139b4e0db51ec8319261649","b52cd693219a63dd21282ac99a7bf55f77cbe8a91f097968856419cc2e05f017","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"267af67ea520cabd16402522756b19ac63d9e2c1c86e7c4d1ddeb991c32e12c9","6738101ae8e56cd3879ab3f99630ada7d78097fc9fd334df7e766216778ca219","b95f751a58d283cb5e32f2655361f6e2a27f0368f69edc463a3472aae21d1303","d5d7b68f5369a210c235cd65458369888f8b839192d088c964f21cab3ac954db","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","64b867c61effed7b5bc0cc06b3d8eac23b067a3fba581fc7d3c292fa593e6a45","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","9eb49645576740f4fb4cca25cadbc0d7e61a218c215e8578dd899b01d5db89d4","d59cea1102bba38053ca19260e37bda2715df10d147c40db92035c0420489358",{"version":"c8747693e5872ad5ef3aa016731a06915e1c34dae987829d9aa5bd40c7a2c54b","affectsGlobalScope":true},{"version":"d95d76d79a0351572ec5b1a6cc1e5c4bce1be82eedeed7278d6f31ea1059fa69","affectsGlobalScope":true},"f97edc4d3b4dd0b32766e9633086497565c37657fb591cc84a35864db4bc2fc5","9f47decc2af980bb05b5c76464c08d23d28363ddf8d5352120f4026b083af8ac","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","495da6628b9474e31d0636d66c54448bb8d84dbce902e8f70539ef6a525a2d7b","629766229f541d92210f30a92b6038568ec165fab14b7ee53bdf13667da37ca3","29193c018378ca9c8033eaa974c02c1f503e8fcd8a2bf406057c53f7d3fa17a8","567a315b240a060518c532d38a46803b6d35e75dc14a9be435b6dc20c816741e","e4dfe0e169e1cb3c8dd0713972e94e2141595c840ed7387623ac8b29fc6c35b8","c1ea344dc311b2c539ed1e3b4e17e9f4853dc7f348366b51f1d8a09a40fb223f","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","ce013414484233b24f42c0fcfca48a60bb66ab4e13c82953662305e8f1ee4925","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c",{"version":"548311a7ece846e4b9c70c3cb5ac0776559957ff6fcedfde938ebe2774439509","affectsGlobalScope":true},"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","eb96a2321f717bccc3e49e104e299152984b927ea4546b559ae631c06565819c","6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612","c168e28f723898f77b8140887b06baced58aa902327aea3746571756f7a721b5","c24944ff5879b91478b153cf16802b9c6a10cfa3b7d85855813a08431ec2d36a","68c559681a043ca6d622debcce75c4d82446fec08e06bf1066f71d6c325f224e","89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b","7e510fb0ca02da05976eb0dbfeb42bdb0dc64b78acbb3b5ecf77ddd57ce08cda","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","e98185f4249720ace1921d59c1ff4612fa5c633a183fc9bf28e2e7b8e3c7fd51","ee736349ccbd61aa257ef9811668109d57ab9e9dea654b6ccd7bb274e5584a20","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","5006668996956580886022c05108e32c742823e1b5652aff7914917233731518","0c52f5366c9146ad79b546e70162c659972a2798522806e8283f3137feab3965","d1494c6dbbe5fca590ca73ccd21d013e6617e9ea19773c9ca7c0f3214df86628","97395602cea957af0cf517d84b651a07e010192db667ba379d36bec40cdbef52","f88d8a4ba9ad0270309cf46121d3dc9fb055bea08ac3e699d2b4673b1e6a25ea","b6360d5b5a52a1d6fc6b9838135f766b638e7c7a03b227974344200be603c150","c2076e1fa255efd41a6f0b6b3b83d4340d88122073e98f9b223dcea8437ee46f","6d727c1f6a7122c04e4f7c164c5e6f460c21ada618856894cdaa6ac25e95f38c","c757372a092924f5c16eaf11a1475b80b95bb4dae49fe3242d2ad908f97d5abe","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"c4c03cf65951d980ba618ae9601d10438730803fc9c8a1f7b34af8739981e205","affectsGlobalScope":true},"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","a0b27b55228349ea85cecd9479ace1009697af44b66527f30526a1539d4e78ea","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","50a5b297e6c91df4f6068d98467a5e7ba4eeb888b9376757734dd4b1dfcdacd4",{"version":"0fd3b5704bf037608646df5aa053fd06819ff69302ff6ada9736c300f79df852","affectsGlobalScope":true},"2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"0f048a7e91a4c764f08be48e156c9d274a038cb454d312427214ab4d34a9a5ab","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31"],"options":{"declaration":true,"declarationMap":false,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"module":5,"noEmitHelpers":true,"outDir":"./lib","rootDir":"./src","sourceMap":false,"strict":true,"target":4},"fileIdsList":[[138,148],[138],[113,138,145],[138,148,149,150,151,152],[138,148,150],[113,138,145,154],[138,158],[138,160],[113,138,145,162],[113,138,145,154,170,175],[113,138],[138,178],[138,145],[110,113,138,145,162,171],[138,155,162,172,174],[110,111,138,145,183],[138,187],[138,188],[138,192],[138,143,145,192],[138,182,192],[111,138,192],[138,192,195],[110,113,114,118,124,137,138,145,146,167,170,176,185,186,191],[95,138],[98,138],[99,104,138],[100,110,111,118,127,137,138],[100,101,110,118,138],[102,138],[103,104,111,119,138],[104,127,134,138],[105,107,110,118,138],[106,138],[107,108,138],[109,110,138],[110,138],[110,111,112,127,137,138],[110,111,112,127,138],[113,118,127,137,138],[110,111,113,114,118,127,134,137,138],[113,115,127,134,137,138],[95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144],[110,116,138],[117,137,138],[107,110,118,127,138],[119,138],[120,138],[98,121,138],[122,136,138,142],[123,138],[124,138],[110,125,138],[125,126,138,140],[110,127,128,129,138],[127,129,138],[127,128,138],[130,138],[131,138],[110,132,133,138],[132,133,138],[104,118,127,134,138],[135,138],[118,136,138],[99,113,124,137,138],[104,138],[127,138,139],[138,140],[138,141],[99,104,110,112,121,127,137,138,140,142],[127,138,143],[138,204],[138,205],[113,138,145,173],[138,158,209],[138,208],[138,211],[110,113,115,118,127,134,137,138,143,145],[41,42,43,138],[41,43,138],[41,43,46,47,138],[41,43,46,138],[41,43,46,49,138],[41,43,56,57,138],[41,43,56,138],[41,43,56,59,138],[41,43,66,67,138],[41,43,66,138],[41,43,66,69,138],[41,43,86,87,138],[41,43,86,138],[41,43,86,89,138],[41,43,76,77,138],[41,43,76,138],[41,43,76,79,138],[41,42,138],[41,138]],"referencedMap":[[150,1],[148,2],[146,3],[147,2],[153,4],[149,1],[151,5],[152,1],[155,6],[156,2],[157,2],[159,7],[158,2],[161,8],[163,9],[164,2],[165,2],[166,2],[154,3],[167,2],[168,2],[169,2],[176,10],[177,11],[178,2],[179,12],[180,2],[181,2],[182,13],[172,14],[175,15],[184,16],[185,2],[186,2],[187,2],[188,17],[189,18],[190,2],[170,2],[191,19],[193,20],[194,21],[195,22],[196,23],[192,24],[197,19],[198,2],[199,2],[173,2],[183,2],[200,2],[201,2],[95,25],[96,25],[98,26],[99,27],[100,28],[101,29],[102,30],[103,31],[104,32],[105,33],[106,34],[107,35],[108,35],[109,36],[110,37],[111,38],[112,39],[97,2],[144,2],[113,40],[114,41],[115,42],[145,43],[116,44],[117,45],[118,46],[119,47],[120,48],[121,49],[122,50],[123,51],[124,52],[125,53],[126,54],[127,55],[129,56],[128,57],[130,58],[131,59],[132,60],[133,61],[134,62],[135,63],[136,64],[137,65],[138,66],[139,67],[140,68],[141,69],[142,70],[143,71],[202,2],[203,2],[205,72],[204,73],[206,2],[162,2],[171,2],[207,13],[174,74],[210,75],[209,76],[208,2],[212,77],[211,2],[213,13],[214,78],[160,2],[41,2],[8,2],[9,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[4,2],[23,2],[20,2],[21,2],[22,2],[24,2],[25,2],[26,2],[5,2],[27,2],[28,2],[29,2],[30,2],[6,2],[31,2],[32,2],[33,2],[34,2],[7,2],[39,2],[35,2],[36,2],[37,2],[38,2],[1,2],[40,2],[44,79],[45,80],[48,81],[49,82],[47,82],[50,82],[51,80],[52,80],[46,80],[53,80],[54,83],[55,80],[58,84],[59,85],[57,85],[60,85],[61,80],[62,80],[56,80],[63,80],[64,86],[65,80],[68,87],[69,88],[67,88],[70,88],[71,80],[72,80],[66,80],[73,80],[74,89],[85,80],[88,90],[89,91],[87,91],[90,91],[91,80],[92,80],[86,80],[93,80],[94,92],[75,80],[78,93],[79,94],[77,94],[80,94],[81,80],[82,80],[76,80],[83,80],[84,95],[43,96],[42,97]],"exportedModulesMap":[[150,1],[148,2],[146,3],[147,2],[153,4],[149,1],[151,5],[152,1],[155,6],[156,2],[157,2],[159,7],[158,2],[161,8],[163,9],[164,2],[165,2],[166,2],[154,3],[167,2],[168,2],[169,2],[176,10],[177,11],[178,2],[179,12],[180,2],[181,2],[182,13],[172,14],[175,15],[184,16],[185,2],[186,2],[187,2],[188,17],[189,18],[190,2],[170,2],[191,19],[193,20],[194,21],[195,22],[196,23],[192,24],[197,19],[198,2],[199,2],[173,2],[183,2],[200,2],[201,2],[95,25],[96,25],[98,26],[99,27],[100,28],[101,29],[102,30],[103,31],[104,32],[105,33],[106,34],[107,35],[108,35],[109,36],[110,37],[111,38],[112,39],[97,2],[144,2],[113,40],[114,41],[115,42],[145,43],[116,44],[117,45],[118,46],[119,47],[120,48],[121,49],[122,50],[123,51],[124,52],[125,53],[126,54],[127,55],[129,56],[128,57],[130,58],[131,59],[132,60],[133,61],[134,62],[135,63],[136,64],[137,65],[138,66],[139,67],[140,68],[141,69],[142,70],[143,71],[202,2],[203,2],[205,72],[204,73],[206,2],[162,2],[171,2],[207,13],[174,74],[210,75],[209,76],[208,2],[212,77],[211,2],[213,13],[214,78],[160,2],[41,2],[8,2],[9,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[4,2],[23,2],[20,2],[21,2],[22,2],[24,2],[25,2],[26,2],[5,2],[27,2],[28,2],[29,2],[30,2],[6,2],[31,2],[32,2],[33,2],[34,2],[7,2],[39,2],[35,2],[36,2],[37,2],[38,2],[1,2],[40,2],[44,79],[45,80],[48,81],[49,82],[47,82],[50,82],[51,80],[52,80],[46,80],[53,80],[54,83],[55,80],[58,84],[59,85],[57,85],[60,85],[61,80],[62,80],[56,80],[63,80],[64,86],[65,80],[68,87],[69,88],[67,88],[70,88],[71,80],[72,80],[66,80],[73,80],[74,89],[85,80],[88,90],[89,91],[87,91],[90,91],[91,80],[92,80],[86,80],[93,80],[94,92],[75,80],[78,93],[79,94],[77,94],[80,94],[81,80],[82,80],[76,80],[83,80],[84,95],[43,96],[42,97]],"semanticDiagnosticsPerFile":[150,148,146,147,153,149,151,152,155,156,157,159,158,161,163,164,165,166,154,167,168,169,176,177,178,179,180,181,182,172,175,184,185,186,187,188,189,190,170,191,193,194,195,196,192,197,198,199,173,183,200,201,95,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,97,144,113,114,115,145,116,117,118,119,120,121,122,123,124,125,126,127,129,128,130,131,132,133,134,135,136,137,138,139,140,141,142,143,202,203,205,204,206,162,171,207,174,210,209,208,212,211,213,214,160,41,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,31,32,33,34,7,39,35,36,37,38,1,40,44,45,48,49,47,50,51,52,46,53,54,55,58,59,57,60,61,62,56,63,64,65,68,69,67,70,71,72,66,73,74,85,88,89,87,90,91,92,86,93,94,75,78,79,77,80,81,82,76,83,84,43,42]},"version":"4.5.4"}