umap-project 3.3.6__py3-none-any.whl → 3.4.0__py3-none-any.whl

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 (239) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +4 -1
  3. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
  5. umap/locale/da/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/da/LC_MESSAGES/django.po +43 -33
  7. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/de/LC_MESSAGES/django.po +35 -29
  9. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/el/LC_MESSAGES/django.po +35 -29
  11. umap/locale/en/LC_MESSAGES/django.po +47 -41
  12. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/es/LC_MESSAGES/django.po +43 -33
  14. umap/locale/et/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/et/LC_MESSAGES/django.po +58 -54
  16. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/eu/LC_MESSAGES/django.po +43 -33
  18. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
  20. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/fr/LC_MESSAGES/django.po +36 -30
  22. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/gl/LC_MESSAGES/django.po +43 -33
  24. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/hu/LC_MESSAGES/django.po +35 -29
  26. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  27. umap/locale/is/LC_MESSAGES/django.po +43 -33
  28. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  29. umap/locale/it/LC_MESSAGES/django.po +43 -33
  30. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  31. umap/locale/nl/LC_MESSAGES/django.po +35 -29
  32. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  33. umap/locale/pl/LC_MESSAGES/django.po +114 -103
  34. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  35. umap/locale/pt/LC_MESSAGES/django.po +43 -33
  36. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  37. umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
  38. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  39. umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
  40. umap/management/commands/switch_user.py +2 -2
  41. umap/migrations/0018_datalayer_uuid.py +1 -1
  42. umap/models.py +7 -3
  43. umap/settings/local.py.sample +1 -1
  44. umap/static/umap/base.css +89 -32
  45. umap/static/umap/content.css +129 -33
  46. umap/static/umap/css/bar.css +82 -20
  47. umap/static/umap/css/browser.css +163 -0
  48. umap/static/umap/css/contextmenu.css +15 -0
  49. umap/static/umap/css/dialog.css +36 -16
  50. umap/static/umap/css/form.css +123 -33
  51. umap/static/umap/css/icon.css +46 -3
  52. umap/static/umap/css/panel.css +7 -3
  53. umap/static/umap/css/popup.css +34 -8
  54. umap/static/umap/css/tooltip.css +8 -4
  55. umap/static/umap/img/16-white.svg +26 -8
  56. umap/static/umap/img/16.svg +1 -1
  57. umap/static/umap/img/source/16-white.svg +36 -18
  58. umap/static/umap/img/source/16.svg +1 -1
  59. umap/static/umap/js/components/alerts/alert.css +69 -31
  60. umap/static/umap/js/components/alerts/alert.js +20 -2
  61. umap/static/umap/js/components/base.js +1 -1
  62. umap/static/umap/js/modules/browser.js +69 -61
  63. umap/static/umap/js/modules/caption.js +10 -7
  64. umap/static/umap/js/modules/data/features.js +85 -60
  65. umap/static/umap/js/modules/data/fields.js +446 -0
  66. umap/static/umap/js/modules/data/layer.js +78 -184
  67. umap/static/umap/js/modules/domutils.js +109 -0
  68. umap/static/umap/js/modules/filters.js +780 -0
  69. umap/static/umap/js/modules/form/builder.js +8 -5
  70. umap/static/umap/js/modules/form/fields.js +111 -221
  71. umap/static/umap/js/modules/formatter.js +24 -1
  72. umap/static/umap/js/modules/help.js +4 -3
  73. umap/static/umap/js/modules/i18n.js +1 -1
  74. umap/static/umap/js/modules/importer.js +1 -1
  75. umap/static/umap/js/modules/importers/opendata.js +15 -0
  76. umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
  77. umap/static/umap/js/modules/managers.js +2 -2
  78. umap/static/umap/js/modules/permissions.js +39 -31
  79. umap/static/umap/js/modules/rendering/controls.js +11 -9
  80. umap/static/umap/js/modules/rendering/icon.js +3 -8
  81. umap/static/umap/js/modules/rendering/layers/base.js +1 -1
  82. umap/static/umap/js/modules/rendering/layers/classified.js +18 -11
  83. umap/static/umap/js/modules/rendering/layers/cluster.js +5 -3
  84. umap/static/umap/js/modules/rendering/layers/heat.js +27 -21
  85. umap/static/umap/js/modules/rendering/template.js +50 -23
  86. umap/static/umap/js/modules/rendering/ui.js +29 -23
  87. umap/static/umap/js/modules/rules.js +38 -44
  88. umap/static/umap/js/modules/schema.js +3 -6
  89. umap/static/umap/js/modules/share.js +5 -4
  90. umap/static/umap/js/modules/tableeditor.js +50 -38
  91. umap/static/umap/js/modules/templates.js +2 -3
  92. umap/static/umap/js/modules/ui/bar.js +55 -23
  93. umap/static/umap/js/modules/ui/dialog.js +38 -27
  94. umap/static/umap/js/modules/ui/panel.js +23 -8
  95. umap/static/umap/js/modules/ui/tooltip.js +6 -5
  96. umap/static/umap/js/modules/umap.js +151 -56
  97. umap/static/umap/js/modules/utils.js +24 -2
  98. umap/static/umap/js/umap.core.js +1 -110
  99. umap/static/umap/locale/am_ET.js +52 -17
  100. umap/static/umap/locale/am_ET.json +52 -17
  101. umap/static/umap/locale/ar.js +52 -17
  102. umap/static/umap/locale/ar.json +52 -17
  103. umap/static/umap/locale/ast.js +52 -17
  104. umap/static/umap/locale/ast.json +52 -17
  105. umap/static/umap/locale/bg.js +52 -17
  106. umap/static/umap/locale/bg.json +52 -17
  107. umap/static/umap/locale/br.js +48 -22
  108. umap/static/umap/locale/br.json +48 -22
  109. umap/static/umap/locale/ca.js +52 -17
  110. umap/static/umap/locale/ca.json +52 -17
  111. umap/static/umap/locale/cs_CZ.js +52 -17
  112. umap/static/umap/locale/cs_CZ.json +52 -17
  113. umap/static/umap/locale/da.js +54 -17
  114. umap/static/umap/locale/da.json +54 -17
  115. umap/static/umap/locale/de.js +51 -16
  116. umap/static/umap/locale/de.json +51 -16
  117. umap/static/umap/locale/el.js +52 -17
  118. umap/static/umap/locale/el.json +52 -17
  119. umap/static/umap/locale/en.js +53 -16
  120. umap/static/umap/locale/en.json +53 -16
  121. umap/static/umap/locale/en_US.json +52 -17
  122. umap/static/umap/locale/es.js +54 -17
  123. umap/static/umap/locale/es.json +54 -17
  124. umap/static/umap/locale/et.js +91 -56
  125. umap/static/umap/locale/et.json +91 -56
  126. umap/static/umap/locale/eu.js +84 -49
  127. umap/static/umap/locale/eu.json +84 -49
  128. umap/static/umap/locale/fa_IR.js +52 -17
  129. umap/static/umap/locale/fa_IR.json +52 -17
  130. umap/static/umap/locale/fi.js +52 -17
  131. umap/static/umap/locale/fi.json +52 -17
  132. umap/static/umap/locale/fr.js +53 -16
  133. umap/static/umap/locale/fr.json +53 -16
  134. umap/static/umap/locale/gl.js +52 -17
  135. umap/static/umap/locale/gl.json +52 -17
  136. umap/static/umap/locale/he.js +52 -17
  137. umap/static/umap/locale/he.json +52 -17
  138. umap/static/umap/locale/hr.js +52 -17
  139. umap/static/umap/locale/hr.json +52 -17
  140. umap/static/umap/locale/hu.js +59 -24
  141. umap/static/umap/locale/hu.json +59 -24
  142. umap/static/umap/locale/id.js +52 -17
  143. umap/static/umap/locale/id.json +52 -17
  144. umap/static/umap/locale/is.js +52 -17
  145. umap/static/umap/locale/is.json +52 -17
  146. umap/static/umap/locale/it.js +52 -17
  147. umap/static/umap/locale/it.json +52 -17
  148. umap/static/umap/locale/ja.js +52 -17
  149. umap/static/umap/locale/ja.json +52 -17
  150. umap/static/umap/locale/ko.js +52 -17
  151. umap/static/umap/locale/ko.json +52 -17
  152. umap/static/umap/locale/lt.js +52 -17
  153. umap/static/umap/locale/lt.json +52 -17
  154. umap/static/umap/locale/ms.js +52 -17
  155. umap/static/umap/locale/ms.json +52 -17
  156. umap/static/umap/locale/nl.js +52 -17
  157. umap/static/umap/locale/nl.json +52 -17
  158. umap/static/umap/locale/no.js +52 -17
  159. umap/static/umap/locale/no.json +52 -17
  160. umap/static/umap/locale/pl.js +53 -17
  161. umap/static/umap/locale/pl.json +53 -17
  162. umap/static/umap/locale/pl_PL.json +52 -17
  163. umap/static/umap/locale/pt.js +52 -17
  164. umap/static/umap/locale/pt.json +52 -17
  165. umap/static/umap/locale/pt_BR.js +52 -17
  166. umap/static/umap/locale/pt_BR.json +52 -17
  167. umap/static/umap/locale/pt_PT.js +52 -17
  168. umap/static/umap/locale/pt_PT.json +52 -17
  169. umap/static/umap/locale/ro.js +52 -17
  170. umap/static/umap/locale/ro.json +52 -17
  171. umap/static/umap/locale/ru.js +52 -17
  172. umap/static/umap/locale/ru.json +52 -17
  173. umap/static/umap/locale/si.js +1 -1
  174. umap/static/umap/locale/si.json +1 -1
  175. umap/static/umap/locale/sk_SK.js +52 -17
  176. umap/static/umap/locale/sk_SK.json +52 -17
  177. umap/static/umap/locale/sl.js +52 -17
  178. umap/static/umap/locale/sl.json +52 -17
  179. umap/static/umap/locale/sr.js +52 -17
  180. umap/static/umap/locale/sr.json +52 -17
  181. umap/static/umap/locale/sv.js +52 -17
  182. umap/static/umap/locale/sv.json +52 -17
  183. umap/static/umap/locale/th_TH.js +52 -17
  184. umap/static/umap/locale/th_TH.json +52 -17
  185. umap/static/umap/locale/tr.js +52 -17
  186. umap/static/umap/locale/tr.json +52 -17
  187. umap/static/umap/locale/uk_UA.js +52 -17
  188. umap/static/umap/locale/uk_UA.json +52 -17
  189. umap/static/umap/locale/vi.js +52 -17
  190. umap/static/umap/locale/vi.json +52 -17
  191. umap/static/umap/locale/vi_VN.json +52 -17
  192. umap/static/umap/locale/zh.js +52 -17
  193. umap/static/umap/locale/zh.json +52 -17
  194. umap/static/umap/locale/zh_CN.json +52 -17
  195. umap/static/umap/locale/zh_TW.Big5.json +52 -17
  196. umap/static/umap/locale/zh_TW.js +52 -16
  197. umap/static/umap/locale/zh_TW.json +52 -16
  198. umap/static/umap/map.css +63 -226
  199. umap/static/umap/unittests/utils.js +18 -0
  200. umap/static/umap/vars.css +23 -5
  201. umap/templates/umap/components/alerts/alert.html +32 -29
  202. umap/templates/umap/css.html +2 -1
  203. umap/templates/umap/login_popup_end.html +18 -9
  204. umap/templates/umap/user_map_table.html +7 -2
  205. umap/tests/integration/conftest.py +10 -6
  206. umap/tests/integration/test_anonymous_owned_map.py +90 -37
  207. umap/tests/integration/test_basics.py +25 -1
  208. umap/tests/integration/test_browser.py +37 -0
  209. umap/tests/integration/test_conditional_rules.py +107 -52
  210. umap/tests/integration/test_draw_polygon.py +6 -0
  211. umap/tests/integration/test_draw_polyline.py +11 -0
  212. umap/tests/integration/test_edit_marker.py +1 -1
  213. umap/tests/integration/test_export_map.py +19 -0
  214. umap/tests/integration/test_fields.py +541 -0
  215. umap/tests/integration/test_filters.py +616 -0
  216. umap/tests/integration/test_iframe.py +1 -1
  217. umap/tests/integration/test_import.py +38 -42
  218. umap/tests/integration/test_map_preview.py +1 -1
  219. umap/tests/integration/test_picto.py +1 -1
  220. umap/tests/integration/test_popup.py +31 -0
  221. umap/tests/integration/test_remote_data.py +60 -4
  222. umap/tests/integration/test_save.py +1 -1
  223. umap/tests/integration/test_share.py +4 -4
  224. umap/tests/integration/test_tableeditor.py +31 -7
  225. umap/tests/integration/test_websocket_sync.py +71 -20
  226. umap/tests/test_dashboard.py +11 -1
  227. umap/tests/test_statics.py +2 -2
  228. umap/tests/test_utils.py +19 -2
  229. umap/tests/test_views.py +1 -1
  230. umap/urls.py +1 -0
  231. umap/utils.py +8 -1
  232. umap/views.py +5 -0
  233. {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/METADATA +15 -15
  234. {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/RECORD +237 -233
  235. umap/static/umap/js/modules/facets.js +0 -164
  236. umap/tests/integration/test_facets_browser.py +0 -279
  237. {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/WHEEL +0 -0
  238. {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/entry_points.txt +0 -0
  239. {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,18 +1,18 @@
1
- umap/__init__.py,sha256=dXcxAQVoifk8mnJp_WE7_cuoi0cl0OiyMlYF2X9SLWI,18
1
+ umap/__init__.py,sha256=khmbxbSXtOr6w4Q7KaaU-Qmove9qu95Y6VPgNPeIc6w,18
2
2
  umap/admin.py,sha256=YlK4CgEWb2eFYRKiklsKouxeiQ8z_b-H2Fv2XCaiGFQ,3014
3
3
  umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
4
4
  umap/asgi.py,sha256=sJkGqDLgMoPkq2nMRyRE_Hz3ZLJm1X5lgXiQJu6rYt0,660
5
5
  umap/autocomplete.py,sha256=wHxlOTHQozSQcUAYVfBIGMsgVCKT1ox9bZ0uqUk63YY,803
6
- umap/context_processors.py,sha256=QIulvu2vevmyBk4CKPPSJK457FJmdoD3JdrvMnHnMHY,705
6
+ umap/context_processors.py,sha256=gqyrizFe0O6aspMJxARlBj98rICieYKA9KufP9JIFgw,815
7
7
  umap/decorators.py,sha256=EEICH54p9swHIs_tuqt4FL-l749vk6P8AevlWFKn5zk,2477
8
8
  umap/fields.py,sha256=c32tKWKF8aThrCXDJblwo0n9n2ET6hxBYzEupfr0B4o,900
9
9
  umap/forms.py,sha256=i_SQ6OykKc6XFZJ5tg3rrA6r5SryOvj1WiKbIcWtD4A,3771
10
10
  umap/managers.py,sha256=A5Ih92f9E3egPVCToQHYJ4wQMFSqTS6dtqzx56Fs2JU,1051
11
11
  umap/middleware.py,sha256=GsIFl0St_Rk5zjpE8dpGBlD0JL2AyMrNHu8SHylqwEg,1564
12
- umap/models.py,sha256=xANPE5gw3jjLartllGrc3GtEZ4en1NsG1WLS05blmRc,19914
13
- umap/urls.py,sha256=DQ932n0lyS-7eD8ubIaZtW2xjssSVuI7P0DWkClVFx4,7837
14
- umap/utils.py,sha256=rSzK0GjsAZtPCeJ9Wkk4J3xhIrduOU3wQjxzpPWCA5s,7720
15
- umap/views.py,sha256=MnkYfclmKv2c_ywh9AnwAZHNqxzYGn-JTIx2pnkqOMo,50677
12
+ umap/models.py,sha256=ZLWTEJqtquRCO52ErdwD0BKy70bgoQwgPh1kzWJbvGI,20017
13
+ umap/urls.py,sha256=evKfLGEIoc8TPfCalLeHxeQ-zD0HvUJo0Rln8n3kBps,7896
14
+ umap/utils.py,sha256=FcKnBg3XjRtupmGzWUFEEyxLlyLp39ezIwBeD85Yp-g,7942
15
+ umap/views.py,sha256=vqef2yvth3Zea_074vyIBlf5hHoFrHlfbGKxdTBLAhI,50821
16
16
  umap/wsgi.py,sha256=IopIgnDZbCus3XpSetTHnra9VyzWi0Y2tJo-CmfTWCY,1132
17
17
  umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
18
18
  umap/locale/am_ET/LC_MESSAGES/django.mo,sha256=ZF_hEGHnrIX6XZBVqmWR4xbE5D8Y6s1GS5sYOxnFQBY,5377
@@ -27,42 +27,42 @@ umap/locale/br/LC_MESSAGES/django.mo,sha256=QxrhLe2zCvq0T-lIgS4Nf-J-n1qYvFhMel-L
27
27
  umap/locale/br/LC_MESSAGES/django.po,sha256=aNkz0lFGm_y3KEnkMmN5iMHHbPAYaUrE5EZSF0SSTeQ,22596
28
28
  umap/locale/ca/LC_MESSAGES/django.mo,sha256=ot6jkZZt33z5vi1vjioiYkIhj06M8yUsoh72y8F1KAw,8465
29
29
  umap/locale/ca/LC_MESSAGES/django.po,sha256=1N47JBRQkUM--J0mplfECL-VyOcV3ZwU69eusIoK_BE,20736
30
- umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=3rvUUEYFDqA4pNXEqv9E1qkmiXmlrT3AccA7TyR7ung,13469
31
- umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=IFiiN_krWV-hNxb_cymO-InjLijST0-RcqHDGk8MUfc,23025
32
- umap/locale/da/LC_MESSAGES/django.mo,sha256=ZjvoMeBervGEeln7yBqNSx1yb98ovwtag9Ox7hPmg1w,15358
33
- umap/locale/da/LC_MESSAGES/django.po,sha256=l3k3LwGQrESZc8XWHa2If5EoTuLzy1MvedZoAKusu0M,23101
34
- umap/locale/de/LC_MESSAGES/django.mo,sha256=iVCWLUbKxfhLgj2MThO81-rZoieHC-Gog7P-BfY_y4g,16081
35
- umap/locale/de/LC_MESSAGES/django.po,sha256=bT6rkkt76f5xMuqi2TBIgoZK9cLTYqX684ra1swc6VE,24012
36
- umap/locale/el/LC_MESSAGES/django.mo,sha256=kH6JnkfGmno6c9GVSI6ysnge98UGbN7XyT2IkaXK9c4,21521
37
- umap/locale/el/LC_MESSAGES/django.po,sha256=kqZoM2vVNiwROF_VtB3Rvokb_G6xG1hplEPrDcISCLo,29353
30
+ umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=UNPbfSq0pXOKeTk4CGwLgcHW0jZpCjQvmTHbdar7ubI,13107
31
+ umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=3YPEHWudGNQ4n-TOe3vlI1xMc1vaYg77saspMi9BEz0,23158
32
+ umap/locale/da/LC_MESSAGES/django.mo,sha256=tMznmFndG1mLRngerc3XFJB2KEnn7qeLtrqeMWnDcqI,15780
33
+ umap/locale/da/LC_MESSAGES/django.po,sha256=CXqswm73ffv8JresO-e7fhzYVsWpq9LTxDyt0KF_Ad0,23630
34
+ umap/locale/de/LC_MESSAGES/django.mo,sha256=H94cTq-eTmAH2F8_ffCIU8AWf_u5yg_ZwIBqSr0WVZ4,15731
35
+ umap/locale/de/LC_MESSAGES/django.po,sha256=WIAMMZahTjxhHx7n_Wbu5Ffh8FbiOicUSSV-fTq7lQc,24113
36
+ umap/locale/el/LC_MESSAGES/django.mo,sha256=A6Zkv5CJ0XNowPpRLlq6l9Wp1YwntCltDx6Tcso-JyM,21095
37
+ umap/locale/el/LC_MESSAGES/django.po,sha256=dfuGMPgd0kJoP1jsD4lC2W6uekRrE6SHUwSPNBqDlpE,29378
38
38
  umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
39
- umap/locale/en/LC_MESSAGES/django.po,sha256=t12FJjuUV4NE3A_cBMQ4EinWOrupcJPagzUCmiwR2BA,17472
40
- umap/locale/es/LC_MESSAGES/django.mo,sha256=_PIEAre9Tz44L6626UUgZw7nHWpXoK8d8_YWNAvJk20,15906
41
- umap/locale/es/LC_MESSAGES/django.po,sha256=imix3c0Xycky3RRMHFG8naysWnz1iPaLuo7ovTXZj3Y,23964
42
- umap/locale/et/LC_MESSAGES/django.mo,sha256=PzS7qLpjfx2vYCxJfg65P9I1TFGqXyr1kIhy-vlyqYo,8618
43
- umap/locale/et/LC_MESSAGES/django.po,sha256=E2Y_tbZp6Ndk7UiwyzQXJ8T4mnirAh9oLUcFe31j0nE,20268
44
- umap/locale/eu/LC_MESSAGES/django.mo,sha256=lH6Vz5F2QCqlIINeExSGh6_0HqnUTkJ2ZpMnBu5dVoQ,15813
45
- umap/locale/eu/LC_MESSAGES/django.po,sha256=QYvH3Cp4pQlHH7dwB1nLnqXkQqM3JEiTc-45Htl7tJU,23488
46
- umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=SCywKcC6yEdedTcWGPwRBfgQlszKeX3MQ9KYPGvMiQY,13666
47
- umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=uMHb2uJXhZrpzTXG_RdCQltkFvaQzYpkNrPfB0Aaj24,24337
39
+ umap/locale/en/LC_MESSAGES/django.po,sha256=DXpYtpo3fo3xcb1c5oce2OE_SeGsd0Nny3FDFsF7PwA,17757
40
+ umap/locale/es/LC_MESSAGES/django.mo,sha256=xQtrnx5Fd1R6vQbgsWayba1spgp7d9TSxZo80UKpjFI,15594
41
+ umap/locale/es/LC_MESSAGES/django.po,sha256=-YNwM8T8GMgXt6hrqm4zIlnX-rCKkMLmg2geq2CVat8,24122
42
+ umap/locale/et/LC_MESSAGES/django.mo,sha256=QtkHvxK_vk6NsiWn319ujwQGVsLLm9JXVKv14ecwRfM,10439
43
+ umap/locale/et/LC_MESSAGES/django.po,sha256=mCPTNEs53RUw5kOiGhwDNUL65l0c6zEAHJldxASoG8E,20794
44
+ umap/locale/eu/LC_MESSAGES/django.mo,sha256=1FJ63mmOwLpZgKGhiz0NbONsq-51esJpznN6_I0XWHg,15517
45
+ umap/locale/eu/LC_MESSAGES/django.po,sha256=fzyIOaSXuq8Sn4Ctr3XC8e3siEpBG1EuF_enYUk--1M,23662
46
+ umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=IP9thpIyVdNiujuQk0o1w1775KpfZtCdnwAqwrQtH7Q,13229
47
+ umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=eO_q1yuRV0nMeLVIa7LKP54mtNf49THRFwK5rzHxkuQ,24403
48
48
  umap/locale/fi/LC_MESSAGES/django.mo,sha256=O9foYGhfFTBjBb4Y9abWjOiZNpWtO-315nyHUaiJETM,4779
49
49
  umap/locale/fi/LC_MESSAGES/django.po,sha256=5kG9XujFNllOh_wuakGmAHeMy9vqNWFLf9SSrMTaWlk,15709
50
- umap/locale/fr/LC_MESSAGES/django.mo,sha256=iuHQV5wXHOoB7E2BP5n5JKb6iaY0Nvl2Pu7-feDyqI0,16095
51
- umap/locale/fr/LC_MESSAGES/django.po,sha256=n5IvS9bf_zrOhMTkLQOKZBIJLYFRFdwXi0RQ6F55umE,24203
52
- umap/locale/gl/LC_MESSAGES/django.mo,sha256=4e03SOje-h-l0HribWZ9-yC7bJmMk6VbK1FfLXOvxTA,13804
53
- umap/locale/gl/LC_MESSAGES/django.po,sha256=cbHRfZU2a79mxUW2mWI_p-9NAYyjhV5j1nT7oFKdPF8,22904
50
+ umap/locale/fr/LC_MESSAGES/django.mo,sha256=8X-wcWvaTuGp1ri5OdN3GJ_JpYZrGnUZqbNJy63vVTA,16505
51
+ umap/locale/fr/LC_MESSAGES/django.po,sha256=OK23yY3gu5EgLBJtk_F1uZTNww9d6_yWPmCnQjFlSbc,24701
52
+ umap/locale/gl/LC_MESSAGES/django.mo,sha256=wyv5gRoIwzjpjtkWRLbSVU2GZ1RwY289jnDUxDdMktw,13464
53
+ umap/locale/gl/LC_MESSAGES/django.po,sha256=ixsETHl2camE839lzl-mb8J9FNodMdJyMuF-AjS6GJk,23059
54
54
  umap/locale/he/LC_MESSAGES/django.mo,sha256=A6pkjaL4HQ7lyfvXcGIxle61RXdo7Byq3mfK2FIrSnc,6640
55
55
  umap/locale/he/LC_MESSAGES/django.po,sha256=LpR1smtpQWi6w_YNiZjEx0hrHc7uVYQnQEPK_1vcY5g,16975
56
56
  umap/locale/hr/LC_MESSAGES/django.mo,sha256=bBcaNSs-oqm_cjm6Bbqaph_ZNHF2_I_FP0xccwU9txI,1558
57
57
  umap/locale/hr/LC_MESSAGES/django.po,sha256=Aj3m28Ugyjq-Ih32P7dzw0M4czitDqoYpCvyNsNnEnE,9742
58
- umap/locale/hu/LC_MESSAGES/django.mo,sha256=sj9YoaW0I1cC7D4I-5Q6yea8YSzNvlAl8GNqW0uV6JY,16732
59
- umap/locale/hu/LC_MESSAGES/django.po,sha256=oxQludPyK2K7Ta8rIRy4M6ZLWq6Wi4hUfrTBOhnt33I,24370
58
+ umap/locale/hu/LC_MESSAGES/django.mo,sha256=3tjoIGwTfhrS3Zc1Dj2_OfLAE0FGXujl35EjkJ8BvAE,16349
59
+ umap/locale/hu/LC_MESSAGES/django.po,sha256=u7uw_lYD_98SeYKQe971clNhPD5h-J9DAJ3V-ALBvz4,24438
60
60
  umap/locale/id/LC_MESSAGES/django.mo,sha256=8craaGVnVbONfojnkDUUtoxMyeI2tt6GdIWeWZGcaJ8,425
61
61
  umap/locale/id/LC_MESSAGES/django.po,sha256=wmbgIN1R7vRDgAdzBu7ZHnTpg5fpB3hmJyjAzRNoN-M,8000
62
- umap/locale/is/LC_MESSAGES/django.mo,sha256=w3ImgT1j7n4Vw07yFik-xOWfAtiqN6ErgV9K1z4rK8A,14347
63
- umap/locale/is/LC_MESSAGES/django.po,sha256=XUhPr-t27IKF6R7eEPeOgi_lCmxCvTrpV6hwsQa3uW0,23300
64
- umap/locale/it/LC_MESSAGES/django.mo,sha256=vYS85OYewCrynVWEuEGQl_xX8VSvLeTVBK3FE02gXME,14854
65
- umap/locale/it/LC_MESSAGES/django.po,sha256=iZhclsxsR2wpNS068wAnUZMf2BSL5e1lHHnghQCatFY,23703
62
+ umap/locale/is/LC_MESSAGES/django.mo,sha256=Bxt2xTFRNTe8j0CrKhYX8yY-2s4BJXeuKlyMtXR7fyk,13970
63
+ umap/locale/is/LC_MESSAGES/django.po,sha256=dIwnVr7FHTlHgMhkT8SXcFdcEiWAlh2GgSaSrhQN6q4,23418
64
+ umap/locale/it/LC_MESSAGES/django.mo,sha256=0b0QP-YwYSkuhLn42qbN1jCN1lccyLAgR3a4ue6FWyk,14509
65
+ umap/locale/it/LC_MESSAGES/django.po,sha256=9cAuUn7Hm6EgouYXdqZvXWxqMqc-db-dJCku5Mk03fE,23853
66
66
  umap/locale/ja/LC_MESSAGES/django.mo,sha256=zsTOx7DEn9r67Az293pOmtM3Hd8nFK53-TNZH1W6498,6369
67
67
  umap/locale/ja/LC_MESSAGES/django.po,sha256=IF4sZYIDt8Nxdgt6Lbz0kDAty87N3ULdTDDYVhz1O6s,16735
68
68
  umap/locale/ko/LC_MESSAGES/django.mo,sha256=xqzC6LAMv6pK2xiIlGoHyb18OQBACMBeevJfFFjK8iA,6365
@@ -71,14 +71,14 @@ umap/locale/lt/LC_MESSAGES/django.mo,sha256=A4RbTyKvur2NUY0aKXCDmSIQV0G0GeOhQ1vw
71
71
  umap/locale/lt/LC_MESSAGES/django.po,sha256=GK_nTnzSiMY4g2pf5uzh5Nzl57OTB4O9Y29ikZVp274,16324
72
72
  umap/locale/ms/LC_MESSAGES/django.mo,sha256=4yHaFWXR-O6VjUtUnmcoyfV8OdJlUgi3YxN3mR97A30,9619
73
73
  umap/locale/ms/LC_MESSAGES/django.po,sha256=3tEND2vbt3ZiW3jjX-ao6CkY2UOiQXuYOGfp3mgdLnE,21205
74
- umap/locale/nl/LC_MESSAGES/django.mo,sha256=WmlAsYAfKSITRbstPW78ZyVSxClohlmI_5Y2E7ZZm3w,15633
75
- umap/locale/nl/LC_MESSAGES/django.po,sha256=dCLEWz4td5coYJFsEfSQafCrJ8QhQTjuYp0jz9UwtBk,23405
74
+ umap/locale/nl/LC_MESSAGES/django.mo,sha256=86G2RNADnRZLosCRmzJk7OuQ-vw3gN1H9Fby0vWn4Y4,15288
75
+ umap/locale/nl/LC_MESSAGES/django.po,sha256=b9tNe5nZWCzHkL_o7X_XlKrLJzz82AnMmxv5a3IPQeY,23511
76
76
  umap/locale/no/LC_MESSAGES/django.mo,sha256=ADQ1RdDyg19YZHw2wKl_bxEgMu_0wK7HaoYk_nsxXks,423
77
77
  umap/locale/no/LC_MESSAGES/django.po,sha256=HXr3Y_gxOPjdU1pSV_tyX_l7pbDMVrFBdf0gm3gciwI,7998
78
- umap/locale/pl/LC_MESSAGES/django.mo,sha256=1Bw4CiCB84VrlmJC5CcItPdkCXA0cND_7TaEfjIpLpk,10159
79
- umap/locale/pl/LC_MESSAGES/django.po,sha256=3jECAf-U6RSPyboYn_wROGE9NGqCO7MG-9PIyIub1d0,21691
80
- umap/locale/pt/LC_MESSAGES/django.mo,sha256=qHSZbQo2fAkMHZ8yG0OngzoYMM5x02MdQQoTRvB7byY,13543
81
- umap/locale/pt/LC_MESSAGES/django.po,sha256=eWZfGEvGTPJwMAQw6ielUXGPQF3DnhMNZHZK6xIv_Jo,22834
78
+ umap/locale/pl/LC_MESSAGES/django.mo,sha256=Jo0iMLNf86W1q56w1rDVilcRGsLXe8X2ctq7A_BAEuo,13305
79
+ umap/locale/pl/LC_MESSAGES/django.po,sha256=Fx67xmALJJEjoE48oMG5owcmG31SvNWjZTKFrR65zZs,23063
80
+ umap/locale/pt/LC_MESSAGES/django.mo,sha256=dWMirDnBhlrvHWIxmIlJrJk8zwXfin71DdLltp27BAY,13185
81
+ umap/locale/pt/LC_MESSAGES/django.po,sha256=u5XDBHiFVfD_DI3B6fZp978LXDK3AdBcuhyIggNqHmY,22971
82
82
  umap/locale/pt_BR/LC_MESSAGES/django.mo,sha256=HSIam_B-jha9C6heFx6q_axE1IHAk1sPXeyFCjpxWWk,6077
83
83
  umap/locale/pt_BR/LC_MESSAGES/django.po,sha256=XcGimIbdy4T6_ONPpCNqjCT0unt4RdndXg8GMTykr_E,16527
84
84
  umap/locale/pt_PT/LC_MESSAGES/django.mo,sha256=6rNHtp4zBsXX4uIG4tQCnZxeO5GGucvrsl0JUXbRVrM,6105
@@ -97,8 +97,8 @@ umap/locale/sr/LC_MESSAGES/django.mo,sha256=FseFOdktRat654eT-W1iUn6k6JdRi0YuABzU
97
97
  umap/locale/sr/LC_MESSAGES/django.po,sha256=VDiXdSNvZqU1uqo4OQoVt8tVq0WJgSg1_u0VloxTgQE,17654
98
98
  umap/locale/sv/LC_MESSAGES/django.mo,sha256=I--xTEefiPNFuVdl1UD3lLMIDvWwdaI8YA5548BQfnA,7519
99
99
  umap/locale/sv/LC_MESSAGES/django.po,sha256=T4EKHDqRLUpQJx9NJl_bDGPFvybljJkD-OzptnG7qms,16846
100
- umap/locale/th_TH/LC_MESSAGES/django.mo,sha256=mm_qflB4T857vR4ZZJzjLkhd1UHm0cUVznLiHpDxEHo,12095
101
- umap/locale/th_TH/LC_MESSAGES/django.po,sha256=2PolbA-AX9GDFyVXbY55zay8WCoCsL0Ir2S6F3ceQ7g,21015
100
+ umap/locale/th_TH/LC_MESSAGES/django.mo,sha256=BOawhybWL0YYbzG-xCTu2CSShc3xoKpltv6buVebiWU,11607
101
+ umap/locale/th_TH/LC_MESSAGES/django.po,sha256=wJFRuO_tRsHiQplIH25k7HzmD_iUrhM7WIGFVBGhsPA,24453
102
102
  umap/locale/tr/LC_MESSAGES/django.mo,sha256=-xsY_o18gBND3xAbXBzYfo9roJEv8pb5g8AHKoF0S9M,6120
103
103
  umap/locale/tr/LC_MESSAGES/django.po,sha256=EB0xFgOxo0ipk-WeDGmMeHPGRfFCqPcdZFcWgHrWNbg,16533
104
104
  umap/locale/uk_UA/LC_MESSAGES/django.mo,sha256=vHCorO_e12hrisGYYGWN8khNL4v3dOBb9-NT7G44j4o,7860
@@ -107,8 +107,8 @@ umap/locale/vi/LC_MESSAGES/django.mo,sha256=zjsS0va90-Ezx1_JO59gKXYToqBjezp1ew6V
107
107
  umap/locale/vi/LC_MESSAGES/django.po,sha256=SFJZUmxSxWSLc1ZCgZe4x1vs2uUdeFznXmOJTOGCZoM,15672
108
108
  umap/locale/zh/LC_MESSAGES/django.mo,sha256=2Nr3G4oqiJd4fsxGwbN2EAPHGP20_Nof4Yv-AYU0rlw,3483
109
109
  umap/locale/zh/LC_MESSAGES/django.po,sha256=2NfxhbFLnTpwLLl8iKiFrj7M0F0X8nVe6MsZPqVJH1o,14737
110
- umap/locale/zh_TW/LC_MESSAGES/django.mo,sha256=edWPjP0PlvrVI58FQ986L3f1AqtGTrww3Ww_gxG6qBk,13038
111
- umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=ViECOPg6JFouHXG-Pdmk8XWol3poBk7KW-OM7eeVtUs,22296
110
+ umap/locale/zh_TW/LC_MESSAGES/django.mo,sha256=-ztWegBLMMaA03QGz3K1BHWKXH-J_sJ8GL6GSUROlFw,14625
111
+ umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=WNerChQastTRV2GV05agUUN5a0ewm7IeV1QXdnSPuYk,22955
112
112
  umap/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
113
  umap/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
114
114
  umap/management/commands/anonymous_edit_url.py,sha256=hsWgPzZJmLCoDKTWziFUuwq-DdnSiXkSal2t2TIED-s,1070
@@ -119,7 +119,7 @@ umap/management/commands/generate_js_locale.py,sha256=wkf-PFIHS7m4ZhyL1ZRMBLqyUe
119
119
  umap/management/commands/import_pictograms.py,sha256=RuQDCoiKamba4l3fZUGAXRyd-3zwWWT5c5AhgDvs7AQ,2369
120
120
  umap/management/commands/migrate_to_S3.py,sha256=SJuadjgZPCGqrdQ0SshxvVh0CBzJan6yP525PpIsgMw,2158
121
121
  umap/management/commands/purge_old_versions.py,sha256=qT2kET_TVhvtUOj4yD4kC-cwVjN9aCZRlyS1THTPYm0,2599
122
- umap/management/commands/switch_user.py,sha256=NbEGoK7dKgp7V0KOq1iV48_Kd1sVCeUBIu6HveESh_w,1794
122
+ umap/management/commands/switch_user.py,sha256=gmayZB6DiaiJuLEqoZG8FQR354wWmJUcdhpV6mHP6lQ,1800
123
123
  umap/migrations/0001_initial.py,sha256=dMcXtTKPiA0IqXCrDVctH91Fe0hhc04NxmvcLAULyzE,8787
124
124
  umap/migrations/0002_tilelayer_tms.py,sha256=E99JAu1K0NzwsCEJs1z5uGlBkBJmoVb9a3WBKjpLYlo,372
125
125
  umap/migrations/0003_add_tilelayer.py,sha256=53r95Y13CvV0pXseYEnnqtPI4-Q0qcVldYMS-jFpPoE,833
@@ -137,7 +137,7 @@ umap/migrations/0014_map_created_at.py,sha256=VcK1r2MNFJ5wt07_gRWJRf_fF22_GbYhpO
137
137
  umap/migrations/0015_alter_pictogram_pictogram.py,sha256=ABoM7PXhcO6R2AM_XH6KITyhnP_dtw9d2xc5XVJiH7c,392
138
138
  umap/migrations/0016_pictogram_category.py,sha256=xSNApTToAXVzYSH28ZVqfZq8q0ODSI9czwcQRkTHcX0,416
139
139
  umap/migrations/0017_migrate_to_openstreetmap_oauth2.py,sha256=b8VTzVGK_PJCHfTsc8o8HlGiwzjklcziYKIuoZzFwYE,393
140
- umap/migrations/0018_datalayer_uuid.py,sha256=HukF-EgWp4BlgZyK5hWAYhCkitHxACSgDEMfFWW0CUk,1927
140
+ umap/migrations/0018_datalayer_uuid.py,sha256=ql_Bn58vevM4mEkWm459pCzzfCyKeEtHL0B2xV_SLrk,1926
141
141
  umap/migrations/0019_migrate_internal_remote_datalayers.py,sha256=NZOhTwX3UJykn2MZ5x_pcSw2_gULI3Yc9TGwsZt741Q,1601
142
142
  umap/migrations/0020_alter_tilelayer_url_template.py,sha256=e6DC3PNSiyyCAwS64D8d4BZiiQa3bCuyoi230L3SPH4,486
143
143
  umap/migrations/0021_remove_map_description.py,sha256=C1-pTJ1loj_aZPIbdbPRIHQayarlkbUbfW6bj_vnKGA,336
@@ -152,26 +152,27 @@ umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
152
152
  umap/settings/__init__.py,sha256=Xg2zqnT0H8mpg5xlpjBiS5fEdAvcoyDPAiUp73daDnc,2942
153
153
  umap/settings/base.py,sha256=d_ee8wuqvK2Dro8L4nHtInUEhQ_Yl4DlUzq-G58_5lM,12528
154
154
  umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
155
- umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
155
+ umap/settings/local.py.sample,sha256=AFyRdVlmkC3Tu78S9n4KWAmwIGSE-c6ABS8hVKrkoKM,3158
156
156
  umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
157
- umap/static/umap/base.css,sha256=qBg5XJt5sTs0KZ5icTBce3iQgYZOMA-YD5P-9Z6Vu08,5165
158
- umap/static/umap/content.css,sha256=gh2BfVRdkvxYtISVGg-vay0O6jMrX4anUGZ3QheWzyE,12149
157
+ umap/static/umap/base.css,sha256=G6TyKKFTu-A7QOrq5ZAt8KEIJ5CFbe4K-JEURDDRkmw,5120
158
+ umap/static/umap/content.css,sha256=gOvOzuvw-AzhVnalcoU0Kyj25uYp6g2nLo0gOWZ_1i4,12287
159
159
  umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
160
- umap/static/umap/map.css,sha256=Aq0zLESKpZEe5PmcPvu-QfqYw-OZk_g5P5ydrZC-I50,25046
160
+ umap/static/umap/map.css,sha256=DujW9eyl-ObrqygcvSrelWtYIGIC-WUQPQN1YkOt5xg,22154
161
161
  umap/static/umap/nav.css,sha256=MsckfSfuMgADt71FIVpW351ZC2ATlr50iGW-47hziwk,1956
162
162
  umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
163
- umap/static/umap/vars.css,sha256=MMhfpEJb7g4JP5nS7YdB2zRxh7CKuwZ6tjaU41Q_GUw,2197
164
- umap/static/umap/css/bar.css,sha256=qAhRGfDqh0Att86H3RUr4os9DPiG6E83aPnKcUtDsS0,6250
165
- umap/static/umap/css/contextmenu.css,sha256=8xYIro-Fy0QZMOABWNtioVCjXUGIbn5pSi803OJfi2Q,2030
166
- umap/static/umap/css/dialog.css,sha256=43Cq5ll7g8u4mpzstTtoo5CXtcFkH9pMzEg04xujAaE,993
167
- umap/static/umap/css/form.css,sha256=rlC0nqZhUxFGGN7F_nh2iZURu5fYkYArUrPi2iLIFjg,14980
168
- umap/static/umap/css/icon.css,sha256=j5f94TGqHC9dLw6auQeybNGv5WsHi8jCSwVpHYSLa4A,6514
163
+ umap/static/umap/vars.css,sha256=bZVi0ACdtGDupargPUT2yQLFYEzaEo6czW9yo5znm3Y,2636
164
+ umap/static/umap/css/bar.css,sha256=B-nd_KN6da95i3kEjIyKSOC-HGOrKnJal4IirqHG0Mo,6675
165
+ umap/static/umap/css/browser.css,sha256=WemvOscBou8XODvwtnArJUjmaqDxoyRmlMB0KKGN9bk,3258
166
+ umap/static/umap/css/contextmenu.css,sha256=dEKoTFTtZkIEvKspKlPfN9-9n9h9Pv4QYk4GzQXMFs8,2302
167
+ umap/static/umap/css/dialog.css,sha256=I5Dg8LRzZYDd-sG36C4EN2Mnk3gcOsVkKRKqEJOgSAc,1271
168
+ umap/static/umap/css/form.css,sha256=1E0HFuqKCBYIC84hatMWSDaVJqaJOn9Htio2CDWeFGY,16992
169
+ umap/static/umap/css/icon.css,sha256=7wOJUYbluABWKLvxia-sPg8iqW4MBL4BpKxFOey0Ydk,7464
169
170
  umap/static/umap/css/importers.css,sha256=Q_pXPC02AwaPi5hu-raDSoBBPKH2Vj-EOoLIG-IIn-A,1774
170
- umap/static/umap/css/panel.css,sha256=BleuyREmEkPwqVE31_hZwsuju3XQoj21-1GsfP-SSKM,4550
171
- umap/static/umap/css/popup.css,sha256=arW0Yfisk5EUnT7-uSZEIw4IYZxF2uMJkiOtqyEmcIE,2400
171
+ umap/static/umap/css/panel.css,sha256=9nL8XQeHAc02_5D4oL7YRSJu_p15BjW6TW68LOCf-QA,4680
172
+ umap/static/umap/css/popup.css,sha256=r3irkmNwrv5eQ5HZuFMystbvzTiYpt6U6Qub_FGCj9w,2385
172
173
  umap/static/umap/css/slideshow.css,sha256=zh3H_VlkMJsCjE6djbI9sJ3blY9GbDBYWKGX20oXrXA,1928
173
174
  umap/static/umap/css/tableeditor.css,sha256=nYFd5qSMkUasFfAxkWwewKJ5MwIcZb2Zq_DViuDRZc4,1574
174
- umap/static/umap/css/tooltip.css,sha256=jFAzyKulL7ow2XufkzQ6bRXK0u8d5z9bjoiOELQOHzQ,1953
175
+ umap/static/umap/css/tooltip.css,sha256=vCuxyI82CEdAnwADpIOG0dEKmy0zSVNRr5mr5DU_ubU,1921
175
176
  umap/static/umap/css/window.css,sha256=50MFWr9oU200f8-crTPJi3ZPG9h1eG5i6oOBP8yttBQ,808
176
177
  umap/static/umap/favicons/apple-touch-icon.png,sha256=xjhkAIZwNywTApzAgnwSvagpcm252katIaVnHIIC_LE,2776
177
178
  umap/static/umap/favicons/favicon.ico,sha256=0jjg1MnZ2AdWFLKjEwZSf09TVXlqz6oNdtX4rRppHdA,15086
@@ -184,8 +185,8 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
184
185
  umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
185
186
  umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
186
187
  umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
187
- umap/static/umap/img/16-white.svg,sha256=jlxB2jX0S7c2jmlnKPOhj29n_ceoJTLvYELchVvelL0,43639
188
- umap/static/umap/img/16.svg,sha256=c-vbOlms_uFDzTZY3jdZPMMwBZJX_bYam1exVGwOOvI,27828
188
+ umap/static/umap/img/16-white.svg,sha256=WFAqQyvacbM68E2lIBSY5zOdTDXGQhwVV3GWj4wm01I,43299
189
+ umap/static/umap/img/16.svg,sha256=kK0jBjNpP9jP-oBmbaIluGwiQGP0JTwJ8VW5QAMTvqE,30587
189
190
  umap/static/umap/img/24-white.svg,sha256=QVuiHS78y4m7ZejFb5-jWwAYAVNLlWxXKiGbyJf5FHk,21455
190
191
  umap/static/umap/img/24.svg,sha256=nLcI0MgKj48m8CKwfNBBdPWr4SXkQHMSwF4v25PTHQ4,29496
191
192
  umap/static/umap/img/alert-icon-error.svg,sha256=YyAYn6J4zVGLfpnC60UntTxlylcA4lPcHkBfzufcdDU,4104
@@ -226,179 +227,181 @@ umap/static/umap/img/providers/github.png,sha256=sA3oznlXAC2lqynqS2PMuNwZPQ3REfK
226
227
  umap/static/umap/img/providers/keycloak.png,sha256=76ZaWlmmVdpr7t33LDqYRPRsuKsFmrOjLQk17LsezYo,1520
227
228
  umap/static/umap/img/providers/openstreetmap-oauth2.png,sha256=fzqr15HexNfyi2l3Pxos9ptnmXfTH9Gm2v-1o7F1W7A,1680
228
229
  umap/static/umap/img/providers/twitter-oauth2.png,sha256=9sCQYpLXTK40nvQmwEWd325XgBPq-Wt2JGu59GJDRfs,1589
229
- umap/static/umap/img/source/16-white.svg,sha256=R_DDw29zHS7WPq6PwBk3_PZhnITGdQkiSB8tTEkAkK4,72421
230
- umap/static/umap/img/source/16.svg,sha256=xNb98QftfCBGkC2EUVNzp922DSBJqmfBnQTvAIX72ZA,48560
230
+ umap/static/umap/img/source/16-white.svg,sha256=KtitRSWVEQ_0N5oi-dIPxmLNzBd57RGiMLrQtHlZeSw,73826
231
+ umap/static/umap/img/source/16.svg,sha256=sCq4Ir8bzS9108fmB2imqheXpnAkeifs25ZFdm8zck0,54064
231
232
  umap/static/umap/img/source/24-white.svg,sha256=WbH5ljoAw3b7yq6HoZiFhab1-XSSK9Y5dVwcsTeGU8U,34009
232
233
  umap/static/umap/img/source/24.svg,sha256=zWBP4zWRi_p6Gc98QS1ivhANGmHG5jnpiI36ptecUT8,45124
233
234
  umap/static/umap/js/umap.controls.js,sha256=zaMX2VKSlK63iPRovPPajcM5Aduqnz8zbgzpPvn_Fto,13845
234
- umap/static/umap/js/umap.core.js,sha256=BpcfSnHFb1MzOaF0Meo8GrEVETOKMaG_pbgnRwnUPi8,6041
235
- umap/static/umap/js/components/base.js,sha256=gDb1fGuNCC1KEu4PlQflC1PDNyrulhqLhmlsjyCJpps,1575
235
+ umap/static/umap/js/umap.core.js,sha256=MkXV9kv-UOMjQFVer-T9RMN3AzpyxHWpeqkUKhjU35Y,2657
236
+ umap/static/umap/js/components/base.js,sha256=gRV20WfPpJw3Lwff3LYEDuqgwqLxfu1wFjFuntiLHdw,1576
236
237
  umap/static/umap/js/components/fragment.js,sha256=-rOrcyPpZ5ihD_hh0C1qrYpaim11JYh5fg0x_od_m5U,379
237
238
  umap/static/umap/js/components/modal.js,sha256=ugaibc2n5Pftocs1crN6zaPRJztSQm1atyf7jhSAnC4,742
238
- umap/static/umap/js/components/alerts/alert.css,sha256=fSmbDDjXjEYLfgnEAVDhyqWiBOUy2YhVRy0_den-7Dk,4930
239
- umap/static/umap/js/components/alerts/alert.js,sha256=_BcG9WluOkJTj_v795c0PIXvv5EZQs0uO5-rUhcwEco,4482
239
+ umap/static/umap/js/components/alerts/alert.css,sha256=amMkhzABVFfvF4Sdi752wQNLgG5gP5mfUpe8bnRurFY,5282
240
+ umap/static/umap/js/components/alerts/alert.js,sha256=s5oyrtkTX6185CHXlAiekclIf9oqaLLNK_HGLwFfFdQ,5047
240
241
  umap/static/umap/js/modules/autocomplete.js,sha256=CLw4KP_Mmf5s55OWimK3Xw7GkwDLtuCqeEI2WqPSsOU,8729
241
- umap/static/umap/js/modules/browser.js,sha256=9uug5dbf0HCsg90xUAbva-_dwW_6znFFDUbaPDoUflc,9747
242
- umap/static/umap/js/modules/caption.js,sha256=glOSK2HIENR-tPO4iDWOvPRX8xgeWloKAbntRpYH1qc,5813
242
+ umap/static/umap/js/modules/browser.js,sha256=tDz9hLaKKiJ-32COmBYpblGDszPA_YN_zatXciE3y7E,9956
243
+ umap/static/umap/js/modules/caption.js,sha256=31p5ai_gKq7pp0cWiAwONbxopif7iq_I11PDRW0zDYI,5843
243
244
  umap/static/umap/js/modules/dompurify.js,sha256=SOmoM-pTgYCKCKXFo6-znemWPLiLsFgR4lxM_moWaA8,328
245
+ umap/static/umap/js/modules/domutils.js,sha256=pLM1MDZF3W-lD4WO0pkfa3MBpvQ3zVFVKRmXYAb9Gbs,3530
244
246
  umap/static/umap/js/modules/drop.js,sha256=aHuz_sDgWAqDEH49OWNhnnyFvGLDMCoeeo5xaBLZwAg,1431
245
- umap/static/umap/js/modules/facets.js,sha256=gan4obCxzJVcRFWaHjNLpqHn4GJ8DLQCl0ifFlqEdgw,4775
246
- umap/static/umap/js/modules/formatter.js,sha256=q-43WipkO5nOLynnt6jm8yTicBp-DPIlW3WuADE7zY0,5972
247
+ umap/static/umap/js/modules/filters.js,sha256=LWx8QzP9OeaSvoZoyGKHx1Caexc2R9jQI4M70RK83IM,21402
248
+ umap/static/umap/js/modules/formatter.js,sha256=6E3dZCe3H2jqgdANUEBwdpiGpR1U9ZcVNm7YyaDy1Tc,6696
247
249
  umap/static/umap/js/modules/global.js,sha256=pmO5iFezaPhxQemgscta2S1J4vBRHIpjALjym2Hs9Z4,941
248
- umap/static/umap/js/modules/help.js,sha256=fnkc6ugsYI1TeermtqiJUYJFm9P1pcC-CoDuJ03iZq0,10338
249
- umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
250
- umap/static/umap/js/modules/importer.js,sha256=UEEUodCoWmrhq1ActNusz4jU6n6R3DRuhPVd3_oSF00,11458
250
+ umap/static/umap/js/modules/help.js,sha256=pJd97cKkbJWoqlzxfvzdZXESv8VbjPy0Lkl8q1JR0-E,10165
251
+ umap/static/umap/js/modules/i18n.js,sha256=eKJfA2jz2WAZ90oE-LJcEEMBti6QCsDkk0HgTc_NSjY,1386
252
+ umap/static/umap/js/modules/importer.js,sha256=oNZYzWZU9NMmrucA8wugK7VztQ9jS44iKgCbAMsoEeE,11457
251
253
  umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
252
- umap/static/umap/js/modules/managers.js,sha256=7MCeiB5INYN1XTlksZSPDi2VwVBrr2tzzGUs4ePpLso,2513
254
+ umap/static/umap/js/modules/managers.js,sha256=_zkkoAbxLkSneN-ef59fmWlAacSoX1WT3pDslbdZmrw,2503
253
255
  umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
254
- umap/static/umap/js/modules/permissions.js,sha256=t-kZvgGIGva8MNMu9Ydr-U9KVrdKUQery_BqniFWut0,8734
256
+ umap/static/umap/js/modules/permissions.js,sha256=ewyrOGXrvFBJH6rYRZaciZwd8I6O9xmuxnZWibKXQGg,9155
255
257
  umap/static/umap/js/modules/printer.js,sha256=fvb44tLBiYR7TyBdXJdroYsjQOrnbzw7-6F0dBCUEGg,3607
256
258
  umap/static/umap/js/modules/request.js,sha256=9GRJoOPbdkHL9OFP6Joaf5wzsJckPyiG2O7AxQciTik,3885
257
- umap/static/umap/js/modules/rules.js,sha256=H250ZVdId8nG2hkJqCegCYYt9njw8g6qBFBt7-vrr8o,10007
258
- umap/static/umap/js/modules/schema.js,sha256=ZZwbbR0HPstn3vaendxF_RS_umam3BuATrWdxsQZD4s,15631
259
- umap/static/umap/js/modules/share.js,sha256=xgojG1xHDcbgJZlUd-oP7VFrbGDpl2k1LmTll01f84w,7491
259
+ umap/static/umap/js/modules/rules.js,sha256=GVxnWN8VH8LDQdrozFPzG4t8RMlXRlHjp3UyRbOH3Nk,10113
260
+ umap/static/umap/js/modules/schema.js,sha256=gQRpO_VHU7EBLVrkaXQ1LVZaVxwyC11QgIwBdgX4qxs,15479
261
+ umap/static/umap/js/modules/share.js,sha256=2o79TBm67wDBD52SeQ-lkUlMPN-magVpid6WG6G8Uvo,7521
260
262
  umap/static/umap/js/modules/slideshow.js,sha256=7tmW32iuEwLXTY_4A_DmiRMjdDr5luhpJSdmbz2SXPc,3608
261
- umap/static/umap/js/modules/tableeditor.js,sha256=NbUgJul5_fFhikWyXIZ1nOEp9hSVKO61i2y52noGISc,8537
262
- umap/static/umap/js/modules/templates.js,sha256=41fliDQLrVo-WosiyLkxpRry3WXpCVz4IW7kYn0AMfQ,4415
263
- umap/static/umap/js/modules/umap.js,sha256=GD3vS_MGMqH3I0SIgSNIDgdCKKJJ3sLjMqNuQYcVG48,54785
263
+ umap/static/umap/js/modules/tableeditor.js,sha256=8ZQcy_b0urXMoUUKcYW1fi1nul38jTaq95GfDyykGTI,8800
264
+ umap/static/umap/js/modules/templates.js,sha256=mm-3OnVcCKmPyPfNkar0HX2ynT8E4CgqU4Q3m9bDP10,4401
265
+ umap/static/umap/js/modules/umap.js,sha256=aGo3OwCrG8XG0s1xRyU9J50drffqlp2BvLHBY8pxGHg,57355
264
266
  umap/static/umap/js/modules/urls.js,sha256=76cFqycj2O8huuoYYBvxnVt2Fc2UDbgrRsiv6lQmcSY,890
265
- umap/static/umap/js/modules/utils.js,sha256=rT_RILODFUWAvvgjFpT5TtNbu8A9jzn0mlkpHEB8QqM,16044
266
- umap/static/umap/js/modules/data/features.js,sha256=goCRmPzAx47VE_A-WB_2xJbopid4UpW0jLOLibZ_aUk,38334
267
- umap/static/umap/js/modules/data/layer.js,sha256=E0nDlWk7ovEA5PdV58Pv4Z8CUPlBkLImWfn42m_kIXk,44262
268
- umap/static/umap/js/modules/form/builder.js,sha256=akRoO8VpKXqWr3LO4Y_B1zr9gXJL2S5RCJqRDREweq8,6452
269
- umap/static/umap/js/modules/form/fields.js,sha256=yUEUPDHF3tgnpDv7UdfMXHsabCMaGsUDXQq2-Qe1krg,36152
267
+ umap/static/umap/js/modules/utils.js,sha256=1MtCHzuKM_950Bs5gJxI0D3LjngtCnCIbl9VwqFGilg,16702
268
+ umap/static/umap/js/modules/data/features.js,sha256=2v5XYtvED--VkKCw3M1fhSog0DlZ5zDntB5RpEGS2ns,39400
269
+ umap/static/umap/js/modules/data/fields.js,sha256=sv0gIEM5Jm_IkTC7bLsgyWpJgPNdEhvMaTngnRlRSDI,11731
270
+ umap/static/umap/js/modules/data/layer.js,sha256=ThPnUGWCosoUJNmx0B5YKTqKjTGBMkb1BrBQtpYCLWY,40811
271
+ umap/static/umap/js/modules/form/builder.js,sha256=Xq1oNE3t_6JFWm_i2MAaCrfYMkollWHW9nVmL-8Bu7o,6518
272
+ umap/static/umap/js/modules/form/fields.js,sha256=mHvCuJet449IUOimhyH7W646ykfjMCx3eHKblBnxrWI,32954
270
273
  umap/static/umap/js/modules/importers/banfr.js,sha256=TBwL3GQJdzYtaDtxeHxyPQ7Ycy5zTaQyvzXa55X7n2I,2932
271
274
  umap/static/umap/js/modules/importers/cadastrefr.js,sha256=fcNOYZ679MYpy3fQubEhNmyaMpGKyNNeZRlUVgHKcz4,2319
272
275
  umap/static/umap/js/modules/importers/communesfr.js,sha256=HoeVApZ0ORDxQt4dA86nKDldey3aJNeLdagMkn5skUg,1723
273
276
  umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
274
277
  umap/static/umap/js/modules/importers/geodatamine.js,sha256=4KmRpEpwdUHO1lqzB38hnTFvPjh7IjcQfVVDziqKS8k,3000
275
- umap/static/umap/js/modules/importers/opendata.js,sha256=SfQr3jY_LM8mMs-BDaggChEjaP8D6pvZ7ZGU_pfQ1P4,7361
276
- umap/static/umap/js/modules/importers/openrouteservice.js,sha256=RGHMXDaDpgXg-6LEHOFN9GBdhf-hcG194yBEIOTNqcM,3918
278
+ umap/static/umap/js/modules/importers/opendata.js,sha256=dps-cDYWVvlxudJY1HLX8onh6yD8Tvzda58-AsyGPi4,7694
279
+ umap/static/umap/js/modules/importers/openrouteservice.js,sha256=0tVlCqcze4oVqkzI6PHhIrB7VksXb_1DwZvw92j4eNU,4133
277
280
  umap/static/umap/js/modules/importers/overpass.js,sha256=cY2kb3Fs8tA6PqBjGyc5bI0mg7L1ijapIAkVGwEhSwI,3341
278
- umap/static/umap/js/modules/rendering/controls.js,sha256=7dPxGdfA3zhVfN26ZoTkO-Fg-Mp6QNUIbyoDznHBFN8,10631
279
- umap/static/umap/js/modules/rendering/icon.js,sha256=c4kTghfdjku03Ey825LIp9sZ9MS5e4MD8TsV8y33MOo,8910
281
+ umap/static/umap/js/modules/rendering/controls.js,sha256=MPL4vcNBJRRXcW8ImUSVzqLInx-0BE4F-ZHULQ-u5qs,10647
282
+ umap/static/umap/js/modules/rendering/icon.js,sha256=4PTpNcx8nqVM7OzEXi6jLAF-0Q_mDlablkiv0dUPo_k,8924
280
283
  umap/static/umap/js/modules/rendering/map.js,sha256=frdccjuaoK9-PMCNAGGk0y_rG5DVUKWxPkeAQm_F_B4,12822
281
284
  umap/static/umap/js/modules/rendering/popup.js,sha256=OtQYpjhWCoW20XBFeeSKCXMqN-szohaX1TKWhPc9eBo,2577
282
- umap/static/umap/js/modules/rendering/template.js,sha256=n74YzbZOS_4CeK3-Jn7NXbkzqsh4zjCbEX9w15QxKu0,11468
283
- umap/static/umap/js/modules/rendering/ui.js,sha256=3Uow0IHOHrPW7LJCa00kjCyZQFdRq5hViAOhoBuipHc,17617
284
- umap/static/umap/js/modules/rendering/layers/base.js,sha256=k_TlwHiGc16CFvE41-OmgjTFa99LbkG0IUKCUoZaruk,2483
285
- umap/static/umap/js/modules/rendering/layers/classified.js,sha256=CLktnkjf5_6CzkKVyZcx5wAKvhsRp4pRpCIBauwKeO0,15068
286
- umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=yRv9pXJtYQGimRL6hJXbE9xT1xUmQ4qy2Ja8GjFC5pE,8054
287
- umap/static/umap/js/modules/rendering/layers/heat.js,sha256=K_LsxnfpGImy2HlneV5nK0cBu1FxDmPNxR5VmsV4LaM,4975
285
+ umap/static/umap/js/modules/rendering/template.js,sha256=_dBUzFGH6kW9efiQXc4T-8egaXNkXjPtCPmMd12Kz78,12554
286
+ umap/static/umap/js/modules/rendering/ui.js,sha256=LgaDuTHm9EbdL35OOCSiMnufeOVGS8Ecu6tGW_oFHkw,17700
287
+ umap/static/umap/js/modules/rendering/layers/base.js,sha256=pn-D_Mb_l43NOsNEh3_rmH5nNreAL5erOPzf-37daWc,2487
288
+ umap/static/umap/js/modules/rendering/layers/classified.js,sha256=1BlBp_RBLzy1lZr1op_nabQnQ6RlJ4Jg2jmUMIY_dsA,15293
289
+ umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=mn1-m2KGmmQv8IohoZ3zLfClwvl38Xv8zwGFyYwmQ5o,8136
290
+ umap/static/umap/js/modules/rendering/layers/heat.js,sha256=FaZQK6s_J7jZP2pvoDyOXrpzRxwOpmgJIbieIioryko,5146
288
291
  umap/static/umap/js/modules/sync/engine.js,sha256=LDB7HHCmfVb0Cz30yVXBSV0f-1CGG5bkzrPtaT5RePM,18390
289
292
  umap/static/umap/js/modules/sync/hlc.js,sha256=XeJz3x7qiDz7v-mcgGIynj5ks34FpWx_oSPUPFd_ZGA,2991
290
293
  umap/static/umap/js/modules/sync/undo.js,sha256=CQufaRvI_-dT0HGm5Wl8hBbO00IruflPdlmWJ4acgFM,2910
291
294
  umap/static/umap/js/modules/sync/updaters.js,sha256=9qukCBW_pPk4-3k4boKjcyocBd5w37UZxYGqclewlD0,3809
292
295
  umap/static/umap/js/modules/sync/websocket.js,sha256=M2wsFuW5vRsY677dRSAFUWJl5MBPCOvaNYCAxBAqjcA,2522
293
- umap/static/umap/js/modules/ui/bar.js,sha256=C6moD-rVwYApug3o0fq2O_JSrqNI77_22LNgC4BwTdg,15267
296
+ umap/static/umap/js/modules/ui/bar.js,sha256=Ih8OswmejFpDKRgtaY6Zd_wFGshC6NZGDVoTdTSaeRM,16589
294
297
  umap/static/umap/js/modules/ui/base.js,sha256=OLR8VOvKPkDCT0X3hQq3s0WVRQunNEIUj83RNMEyzBM,2980
295
298
  umap/static/umap/js/modules/ui/contextmenu.js,sha256=3Zm0AOoZLdCm76SLvImH1rtv0gPbcU1DQsJHf6cEojM,3169
296
- umap/static/umap/js/modules/ui/dialog.js,sha256=m6WotSD9xReqzzzV_Vc2MP7EjH2bozGmvOiQ_TaS8fE,5669
297
- umap/static/umap/js/modules/ui/panel.js,sha256=s-dTPKhZDP190OZXoaVxMtBly0aoUbSPCwPdZhuNxTk,3613
298
- umap/static/umap/js/modules/ui/tooltip.js,sha256=KxUQMtH29DZSCsZ6uZMtNlNR2NnQDnRMfJMJ35O_w5k,1919
299
- umap/static/umap/locale/am_ET.js,sha256=sPr73zH6keo-0uW3I7amVv3BPS9ieYhUTM4HGooA1vM,38360
300
- umap/static/umap/locale/am_ET.json,sha256=wcEzmAU-SeCTCxW5ZUlyqhDk5R9pHzVtGC8BxnYt4yA,38289
301
- umap/static/umap/locale/ar.js,sha256=e1GUHrSsmFaWNQNnx2g7SVftO7PESLcU1x7kfwERfDQ,35331
302
- umap/static/umap/locale/ar.json,sha256=wmShokVFMqM92GnUrfHa6p8FrdWAj6Mr3yqGumRvPAA,35266
303
- umap/static/umap/locale/ast.js,sha256=jRWnhmd_ycm1ioYpp23duGXCQxQ1aC0TDS3KSTOBnuU,34935
304
- umap/static/umap/locale/ast.json,sha256=aGzn8kP65zQ4c9Z4Cw95XtJge94LgVeC2w-72mnODaU,34868
305
- umap/static/umap/locale/bg.js,sha256=zCViRdEUwTtd-pdnmoDLzYNIQb1Jd9rZCBkuMG6l7Kc,37782
306
- umap/static/umap/locale/bg.json,sha256=qA77uGtkk1D70I9xOkDEKMlwFo-tgsJ7IOFuPh0eYYk,37717
307
- umap/static/umap/locale/br.js,sha256=d-DeTk4U5937JIEWhjCQz8iV7fbdOgG145PtTSVe5Rc,37279
308
- umap/static/umap/locale/br.json,sha256=t1zobQ--unLcg6OwtCeCJZskstLpG8LfelKCPE0Lu1E,37214
309
- umap/static/umap/locale/ca.js,sha256=5j9ipDYpbqs8LfExPgq7XKerZwNbrcCwRMKkanVWBZs,36690
310
- umap/static/umap/locale/ca.json,sha256=ycAAXKO3SsnMBwkXrBHAItCxttC-6vv7GsP-NmGbOqY,36625
311
- umap/static/umap/locale/cs_CZ.js,sha256=hHwQfF_416U6HcViVZepJga20EwtKGhkDUiks4qtR_E,37618
312
- umap/static/umap/locale/cs_CZ.json,sha256=jIGpH3nab3egJ6mdzboF9Ktrn-0FRE-xIU8SyFge5aI,37547
313
- umap/static/umap/locale/da.js,sha256=OE4mjb3sc_AxQaUenidkDXCoppAFVX3wublc1T7ATC0,36024
314
- umap/static/umap/locale/da.json,sha256=gX_qXfTamFKZ6HyK2UzkxCFNRj5bD7EnuWxkb2-VlPg,35959
315
- umap/static/umap/locale/de.js,sha256=LkME9eFGYgUbWpGWlKJiAAp8h6NbulQRrTaZhk7T2Ek,38253
316
- umap/static/umap/locale/de.json,sha256=79lFWoGUPdjnOYk2HbmyU0y1C163ZNDDrRkNCzpatnQ,38188
317
- umap/static/umap/locale/el.js,sha256=2ehzzHMTkrGWQuxg5Pgf1eA1rNP49oH04rIRN_eKRPo,53650
318
- umap/static/umap/locale/el.json,sha256=CppMxb3eOff8tozGdFoAtGmJGlak0W2A2NxGnjycTMc,53585
319
- umap/static/umap/locale/en.js,sha256=w9WBdkXdI33-ja7R0LghAgieCwyJ6-Yinm__09qIGzQ,34949
320
- umap/static/umap/locale/en.json,sha256=nqPI3PxGo1m1Ce7h_yZnLDmL6Ft2ZOiI0m0viYDgliw,34884
321
- umap/static/umap/locale/en_US.json,sha256=3UI6ecOfs6vaMDVC2WDvJ0lb4pWTwNrXayuj-DZWYFU,34662
322
- umap/static/umap/locale/es.js,sha256=Nqwi2DkIRdnONhwZMSDDcGNIuEVGEbdmO9LhwNl8bQQ,38309
323
- umap/static/umap/locale/es.json,sha256=Pgmoz9lXN6B62p_IMdX4uEJfGsYQxsm1XakvdLizxK8,38244
324
- umap/static/umap/locale/et.js,sha256=ZnGdY1bfYbJxCW-WLJDakpJX1ZkzQXsBPZ8UIDsyWRQ,35077
325
- umap/static/umap/locale/et.json,sha256=i6VLYYtPk6py3rlKQA_LRaBi4A5egxGt1ZTnfcoa7T0,35012
326
- umap/static/umap/locale/eu.js,sha256=yTkMIfm-8kK1HPvLjDoTecWLs9mRXU-jb0Wqg7XlSZg,37204
327
- umap/static/umap/locale/eu.json,sha256=D-lZ6sdQehXVi4A7paqPTuXzRyameZ8ug5hZo96eRkQ,37139
328
- umap/static/umap/locale/fa_IR.js,sha256=cegs43aHAEsBXoMitji9KVhRLYX7aa7o9FYPMpD_LXw,43203
329
- umap/static/umap/locale/fa_IR.json,sha256=cRPc42Z0Rfelxc_Ebs3QEoiFrORBO5ZU1UfYLwv8o70,43132
330
- umap/static/umap/locale/fi.js,sha256=rfjcFAXpG1KHQphGys1l24hYPITYpZ6065J5utEyrVk,35706
331
- umap/static/umap/locale/fi.json,sha256=ks77grVEgGxcjbT0Re5gFrhXPB5wDtKHazCwqppn89E,35641
332
- umap/static/umap/locale/fr.js,sha256=WtLjfP4u7-KV9TITdzRa80nffHrkgvdG_MuPFYoHwdU,38362
333
- umap/static/umap/locale/fr.json,sha256=SIaElYwqv5AEaN8VnxVKeVIA8AsmGn0qM4IkNP7ejbA,38297
334
- umap/static/umap/locale/gl.js,sha256=UI2AACApwGhYluuJcGPE_f7389T6tEpytrwLsWawgKY,37745
335
- umap/static/umap/locale/gl.json,sha256=3LN5rMA1FB9KxR_4rolTJdr-k99qDUYYLK6vfMk1rig,37680
336
- umap/static/umap/locale/he.js,sha256=5GeT5SQloXbq-tAu_g19LungnjzMfg1yvJrDD4-22O8,38091
337
- umap/static/umap/locale/he.json,sha256=Di_lemTu7wdtVVYyetnmiFM3WTsuNqxaPAKKFi9qmkg,38026
338
- umap/static/umap/locale/hr.js,sha256=Ks325vywHX7RhWMVWuR1XVL3xFRsftQbc2H6ursRMPo,35103
339
- umap/static/umap/locale/hr.json,sha256=yoTOB21velJBvgiXWlvWQ7e4jxxZCRE4dy4jbnZzXJM,35038
340
- umap/static/umap/locale/hu.js,sha256=wdcp7R0sI02HXpG8VVFuErWmZxPJ2mAbgN75w0oeCgY,40082
341
- umap/static/umap/locale/hu.json,sha256=KlA_Bne42eHoeEW9UMTFAMZdfPyYpe6GApBYQQk3qC0,40017
342
- umap/static/umap/locale/id.js,sha256=lJSSmoAEz8Xk7ZxyuYZjGAY8BLc2FyxIokmPfQkctvo,34933
343
- umap/static/umap/locale/id.json,sha256=aGzn8kP65zQ4c9Z4Cw95XtJge94LgVeC2w-72mnODaU,34868
344
- umap/static/umap/locale/is.js,sha256=nlXbEON9lB5qEqK3w7FpUTWHKNYHbgW79Hrs8ieIjdk,36664
345
- umap/static/umap/locale/is.json,sha256=OFQhRHznZuxvJBSvS9CGrjLcS7RDgHUkDA2yejCyFMo,36599
346
- umap/static/umap/locale/it.js,sha256=zhHEq_lL8LEu_M_EGHw1nULa6n-YgpVFJEUO6ogv0cA,38041
347
- umap/static/umap/locale/it.json,sha256=LC4JfbYpGTSpi75vWX9xs9Xtdx8-O_pKyQj2TnBtWYA,37976
348
- umap/static/umap/locale/ja.js,sha256=9T51PGLkRjQu83Q2gApaaq468oSRwiVpbzr7LTw77TA,37209
349
- umap/static/umap/locale/ja.json,sha256=X_SEuSmCjZl0kEUpMYKP8vEXXVUZOKQRfQhKB4HZ-qE,37144
350
- umap/static/umap/locale/ko.js,sha256=37sNo5dfXLAjU1dpt7_NsLbWN_SYhuPMu09vU4SeczU,35075
351
- umap/static/umap/locale/ko.json,sha256=jDk0EZDt8D_ex18HkcBmQ9_8hpktjgo-mHIBotH4KHA,35010
352
- umap/static/umap/locale/lt.js,sha256=IxOsIW6CfJECbsWoXwp2aJFq1XCjxOfDVch5icj0xR0,35694
353
- umap/static/umap/locale/lt.json,sha256=xepE9WTaFGb1K_BD6UeYUkb5AlcAWOzsGn_p1yHZTsY,35629
354
- umap/static/umap/locale/ms.js,sha256=e4KI_AIn1uB3ZlyZWXeklCHvI-1-O3ko-p8TYG59Kio,36184
355
- umap/static/umap/locale/ms.json,sha256=XtVRKN9sWPUa_jw5oCF5cXGpQfUCviwWlj5PjegSDiA,36119
356
- umap/static/umap/locale/nl.js,sha256=1LD3EhLz5ZrtxigxLbFONDRxjFzNpiwJiF7rA_IcbuI,37593
357
- umap/static/umap/locale/nl.json,sha256=qZOadpkx3JI8IyWrKvDdqVlUAxuNdRszDR8hDYlnOFw,37528
358
- umap/static/umap/locale/no.js,sha256=3V4t3RDODH2wnE8UfPIXxrf7Trjk9ScUbI0ueutM4uE,35120
359
- umap/static/umap/locale/no.json,sha256=coUIAIHDTA8dDwEfEd7a0dQ1RPNmbquuG2aA2fhKHGI,35055
360
- umap/static/umap/locale/pl.js,sha256=IknKEft12ENBMDN7ALEdxq80Tv8RQGJM2tDkssAido0,36683
361
- umap/static/umap/locale/pl.json,sha256=1gD3DbuDf-Nuw6X7LFAKNtxmIzTrTC9-YHKSxIy41yc,36618
362
- umap/static/umap/locale/pl_PL.json,sha256=aGzn8kP65zQ4c9Z4Cw95XtJge94LgVeC2w-72mnODaU,34868
363
- umap/static/umap/locale/pt.js,sha256=tUT_ORWdddoBKj2CwVec2iN9s7zm9lc0YLuIJeOlmJk,37763
364
- umap/static/umap/locale/pt.json,sha256=bDbsOTS5P_iS-TgHFyveGu0UflL4508aa58AFeABInY,37698
365
- umap/static/umap/locale/pt_BR.js,sha256=5n0BCvozkxQoGucStlSwJmiQO2oIZEQNpzRpY463TlY,36254
366
- umap/static/umap/locale/pt_BR.json,sha256=aPAB5GPYkSoNhQfddkZ0DWCQyHLJUk-lVpcE799XFcU,36183
367
- umap/static/umap/locale/pt_PT.js,sha256=tvLJpkMOeF2-5Abaaum1yq6uK_bIdfRfxl7Eq4qjl8I,37462
368
- umap/static/umap/locale/pt_PT.json,sha256=yn6IZ5Sw-NVyiw82h_EKYHt9HN8OYr9hD1I7ucYsTT4,37391
369
- umap/static/umap/locale/ro.js,sha256=7cINkntqypIJtneGp_lgdxLzkvBKPTCGWJKdzTz57xY,34962
370
- umap/static/umap/locale/ro.json,sha256=jaCFFJnUUzb0ZzQGH0daTGaOEQ0rNpqytdxXkS2w8D8,34897
371
- umap/static/umap/locale/ru.js,sha256=tSQ4BAIlSxS1p8vtQyObewY6-iDOFVa-pyVLxIUgPw8,41597
372
- umap/static/umap/locale/ru.json,sha256=sYdbU1uOc4429k_sDzrQhF3QxIUiaSPqgXBRmlPMB5A,41532
373
- umap/static/umap/locale/si.js,sha256=mcgXepIhSBBoRr6LvmvdRJFIwEGzXdjABC6W7lGYQUg,28504
374
- umap/static/umap/locale/si.json,sha256=DHd8onJhyE8lBV76Zc9XmpHejZZOx0FwF3zaMlPq_Dc,28439
375
- umap/static/umap/locale/sk_SK.js,sha256=8owFG7Etjf1w0EGH4Kpg96eR03Ba-ecr8aonn8jjti0,36140
376
- umap/static/umap/locale/sk_SK.json,sha256=bTH92fe4pOzjlVlZe7OJbzosNFHX541rTVHnAO7Cqzk,36069
377
- umap/static/umap/locale/sl.js,sha256=8Ai_W21hPwVAOP-55xb8sLsoG9Rx7IORDO8ulNl-ieQ,35997
378
- umap/static/umap/locale/sl.json,sha256=uDJMBIUmOMwAUJZgJmz9_u15MKw-B3xUGbUM_U9Ius0,35932
379
- umap/static/umap/locale/sr.js,sha256=tIVhtciEwZh0HxI4icFp4slpGn8NplfG29rph5585pQ,38614
380
- umap/static/umap/locale/sr.json,sha256=6qorDQrtZLKp9Fu_fy8AHuIj_5QlqeJegmXwVIMlM6E,38549
381
- umap/static/umap/locale/sv.js,sha256=ibD26N1KKzOGRtPs_bBgARnaO-2vNM6pbjwp0QfyCIg,35893
382
- umap/static/umap/locale/sv.json,sha256=3mI1iVeFGvtYBJX3n3Dxlle7TV6nFb-JAu7F3-N94eI,35828
383
- umap/static/umap/locale/th_TH.js,sha256=IJPuJXupbDM9L0xeVULpdZUukpL_PYZuWgEgP1YlYHg,35937
384
- umap/static/umap/locale/th_TH.json,sha256=jEZHlP6V2eHNH6hpcoBDl__a-8rKr-SEH3CM15YeSPY,35866
385
- umap/static/umap/locale/tr.js,sha256=actGHachQKZ2DN9XdLvrkjJPmb427XipzBhHeKj3wZU,36409
386
- umap/static/umap/locale/tr.json,sha256=LFfr3HV5YZH-PWl4YiqLQBrvHWZ2xZLLDI0cLoKRqWc,36344
387
- umap/static/umap/locale/uk_UA.js,sha256=nqFoCCAZ8A_nUoLwgTqSnKCiYca3IbMRF5MOa8sajHA,41230
388
- umap/static/umap/locale/uk_UA.json,sha256=TCqxhtZd7C1H-OdsLnwZZu5Q6ofKN5dENGBWcghK5HU,41159
389
- umap/static/umap/locale/vi.js,sha256=nrKKB5Qv2d0GAEbqKmUaMcIBF9k1zMO0WSgb0D--5k4,35185
390
- umap/static/umap/locale/vi.json,sha256=2ILPRCyBPeNUXDiIzNHEwYgBaQNvaKKlEsB1B_0uZOA,35120
391
- umap/static/umap/locale/vi_VN.json,sha256=aGzn8kP65zQ4c9Z4Cw95XtJge94LgVeC2w-72mnODaU,34868
392
- umap/static/umap/locale/zh.js,sha256=Uzjdp0Oe4QXCewo_YtDuxbC8VTK7RqeBEmXwulGvV48,34711
393
- umap/static/umap/locale/zh.json,sha256=Z6IaQd0Sy1MjmdJP2BfQ3ka7CcWpY37h3ytUPniYka8,34646
394
- umap/static/umap/locale/zh_CN.json,sha256=aGzn8kP65zQ4c9Z4Cw95XtJge94LgVeC2w-72mnODaU,34868
395
- umap/static/umap/locale/zh_TW.Big5.json,sha256=aGzn8kP65zQ4c9Z4Cw95XtJge94LgVeC2w-72mnODaU,34868
396
- umap/static/umap/locale/zh_TW.js,sha256=MTmNcH8LLqEcnKLsormJR5IetMiyHUjE7Yg8pm8FEm0,34411
397
- umap/static/umap/locale/zh_TW.json,sha256=0aGY_OSMS6F37hscpK8EPE1KrbH7X3FpKw8tBBkZerI,34340
299
+ umap/static/umap/js/modules/ui/dialog.js,sha256=8ZpbDf4KlwquSQf8FE4GLcGerCp-MM-X-UIAiUrHDw8,6094
300
+ umap/static/umap/js/modules/ui/panel.js,sha256=N0yp5s8lQmxlG1UDfXyDec4yO147wJuctatOqkLuiIQ,4109
301
+ umap/static/umap/js/modules/ui/tooltip.js,sha256=N2UYUuTcOpkejSVCcTDu3PmEpzg8G_bHmPCGcsfYaxc,1925
302
+ umap/static/umap/locale/am_ET.js,sha256=tCtzD7VLhrQtGNt2xuGuJU9IieMsDNcfJ2SlPp0P-dU,39155
303
+ umap/static/umap/locale/am_ET.json,sha256=CrJ_8uTJJ5lCpEWHMir9pU9aZWrcpqSHQHTnj5Um648,39084
304
+ umap/static/umap/locale/ar.js,sha256=bh-bVrsNfHb0iQiNbfP6WadG_YlDQgh0jP75eMIGmT8,36369
305
+ umap/static/umap/locale/ar.json,sha256=1NCcyiicp3j9InpeX2Fsc2kvrPQ7-yb1XbRn2D-G6Lc,36304
306
+ umap/static/umap/locale/ast.js,sha256=PW2BUgkj1i7LjqxG2cAnM59OG_MSoW7hVNB1teSKRWw,35973
307
+ umap/static/umap/locale/ast.json,sha256=GXttsrZvOXo36ZqcSYkuMR5RiQCl49kCiRq6WgHLkdU,35906
308
+ umap/static/umap/locale/bg.js,sha256=6h8792Ftdrr12BOpmLaLO72KCtD6igWc9DDQKo1_Fas,38820
309
+ umap/static/umap/locale/bg.json,sha256=YXazOjoxnJatKjEVSq1sNPuxgDtdBU8maVr3TTjbkQA,38755
310
+ umap/static/umap/locale/br.js,sha256=1Sbo7VXGfO4bovXqZ7GtqWeUt1Z0coM3lZH9QoAqDK0,37989
311
+ umap/static/umap/locale/br.json,sha256=Bke1S1T5raHRNMYzZdNC8dGDagXqS-iwGp4MuqF2NMc,37924
312
+ umap/static/umap/locale/ca.js,sha256=dVU7Q-StGEtzKv5mubUUSwVddlDujEPKoE5oFxWVrzM,37728
313
+ umap/static/umap/locale/ca.json,sha256=gQmHo4B1qpMLkT21N9X-1D7Ly0rWbCXeIEIZUx0-4DA,37663
314
+ umap/static/umap/locale/cs_CZ.js,sha256=e-L16ibh7pH0td7RUFs4TOS1-ENI2eeY3340amnH_kk,38453
315
+ umap/static/umap/locale/cs_CZ.json,sha256=UyottPKrWMBi66Zd7hZh0b3CmU3_TEha8X57eCMtg5k,38382
316
+ umap/static/umap/locale/da.js,sha256=tFb_i5ccoQzb0DyoSxOj7ODietULWu4Go8ujJXbT1D0,37173
317
+ umap/static/umap/locale/da.json,sha256=KosBaVL-q9NI2tXqR-mEsmhmb24zbTn1LqU5jRlV5RY,37108
318
+ umap/static/umap/locale/de.js,sha256=nlpgtLze6Kk-vXKUUVemqoHESZXTujyocjWBBYt8YZQ,39099
319
+ umap/static/umap/locale/de.json,sha256=R1R5PECKxg9zikXzCKFcU1sjlJQfh38CxelH3b3FFTE,39034
320
+ umap/static/umap/locale/el.js,sha256=iqxyk-y8fHnoABSZkQB7j59g4-z5ohk4ZP0PpaQEZZE,53545
321
+ umap/static/umap/locale/el.json,sha256=RYpPqrw_3h7RNa_XZrnhyvUCFfiws3Fy7HRrmyCuIL4,53480
322
+ umap/static/umap/locale/en.js,sha256=85RKJUvGwEhNbHP34eruRXVOU_dhv5VS2Kr6OZs5rAg,36075
323
+ umap/static/umap/locale/en.json,sha256=XN4fgtkYsC3E67hS05MSOv5rNYttvgfCOksShEf9fnc,36010
324
+ umap/static/umap/locale/en_US.json,sha256=lLmSUPKt2h0fvIw5Nm41RsAv18pylOB_Deat0PVPgH8,35700
325
+ umap/static/umap/locale/es.js,sha256=uTlrMlcBef2Pxm4yejsBpVhyXLizR7bNJRovrnB7YJM,39415
326
+ umap/static/umap/locale/es.json,sha256=BzcGCyzs2WwB5SBAmz1frRVR9PefZHXbi_6FiJUzkjw,39350
327
+ umap/static/umap/locale/et.js,sha256=jx91Utllj9OO47saWiqLjHd89fMB7WWnntw51pqptKk,36175
328
+ umap/static/umap/locale/et.json,sha256=Zq_BEIVvMOmj0oNaexl_4QDq0uhUDd3VpT9B75SEXdE,36110
329
+ umap/static/umap/locale/eu.js,sha256=PPuuPOrMNY_RDSd4j0Mm11yTK8lod4_CoAz2hIQn_v0,38206
330
+ umap/static/umap/locale/eu.json,sha256=1oXmLNmqIx4vE4F3ylCourtCDEr0Ef1Jsgqjucrls5k,38141
331
+ umap/static/umap/locale/fa_IR.js,sha256=i3RddVc4EctyT9HExs2gbNW2JZ3Qt1BhgW8zpsitYd0,43627
332
+ umap/static/umap/locale/fa_IR.json,sha256=-sJ7q-dCSo3PLTwNa8i6jjlrUhi-0UZZjVwE9WoOWag,43556
333
+ umap/static/umap/locale/fi.js,sha256=lBAtqJhWKEl8kZ0tMTjCWbrL7bgOGSxC4L-1AvefZ4I,36778
334
+ umap/static/umap/locale/fi.json,sha256=u5s-T8XF7dFheLcPPCjkhUtlSbIJcv9sts345Lg0cxE,36713
335
+ umap/static/umap/locale/fr.js,sha256=tMH-Tnhna6XE907AgKUSHMZoMhWCm1ixqmOX3bZzlDk,39442
336
+ umap/static/umap/locale/fr.json,sha256=_0ZU7fcq_tPBgPe7Yoz36pdWMr9oots1MRizeSoYUOg,39377
337
+ umap/static/umap/locale/gl.js,sha256=t4yZy7Fuu1EC7TkW3sFU8QwdyOxzkwYjWk0booTdeNs,38498
338
+ umap/static/umap/locale/gl.json,sha256=o7xXyVc6NWoYFAk6Ne3nNToIKpWlOpRf7HIu42Kspt8,38433
339
+ umap/static/umap/locale/he.js,sha256=bSNTqPOuRr985PQAsWtRuCrxJxJolaZJr0YdpDCRTrg,38939
340
+ umap/static/umap/locale/he.json,sha256=ndEihqLyyrVOVmzRaN7vPJVAZBNeHhzIGNecS3RBhos,38874
341
+ umap/static/umap/locale/hr.js,sha256=fMjefrwFsmYY1VtYRVsjjBHNijHCw38EzMpFQVECWYk,36141
342
+ umap/static/umap/locale/hr.json,sha256=duZOEfhwNWqHRZ4dR2WPm6KBlPzUtx4Aj_pHcsZsv80,36076
343
+ umap/static/umap/locale/hu.js,sha256=TORCILk_9Zz1I0iilGEC3pUxlddV2pqLZ2XuDog95YQ,41190
344
+ umap/static/umap/locale/hu.json,sha256=oqzrZMIlVOqZ6612s_xCc019EsvoXWtM-OZ4YSsFJ2M,41125
345
+ umap/static/umap/locale/id.js,sha256=bwAkstgABrSFGy2B-cpCYLpVhD_HWmi65kv98spTFWc,35971
346
+ umap/static/umap/locale/id.json,sha256=GXttsrZvOXo36ZqcSYkuMR5RiQCl49kCiRq6WgHLkdU,35906
347
+ umap/static/umap/locale/is.js,sha256=Ad6PfpQA79VwDby3BTO7oKbVwi3uHitLEEI3-se33kE,37643
348
+ umap/static/umap/locale/is.json,sha256=Wbw1mAvAGHi4AgEzypBuHGDELmeP5JgaSwHLSr1Btko,37578
349
+ umap/static/umap/locale/it.js,sha256=fyEE0qzEjLNh85t7PDSpvT54utnqq2UuaQxbSsN7fYU,38855
350
+ umap/static/umap/locale/it.json,sha256=2oeIKBVIq4T3ohqX-5ZSMHNa0KVn0weqmKWxIY9ATho,38790
351
+ umap/static/umap/locale/ja.js,sha256=f-0nsR9qndv6mUHUGMPWBIbQO3sbF3uEiJ1okBY-O5s,38011
352
+ umap/static/umap/locale/ja.json,sha256=KvtPQVst1ZCOz2pbgTpntylGOzZkS_QO9JFYfW5vVps,37946
353
+ umap/static/umap/locale/ko.js,sha256=WjBrD4slzsHOuC7xvLPhTYd6ckmRLb0Avz9sRbQTvcE,36113
354
+ umap/static/umap/locale/ko.json,sha256=-SvMPSD6e6Gs9BVv97eXlfctHKq4fg238bakGS5tDlQ,36048
355
+ umap/static/umap/locale/lt.js,sha256=W1g3PkyH50qySacCdP5wrAqXYLzyNb6spw023k_5FHc,36746
356
+ umap/static/umap/locale/lt.json,sha256=wGhDhw_cIeVr2DEu3g_aDjUle3LpvuJv5fCSlZg-vic,36681
357
+ umap/static/umap/locale/ms.js,sha256=HRP_o4zNniljcKY5GsTTl59pRFLfbWHlc-E9X1bs3sE,37076
358
+ umap/static/umap/locale/ms.json,sha256=Mm3ZRn1UflJdurMmWSvgGjBIRsKBTzyKQI3ZodkWDuM,37011
359
+ umap/static/umap/locale/nl.js,sha256=PQZ-IxQ6_6ykU_ekwEzTWBMlv9j3dDoHq1Bz2LIU6No,38417
360
+ umap/static/umap/locale/nl.json,sha256=IQ4_usQP-g1Fw7fxHo6xXuaAIvjdaTsPA_w19M7asFc,38352
361
+ umap/static/umap/locale/no.js,sha256=074Q_cp68_yhJ-Er4ceWa8XjTQpa1aS6xZJhkS-iGZE,36155
362
+ umap/static/umap/locale/no.json,sha256=5ExHDQnzOQAccgt9GAGV0hJxQUbYA_tFWu2sIeHFvxs,36090
363
+ umap/static/umap/locale/pl.js,sha256=uesVVnV-Ngi-8aBFhaAh8eXqvmxk-bgRWT4zzGGVWXQ,37643
364
+ umap/static/umap/locale/pl.json,sha256=jZDJ0wniYIpay_JVPJmW1GNVIgCnyT8XCZsritbt6AE,37578
365
+ umap/static/umap/locale/pl_PL.json,sha256=GXttsrZvOXo36ZqcSYkuMR5RiQCl49kCiRq6WgHLkdU,35906
366
+ umap/static/umap/locale/pt.js,sha256=HaJ6HIufVaUuxCNYtMtQNhW3qOXf4E82pBt4fW0hTH8,38567
367
+ umap/static/umap/locale/pt.json,sha256=UfBEQY6Fr6MKZgw-uU5DsHqaGYJximKlKMuyL-t4uKU,38502
368
+ umap/static/umap/locale/pt_BR.js,sha256=HG13dqmHAhlf-O9zcL_T48lWdDGM_63Ty59wSCEhQio,37179
369
+ umap/static/umap/locale/pt_BR.json,sha256=O_UhS_WS4VklI1qh-YslbHakbssoizacxYXsbGGubqk,37108
370
+ umap/static/umap/locale/pt_PT.js,sha256=ubwkC5iaiE-uJbIQiTkHTXWhysDRiByIQUqYABOUVPw,38279
371
+ umap/static/umap/locale/pt_PT.json,sha256=C8BoguhIEIPFBBokqXGjEUDLqCbsZ_Z0ur1CHepKY_c,38208
372
+ umap/static/umap/locale/ro.js,sha256=4uGbQMsxCU-WFFN5s0ydBnZAFCQJQPMp1x09WZFQ9Mc,36000
373
+ umap/static/umap/locale/ro.json,sha256=YDp1U0MnibXM9Lzug1NVno7ojxDd4Q6YOo7HdNcmDcE,35935
374
+ umap/static/umap/locale/ru.js,sha256=PhbcWGM1Vsgc5CJZYQ3tI0lp0GF14AeudLWBzcr8Q70,42372
375
+ umap/static/umap/locale/ru.json,sha256=IOZLB8GJb2Ita8Q7J08pTt99QmFESrjxHJ5tVnl6bMI,42307
376
+ umap/static/umap/locale/si.js,sha256=J-kLVXnec9LsvX67PPr-K6I5qU2d5lCg6tIkRv8Nb7o,28506
377
+ umap/static/umap/locale/si.json,sha256=JkDOVn9CGlG5D4eLYsjWEUvXivEHtQGVa4w9CCduGQY,28441
378
+ umap/static/umap/locale/sk_SK.js,sha256=CV_Dl3BMXWv43z_9810nf1kYHN9Jqr2gdeqWByIeR-0,37136
379
+ umap/static/umap/locale/sk_SK.json,sha256=p4LvB_RdOWHvteHm4GjI1G7ed83e-Nnx_y9pFOIb1xQ,37065
380
+ umap/static/umap/locale/sl.js,sha256=I4igEVRYm9nG5H0hkQcVzpOwc0Y5FpQd3s817lB6pr0,37030
381
+ umap/static/umap/locale/sl.json,sha256=m0XoREh7focDetlS-PWSCeuBGIGohKPhCTnOjS53wBU,36965
382
+ umap/static/umap/locale/sr.js,sha256=u55rmQSZ2I2jcuDegdlcGZRA3Orzvj6CxJEziyJjg30,39438
383
+ umap/static/umap/locale/sr.json,sha256=s4iHlTKn4AGkKcm7ZN-OVqllaMDgErBSVbivjkrZamY,39373
384
+ umap/static/umap/locale/sv.js,sha256=Wx8g9Nt3MZPz0o-qkLo0X2tsR6-V9fJkIqxta21cusc,36970
385
+ umap/static/umap/locale/sv.json,sha256=69wA3QHmdyLdaccUsEV1BTBroKo67Q6hrHByhumiMjs,36905
386
+ umap/static/umap/locale/th_TH.js,sha256=h0A7SbCbjWmWLJlC4r-0qEKu9gqGP1BWRvhEtUgdTqE,36975
387
+ umap/static/umap/locale/th_TH.json,sha256=cqSWgrToJrxvVGI7g9b-T88Zvv4C6XggSszJmt_kLQo,36904
388
+ umap/static/umap/locale/tr.js,sha256=nVY8de_gwX8LP71v4zPtZOLPDt3N9kFKbWK3_0nas7M,37421
389
+ umap/static/umap/locale/tr.json,sha256=LpO4p1YoLmuoG__F2vAarTLwUIknUuE00RGDqj9y2bU,37356
390
+ umap/static/umap/locale/uk_UA.js,sha256=ECSpaXBEU51EpFuVKrOIOypaZSBg1Oy3EG1OPJhriGg,42025
391
+ umap/static/umap/locale/uk_UA.json,sha256=gMtyuZhbRGH6Co5em9NlIoBAjj3RaZS9l9XoMEDVPrI,41954
392
+ umap/static/umap/locale/vi.js,sha256=yASGe_lx3_yU1VOpvveU3Vf9KPttmVEkKQdSqR1DHy0,36223
393
+ umap/static/umap/locale/vi.json,sha256=qHnuWo4zrnVZ_xzGy9fLTtL-CRQqqB0LE7gI6QY-gSU,36158
394
+ umap/static/umap/locale/vi_VN.json,sha256=GXttsrZvOXo36ZqcSYkuMR5RiQCl49kCiRq6WgHLkdU,35906
395
+ umap/static/umap/locale/zh.js,sha256=uq0BY1H0XQ9IcJMnbxZMwSOvq_zrL4QvZ3pMrZNJgkE,35765
396
+ umap/static/umap/locale/zh.json,sha256=YOtLW31bh5JVlxCMNtrhB7BPG5bzGD-CUQNE_oa9XpA,35700
397
+ umap/static/umap/locale/zh_CN.json,sha256=GXttsrZvOXo36ZqcSYkuMR5RiQCl49kCiRq6WgHLkdU,35906
398
+ umap/static/umap/locale/zh_TW.Big5.json,sha256=GXttsrZvOXo36ZqcSYkuMR5RiQCl49kCiRq6WgHLkdU,35906
399
+ umap/static/umap/locale/zh_TW.js,sha256=UoXH7BefVyRU5g5qsmrUyP2UpkuqKKvaDuenIGUmebk,35544
400
+ umap/static/umap/locale/zh_TW.json,sha256=F60uJzxtzHQ0t3xIEmCvghs-0Mk9O1fuhWYm0pgdVKQ,35473
398
401
  umap/static/umap/unittests/URLs.js,sha256=wF0hfRX3NqwFAe31QGeKFwavUpNP2T8pHwXBlcpiwNo,2070
399
402
  umap/static/umap/unittests/hlc.js,sha256=GvpBaBSgfMs0Zym0_zOs2QldUOcbFNVIKweBhuwM_QI,5294
400
403
  umap/static/umap/unittests/sync.js,sha256=SRzK5N7o7iZodye53evBTZZjXG1mMm6dguV_Iyh69XQ,11096
401
- umap/static/umap/unittests/utils.js,sha256=Cj7wsVf3RIwahKeoLOnya7u4mDw7oxkWHtmO4O1Jx3c,28683
404
+ umap/static/umap/unittests/utils.js,sha256=M-aew-KLqUMBWAdrUwaYygign2RwSCpvhN6dzGXM9GA,29223
402
405
  umap/static/umap/vendors/betterknown/betterknown.mjs,sha256=dFgTX_0-k905dEgF5P9icVWeKa9twumz7ghiWOK9yC8,7915
403
406
  umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=wEHf7UslhI09j7tfzC1V9FLgTbZELDbbtGiL2x0y9vY,23051
404
407
  umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=FARwXdqk_yf3ttJmSyrJ204B9glI2YaZ2vuhaQPmhVk,15712
@@ -478,7 +481,7 @@ umap/templates/umap/about_summary.html,sha256=9_K2HxctGKjU3GWaI9Rny-kb_iLnS5lScx
478
481
  umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscxsaYA,60
479
482
  umap/templates/umap/content.html,sha256=BHtQMYOOlfQXWFJtSRV2qTnXsgjF7_IKJ7-c4iZpSo0,2379
480
483
  umap/templates/umap/content_footer.html,sha256=170C-9K0a1qkNb4m-x5Vg7bNstvHVEXueDfgPPvXk0I,1130
481
- umap/templates/umap/css.html,sha256=CxJ6L_cpbl0Vmfu_UyoiGlAgry93ews-wiP3M2Qntqw,2007
484
+ umap/templates/umap/css.html,sha256=eTVmcxBs1u8ehogjipH3sutheSJ6_Vu7ct-3cTKE9IM,2076
482
485
  umap/templates/umap/dashboard_menu.html,sha256=fQ7nLKhIAUF_ki16tR7oWwFWCmMs92iKx6gEjx5XpMo,996
483
486
  umap/templates/umap/design_system.html,sha256=3LeAtOjkvDSG2PWNeHrAo0G3AQJ7JGMMQE2-L2Plxmw,23813
484
487
  umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -486,7 +489,7 @@ umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
486
489
  umap/templates/umap/home.html,sha256=JuzDOx3-T_XyWT1Rwdy50PWvjlRjnhAXMM4-yvVUkts,890
487
490
  umap/templates/umap/js.html,sha256=kAIZtORiXnLUFDZEFAodKU12uHdx4aKVJKbK4p6R_9Y,2290
488
491
  umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
489
- umap/templates/umap/login_popup_end.html,sha256=kcENvhycpVvvIzbNasX1rcSI_67A6pttkWCxy0vHC8g,693
492
+ umap/templates/umap/login_popup_end.html,sha256=dH4UxP65p2CXPqKHFXpWLw4LmkEaQidutN_qOoq74-U,1133
490
493
  umap/templates/umap/map_detail.html,sha256=vNFIK7BhWWNiiBnMwKDPyvr0LZH9rLLqD95T_wsi5ng,1217
491
494
  umap/templates/umap/map_fragment.html,sha256=KdHT1fsIhSjH8oo27qIRn0Fw701qpcWs335ixAVav4M,158
492
495
  umap/templates/umap/map_init.html,sha256=nvjXbBPJMq7QFSSzNx_EHF9G0D5kcEIsNuqHpnuSo5c,479
@@ -503,11 +506,11 @@ umap/templates/umap/team_confirm_delete.html,sha256=hURs2wcKXl3c0PMATHqRTaoFvQuS
503
506
  umap/templates/umap/team_detail.html,sha256=GPfeqlTnyBTLrLxgiksM6XjwA5rd6SESCsjs8d-42PY,853
504
507
  umap/templates/umap/team_form.html,sha256=wwxpxGC4lno4PqNs9pOnlwQ23leKj3kxV3Pbs2UpJb0,2039
505
508
  umap/templates/umap/user_dashboard.html,sha256=4E7gafTm5oCeMekkaxhFOZJQMkdsJVqWxylIBgWb71Q,920
506
- umap/templates/umap/user_map_table.html,sha256=zehRhoyeJj-FmAq0q6nWVQRxwpXZqCJeq6mGRqL8VT0,1196
509
+ umap/templates/umap/user_map_table.html,sha256=EIuOvIUwgxtcHTc5qF3tB7lg4csGvR5cTxQ2CEpU-kA,1485
507
510
  umap/templates/umap/user_teams.html,sha256=p--dXgYw8Kjt0XTCVcFkwmw_PN2tFv98K9bYTsCdilo,1674
508
511
  umap/templates/umap/user_templates.html,sha256=MXhoGDJyUl3ngnmM5tOk_CnImaMqsZnskbRdYoQLahk,955
509
512
  umap/templates/umap/components/provider.html,sha256=lEoxBZxFscgYh3gWFtjXRs1Sc__0cFXY6k348Rxm5XI,285
510
- umap/templates/umap/components/alerts/alert.html,sha256=ZvisQkz2GfK2jxEqTosYH72N5gIK1604ATVNa_vHT7U,3564
513
+ umap/templates/umap/components/alerts/alert.html,sha256=Gj_li_68BXq-uJrxhqqavTBxWI8sVYN-ZOoBX2B0ji0,3934
511
514
  umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
512
515
  umap/templatetags/umap_tags.py,sha256=X1WL5Em08-OORFYYJACV_0_7MVoRuWIKPkYaJBw6OxE,1825
513
516
  umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -515,7 +518,7 @@ umap/tests/base.py,sha256=uXQ7xFV41xkjZznVX3hh4Q5ZyqGL4TEa9rRwLcfRxcU,5188
515
518
  umap/tests/conftest.py,sha256=KQCZanCTl1ABLIKOuyxS_cpBoXGiwjDc29jsLBiSWxY,1633
516
519
  umap/tests/settings.py,sha256=-b-RoDlZJXJ6cCFnO2gF-XL-avfHlpUuLrQk-ytgkdY,783
517
520
  umap/tests/test_clean_tilelayer.py,sha256=wGTd_AHOTmQ4QMswAyc-1_lJmQOSyhY3OahLAusEIdA,2515
518
- umap/tests/test_dashboard.py,sha256=QJa-NE_eXuFEbf-J94H8NVV6F9ed5FwtgUvO4XKrlps,3595
521
+ umap/tests/test_dashboard.py,sha256=6IXrJFkpv9fuECeOqvXhI0FEUvn9IFOkx1gqX4GMRZA,4014
519
522
  umap/tests/test_datalayer.py,sha256=-1sTYnmJksgV4jxRQUtw_jRUqaYhh0siqfJe8QfWTqs,9528
520
523
  umap/tests/test_datalayer_s3.py,sha256=le1OvJdMfOmudciECynZfoij3p_lBpclFCqC8tiXFq4,4186
521
524
  umap/tests/test_datalayer_views.py,sha256=ySOyYOvdMjyBbBeyZ6YUS0_RfH2dlovQ5luT7ZXXxuQ,23734
@@ -525,12 +528,12 @@ umap/tests/test_map.py,sha256=vrtheSMQNk45kBIcJ0QY9K7HKYee5yg4Vnp78DyaIwQ,5170
525
528
  umap/tests/test_map_views.py,sha256=SuMzw7KrbmbTELT2Qs6amhiziqTOxvFnbXYg1mJAGBs,34231
526
529
  umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
527
530
  umap/tests/test_purge_old_versions.py,sha256=_hrrV_nsRvxeqPwxjs3vOOkV6GpmzBR_DnlVm5bxTx4,3628
528
- umap/tests/test_statics.py,sha256=xKuxT8Xj5Ii7gKISuiSfDj7dpjmJ2Ierby3Lg-haZCg,1264
531
+ umap/tests/test_statics.py,sha256=k6sl68BHFMx1tvSU1PC6sBjBm1ZNB1CJfO-P0fVLnzo,1264
529
532
  umap/tests/test_switch_user.py,sha256=MzTBxcPVm8X0R4gBkBL_wntznOyEn0ixJSEiQMvaxGo,1255
530
533
  umap/tests/test_team_views.py,sha256=edmqn_tx4XQ1sEQtB7CpuJT6WwQQiUyUYu8-ESZxFcw,5615
531
534
  umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
532
- umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
533
- umap/tests/test_views.py,sha256=5-XT4tiT9FIJY6BWWY6yJCj5BFAwON5RfF6HPzz4E8s,19503
535
+ umap/tests/test_utils.py,sha256=Kcn8uXxDtjDRVrPWs_g4y7hOe-kwqOuIDNA5H94e55s,817
536
+ umap/tests/test_views.py,sha256=DjOn7HxKGReXnskWW-QrQljPBOPvQ5ebaJ5inG-EoYw,19504
534
537
  umap/tests/fixtures/categorized_highway.geojson,sha256=p7QHOd8nXi7yVq37gY6Ca8BXkjaLnDxW9Fq0Zcm3Fk4,15830
535
538
  umap/tests/fixtures/choropleth_region_chomage.geojson,sha256=mVVbYlf92Sr3wWH9ETm43FdHz1U3zjsn91HuU5H5r4Y,21325
536
539
  umap/tests/fixtures/circle.svg,sha256=P37vV2PhFPecAtY8qR3VlRuB79_wFaMeqKm2tX-2tkA,254
@@ -554,46 +557,47 @@ umap/tests/fixtures/test_upload_missing_name.json,sha256=klSMHb6laTghzU4AdIG1_p5
554
557
  umap/tests/fixtures/test_upload_non_linear_ring.json,sha256=WOR0NnJHNUUW6VKzZyIxU7WL1llnAmEVJwCWla6XOds,1525
555
558
  umap/tests/fixtures/test_upload_simple_marker.json,sha256=jH15G5PxgVO-DZb4TPxVMAi1_uzhkvZcFkVUb50CS3Q,393
556
559
  umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-mEKG4,57
557
- umap/tests/integration/conftest.py,sha256=pNIxoZ6mNclAwovFt76gzvJaXH940lYXWByf6cmJDx8,2251
560
+ umap/tests/integration/conftest.py,sha256=8d0Io2KeqaqhPY7Sn4kYB5uYIJtEx3uahIUgq9z6apA,2370
558
561
  umap/tests/integration/helpers.py,sha256=vvGX5b-DS2fMVDdeXz1lH2IleZkRHjyL7DVvatJU8Do,344
559
- umap/tests/integration/test_anonymous_owned_map.py,sha256=-j2YUPWNoEit5a_IxYl1q3fGeybvV0NW8ud4QeCa-Hg,11123
560
- umap/tests/integration/test_basics.py,sha256=Ma5HFW8O7bTJxNEXnG3U_YSD4oCzYV0vS3uc9miKA9w,4179
561
- umap/tests/integration/test_browser.py,sha256=qX4K0m5eb4teYSsJf6K2zbaVQhYFDwWZwpRsk-yPpmI,20533
562
+ umap/tests/integration/test_anonymous_owned_map.py,sha256=UmhnaI5JvDSmXiUaDTnvbK9A5Ker9kGEtShmjNT_8AE,13233
563
+ umap/tests/integration/test_basics.py,sha256=5HGgkuKa2-zsh7s9lxqsFNOW4LJhdZoHDFCdSmetDUc,5166
564
+ umap/tests/integration/test_browser.py,sha256=d3ZkL7qyZAEDo4b9u5MqhHQ3EjF7jQcoM7shl7LGStQ,21955
562
565
  umap/tests/integration/test_caption.py,sha256=9JHQvTju2W-IoV2UBrEUAH4nV2W7eKN2hJi4YcPfSPE,1843
563
566
  umap/tests/integration/test_categorized_layer.py,sha256=XCCK62fBljTEbt0EKoGsHf9hY2bCEIkyeuPxyhEGJDs,5381
564
567
  umap/tests/integration/test_choropleth.py,sha256=Lsd7tszSIua_GUeXhosB-JWk35zYN-3WKRVYI0ZrNSM,3777
565
568
  umap/tests/integration/test_circles_layer.py,sha256=PjYGmCvAd9qDnldnbiw6nomJs1YgUdX181a9xrWSUYE,2396
566
569
  umap/tests/integration/test_cluster.py,sha256=Ltkk0KUeUtU59lbNwZeoTyaGSYWto5k-rS6_SZ_QnGc,5457
567
- umap/tests/integration/test_conditional_rules.py,sha256=D1vs3-fcxmLvlKK17Xf0i6dDkOK1UQWqBBFKodxfm0c,15657
570
+ umap/tests/integration/test_conditional_rules.py,sha256=MUNAL4usehmrZqZRrjzXjp06unoqdSysttsheZ2DgG8,17524
568
571
  umap/tests/integration/test_dashboard.py,sha256=LClLBc8lgDM1-NGhkvUSUMLmMuKt3sR1ubt2Eo-Iq7A,1550
569
572
  umap/tests/integration/test_datalayer.py,sha256=tjerFu7npF3bQ8L8VOHWjdFJrKU22rGjEqSv2-fj-bY,5525
570
- umap/tests/integration/test_draw_polygon.py,sha256=WNKXcxMqlTmwI0Yro_PbdpTi-M4gZNeIVa-fSXpS6rE,25298
571
- umap/tests/integration/test_draw_polyline.py,sha256=RgivhjEzjHVE6niPG5uAxJjtmEVD11ftuU4Tb47bXh8,14717
573
+ umap/tests/integration/test_draw_polygon.py,sha256=t5DCoksF-ErcAlZtXPU-xBbVs529N8CCHXs1F2LJ-jY,25690
574
+ umap/tests/integration/test_draw_polyline.py,sha256=BTvF5W3jFMLfnY60RCXatJ9MV8vNnPqzHxtOOfkbjS8,15175
572
575
  umap/tests/integration/test_draw_route.py,sha256=hxa_uVqHLLEbbSsEIMsPsq5fMCNoKWY7cRCpMwqudmM,7276
573
576
  umap/tests/integration/test_edit_datalayer.py,sha256=l5DwzpWXsy80HxMKrF7z7HZPZi1RtFluONpjDrUBqb8,10224
574
577
  umap/tests/integration/test_edit_map.py,sha256=0TXwrjgSKok7nxa-wy7WjVb8-lG0-zfS8s-f9klmqOQ,8784
575
- umap/tests/integration/test_edit_marker.py,sha256=JwLP8bngvY0RsOBAMuXBoZ_LsEO1nw_m4IhoxFgHXuY,5777
578
+ umap/tests/integration/test_edit_marker.py,sha256=INj_7CYZxYN7usJbMn2xqIRKZRYnaurlzqr1V3dxdzY,5774
576
579
  umap/tests/integration/test_edit_polygon.py,sha256=l2CxnTnblRYUiiBV3ERwPkZ-VQTEWzFSFWhAzTF9BgA,5252
577
- umap/tests/integration/test_export_map.py,sha256=tpn37iZOwi7rKRqxRS41CiREagwLdTos8DeH2vWXpYs,15047
578
- umap/tests/integration/test_facets_browser.py,sha256=nMspm4fR-e-qaO6Dn-N7ZVJ3AK_-jOQ_4fhJ72LrahE,10676
580
+ umap/tests/integration/test_export_map.py,sha256=2Sijh3KUE6cqK0tDNMnHayXk5Ei69i0ARLqymBUiiWM,15957
579
581
  umap/tests/integration/test_features_id_generation.py,sha256=mGoLIKV3xTc59XSnNPbAgHeG6RjMYwhmaVEmcqSnv-4,1463
582
+ umap/tests/integration/test_fields.py,sha256=Rx197Q49-XGUPQ9Jakcp3pkAf2Q9Gtxs6wmFlz5pBB8,18352
583
+ umap/tests/integration/test_filters.py,sha256=0iMdhG1R0Jv4MVKtbmelaxEK6T81oC4CeoDInM2LDNw,24292
580
584
  umap/tests/integration/test_heatmap.py,sha256=N4CH5cRrI8tNsCOqQAqhQR2eKV0bHV2uwF5apml_DCs,1627
581
- umap/tests/integration/test_iframe.py,sha256=CQ3AdjqLjaI0JKFZ4lnBWedtmvgJ5G6nnGZESoSBqHY,898
582
- umap/tests/integration/test_import.py,sha256=jJ5A4nhK8heE5q0uvsw2Jkh9eGyo7W_e7NrfioqachE,43593
585
+ umap/tests/integration/test_iframe.py,sha256=fwwX9QVBR_zaMHAvfKQSiNGzFJ4Lu3BJlH8asz1nIUc,901
586
+ umap/tests/integration/test_import.py,sha256=0uNs3LsN4Aw1fyVwtyOhDtJgvAdahXOxWXUhxb_CxHQ,44512
583
587
  umap/tests/integration/test_map.py,sha256=ev-rbQteyL8d9bCgNThNqyZCMKiF5umVhCj9eCOxMNg,8761
584
588
  umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
585
- umap/tests/integration/test_map_preview.py,sha256=y9ed3T3BCkwK1eBr8dhlGwQY6lMAstP2eyDeL9SDzro,3540
589
+ umap/tests/integration/test_map_preview.py,sha256=lmHiF7lk_2qkgXlhTHUkAWrUEEGzzbi80_QR7Xuqwho,3541
586
590
  umap/tests/integration/test_optimistic_merge.py,sha256=N1FM0TiaMDd4Ldbzvq7kZRMLQeF3tfRNkg5TjesvQFw,13344
587
591
  umap/tests/integration/test_owned_map.py,sha256=SSOEpqsaBtCCVhyiyjBFF9dEDvbpSh0Lh0n-WTvFEO4,10796
588
- umap/tests/integration/test_picto.py,sha256=xJMvtTuUQ-JTKpC7SL86cUOe7OspAYAflA0q8ixLk20,9340
589
- umap/tests/integration/test_popup.py,sha256=kZy6JAJIs2R6tnPbGEzgz_yX76yMbEAfPqCa6c9P670,1445
592
+ umap/tests/integration/test_picto.py,sha256=XNUmBElJDsI884UqusNxKLHKKqu_RQwtRg4hZwp6V3k,9340
593
+ umap/tests/integration/test_popup.py,sha256=Bnm_wwr8GqZOhiyTL9mX21eMC0AtXyYkO5Xes8w1mS4,2483
590
594
  umap/tests/integration/test_querystring.py,sha256=i6fQEAcNiD2SADv0wRQewGVA4CWrmOOpqnZGOnENOtg,2754
591
- umap/tests/integration/test_remote_data.py,sha256=5HP7nrOpLvg7fW0y3aIGK6pK7l_MBKOjydclfCLWJqw,2273
592
- umap/tests/integration/test_save.py,sha256=Ia3BsCVLPqImCyjNZ_5qvtMXMq130Y5sD_Ym1xDpAiU,1260
593
- umap/tests/integration/test_share.py,sha256=OwJ7nkb1mOuymsGFi6sRS2XE4x-M-XyDWO6IjefspYE,1813
595
+ umap/tests/integration/test_remote_data.py,sha256=ZMdeG-LpnqbM9fMyN1V1hzwsb_gqz9O0QtTnqUfMc3c,4283
596
+ umap/tests/integration/test_save.py,sha256=N6pzFXgFekkSMfZ-oetg2HhTmrmBiqmVnUCoXPoWNnc,1261
597
+ umap/tests/integration/test_share.py,sha256=LOwOV0v3viFcsS4r1QQKDwX8-rXmFZvJL8tC75sr0Uk,1809
594
598
  umap/tests/integration/test_slideshow.py,sha256=yhy75YYpfTKpkGK7xGjJDJoqHtN6p2LG-O4krVE1Yks,1907
595
599
  umap/tests/integration/test_star.py,sha256=qJUvFij0XK0PcWJnbe4w8nTvTjbJdJ5X-2JjHy6DqEw,973
596
- umap/tests/integration/test_tableeditor.py,sha256=2mlmxsleL1Jl_OcPrdf1zn3y0GvhurPw6MG1sLnuuis,10289
600
+ umap/tests/integration/test_tableeditor.py,sha256=7XDCgpHMMhz5eLMySWeVmlf-u8B14qAkFh4-nCUk1nA,11619
597
601
  umap/tests/integration/test_team.py,sha256=LVuj5Dhz27cqk6ieEbukGsdy9J2FP5aQmcMex_xevIg,1594
598
602
  umap/tests/integration/test_templates.py,sha256=QtGZpYmA1Epwp9olYAbl7Mqncs2YSXutqEVHV3-nlkU,1768
599
603
  umap/tests/integration/test_tilelayer.py,sha256=rBI3bm4hCpH87rcFvuc5H8yu1D9FQBZMNbqqJzpdI24,5302
@@ -601,9 +605,9 @@ umap/tests/integration/test_undo_redo.py,sha256=1wSb43fI3ZpJcegW9AaQZ7a2BcuBSfkM
601
605
  umap/tests/integration/test_view_marker.py,sha256=NFCwNez__E_WsE1DuW5RuB0HVKDP4CQMXGhJw0LfnFs,6900
602
606
  umap/tests/integration/test_view_polygon.py,sha256=NMJC6Nt9VpQ8FIU9Pqq2OspHv49xsWlsoXCr8iBa0VA,2060
603
607
  umap/tests/integration/test_view_polyline.py,sha256=aJoXKmLhJaN0yhPdDCVskZNGx3q3mLDkjVPhZ30cadA,13959
604
- umap/tests/integration/test_websocket_sync.py,sha256=n3Nd9cDdYMfJjMIkGUidqeceAW2loM8nx17Bh57m0fo,28341
605
- umap_project-3.3.6.dist-info/METADATA,sha256=I6p1JERct-0XUpF8rTBHHFqaC4bTXvZdsIKlOm1tbGY,5747
606
- umap_project-3.3.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
607
- umap_project-3.3.6.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
608
- umap_project-3.3.6.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
609
- umap_project-3.3.6.dist-info/RECORD,,
608
+ umap/tests/integration/test_websocket_sync.py,sha256=IoSVKXWvl98g-uj6Lx3ezvzv_XhgZ0Uf0cua4sshDwI,29776
609
+ umap_project-3.4.0.dist-info/METADATA,sha256=wbtv1UYWQo61J0dNzaoocaAs6OVGiRE0PFme7BWPZhY,5747
610
+ umap_project-3.4.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
611
+ umap_project-3.4.0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
612
+ umap_project-3.4.0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
613
+ umap_project-3.4.0.dist-info/RECORD,,