@xcpcio/board-app 0.6.4 → 0.13.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.
Files changed (112) hide show
  1. package/.eslintrc.json +6 -0
  2. package/LICENSE +1 -1
  3. package/README.md +13 -30
  4. package/cypress.config.ts +14 -0
  5. package/dist/_headers +3 -0
  6. package/dist/about.html +11 -0
  7. package/dist/assets/_...all_-27c7ae93.css +1 -0
  8. package/dist/assets/_...all_-d56798b5.js +3 -0
  9. package/dist/assets/_name_-8eab6137.js +1 -0
  10. package/dist/assets/about-a8cb8700.js +11 -0
  11. package/dist/assets/app-37f77a84.js +65 -0
  12. package/dist/assets/board-layout-deaedfc1.js +1 -0
  13. package/dist/assets/en-caedd340.js +1 -0
  14. package/dist/assets/home-49c336e5.js +1 -0
  15. package/dist/assets/index-a270cacd.css +5 -0
  16. package/dist/assets/index-layout-d65c80ea.js +1 -0
  17. package/dist/assets/test-0a3d6f7a.js +1 -0
  18. package/dist/assets/user-108782a1.js +1 -0
  19. package/dist/assets/virtual_pwa-register-1c1b9161.js +1 -0
  20. package/dist/assets/workbox-window.prod.es5-a7b12eab.js +2 -0
  21. package/dist/assets/zh-CN-86269804.js +1 -0
  22. package/dist/favicon-dark.svg +1 -0
  23. package/dist/favicon.svg +1 -0
  24. package/dist/index.html +1 -171
  25. package/dist/manifest.webmanifest +1 -0
  26. package/dist/pwa-192x192.png +0 -0
  27. package/dist/pwa-512x512.png +0 -0
  28. package/dist/robots.txt +4 -0
  29. package/dist/safari-pinned-tab.svg +41 -0
  30. package/dist/sitemap.xml +1 -0
  31. package/dist/ssr-manifest.json +486 -0
  32. package/dist/sw.js +1 -0
  33. package/dist/test.html +1 -0
  34. package/dist/workbox-b8d87ee1.js +1 -0
  35. package/package.json +94 -50
  36. package/public/_headers +3 -0
  37. package/public/favicon-dark.svg +1 -0
  38. package/public/favicon.svg +1 -0
  39. package/public/pwa-192x192.png +0 -0
  40. package/public/pwa-512x512.png +0 -0
  41. package/public/safari-pinned-tab.svg +41 -0
  42. package/src/App.vue +33 -0
  43. package/src/auto-imports.d.ts +909 -0
  44. package/src/components/ContestIndex.vue +227 -0
  45. package/src/components/Footer.vue +94 -0
  46. package/src/components/GoBack.vue +22 -0
  47. package/src/components/NavBar.vue +152 -0
  48. package/src/components/SearchInput.vue +50 -0
  49. package/src/components/TheCounter.vue +19 -0
  50. package/src/components/TheInput.vue +20 -0
  51. package/src/components/board/Balloon.vue +5 -0
  52. package/src/components/board/Board.vue +396 -0
  53. package/src/components/board/BottomStatistics.vue +159 -0
  54. package/src/components/board/ContestStateBadge.vue +41 -0
  55. package/src/components/board/Export.vue +75 -0
  56. package/src/components/board/Modal.vue +107 -0
  57. package/src/components/board/ModalMenu.vue +64 -0
  58. package/src/components/board/OptionsModal.vue +179 -0
  59. package/src/components/board/Progress.less +442 -0
  60. package/src/components/board/Progress.vue +229 -0
  61. package/src/components/board/SecondLevelMenu.vue +190 -0
  62. package/src/components/board/Standings.less +1162 -0
  63. package/src/components/board/Standings.vue +154 -0
  64. package/src/components/board/StandingsAnnotate.vue +38 -0
  65. package/src/components/board/Statistics.vue +77 -0
  66. package/src/components/board/SubmissionsTable.vue +312 -0
  67. package/src/components/board/SubmissionsTableModal.vue +52 -0
  68. package/src/components/board/TeamAwards.vue +93 -0
  69. package/src/components/board/TeamInfoModal.vue +128 -0
  70. package/src/components/board/TeamProblemBlock.vue +100 -0
  71. package/src/components/board/TeamUI.vue +161 -0
  72. package/src/components/board/Utility.vue +28 -0
  73. package/src/components/icon/GirlIcon.vue +80 -0
  74. package/src/components/icon/RightArrowIcon.vue +26 -0
  75. package/src/components/icon/StarIcon.vue +19 -0
  76. package/src/components/table/TablePagination.vue +108 -0
  77. package/src/components.d.ts +44 -0
  78. package/src/composables/dark.ts +4 -0
  79. package/src/composables/pagination.ts +81 -0
  80. package/src/composables/statistics.ts +280 -0
  81. package/src/composables/useLocalStorage.ts +29 -0
  82. package/src/composables/useQueryBoardData.ts +43 -0
  83. package/src/composables/utils.ts +11 -0
  84. package/src/layouts/board-layout.vue +14 -0
  85. package/src/layouts/default.vue +10 -0
  86. package/src/layouts/home.vue +12 -0
  87. package/src/layouts/index-layout.vue +15 -0
  88. package/src/main.ts +36 -0
  89. package/src/modules/README.md +11 -0
  90. package/src/modules/i18n.ts +52 -0
  91. package/src/modules/nprogress.ts +15 -0
  92. package/src/modules/pinia.ts +18 -0
  93. package/src/modules/pwa.ts +15 -0
  94. package/src/modules/toast.ts +10 -0
  95. package/src/pages/[...all].vue +34 -0
  96. package/src/pages/about.md +21 -0
  97. package/src/pages/hi/[name].vue +50 -0
  98. package/src/pages/index.vue +129 -0
  99. package/src/pages/test.vue +57 -0
  100. package/src/shims.d.ts +16 -0
  101. package/src/stores/user.ts +36 -0
  102. package/src/styles/color.css +51 -0
  103. package/src/styles/main.css +30 -0
  104. package/src/styles/markdown.css +28 -0
  105. package/src/styles/submission-status.css +123 -0
  106. package/src/types.ts +3 -0
  107. package/tsconfig.json +39 -0
  108. package/uno.config.ts +65 -0
  109. package/vite.config.ts +176 -0
  110. package/dist/favicon.ico +0 -0
  111. package/dist/umi.00ae29f6.js +0 -1
  112. package/dist/umi.bd64c248.css +0 -1
@@ -0,0 +1,486 @@
1
+ {
2
+ "\u0000/Users/dup4/Documents/repo/xcpcio/xcpcio/node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/dayjs.min.js?commonjs-module": [
3
+ ],
4
+ "\u0000/Users/dup4/Documents/repo/xcpcio/xcpcio/node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/plugin/advancedFormat.js?commonjs-module": [
5
+ ],
6
+ "\u0000/Users/dup4/Documents/repo/xcpcio/xcpcio/node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/plugin/duration.js?commonjs-module": [
7
+ ],
8
+ "\u0000/Users/dup4/Documents/repo/xcpcio/xcpcio/node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/plugin/isSameOrAfter.js?commonjs-module": [
9
+ ],
10
+ "\u0000/Users/dup4/Documents/repo/xcpcio/xcpcio/node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/plugin/isSameOrBefore.js?commonjs-module": [
11
+ ],
12
+ "\u0000/Users/dup4/Documents/repo/xcpcio/xcpcio/node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/plugin/minMax.js?commonjs-module": [
13
+ ],
14
+ "\u0000/Users/dup4/Documents/repo/xcpcio/xcpcio/node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/plugin/relativeTime.js?commonjs-module": [
15
+ ],
16
+ "\u0000/Users/dup4/Documents/repo/xcpcio/xcpcio/node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/plugin/timezone.js?commonjs-module": [
17
+ ],
18
+ "\u0000/Users/dup4/Documents/repo/xcpcio/xcpcio/node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/plugin/utc.js?commonjs-module": [
19
+ ],
20
+ "\u0000/Users/dup4/Documents/repo/xcpcio/xcpcio/node_modules/.pnpm/highcharts-vue@1.4.3_highcharts@11.1.0_vue@3.3.4/node_modules/highcharts-vue/dist/highcharts-vue.min.js?commonjs-module": [
21
+ "/assets/_...all_-d56798b5.js",
22
+ "/assets/_...all_-27c7ae93.css"
23
+ ],
24
+ "\u0000/Users/dup4/Documents/repo/xcpcio/xcpcio/node_modules/.pnpm/highcharts@11.1.0/node_modules/highcharts/highcharts.js?commonjs-module": [
25
+ "/assets/_...all_-d56798b5.js",
26
+ "/assets/_...all_-27c7ae93.css"
27
+ ],
28
+ "\u0000/Users/dup4/Documents/repo/xcpcio/xcpcio/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-module": [
29
+ ],
30
+ "\u0000/Users/dup4/Documents/repo/xcpcio/xcpcio/node_modules/.pnpm/nprogress@0.2.0/node_modules/nprogress/nprogress.js?commonjs-module": [
31
+ ],
32
+ "\u0000/Users/dup4/Documents/repo/xcpcio/xcpcio/node_modules/.pnpm/vue-toast-notification@3.1.1_vue@3.3.4/node_modules/vue-toast-notification/dist/index.js?commonjs-module": [
33
+ ],
34
+ "\u0000/Users/dup4/Documents/repo/xcpcio/xcpcio/node_modules/.pnpm/vue@3.3.4/node_modules/vue/dist/vue.runtime.esm-bundler.js?commonjs-proxy": [
35
+ ],
36
+ "\u0000commonjsHelpers.js": [
37
+ ],
38
+ "\u0000plugin-vue:export-helper": [
39
+ ],
40
+ "\u0000vite/modulepreload-polyfill": [
41
+ ],
42
+ "\u0000vite/preload-helper": [
43
+ ],
44
+ "../../../../../../../../../@vite-plugin-pages/generated-pages?id=~pages": [
45
+ ],
46
+ "../../../../../../../../../@vite-plugin-pages/route-block": [
47
+ ],
48
+ "../../../../../../../../../@vite-plugin-pwa/virtual:pwa-register": [
49
+ "/assets/virtual_pwa-register-1c1b9161.js"
50
+ ],
51
+ "../../../../../../../../../@vite-plugin-vue-layouts/generated-layouts": [
52
+ ],
53
+ "../../../../../../../../../__uno.css": [
54
+ ],
55
+ "../../../../../../../../../vue-macros/define-models/use-vmodel": [
56
+ ],
57
+ "../../../node_modules/.pnpm/@floating-ui+core@1.4.1/node_modules/@floating-ui/core/dist/floating-ui.core.mjs": [
58
+ ],
59
+ "../../../node_modules/.pnpm/@floating-ui+dom@1.1.1/node_modules/@floating-ui/dom/dist/floating-ui.dom.browser.min.mjs": [
60
+ ],
61
+ "../../../node_modules/.pnpm/@floating-ui+utils@0.1.1/node_modules/@floating-ui/utils/dist/floating-ui.utils.mjs": [
62
+ ],
63
+ "../../../node_modules/.pnpm/@intlify+core-base@9.2.2/node_modules/@intlify/core-base/dist/core-base.esm-bundler.js": [
64
+ ],
65
+ "../../../node_modules/.pnpm/@intlify+devtools-if@9.2.2/node_modules/@intlify/devtools-if/dist/devtools-if.esm-bundler.js": [
66
+ ],
67
+ "../../../node_modules/.pnpm/@intlify+message-compiler@9.2.2/node_modules/@intlify/message-compiler/dist/message-compiler.esm-bundler.js": [
68
+ ],
69
+ "../../../node_modules/.pnpm/@intlify+shared@9.2.2/node_modules/@intlify/shared/dist/shared.esm-bundler.js": [
70
+ ],
71
+ "../../../node_modules/.pnpm/@tanstack+query-core@4.32.6/node_modules/@tanstack/query-core/build/lib/focusManager.mjs": [
72
+ ],
73
+ "../../../node_modules/.pnpm/@tanstack+query-core@4.32.6/node_modules/@tanstack/query-core/build/lib/infiniteQueryBehavior.mjs": [
74
+ ],
75
+ "../../../node_modules/.pnpm/@tanstack+query-core@4.32.6/node_modules/@tanstack/query-core/build/lib/logger.mjs": [
76
+ ],
77
+ "../../../node_modules/.pnpm/@tanstack+query-core@4.32.6/node_modules/@tanstack/query-core/build/lib/mutation.mjs": [
78
+ ],
79
+ "../../../node_modules/.pnpm/@tanstack+query-core@4.32.6/node_modules/@tanstack/query-core/build/lib/mutationCache.mjs": [
80
+ ],
81
+ "../../../node_modules/.pnpm/@tanstack+query-core@4.32.6/node_modules/@tanstack/query-core/build/lib/notifyManager.mjs": [
82
+ ],
83
+ "../../../node_modules/.pnpm/@tanstack+query-core@4.32.6/node_modules/@tanstack/query-core/build/lib/onlineManager.mjs": [
84
+ ],
85
+ "../../../node_modules/.pnpm/@tanstack+query-core@4.32.6/node_modules/@tanstack/query-core/build/lib/query.mjs": [
86
+ ],
87
+ "../../../node_modules/.pnpm/@tanstack+query-core@4.32.6/node_modules/@tanstack/query-core/build/lib/queryCache.mjs": [
88
+ ],
89
+ "../../../node_modules/.pnpm/@tanstack+query-core@4.32.6/node_modules/@tanstack/query-core/build/lib/queryClient.mjs": [
90
+ ],
91
+ "../../../node_modules/.pnpm/@tanstack+query-core@4.32.6/node_modules/@tanstack/query-core/build/lib/queryObserver.mjs": [
92
+ "/assets/_...all_-d56798b5.js",
93
+ "/assets/_...all_-27c7ae93.css"
94
+ ],
95
+ "../../../node_modules/.pnpm/@tanstack+query-core@4.32.6/node_modules/@tanstack/query-core/build/lib/removable.mjs": [
96
+ ],
97
+ "../../../node_modules/.pnpm/@tanstack+query-core@4.32.6/node_modules/@tanstack/query-core/build/lib/retryer.mjs": [
98
+ ],
99
+ "../../../node_modules/.pnpm/@tanstack+query-core@4.32.6/node_modules/@tanstack/query-core/build/lib/subscribable.mjs": [
100
+ ],
101
+ "../../../node_modules/.pnpm/@tanstack+query-core@4.32.6/node_modules/@tanstack/query-core/build/lib/utils.mjs": [
102
+ ],
103
+ "../../../node_modules/.pnpm/@tanstack+vue-query@4.32.6_vue@3.3.4/node_modules/@tanstack/vue-query/build/lib/mutationCache.mjs": [
104
+ ],
105
+ "../../../node_modules/.pnpm/@tanstack+vue-query@4.32.6_vue@3.3.4/node_modules/@tanstack/vue-query/build/lib/queryCache.mjs": [
106
+ ],
107
+ "../../../node_modules/.pnpm/@tanstack+vue-query@4.32.6_vue@3.3.4/node_modules/@tanstack/vue-query/build/lib/queryClient.mjs": [
108
+ ],
109
+ "../../../node_modules/.pnpm/@tanstack+vue-query@4.32.6_vue@3.3.4/node_modules/@tanstack/vue-query/build/lib/useBaseQuery.mjs": [
110
+ "/assets/_...all_-d56798b5.js",
111
+ "/assets/_...all_-27c7ae93.css"
112
+ ],
113
+ "../../../node_modules/.pnpm/@tanstack+vue-query@4.32.6_vue@3.3.4/node_modules/@tanstack/vue-query/build/lib/useQuery.mjs": [
114
+ "/assets/_...all_-d56798b5.js",
115
+ "/assets/_...all_-27c7ae93.css"
116
+ ],
117
+ "../../../node_modules/.pnpm/@tanstack+vue-query@4.32.6_vue@3.3.4/node_modules/@tanstack/vue-query/build/lib/useQueryClient.mjs": [
118
+ "/assets/_...all_-d56798b5.js",
119
+ "/assets/_...all_-27c7ae93.css"
120
+ ],
121
+ "../../../node_modules/.pnpm/@tanstack+vue-query@4.32.6_vue@3.3.4/node_modules/@tanstack/vue-query/build/lib/utils.mjs": [
122
+ ],
123
+ "../../../node_modules/.pnpm/@tanstack+vue-query@4.32.6_vue@3.3.4/node_modules/@tanstack/vue-query/build/lib/vueQueryPlugin.mjs": [
124
+ ],
125
+ "../../../node_modules/.pnpm/@unhead+dom@1.3.3/node_modules/@unhead/dom/dist/index.mjs": [
126
+ ],
127
+ "../../../node_modules/.pnpm/@unhead+shared@1.3.3/node_modules/@unhead/shared/dist/index.mjs": [
128
+ ],
129
+ "../../../node_modules/.pnpm/@unhead+vue@1.3.3_vue@3.3.4/node_modules/@unhead/vue/dist/shared/vue.e6972f28.mjs": [
130
+ ],
131
+ "../../../node_modules/.pnpm/@unocss+reset@0.53.6/node_modules/@unocss/reset/tailwind-compat.css": [
132
+ ],
133
+ "../../../node_modules/.pnpm/@unocss+reset@0.53.6/node_modules/@unocss/reset/tailwind.css": [
134
+ ],
135
+ "../../../node_modules/.pnpm/@vue+reactivity@3.3.4/node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js": [
136
+ ],
137
+ "../../../node_modules/.pnpm/@vue+runtime-core@3.3.4/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js": [
138
+ ],
139
+ "../../../node_modules/.pnpm/@vue+runtime-dom@3.3.4/node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js": [
140
+ ],
141
+ "../../../node_modules/.pnpm/@vue+shared@3.3.4/node_modules/@vue/shared/dist/shared.esm-bundler.js": [
142
+ ],
143
+ "../../../node_modules/.pnpm/@vueuse+core@10.3.0_vue@3.3.4/node_modules/@vueuse/core/index.mjs": [
144
+ ],
145
+ "../../../node_modules/.pnpm/@vueuse+router@10.3.0_vue-router@4.2.4_vue@3.3.4/node_modules/@vueuse/router/index.mjs": [
146
+ ],
147
+ "../../../node_modules/.pnpm/@vueuse+shared@10.3.0_vue@3.3.4/node_modules/@vueuse/shared/index.mjs": [
148
+ ],
149
+ "../../../node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/dayjs.min.js": [
150
+ ],
151
+ "../../../node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/plugin/advancedFormat.js": [
152
+ ],
153
+ "../../../node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/plugin/duration.js": [
154
+ ],
155
+ "../../../node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/plugin/isSameOrAfter.js": [
156
+ ],
157
+ "../../../node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/plugin/isSameOrBefore.js": [
158
+ ],
159
+ "../../../node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/plugin/minMax.js": [
160
+ ],
161
+ "../../../node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/plugin/relativeTime.js": [
162
+ ],
163
+ "../../../node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/plugin/timezone.js": [
164
+ ],
165
+ "../../../node_modules/.pnpm/dayjs@1.11.8/node_modules/dayjs/plugin/utc.js": [
166
+ ],
167
+ "../../../node_modules/.pnpm/floating-vue@2.0.0-beta.24_vue@3.3.4/node_modules/floating-vue/dist/floating-vue.mjs": [
168
+ ],
169
+ "../../../node_modules/.pnpm/floating-vue@2.0.0-beta.24_vue@3.3.4/node_modules/floating-vue/dist/style.css": [
170
+ ],
171
+ "../../../node_modules/.pnpm/highcharts-vue@1.4.3_highcharts@11.1.0_vue@3.3.4/node_modules/highcharts-vue/dist/highcharts-vue.min.js": [
172
+ "/assets/_...all_-d56798b5.js",
173
+ "/assets/_...all_-27c7ae93.css"
174
+ ],
175
+ "../../../node_modules/.pnpm/highcharts@11.1.0/node_modules/highcharts/highcharts.js": [
176
+ "/assets/_...all_-d56798b5.js",
177
+ "/assets/_...all_-27c7ae93.css"
178
+ ],
179
+ "../../../node_modules/.pnpm/hookable@5.5.3/node_modules/hookable/dist/index.mjs": [
180
+ ],
181
+ "../../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js": [
182
+ ],
183
+ "../../../node_modules/.pnpm/nprogress@0.2.0/node_modules/nprogress/nprogress.js": [
184
+ ],
185
+ "../../../node_modules/.pnpm/pinia@2.1.6_typescript@5.1.6_vue@3.3.4/node_modules/pinia/dist/pinia.mjs": [
186
+ ],
187
+ "../../../node_modules/.pnpm/unhead@1.3.3/node_modules/unhead/dist/index.mjs": [
188
+ ],
189
+ "../../../node_modules/.pnpm/vite-ssg@0.23.1_@unhead+vue@1.3.3_critters@0.0.19_vite@4.4.9_vue-router@4.2.4_vue@3.3.4/node_modules/vite-ssg/dist/index.mjs": [
190
+ ],
191
+ "../../../node_modules/.pnpm/vite-ssg@0.23.1_@unhead+vue@1.3.3_critters@0.0.19_vite@4.4.9_vue-router@4.2.4_vue@3.3.4/node_modules/vite-ssg/dist/shared/vite-ssg.5912142e.mjs": [
192
+ ],
193
+ "../../../node_modules/.pnpm/vite-ssg@0.23.1_@unhead+vue@1.3.3_critters@0.0.19_vite@4.4.9_vue-router@4.2.4_vue@3.3.4/node_modules/vite-ssg/dist/shared/vite-ssg.a009fbf1.mjs": [
194
+ ],
195
+ "../../../node_modules/.pnpm/vue-demi@0.14.6_vue@3.3.4/node_modules/vue-demi/lib/index.mjs": [
196
+ ],
197
+ "../../../node_modules/.pnpm/vue-i18n@9.2.2_vue@3.3.4/node_modules/vue-i18n/dist/vue-i18n.runtime.esm-bundler.js": [
198
+ ],
199
+ "../../../node_modules/.pnpm/vue-router@4.2.4_vue@3.3.4/node_modules/vue-router/dist/vue-router.mjs": [
200
+ ],
201
+ "../../../node_modules/.pnpm/vue-search-select@3.1.2/node_modules/vue-search-select/dist/VueSearchSelect.css": [
202
+ ],
203
+ "../../../node_modules/.pnpm/vue-search-select@3.1.2/node_modules/vue-search-select/dist/VueSearchSelect.js": [
204
+ "/assets/_...all_-d56798b5.js",
205
+ "/assets/_...all_-27c7ae93.css"
206
+ ],
207
+ "../../../node_modules/.pnpm/vue-toast-notification@3.1.1_vue@3.3.4/node_modules/vue-toast-notification/dist/index.js": [
208
+ ],
209
+ "../../../node_modules/.pnpm/vue-toast-notification@3.1.1_vue@3.3.4/node_modules/vue-toast-notification/dist/theme-sugar.css": [
210
+ ],
211
+ "../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue/dist/vue.runtime.esm-bundler.js": [
212
+ ],
213
+ "../../../node_modules/.pnpm/workbox-window@7.0.0/node_modules/workbox-window/build/workbox-window.prod.es5.mjs": [
214
+ "/assets/workbox-window.prod.es5-a7b12eab.js"
215
+ ],
216
+ "../../libs/core/dist/index.mjs": [
217
+ ],
218
+ "../../libs/types/dist/index.mjs": [
219
+ ],
220
+ "assets/app-!~{001}~.js-unocss-hash.css": [
221
+ ],
222
+ "index.html": [
223
+ ],
224
+ "locales/en.yml": [
225
+ "/assets/en-caedd340.js"
226
+ ],
227
+ "locales/zh-CN.yml": [
228
+ "/assets/zh-CN-86269804.js"
229
+ ],
230
+ "src/App.vue?vue&type=script&setup=true&lang.ts": [
231
+ ],
232
+ "src/components/ContestIndex.vue": [
233
+ ],
234
+ "src/components/ContestIndex.vue?vue&type=script&setup=true&lang.ts": [
235
+ ],
236
+ "src/components/ContestIndex.vue?vue&type=style&index=0&scoped=e6fdacc2&lang.css": [
237
+ ],
238
+ "src/components/Footer.vue?vue&type=script&setup=true&lang.ts": [
239
+ ],
240
+ "src/components/GoBack.vue?vue&type=script&setup=true&lang.ts": [
241
+ "/assets/_...all_-d56798b5.js",
242
+ "/assets/_...all_-27c7ae93.css"
243
+ ],
244
+ "src/components/NavBar.vue": [
245
+ ],
246
+ "src/components/NavBar.vue?vue&type=script&setup=true&lang.ts": [
247
+ ],
248
+ "src/components/NavBar.vue?vue&type=style&index=0&scoped=a79e7085&lang.css": [
249
+ ],
250
+ "src/components/SearchInput.vue?vue&type=script&setup=true&lang.ts": [
251
+ ],
252
+ "src/components/TheInput.vue?vue&type=script&setup=true&lang.ts": [
253
+ "/assets/test-0a3d6f7a.js"
254
+ ],
255
+ "src/components/board/Board.vue": [
256
+ "/assets/_...all_-d56798b5.js",
257
+ "/assets/_...all_-27c7ae93.css"
258
+ ],
259
+ "src/components/board/Board.vue?vue&type=script&setup=true&lang.ts": [
260
+ "/assets/_...all_-d56798b5.js",
261
+ "/assets/_...all_-27c7ae93.css"
262
+ ],
263
+ "src/components/board/Board.vue?vue&type=style&index=0&scoped=3b181610&lang.css": [
264
+ "/assets/_...all_-d56798b5.js",
265
+ "/assets/_...all_-27c7ae93.css"
266
+ ],
267
+ "src/components/board/BottomStatistics.vue": [
268
+ "/assets/_...all_-d56798b5.js",
269
+ "/assets/_...all_-27c7ae93.css"
270
+ ],
271
+ "src/components/board/BottomStatistics.vue?vue&type=script&setup=true&lang.ts": [
272
+ "/assets/_...all_-d56798b5.js",
273
+ "/assets/_...all_-27c7ae93.css"
274
+ ],
275
+ "src/components/board/BottomStatistics.vue?vue&type=style&index=0&scoped=3a15ec2a&lang.less": [
276
+ "/assets/_...all_-d56798b5.js",
277
+ "/assets/_...all_-27c7ae93.css"
278
+ ],
279
+ "src/components/board/ContestStateBadge.vue": [
280
+ ],
281
+ "src/components/board/ContestStateBadge.vue?vue&type=script&setup=true&lang.ts": [
282
+ ],
283
+ "src/components/board/ContestStateBadge.vue?vue&type=style&index=0&scoped=68586c4d&lang.less": [
284
+ ],
285
+ "src/components/board/Export.vue?vue&type=script&setup=true&lang.ts": [
286
+ "/assets/_...all_-d56798b5.js",
287
+ "/assets/_...all_-27c7ae93.css"
288
+ ],
289
+ "src/components/board/Modal.vue?vue&type=script&setup=true&lang.ts": [
290
+ "/assets/_...all_-d56798b5.js",
291
+ "/assets/_...all_-27c7ae93.css"
292
+ ],
293
+ "src/components/board/ModalMenu.vue?vue&type=script&setup=true&lang.ts": [
294
+ "/assets/_...all_-d56798b5.js",
295
+ "/assets/_...all_-27c7ae93.css"
296
+ ],
297
+ "src/components/board/OptionsModal.vue?vue&type=script&setup=true&lang.ts": [
298
+ "/assets/_...all_-d56798b5.js",
299
+ "/assets/_...all_-27c7ae93.css"
300
+ ],
301
+ "src/components/board/Progress.vue": [
302
+ ],
303
+ "src/components/board/Progress.vue?vue&type=script&setup=true&lang.ts": [
304
+ ],
305
+ "src/components/board/Progress.vue?vue&type=style&index=0&scoped=4ce11ab6&lang.less": [
306
+ ],
307
+ "src/components/board/SecondLevelMenu.vue": [
308
+ "/assets/_...all_-d56798b5.js",
309
+ "/assets/_...all_-27c7ae93.css"
310
+ ],
311
+ "src/components/board/SecondLevelMenu.vue?vue&type=script&setup=true&lang.ts": [
312
+ "/assets/_...all_-d56798b5.js",
313
+ "/assets/_...all_-27c7ae93.css"
314
+ ],
315
+ "src/components/board/SecondLevelMenu.vue?vue&type=style&index=0&scoped=714a998b&lang.css": [
316
+ "/assets/_...all_-d56798b5.js",
317
+ "/assets/_...all_-27c7ae93.css"
318
+ ],
319
+ "src/components/board/Standings.vue": [
320
+ "/assets/_...all_-d56798b5.js",
321
+ "/assets/_...all_-27c7ae93.css"
322
+ ],
323
+ "src/components/board/Standings.vue?vue&type=script&setup=true&lang.ts": [
324
+ "/assets/_...all_-d56798b5.js",
325
+ "/assets/_...all_-27c7ae93.css"
326
+ ],
327
+ "src/components/board/Standings.vue?vue&type=style&index=0&scoped=9edb8d1e&lang.less": [
328
+ "/assets/_...all_-d56798b5.js",
329
+ "/assets/_...all_-27c7ae93.css"
330
+ ],
331
+ "src/components/board/StandingsAnnotate.vue": [
332
+ "/assets/_...all_-d56798b5.js",
333
+ "/assets/_...all_-27c7ae93.css"
334
+ ],
335
+ "src/components/board/StandingsAnnotate.vue?vue&type=style&index=0&scoped=54297ce8&lang.less": [
336
+ "/assets/_...all_-d56798b5.js",
337
+ "/assets/_...all_-27c7ae93.css"
338
+ ],
339
+ "src/components/board/Statistics.vue?vue&type=script&setup=true&lang.ts": [
340
+ "/assets/_...all_-d56798b5.js",
341
+ "/assets/_...all_-27c7ae93.css"
342
+ ],
343
+ "src/components/board/SubmissionsTable.vue": [
344
+ "/assets/_...all_-d56798b5.js",
345
+ "/assets/_...all_-27c7ae93.css"
346
+ ],
347
+ "src/components/board/SubmissionsTable.vue?vue&type=script&setup=true&lang.ts": [
348
+ "/assets/_...all_-d56798b5.js",
349
+ "/assets/_...all_-27c7ae93.css"
350
+ ],
351
+ "src/components/board/SubmissionsTable.vue?vue&type=style&index=0&scoped=3e64440f&lang.less": [
352
+ "/assets/_...all_-d56798b5.js",
353
+ "/assets/_...all_-27c7ae93.css"
354
+ ],
355
+ "src/components/board/SubmissionsTableModal.vue?vue&type=script&setup=true&lang.ts": [
356
+ "/assets/_...all_-d56798b5.js",
357
+ "/assets/_...all_-27c7ae93.css"
358
+ ],
359
+ "src/components/board/TeamAwards.vue?vue&type=script&setup=true&lang.ts": [
360
+ "/assets/_...all_-d56798b5.js",
361
+ "/assets/_...all_-27c7ae93.css"
362
+ ],
363
+ "src/components/board/TeamInfoModal.vue?vue&type=script&setup=true&lang.ts": [
364
+ "/assets/_...all_-d56798b5.js",
365
+ "/assets/_...all_-27c7ae93.css"
366
+ ],
367
+ "src/components/board/TeamProblemBlock.vue": [
368
+ "/assets/_...all_-d56798b5.js",
369
+ "/assets/_...all_-27c7ae93.css"
370
+ ],
371
+ "src/components/board/TeamProblemBlock.vue?vue&type=script&setup=true&lang.ts": [
372
+ "/assets/_...all_-d56798b5.js",
373
+ "/assets/_...all_-27c7ae93.css"
374
+ ],
375
+ "src/components/board/TeamProblemBlock.vue?vue&type=style&index=0&scoped=dbdd6e30&lang.less": [
376
+ "/assets/_...all_-d56798b5.js",
377
+ "/assets/_...all_-27c7ae93.css"
378
+ ],
379
+ "src/components/board/TeamUI.vue": [
380
+ "/assets/_...all_-d56798b5.js",
381
+ "/assets/_...all_-27c7ae93.css"
382
+ ],
383
+ "src/components/board/TeamUI.vue?vue&type=script&setup=true&lang.ts": [
384
+ "/assets/_...all_-d56798b5.js",
385
+ "/assets/_...all_-27c7ae93.css"
386
+ ],
387
+ "src/components/board/TeamUI.vue?vue&type=style&index=0&scoped=40c78d8c&lang.less": [
388
+ "/assets/_...all_-d56798b5.js",
389
+ "/assets/_...all_-27c7ae93.css"
390
+ ],
391
+ "src/components/board/Utility.vue?vue&type=script&setup=true&lang.ts": [
392
+ "/assets/_...all_-d56798b5.js",
393
+ "/assets/_...all_-27c7ae93.css"
394
+ ],
395
+ "src/components/icon/GirlIcon.vue": [
396
+ "/assets/_...all_-d56798b5.js",
397
+ "/assets/_...all_-27c7ae93.css"
398
+ ],
399
+ "src/components/icon/RightArrowIcon.vue": [
400
+ ],
401
+ "src/components/icon/StarIcon.vue": [
402
+ "/assets/_...all_-d56798b5.js",
403
+ "/assets/_...all_-27c7ae93.css"
404
+ ],
405
+ "src/components/table/TablePagination.vue?vue&type=script&setup=true&lang.ts": [
406
+ "/assets/_...all_-d56798b5.js",
407
+ "/assets/_...all_-27c7ae93.css"
408
+ ],
409
+ "src/composables/dark.ts": [
410
+ ],
411
+ "src/composables/pagination.ts": [
412
+ "/assets/_...all_-d56798b5.js",
413
+ "/assets/_...all_-27c7ae93.css"
414
+ ],
415
+ "src/composables/statistics.ts": [
416
+ "/assets/_...all_-d56798b5.js",
417
+ "/assets/_...all_-27c7ae93.css"
418
+ ],
419
+ "src/composables/useLocalStorage.ts": [
420
+ "/assets/_...all_-d56798b5.js",
421
+ "/assets/_...all_-27c7ae93.css"
422
+ ],
423
+ "src/composables/useQueryBoardData.ts": [
424
+ "/assets/_...all_-d56798b5.js",
425
+ "/assets/_...all_-27c7ae93.css"
426
+ ],
427
+ "src/composables/utils.ts": [
428
+ "/assets/_...all_-d56798b5.js",
429
+ "/assets/_...all_-27c7ae93.css"
430
+ ],
431
+ "src/layouts/board-layout.vue": [
432
+ "/assets/board-layout-deaedfc1.js"
433
+ ],
434
+ "src/layouts/default.vue": [
435
+ ],
436
+ "src/layouts/home.vue": [
437
+ "/assets/home-49c336e5.js"
438
+ ],
439
+ "src/layouts/index-layout.vue": [
440
+ "/assets/index-layout-d65c80ea.js"
441
+ ],
442
+ "src/main.ts": [
443
+ ],
444
+ "src/modules/i18n.ts": [
445
+ ],
446
+ "src/modules/nprogress.ts": [
447
+ ],
448
+ "src/modules/pinia.ts": [
449
+ ],
450
+ "src/modules/pwa.ts": [
451
+ ],
452
+ "src/modules/toast.ts": [
453
+ ],
454
+ "src/pages/[...all].vue": [
455
+ "/assets/_...all_-d56798b5.js",
456
+ "/assets/_...all_-27c7ae93.css"
457
+ ],
458
+ "src/pages/[...all].vue?vue&type=script&setup=true&lang.ts": [
459
+ "/assets/_...all_-d56798b5.js",
460
+ "/assets/_...all_-27c7ae93.css"
461
+ ],
462
+ "src/pages/about.md": [
463
+ "/assets/about-a8cb8700.js"
464
+ ],
465
+ "src/pages/hi/[name].vue": [
466
+ "/assets/_name_-8eab6137.js"
467
+ ],
468
+ "src/pages/hi/[name].vue?vue&type=script&setup=true&lang.ts": [
469
+ "/assets/_name_-8eab6137.js"
470
+ ],
471
+ "src/pages/index.vue": [
472
+ ],
473
+ "src/pages/index.vue?vue&type=script&setup=true&lang.ts": [
474
+ ],
475
+ "src/pages/test.vue": [
476
+ "/assets/test-0a3d6f7a.js"
477
+ ],
478
+ "src/pages/test.vue?vue&type=script&setup=true&lang.ts": [
479
+ "/assets/test-0a3d6f7a.js"
480
+ ],
481
+ "src/stores/user.ts": [
482
+ "/assets/user-108782a1.js"
483
+ ],
484
+ "src/styles/main.css": [
485
+ ]
486
+ }
package/dist/sw.js ADDED
@@ -0,0 +1 @@
1
+ if(!self.define){let s,e={};const i=(i,l)=>(i=new URL(i+".js",l).href,e[i]||new Promise((e=>{if("document"in self){const s=document.createElement("script");s.src=i,s.onload=e,document.head.appendChild(s)}else s=i,importScripts(i),e()})).then((()=>{let s=e[i];if(!s)throw new Error(`Module ${i} didn’t register its module`);return s})));self.define=(l,r)=>{const n=s||("document"in self?document.currentScript.src:"")||location.href;if(e[n])return;let a={};const t=s=>i(s,n),u={module:{uri:n},exports:a,require:t};e[n]=Promise.all(l.map((s=>u[s]||t(s)))).then((s=>(r(...s),a)))}}define(["./workbox-b8d87ee1"],(function(s){"use strict";self.skipWaiting(),s.clientsClaim(),s.precacheAndRoute([{url:"about.html",revision:"dc37e94186cbb52ceb4f94be8ac1c24a"},{url:"assets/_...all_-27c7ae93.css",revision:null},{url:"assets/_...all_-d56798b5.js",revision:null},{url:"assets/_name_-8eab6137.js",revision:null},{url:"assets/about-a8cb8700.js",revision:null},{url:"assets/app-37f77a84.js",revision:null},{url:"assets/board-layout-deaedfc1.js",revision:null},{url:"assets/en-caedd340.js",revision:null},{url:"assets/home-49c336e5.js",revision:null},{url:"assets/index-a270cacd.css",revision:null},{url:"assets/index-layout-d65c80ea.js",revision:null},{url:"assets/test-0a3d6f7a.js",revision:null},{url:"assets/user-108782a1.js",revision:null},{url:"assets/virtual_pwa-register-1c1b9161.js",revision:null},{url:"assets/workbox-window.prod.es5-a7b12eab.js",revision:null},{url:"assets/zh-CN-86269804.js",revision:null},{url:"index.html",revision:"cdc1b41416c4ffa28797a67cbd53687c"},{url:"test.html",revision:"49bc291c7e98ad7bf9f15f9efa256dbe"},{url:"favicon.svg",revision:"c21c622f1a74d438dcb366f5992d9990"},{url:"safari-pinned-tab.svg",revision:"5eaf74d1c43d30e0af743b68a3f48504"},{url:"pwa-192x192.png",revision:"65f6c00ff3d88d8371df0480c1ba0272"},{url:"pwa-512x512.png",revision:"20a2db7d5040eb315e6acf49c6983de9"},{url:"manifest.webmanifest",revision:"37e8d18026b05432f623fc5efac2b4b1"}],{}),s.cleanupOutdatedCaches(),s.registerRoute(new s.NavigationRoute(s.createHandlerBoundToURL("index.html")))}));
package/dist/test.html ADDED
@@ -0,0 +1 @@
1
+ <!DOCTYPE html><html lang="en" data-critters-container><head><meta charset="UTF-8"><!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> --><link rel="apple-touch-icon" href="/pwa-192x192.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#00aba9"><meta name="msapplication-TileColor" content="#00aba9"><script>function normalizePath(A){for(;A.endsWith("/");)A=A.slice(0,-1);return A+"/"}let DATA_HOST;try{DATA_HOST=__DATA_HOST__}catch(A){DATA_HOST="/data/"}DATA_HOST=normalizePath(DATA_HOST),window.DATA_HOST=DATA_HOST</script><script>!function(){var e=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches,t=localStorage.getItem("vueuse-color-scheme")||"auto";("dark"===t||e&&"light"!==t)&&document.documentElement.classList.toggle("dark",!0)}()</script><script type="module" async crossorigin src="/assets/app-37f77a84.js"></script><style>@charset "UTF-8";@-webkit-keyframes progress-bar-stripes-4ce11ab6{0%{background-position:36px 0}to{background-position:0 0}}@-webkit-keyframes progress-bar-stripes-68586c4d{0%{background-position:36px 0}to{background-position:0 0}}.v-popper__popper{z-index:10000;top:0;left:0;outline:0}.v-popper__popper.v-popper__popper--hidden{visibility:hidden;opacity:0;transition:opacity .15s,visibility .15s;pointer-events:none}.v-popper__backdrop{position:absolute;top:0;left:0;width:100%;height:100%;display:none}.v-popper__inner{position:relative;box-sizing:border-box;overflow-y:auto}.v-popper__arrow-container{position:absolute;width:10px;height:10px}.v-popper__arrow-inner,.v-popper__arrow-outer{border-style:solid;position:absolute;top:0;left:0;width:0;height:0}.v-popper__arrow-inner{visibility:hidden;border-width:7px}.v-popper__arrow-outer{border-width:6px}.v-popper--theme-tooltip .v-popper__inner{background:rgba(0,0,0,.8);color:#fff;border-radius:6px;padding:7px 12px 6px}.v-popper--theme-tooltip .v-popper__arrow-outer{border-color:#000c}@-webkit-keyframes dropdown-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}button{-webkit-appearance:button;background-color:transparent;background-image:none}*,:after,:before{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji"}body{margin:0;line-height:inherit}a{color:inherit;text-decoration:inherit}button,input{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button{text-transform:none}button{-webkit-appearance:button;background-image:none}p{margin:0}ul{list-style:none;margin:0;padding:0}input::placeholder{opacity:1;color:#9ca3af}button{cursor:pointer}*,:after,:before{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-scroll-snap-strictness:proximity;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow:0 0 rgba(0,0,0,0);--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5)}[i-carbon-campsite=""]{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' display='inline-block' height='1.2em' width='1.2em' vertical-align='text-bottom' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M27.562 26L17.17 8.928l2.366-3.888L17.828 4L16 7.005L14.17 4l-1.708 1.04l2.366 3.888L4.438 26H2v2h28v-2ZM16 10.85L25.22 26H17v-8h-2v8H6.78Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;height:1.2em;width:1.2em;vertical-align:text-bottom}[i-ion-balloon-sharp=""]{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' display='inline-block' height='1.2em' width='1.2em' vertical-align='text-bottom' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M391 307.27c32.75-46.35 46.59-101.63 39-155.68C416.47 55.59 327.38-11.54 231.38 2S68.24 104.53 81.73 200.53c7.57 53.89 36.12 103.16 80.37 138.74c26.91 21.64 57.59 36.1 86.05 41.33l-8.36 45.23a8 8 0 0 0 9 9.38L279 431c15.9 35.87 41.65 60.48 78.41 75l14.88 5.88l11.77-29.75l-14.88-5.89c-26.35-10.42-44.48-26.16-57-49.92l21.84-3.07a8 8 0 0 0 6.05-11.49l-20.49-41.16c25.98-12.87 51.49-35.18 71.42-63.33Zm-160.82 15.66c-41.26-16.32-76.3-52.7-91.45-94.94l-5.4-15.06l30.12-10.8l5.4 15.06c14.5 40.44 47.27 65.77 73.1 76l14.88 5.88l-11.77 29.76Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;height:1.2em;width:1.2em;vertical-align:text-bottom}[btn=""]{display:inline-block;cursor:pointer;border-radius:.25rem;--un-bg-opacity:1;background-color:rgba(15,118,110,var(--un-bg-opacity));padding:.25rem 1rem;--un-text-opacity:1;color:rgba(255,255,255,var(--un-text-opacity));outline:2px solid transparent!important;outline-offset:2px!important}[btn=""]:disabled{cursor:default;--un-bg-opacity:1;background-color:rgba(75,85,99,var(--un-bg-opacity));opacity:.5}[btn=""]:hover{--un-bg-opacity:1;background-color:rgba(17,94,89,var(--un-bg-opacity))}[m-3=""]{margin:.75rem}[mx-auto=""]{margin-left:auto;margin-right:auto}[my-6=""]{margin-top:1.5rem;margin-bottom:1.5rem}[mb-6=""]{margin-bottom:1.5rem}.mr-4,[mr-4=""]{margin-right:1rem}[mt-5=""]{margin-top:1.25rem}[mt-8=""]{margin-top:2rem}.hidden{display:none}[h-8=""]{height:2rem}[w-full=""]{width:100%}[w-inherit=""]{width:inherit}[w~="250px"]{width:250px}[flex=""]{display:flex}[flex-wrap=""]{flex-wrap:wrap}[items-center=""]{align-items:center}[justify-center=""]{justify-content:center}[border~="~"]{border-width:1px}[border~=gray-200]{--un-border-opacity:1;border-color:rgba(229,231,235,var(--un-border-opacity))}[border~=rounded]{border-radius:.25rem}[bg~=transparent]{background-color:transparent}[px-4=""],[p~=x-4]{padding-left:1rem;padding-right:1rem}[py-10=""]{padding-top:2.5rem;padding-bottom:2.5rem}[p~=y-2]{padding-top:.5rem;padding-bottom:.5rem}[py-4=""]{padding-top:1rem;padding-bottom:1rem}[text-center=""],[text~=center]{text-align:center}[text-2xl=""]{font-size:1.5rem;line-height:2rem}[text-4xl=""]{font-size:2.25rem;line-height:2.5rem}[text-sm=""]{font-size:.875rem;line-height:1.25rem}[font-semibold=""]{font-weight:600}.font-sans{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji"}[text~=gray-700]{--un-text-opacity:1;color:rgba(55,65,81,var(--un-text-opacity))}[color~="#00aba9"]{--un-text-opacity:1;color:rgba(0,171,169,var(--un-text-opacity))}[text-gray-500=""]{--un-text-opacity:1;color:rgba(107,114,128,var(--un-text-opacity))}[text-gray-900=""]{--un-text-opacity:1;color:rgba(17,24,39,var(--un-text-opacity))}.hover\:underline:hover,[hover\:underline=""]:hover{text-decoration-line:underline}[opacity-75=""]{opacity:.75}[opacity-50=""]{opacity:.5}[outline~=none]{outline:2px solid transparent;outline-offset:2px}@media (min-width:640px){[sm\:text-center=""]{text-align:center}}@media (min-width:768px){.md\:mr-6,[md\:mr-6=""]{margin-right:1.5rem}[md\:py-8=""]{padding-top:2rem;padding-bottom:2rem}}@media (min-width:1024px){[lg\:py-10=""]{padding-top:2.5rem;padding-bottom:2.5rem}}html{--global-background:#fff;--theme-status-pending:#6cf;--theme-status-configuration-error:#e28989;--theme-status-system-error:grey;--theme-status-compilation-error:#1679dc;--theme-status-canceled:#676fc1;--theme-status-file-error:darkorchid;--theme-status-runtime-error:darkorchid;--theme-status-time-limit-exceeded:sandybrown;--theme-status-memory-limit-exceeded:sandybrown;--theme-status-output-limit-exceeded:sandybrown;--theme-status-partially-correct:#01bab2;--theme-status-wrong-answer:#ff4545;--theme-status-accepted:#37da58;--theme-status-judgement-failed:#FF5722;--theme-status-waiting:grey;--theme-status-preparing:#de4d9e;--theme-status-compiling:#00b5ad;--theme-status-running:#6cf;--theme-status-skipped:#78909C;--theme-status-unknown:#000;--theme-status-undefined:var(--theme-status-unknown)}#app,body,html{height:100%;margin:0;padding:0}</style><link rel="preload" href="/assets/index-a270cacd.css" as="style"><link rel="manifest" href="/manifest.webmanifest"><style></style><link rel="modulepreload" crossorigin href="/assets/home-49c336e5.js"><link rel="modulepreload" crossorigin href="/assets/test-0a3d6f7a.js"><title>Board - XCPCIO</title><meta name="description" content="XCPCIO-Board 主要收录 *CPC 系列竞赛的榜单。"><meta name="keywords" content="icpc, ccpc, rank, board, standings"><meta name="theme-color" content="#ffffff"><link rel="icon" type="image/svg+xml" href="/favicon.svg"><link rel="preload" as="font" crossorigin="anonymous" href="data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAVgAA8AAAAACFAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABWAAAABwAAAAchGgaq0dERUYAAAF0AAAAHAAAAB4AJwAPT1MvMgAAAZAAAABDAAAAVnW4TJdjbWFwAAAB1AAAAEsAAAFS8CcaqmN2dCAAAAIgAAAABAAAAAQAEQFEZ2FzcAAAAiQAAAAIAAAACP//AANnbHlmAAACLAAAAQoAAAGkrRHP9WhlYWQAAAM4AAAAMAAAADYPK8YyaGhlYQAAA2gAAAAdAAAAJANCAb1obXR4AAADiAAAACIAAAAiCBkAOGxvY2EAAAOsAAAAFAAAABQBnAIybWF4cAAAA8AAAAAfAAAAIAEVAF5uYW1lAAAD4AAAATAAAAKMFGlj5HBvc3QAAAUQAAAARgAAAHJoedjqd2ViZgAABVgAAAAGAAAABrO7W5UAAAABAAAAANXulPUAAAAA1r4hgAAAAADXu2Q1eNpjYGRgYOABYjEgZmJgBEIOIGYB8xgAA/YAN3jaY2BktGOcwMDKwMI4jTGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHFT/fLjFeOD/AQY9xjMMbkBhRpAcAN48DQYAeNpjYGBgZoBgGQZGBhDwAfIYwXwWBgMgzQGETAwMqn8+8H649f8/lHX9//9b7Pzf+fWgusCAkY0BzmUE6gHpQwGMDMMeAACbxg7SAAARAUQAAAAB//8AAnjadZBPSsNAGMXfS+yMqYgOhpSuSlKadmUhiVEhEMQzFF22m17BbbvzCh5BXCUn6EG8gjeQ4DepwYo4i+/ffL95j4EDA+CFC7jQuKyIeVHrI3wkleq9F7XrSInKteOeHdda8bOoaeepSc00NWPz/LRec9G8GabyGtEdF7h19z033GAMTK7zbM42xNEZpzYof0RtQ5CUHAQJ73OtVyutc+3b7Ou//b8XNlsPx3jgjUifABdhEohKJJL5iM5p39uqc7X1+sRQSqmGrUVhlsJ4lpmEUVwyT8SUYtg0P9DyNzPADDs+tjrGV6KRCRfsui3eHcL4/p8ZXvfMlcnEU+CLv7hDykOP+AKTPTxbAAB42mNgZGBgAGKuf5KP4vltvjLIMzGAwLV9ig0g+vruFFMQzdjACOJzMIClARh0CTJ42mNgZGBgPPD/AJD8wgAEjA0MjAyogAMAbOQEAQAAAAC7ABEAAAAAAKoAAAH0AAABgAAAAUAACAFAAAgAwAAXAAAAAAAAACoAKgAqADIAbACGAKAAugDSeNpjYGRgYOBkUGFgYgABEMkFhAwM/xn0QAIADdUBdAB42qWQvUoDQRSFv3GjaISUQaymSmGxJoGAsRC0iPYLsU50Y6IxrvlRtPCJJKUPIBb+PIHv4EN4djKuKAqCDHfmu+feOdwZoMCUAJNbAlYUMzaUlM14jjxbngOq7HnOia89z1Pk1vMCa9x7ztPkzfMyJbPj+ZGi6Xp+omxuPD+zaD7meaFg7mb8GrBqHmhwxoAxlm0uiRkpP9X5m26pKRoMxTGR1D49Dv/Yb/91o6l8qL6eu5n2hZQzn68utR9m3FU2cB4t9cdSLG2utI+44Eh/P9bqKO+oJ/WxmXssj77YkrjasZQD6SFddythk3Wtzrf+UF2p076Udla1VNzsERP3kkjVRKel7mp1udXYcHtZSlV7RfmJe1GiFWveluaeKD5/MuJcSk8Tpm/vvwPIbmJleNpjYGKAAFYG7ICTgYGRiZGZkYWRlZGNkZ2Rg5GTLT2nsiDDEEIZsZfmZRqZujmDaDcDAxcI7WIOpS2gtCWUdgQAZkcSmQAAAAFblbO6AAA="></head><body class="font-sans"><div id="app" data-server-rendered="true"><main px-4 py-10 text="center gray-700 dark:gray-200"><div><div text-4xl><div i-carbon-campsite></div></div><p><a rel="noreferrer" href="https://github.com/antfu/vitesse" target="_blank">Vitesse</a></p><p><em text-sm opacity-75>Opinionated Vite Starter Template</em></p><div py-4></div><input id="input" value type="text" placeholder="What's your name?" autocomplete="false" p="x-4 y-2" w="250px" text="center" bg="transparent" border="~ rounded gray-200 dark:gray-700" outline="none active:none"><label class="hidden" for="input">What's your name?</label><div><button m-3 text-sm btn disabled="disabled">GO</button></div></div><footer mt-8 py-4 md:py-8 lg:py-10 w-full flex justify-center items-center><div text-center w-full><a href="/" class flex items-center justify-center text-2xl font-semibold text-gray-900 dark:text-white><div i-ion-balloon-sharp mr-4 h-8></div>Get more balloons</a><p my-6 text-gray-500 dark:text-gray-400 w-full flex justify-center>Open-source project of ICPC/CCPC Standings.</p><ul mb-6 w-full flex flex-wrap items-center justify-center text-gray-900 dark:text-white><li><a href="/" class mr-4 md:mr-6 hover:underline>Home</a></li><li><div class="v-popper v-popper--theme-tooltip" w-inherit><!--[--><!--[--><a href="https://github.com/xcpcio/xcpcio" class="mr-4 md:mr-6 hover:underline" rel="noreferrer" target="_blank" title="GitHub">GitHub</a><!--]--><div id="popper_17ux8ueh_axnso2" class="v-popper__popper v-popper--theme-tooltip v-popper__popper--hidden v-popper__popper--hide-to" style="position:absolute;transform:translate3d(0,0,0)" aria-hidden="true" data-popper-placement><div class="v-popper__backdrop"></div><div class="v-popper__wrapper" style><div class="v-popper__inner"><!----></div><div class="v-popper__arrow-container" style="left:0;top:0"><div class="v-popper__arrow-outer"></div><div class="v-popper__arrow-inner"></div></div></div></div><!--]--></div></li><li><a href="mailto:hi@dup4.com" mr-4 md:mr-6 hover:underline>Contact</a></li></ul><span text-sm text-gray-500 sm:text-center dark:text-gray-400 w-full>© 2020-PRESENT <a href="/" class hover:underline>XCPCIO™</a>. All Rights Reserved.</span></div></footer><div mx-auto mt-5 text-center text-sm opacity-50>[Home Layout]</div></main></div><script>window.__INITIAL_STATE__='{"pinia":{"user":{"savedName":""}}}'</script><noscript>This website requires JavaScript to function properly. Please enable JavaScript to continue.</noscript><script>try{var umamiJSUrl=__UMAMI_JS_URL__,umamiWebsiteId=__UMAMI_WEBSITE_ID__;!function(){var e=document.createElement("script"),t=(e.src=umamiJSUrl,e.defer=!0,e.setAttribute("data-website-id",umamiWebsiteId),document.getElementsByTagName("script")[0]);t.parentNode.insertBefore(e,t)}()}catch(e){}try{var plausibleJSUrl=__PLAUSIBLE_JS_URL__,plausibleDataDomain=__PLAUSIBLE_DATA_DOMAIN__;!function(){var e=document.createElement("script"),t=(e.src=plausibleJSUrl,e.defer=!0,e.setAttribute("data-domain",plausibleDataDomain),document.getElementsByTagName("script")[0]);t.parentNode.insertBefore(e,t)}()}catch(e){}try{var baiduAnalyticsId=__BAIDU_ANALYTICS_ID__,_hmt=_hmt||[];!function(){var e=document.createElement("script"),t=(e.src="https://hm.baidu.com/hm.js?"+baiduAnalyticsId,document.getElementsByTagName("script")[0]);t.parentNode.insertBefore(e,t)}()}catch(e){}try{var googleAnalyticsId=__GOOGLE_ANALYTICS_ID__;!function(){var e,t,a,r;location.port||(e=window,r=document,t="script",a="ga",e.GoogleAnalyticsObject=a,e.ga=e.ga||function(){(e.ga.q=e.ga.q||[]).push(arguments)},e.ga.l=+new Date,a=r.createElement(t),r=r.getElementsByTagName(t)[0],a.async=1,a.src="//www.google-analytics.com/analytics.js",r.parentNode.insertBefore(a,r),ga("create",""+googleAnalyticsId,"auto"),ga("send","pageview"))}()}catch(e){}</script><link rel="stylesheet" href="/assets/index-a270cacd.css"></body></html>
@@ -0,0 +1 @@
1
+ define(["exports"],(function(t){"use strict";try{self["workbox:core:7.0.0"]&&_()}catch(t){}const e=(t,...e)=>{let s=t;return e.length>0&&(s+=` :: ${JSON.stringify(e)}`),s};class s extends Error{constructor(t,s){super(e(t,s)),this.name=t,this.details=s}}try{self["workbox:routing:7.0.0"]&&_()}catch(t){}const n=t=>t&&"object"==typeof t?t:{handle:t};class i{constructor(t,e,s="GET"){this.handler=n(e),this.match=t,this.method=s}setCatchHandler(t){this.catchHandler=n(t)}}class r extends i{constructor(t,e,s){super((({url:e})=>{const s=t.exec(e.href);if(s&&(e.origin===location.origin||0===s.index))return s.slice(1)}),e,s)}}class o{constructor(){this.t=new Map,this.i=new Map}get routes(){return this.t}addFetchListener(){self.addEventListener("fetch",(t=>{const{request:e}=t,s=this.handleRequest({request:e,event:t});s&&t.respondWith(s)}))}addCacheListener(){self.addEventListener("message",(t=>{if(t.data&&"CACHE_URLS"===t.data.type){const{payload:e}=t.data,s=Promise.all(e.urlsToCache.map((e=>{"string"==typeof e&&(e=[e]);const s=new Request(...e);return this.handleRequest({request:s,event:t})})));t.waitUntil(s),t.ports&&t.ports[0]&&s.then((()=>t.ports[0].postMessage(!0)))}}))}handleRequest({request:t,event:e}){const s=new URL(t.url,location.href);if(!s.protocol.startsWith("http"))return;const n=s.origin===location.origin,{params:i,route:r}=this.findMatchingRoute({event:e,request:t,sameOrigin:n,url:s});let o=r&&r.handler;const c=t.method;if(!o&&this.i.has(c)&&(o=this.i.get(c)),!o)return;let a;try{a=o.handle({url:s,request:t,event:e,params:i})}catch(t){a=Promise.reject(t)}const h=r&&r.catchHandler;return a instanceof Promise&&(this.o||h)&&(a=a.catch((async n=>{if(h)try{return await h.handle({url:s,request:t,event:e,params:i})}catch(t){t instanceof Error&&(n=t)}if(this.o)return this.o.handle({url:s,request:t,event:e});throw n}))),a}findMatchingRoute({url:t,sameOrigin:e,request:s,event:n}){const i=this.t.get(s.method)||[];for(const r of i){let i;const o=r.match({url:t,sameOrigin:e,request:s,event:n});if(o)return i=o,(Array.isArray(i)&&0===i.length||o.constructor===Object&&0===Object.keys(o).length||"boolean"==typeof o)&&(i=void 0),{route:r,params:i}}return{}}setDefaultHandler(t,e="GET"){this.i.set(e,n(t))}setCatchHandler(t){this.o=n(t)}registerRoute(t){this.t.has(t.method)||this.t.set(t.method,[]),this.t.get(t.method).push(t)}unregisterRoute(t){if(!this.t.has(t.method))throw new s("unregister-route-but-not-found-with-method",{method:t.method});const e=this.t.get(t.method).indexOf(t);if(!(e>-1))throw new s("unregister-route-route-not-registered");this.t.get(t.method).splice(e,1)}}let c;const a=()=>(c||(c=new o,c.addFetchListener(),c.addCacheListener()),c);function h(t,e,n){let o;if("string"==typeof t){const s=new URL(t,location.href);o=new i((({url:t})=>t.href===s.href),e,n)}else if(t instanceof RegExp)o=new r(t,e,n);else if("function"==typeof t)o=new i(t,e,n);else{if(!(t instanceof i))throw new s("unsupported-route-type",{moduleName:"workbox-routing",funcName:"registerRoute",paramName:"capture"});o=t}return a().registerRoute(o),o}const u={googleAnalytics:"googleAnalytics",precache:"precache-v2",prefix:"workbox",runtime:"runtime",suffix:"undefined"!=typeof registration?registration.scope:""},l=t=>[u.prefix,t,u.suffix].filter((t=>t&&t.length>0)).join("-"),f=t=>t||l(u.precache),w=t=>t||l(u.runtime);function d(t,e){const s=e();return t.waitUntil(s),s}try{self["workbox:precaching:7.0.0"]&&_()}catch(t){}function p(t){if(!t)throw new s("add-to-cache-list-unexpected-type",{entry:t});if("string"==typeof t){const e=new URL(t,location.href);return{cacheKey:e.href,url:e.href}}const{revision:e,url:n}=t;if(!n)throw new s("add-to-cache-list-unexpected-type",{entry:t});if(!e){const t=new URL(n,location.href);return{cacheKey:t.href,url:t.href}}const i=new URL(n,location.href),r=new URL(n,location.href);return i.searchParams.set("__WB_REVISION__",e),{cacheKey:i.href,url:r.href}}class y{constructor(){this.updatedURLs=[],this.notUpdatedURLs=[],this.handlerWillStart=async({request:t,state:e})=>{e&&(e.originalRequest=t)},this.cachedResponseWillBeUsed=async({event:t,state:e,cachedResponse:s})=>{if("install"===t.type&&e&&e.originalRequest&&e.originalRequest instanceof Request){const t=e.originalRequest.url;s?this.notUpdatedURLs.push(t):this.updatedURLs.push(t)}return s}}}class g{constructor({precacheController:t}){this.cacheKeyWillBeUsed=async({request:t,params:e})=>{const s=(null==e?void 0:e.cacheKey)||this.h.getCacheKeyForURL(t.url);return s?new Request(s,{headers:t.headers}):t},this.h=t}}let R;async function m(t,e){let n=null;if(t.url){n=new URL(t.url).origin}if(n!==self.location.origin)throw new s("cross-origin-copy-response",{origin:n});const i=t.clone(),r={headers:new Headers(i.headers),status:i.status,statusText:i.statusText},o=e?e(r):r,c=function(){if(void 0===R){const t=new Response("");if("body"in t)try{new Response(t.body),R=!0}catch(t){R=!1}R=!1}return R}()?i.body:await i.blob();return new Response(c,o)}function v(t,e){const s=new URL(t);for(const t of e)s.searchParams.delete(t);return s.href}class q{constructor(){this.promise=new Promise(((t,e)=>{this.resolve=t,this.reject=e}))}}const U=new Set;try{self["workbox:strategies:7.0.0"]&&_()}catch(t){}function L(t){return"string"==typeof t?new Request(t):t}class b{constructor(t,e){this.u={},Object.assign(this,e),this.event=e.event,this.l=t,this.p=new q,this.g=[],this.R=[...t.plugins],this.m=new Map;for(const t of this.R)this.m.set(t,{});this.event.waitUntil(this.p.promise)}async fetch(t){const{event:e}=this;let n=L(t);if("navigate"===n.mode&&e instanceof FetchEvent&&e.preloadResponse){const t=await e.preloadResponse;if(t)return t}const i=this.hasCallback("fetchDidFail")?n.clone():null;try{for(const t of this.iterateCallbacks("requestWillFetch"))n=await t({request:n.clone(),event:e})}catch(t){if(t instanceof Error)throw new s("plugin-error-request-will-fetch",{thrownErrorMessage:t.message})}const r=n.clone();try{let t;t=await fetch(n,"navigate"===n.mode?void 0:this.l.fetchOptions);for(const s of this.iterateCallbacks("fetchDidSucceed"))t=await s({event:e,request:r,response:t});return t}catch(t){throw i&&await this.runCallbacks("fetchDidFail",{error:t,event:e,originalRequest:i.clone(),request:r.clone()}),t}}async fetchAndCachePut(t){const e=await this.fetch(t),s=e.clone();return this.waitUntil(this.cachePut(t,s)),e}async cacheMatch(t){const e=L(t);let s;const{cacheName:n,matchOptions:i}=this.l,r=await this.getCacheKey(e,"read"),o=Object.assign(Object.assign({},i),{cacheName:n});s=await caches.match(r,o);for(const t of this.iterateCallbacks("cachedResponseWillBeUsed"))s=await t({cacheName:n,matchOptions:i,cachedResponse:s,request:r,event:this.event})||void 0;return s}async cachePut(t,e){const n=L(t);var i;await(i=0,new Promise((t=>setTimeout(t,i))));const r=await this.getCacheKey(n,"write");if(!e)throw new s("cache-put-with-no-response",{url:(o=r.url,new URL(String(o),location.href).href.replace(new RegExp(`^${location.origin}`),""))});var o;const c=await this.v(e);if(!c)return!1;const{cacheName:a,matchOptions:h}=this.l,u=await self.caches.open(a),l=this.hasCallback("cacheDidUpdate"),f=l?await async function(t,e,s,n){const i=v(e.url,s);if(e.url===i)return t.match(e,n);const r=Object.assign(Object.assign({},n),{ignoreSearch:!0}),o=await t.keys(e,r);for(const e of o)if(i===v(e.url,s))return t.match(e,n)}(u,r.clone(),["__WB_REVISION__"],h):null;try{await u.put(r,l?c.clone():c)}catch(t){if(t instanceof Error)throw"QuotaExceededError"===t.name&&await async function(){for(const t of U)await t()}(),t}for(const t of this.iterateCallbacks("cacheDidUpdate"))await t({cacheName:a,oldResponse:f,newResponse:c.clone(),request:r,event:this.event});return!0}async getCacheKey(t,e){const s=`${t.url} | ${e}`;if(!this.u[s]){let n=t;for(const t of this.iterateCallbacks("cacheKeyWillBeUsed"))n=L(await t({mode:e,request:n,event:this.event,params:this.params}));this.u[s]=n}return this.u[s]}hasCallback(t){for(const e of this.l.plugins)if(t in e)return!0;return!1}async runCallbacks(t,e){for(const s of this.iterateCallbacks(t))await s(e)}*iterateCallbacks(t){for(const e of this.l.plugins)if("function"==typeof e[t]){const s=this.m.get(e),n=n=>{const i=Object.assign(Object.assign({},n),{state:s});return e[t](i)};yield n}}waitUntil(t){return this.g.push(t),t}async doneWaiting(){let t;for(;t=this.g.shift();)await t}destroy(){this.p.resolve(null)}async v(t){let e=t,s=!1;for(const t of this.iterateCallbacks("cacheWillUpdate"))if(e=await t({request:this.request,response:e,event:this.event})||void 0,s=!0,!e)break;return s||e&&200!==e.status&&(e=void 0),e}}class C{constructor(t={}){this.cacheName=w(t.cacheName),this.plugins=t.plugins||[],this.fetchOptions=t.fetchOptions,this.matchOptions=t.matchOptions}handle(t){const[e]=this.handleAll(t);return e}handleAll(t){t instanceof FetchEvent&&(t={event:t,request:t.request});const e=t.event,s="string"==typeof t.request?new Request(t.request):t.request,n="params"in t?t.params:void 0,i=new b(this,{event:e,request:s,params:n}),r=this.q(i,s,e);return[r,this.U(r,i,s,e)]}async q(t,e,n){let i;await t.runCallbacks("handlerWillStart",{event:n,request:e});try{if(i=await this.L(e,t),!i||"error"===i.type)throw new s("no-response",{url:e.url})}catch(s){if(s instanceof Error)for(const r of t.iterateCallbacks("handlerDidError"))if(i=await r({error:s,event:n,request:e}),i)break;if(!i)throw s}for(const s of t.iterateCallbacks("handlerWillRespond"))i=await s({event:n,request:e,response:i});return i}async U(t,e,s,n){let i,r;try{i=await t}catch(r){}try{await e.runCallbacks("handlerDidRespond",{event:n,request:s,response:i}),await e.doneWaiting()}catch(t){t instanceof Error&&(r=t)}if(await e.runCallbacks("handlerDidComplete",{event:n,request:s,response:i,error:r}),e.destroy(),r)throw r}}class E extends C{constructor(t={}){t.cacheName=f(t.cacheName),super(t),this._=!1!==t.fallbackToNetwork,this.plugins.push(E.copyRedirectedCacheableResponsesPlugin)}async L(t,e){const s=await e.cacheMatch(t);return s||(e.event&&"install"===e.event.type?await this.C(t,e):await this.O(t,e))}async O(t,e){let n;const i=e.params||{};if(!this._)throw new s("missing-precache-entry",{cacheName:this.cacheName,url:t.url});{const s=i.integrity,r=t.integrity,o=!r||r===s;n=await e.fetch(new Request(t,{integrity:"no-cors"!==t.mode?r||s:void 0})),s&&o&&"no-cors"!==t.mode&&(this.N(),await e.cachePut(t,n.clone()))}return n}async C(t,e){this.N();const n=await e.fetch(t);if(!await e.cachePut(t,n.clone()))throw new s("bad-precaching-response",{url:t.url,status:n.status});return n}N(){let t=null,e=0;for(const[s,n]of this.plugins.entries())n!==E.copyRedirectedCacheableResponsesPlugin&&(n===E.defaultPrecacheCacheabilityPlugin&&(t=s),n.cacheWillUpdate&&e++);0===e?this.plugins.push(E.defaultPrecacheCacheabilityPlugin):e>1&&null!==t&&this.plugins.splice(t,1)}}E.defaultPrecacheCacheabilityPlugin={cacheWillUpdate:async({response:t})=>!t||t.status>=400?null:t},E.copyRedirectedCacheableResponsesPlugin={cacheWillUpdate:async({response:t})=>t.redirected?await m(t):t};class O{constructor({cacheName:t,plugins:e=[],fallbackToNetwork:s=!0}={}){this.k=new Map,this.K=new Map,this.P=new Map,this.l=new E({cacheName:f(t),plugins:[...e,new g({precacheController:this})],fallbackToNetwork:s}),this.install=this.install.bind(this),this.activate=this.activate.bind(this)}get strategy(){return this.l}precache(t){this.addToCacheList(t),this.T||(self.addEventListener("install",this.install),self.addEventListener("activate",this.activate),this.T=!0)}addToCacheList(t){const e=[];for(const n of t){"string"==typeof n?e.push(n):n&&void 0===n.revision&&e.push(n.url);const{cacheKey:t,url:i}=p(n),r="string"!=typeof n&&n.revision?"reload":"default";if(this.k.has(i)&&this.k.get(i)!==t)throw new s("add-to-cache-list-conflicting-entries",{firstEntry:this.k.get(i),secondEntry:t});if("string"!=typeof n&&n.integrity){if(this.P.has(t)&&this.P.get(t)!==n.integrity)throw new s("add-to-cache-list-conflicting-integrities",{url:i});this.P.set(t,n.integrity)}if(this.k.set(i,t),this.K.set(i,r),e.length>0){const t=`Workbox is precaching URLs without revision info: ${e.join(", ")}\nThis is generally NOT safe. Learn more at https://bit.ly/wb-precache`;console.warn(t)}}}install(t){return d(t,(async()=>{const e=new y;this.strategy.plugins.push(e);for(const[e,s]of this.k){const n=this.P.get(s),i=this.K.get(e),r=new Request(e,{integrity:n,cache:i,credentials:"same-origin"});await Promise.all(this.strategy.handleAll({params:{cacheKey:s},request:r,event:t}))}const{updatedURLs:s,notUpdatedURLs:n}=e;return{updatedURLs:s,notUpdatedURLs:n}}))}activate(t){return d(t,(async()=>{const t=await self.caches.open(this.strategy.cacheName),e=await t.keys(),s=new Set(this.k.values()),n=[];for(const i of e)s.has(i.url)||(await t.delete(i),n.push(i.url));return{deletedURLs:n}}))}getURLsToCacheKeys(){return this.k}getCachedURLs(){return[...this.k.keys()]}getCacheKeyForURL(t){const e=new URL(t,location.href);return this.k.get(e.href)}getIntegrityForCacheKey(t){return this.P.get(t)}async matchPrecache(t){const e=t instanceof Request?t.url:t,s=this.getCacheKeyForURL(e);if(s){return(await self.caches.open(this.strategy.cacheName)).match(s)}}createHandlerBoundToURL(t){const e=this.getCacheKeyForURL(t);if(!e)throw new s("non-precached-url",{url:t});return s=>(s.request=new Request(t),s.params=Object.assign({cacheKey:e},s.params),this.strategy.handle(s))}}let x;const N=()=>(x||(x=new O),x);class k extends i{constructor(t,e){super((({request:s})=>{const n=t.getURLsToCacheKeys();for(const i of function*(t,{ignoreURLParametersMatching:e=[/^utm_/,/^fbclid$/],directoryIndex:s="index.html",cleanURLs:n=!0,urlManipulation:i}={}){const r=new URL(t,location.href);r.hash="",yield r.href;const o=function(t,e=[]){for(const s of[...t.searchParams.keys()])e.some((t=>t.test(s)))&&t.searchParams.delete(s);return t}(r,e);if(yield o.href,s&&o.pathname.endsWith("/")){const t=new URL(o.href);t.pathname+=s,yield t.href}if(n){const t=new URL(o.href);t.pathname+=".html",yield t.href}if(i){const t=i({url:r});for(const e of t)yield e.href}}(s.url,e)){const e=n.get(i);if(e){return{cacheKey:e,integrity:t.getIntegrityForCacheKey(e)}}}}),t.strategy)}}t.NavigationRoute=class extends i{constructor(t,{allowlist:e=[/./],denylist:s=[]}={}){super((t=>this.W(t)),t),this.j=e,this.M=s}W({url:t,request:e}){if(e&&"navigate"!==e.mode)return!1;const s=t.pathname+t.search;for(const t of this.M)if(t.test(s))return!1;return!!this.j.some((t=>t.test(s)))}},t.cleanupOutdatedCaches=function(){self.addEventListener("activate",(t=>{const e=f();t.waitUntil((async(t,e="-precache-")=>{const s=(await self.caches.keys()).filter((s=>s.includes(e)&&s.includes(self.registration.scope)&&s!==t));return await Promise.all(s.map((t=>self.caches.delete(t)))),s})(e).then((t=>{})))}))},t.clientsClaim=function(){self.addEventListener("activate",(()=>self.clients.claim()))},t.createHandlerBoundToURL=function(t){return N().createHandlerBoundToURL(t)},t.precacheAndRoute=function(t,e){!function(t){N().precache(t)}(t),function(t){const e=N();h(new k(e,t))}(e)},t.registerRoute=h}));