@alisaitteke/seatmap-canvas 2.1.0 → 2.4.1

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 (203) hide show
  1. package/CHANGELOG.md +5 -1
  2. package/LICENSE +1 -1
  3. package/README.md +18 -10
  4. package/dist/cjs/seatmap.canvas.css +151 -0
  5. package/dist/cjs/seatmap.canvas.js +40 -0
  6. package/dist/cjs/seatmap.canvas.js.map +1 -0
  7. package/dist/cjs/types/canvas.index.browser.d.ts +2 -0
  8. package/dist/cjs/types/canvas.index.d.ts +23 -0
  9. package/dist/cjs/types/config.d.ts +3 -0
  10. package/dist/cjs/types/decorators/dom.d.ts +8 -0
  11. package/dist/cjs/types/decorators/index.d.ts +1 -0
  12. package/dist/cjs/types/dev.tools.d.ts +6 -0
  13. package/{src/lib/enums/global.ts → dist/cjs/types/enums/global.d.ts} +6 -27
  14. package/dist/cjs/types/models/block.model.d.ts +29 -0
  15. package/dist/cjs/types/models/coordinate.model.d.ts +7 -0
  16. package/dist/cjs/types/models/data.model.d.ts +26 -0
  17. package/dist/cjs/types/models/defaults.model.d.ts +32 -0
  18. package/dist/cjs/types/models/global.model.d.ts +18 -0
  19. package/dist/cjs/types/models/label.model.d.ts +9 -0
  20. package/dist/cjs/types/models/legend.model.d.ts +8 -0
  21. package/dist/cjs/types/models/model.base.d.ts +5 -0
  22. package/dist/cjs/types/models/seat.model.d.ts +40 -0
  23. package/dist/cjs/types/models/styles/block.style.d.ts +7 -0
  24. package/dist/cjs/types/models/styles/label.style.d.ts +6 -0
  25. package/dist/cjs/types/models/styles/legend.style.d.ts +6 -0
  26. package/dist/cjs/types/models/styles/seat.style.d.ts +12 -0
  27. package/dist/cjs/types/models/styles/tooltip.style.d.ts +7 -0
  28. package/dist/cjs/types/svg/event.manager.d.ts +12 -0
  29. package/dist/cjs/types/svg/legend/legend.circle.d.ts +7 -0
  30. package/dist/cjs/types/svg/legend/legend.item.d.ts +13 -0
  31. package/dist/cjs/types/svg/legend/legend.title.d.ts +7 -0
  32. package/dist/cjs/types/svg/legend.d.ts +8 -0
  33. package/dist/cjs/types/svg/stage/blocks/block-item/block-item.bounds.d.ts +12 -0
  34. package/dist/cjs/types/svg/stage/blocks/block-item/block-item.index.d.ts +23 -0
  35. package/dist/cjs/types/svg/stage/blocks/block-item/block-item.info.index.d.ts +11 -0
  36. package/dist/cjs/types/svg/stage/blocks/block-item/block-item.labels.index.d.ts +11 -0
  37. package/dist/cjs/types/svg/stage/blocks/block-item/block-item.mask.d.ts +12 -0
  38. package/dist/cjs/types/svg/stage/blocks/block-item/block-item.seats.index.d.ts +15 -0
  39. package/dist/cjs/types/svg/stage/blocks/block-item/bound/bound-item.index.d.ts +12 -0
  40. package/dist/cjs/types/svg/stage/blocks/block-item/info/title.d.ts +7 -0
  41. package/dist/cjs/types/svg/stage/blocks/block-item/label/label-item.circle.d.ts +7 -0
  42. package/dist/cjs/types/svg/stage/blocks/block-item/label/label-item.index.d.ts +13 -0
  43. package/dist/cjs/types/svg/stage/blocks/block-item/label/label-item.title.d.ts +7 -0
  44. package/dist/cjs/types/svg/stage/blocks/block-item/seat/seat-item.check.d.ts +10 -0
  45. package/dist/cjs/types/svg/stage/blocks/block-item/seat/seat-item.circle.d.ts +7 -0
  46. package/dist/cjs/types/svg/stage/blocks/block-item/seat/seat-item.index.d.ts +28 -0
  47. package/dist/cjs/types/svg/stage/blocks/block-item/seat/seat-item.title.d.ts +7 -0
  48. package/dist/cjs/types/svg/stage/blocks/blocks.index.d.ts +13 -0
  49. package/dist/cjs/types/svg/stage/blocks.search-circle.d.ts +12 -0
  50. package/dist/cjs/types/svg/stage/multi-select/rect.d.ts +7 -0
  51. package/dist/cjs/types/svg/stage/multi-select.d.ts +13 -0
  52. package/dist/cjs/types/svg/stage/search-circle/circle.d.ts +7 -0
  53. package/dist/cjs/types/svg/stage/stage.index.d.ts +11 -0
  54. package/dist/cjs/types/svg/svg.base.d.ts +35 -0
  55. package/dist/cjs/types/svg/svg.index.d.ts +16 -0
  56. package/dist/cjs/types/svg/tooltip/rect.d.ts +8 -0
  57. package/dist/cjs/types/svg/tooltip/title.d.ts +10 -0
  58. package/dist/cjs/types/svg/tooltip.d.ts +15 -0
  59. package/dist/cjs/types/svg/zoom-out.bg.d.ts +7 -0
  60. package/dist/cjs/types/svg/zoom.manager.d.ts +41 -0
  61. package/dist/cjs/types/window.manager.d.ts +9 -0
  62. package/dist/dependencies.txt +849 -0
  63. package/dist/esm/seatmap.canvas.css +151 -0
  64. package/dist/esm/seatmap.canvas.js +16 -0
  65. package/dist/esm/seatmap.canvas.js.map +1 -0
  66. package/dist/esm/types/canvas.index.browser.d.ts +2 -0
  67. package/dist/esm/types/canvas.index.d.ts +23 -0
  68. package/dist/esm/types/config.d.ts +3 -0
  69. package/dist/esm/types/decorators/dom.d.ts +8 -0
  70. package/dist/esm/types/decorators/index.d.ts +1 -0
  71. package/dist/esm/types/dev.tools.d.ts +6 -0
  72. package/dist/esm/types/enums/global.d.ts +46 -0
  73. package/dist/esm/types/models/block.model.d.ts +29 -0
  74. package/dist/esm/types/models/coordinate.model.d.ts +7 -0
  75. package/dist/esm/types/models/data.model.d.ts +26 -0
  76. package/dist/esm/types/models/defaults.model.d.ts +32 -0
  77. package/dist/esm/types/models/global.model.d.ts +18 -0
  78. package/dist/esm/types/models/label.model.d.ts +9 -0
  79. package/dist/esm/types/models/legend.model.d.ts +8 -0
  80. package/dist/esm/types/models/model.base.d.ts +5 -0
  81. package/dist/esm/types/models/seat.model.d.ts +40 -0
  82. package/dist/esm/types/models/styles/block.style.d.ts +7 -0
  83. package/dist/esm/types/models/styles/label.style.d.ts +6 -0
  84. package/dist/esm/types/models/styles/legend.style.d.ts +6 -0
  85. package/dist/esm/types/models/styles/seat.style.d.ts +12 -0
  86. package/dist/esm/types/models/styles/tooltip.style.d.ts +7 -0
  87. package/dist/esm/types/svg/event.manager.d.ts +12 -0
  88. package/dist/esm/types/svg/legend/legend.circle.d.ts +7 -0
  89. package/dist/esm/types/svg/legend/legend.item.d.ts +13 -0
  90. package/dist/esm/types/svg/legend/legend.title.d.ts +7 -0
  91. package/dist/esm/types/svg/legend.d.ts +8 -0
  92. package/dist/esm/types/svg/stage/blocks/block-item/block-item.bounds.d.ts +12 -0
  93. package/dist/esm/types/svg/stage/blocks/block-item/block-item.index.d.ts +23 -0
  94. package/dist/esm/types/svg/stage/blocks/block-item/block-item.info.index.d.ts +11 -0
  95. package/dist/esm/types/svg/stage/blocks/block-item/block-item.labels.index.d.ts +11 -0
  96. package/dist/esm/types/svg/stage/blocks/block-item/block-item.mask.d.ts +12 -0
  97. package/dist/esm/types/svg/stage/blocks/block-item/block-item.seats.index.d.ts +15 -0
  98. package/dist/esm/types/svg/stage/blocks/block-item/bound/bound-item.index.d.ts +12 -0
  99. package/dist/esm/types/svg/stage/blocks/block-item/info/title.d.ts +7 -0
  100. package/dist/esm/types/svg/stage/blocks/block-item/label/label-item.circle.d.ts +7 -0
  101. package/dist/esm/types/svg/stage/blocks/block-item/label/label-item.index.d.ts +13 -0
  102. package/dist/esm/types/svg/stage/blocks/block-item/label/label-item.title.d.ts +7 -0
  103. package/dist/esm/types/svg/stage/blocks/block-item/seat/seat-item.check.d.ts +10 -0
  104. package/dist/esm/types/svg/stage/blocks/block-item/seat/seat-item.circle.d.ts +7 -0
  105. package/dist/esm/types/svg/stage/blocks/block-item/seat/seat-item.index.d.ts +28 -0
  106. package/dist/esm/types/svg/stage/blocks/block-item/seat/seat-item.title.d.ts +7 -0
  107. package/dist/esm/types/svg/stage/blocks/blocks.index.d.ts +13 -0
  108. package/dist/esm/types/svg/stage/blocks.search-circle.d.ts +12 -0
  109. package/dist/esm/types/svg/stage/multi-select/rect.d.ts +7 -0
  110. package/dist/esm/types/svg/stage/multi-select.d.ts +13 -0
  111. package/dist/esm/types/svg/stage/search-circle/circle.d.ts +7 -0
  112. package/dist/esm/types/svg/stage/stage.index.d.ts +11 -0
  113. package/dist/esm/types/svg/svg.base.d.ts +35 -0
  114. package/dist/esm/types/svg/svg.index.d.ts +16 -0
  115. package/dist/esm/types/svg/tooltip/rect.d.ts +8 -0
  116. package/dist/esm/types/svg/tooltip/title.d.ts +10 -0
  117. package/dist/esm/types/svg/tooltip.d.ts +15 -0
  118. package/dist/esm/types/svg/zoom-out.bg.d.ts +7 -0
  119. package/dist/esm/types/svg/zoom.manager.d.ts +41 -0
  120. package/dist/esm/types/window.manager.d.ts +9 -0
  121. package/dist/types.d.ts +533 -0
  122. package/package.json +25 -22
  123. package/.eslintrc.json +0 -15
  124. package/.github/FUNDING.yml +0 -4
  125. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -38
  126. package/.github/ISSUE_TEMPLATE/feature_request.md +0 -20
  127. package/.github/workflows/codeql-analysis.yml +0 -29
  128. package/.github/workflows/npm-publish-packages.yml +0 -35
  129. package/.github/workflows/publish.yml +0 -103
  130. package/.github/workflows/webpack.yml +0 -22
  131. package/.opencommitignore +0 -4
  132. package/AUTHORS +0 -3
  133. package/SECURITY.md +0 -21
  134. package/_config.yml +0 -1
  135. package/assets/banner_ui.png +0 -0
  136. package/assets/bn.jpg +0 -0
  137. package/assets/logo.jpg +0 -0
  138. package/assets/logo_small.jpg +0 -0
  139. package/assets/zoom_out.svg +0 -11
  140. package/cog.toml +0 -19
  141. package/dist/seatmap.canvas.2.0.1-0.css +0 -1
  142. package/dist/seatmap.canvas.2.0.1-0.js +0 -2
  143. package/dist/seatmap.canvas.2.0.1-0.js.LICENSE.txt +0 -14
  144. package/examples/basic/bootstrap.min.css +0 -7
  145. package/examples/basic/index.html +0 -201
  146. package/examples/basic/jquery.min.js +0 -2
  147. package/examples/data/data.json +0 -70007
  148. package/examples/data/small.json +0 -1307
  149. package/examples/data/tiny.json +0 -119
  150. package/examples/old/index.html +0 -262
  151. package/src/lib/canvas.index.ts +0 -122
  152. package/src/lib/config.ts +0 -11
  153. package/src/lib/decorators/dom.ts +0 -40
  154. package/src/lib/decorators/index.ts +0 -6
  155. package/src/lib/dev.tools.ts +0 -18
  156. package/src/lib/models/block.model.ts +0 -170
  157. package/src/lib/models/coordinate.model.ts +0 -43
  158. package/src/lib/models/data.model.ts +0 -105
  159. package/src/lib/models/defaults.model.ts +0 -125
  160. package/src/lib/models/global.model.ts +0 -24
  161. package/src/lib/models/label.model.ts +0 -58
  162. package/src/lib/models/legend.model.ts +0 -56
  163. package/src/lib/models/model.base.ts +0 -32
  164. package/src/lib/models/seat.model.ts +0 -182
  165. package/src/lib/svg/event.manager.ts +0 -56
  166. package/src/lib/svg/legend/legend.circle.ts +0 -28
  167. package/src/lib/svg/legend/legend.item.ts +0 -50
  168. package/src/lib/svg/legend/legend.title.ts +0 -27
  169. package/src/lib/svg/legend.ts +0 -55
  170. package/src/lib/svg/stage/blocks/block-item/block-item.bounds.ts +0 -51
  171. package/src/lib/svg/stage/blocks/block-item/block-item.index.ts +0 -173
  172. package/src/lib/svg/stage/blocks/block-item/block-item.info.index.ts +0 -38
  173. package/src/lib/svg/stage/blocks/block-item/block-item.labels.index.ts +0 -41
  174. package/src/lib/svg/stage/blocks/block-item/block-item.mask.ts +0 -67
  175. package/src/lib/svg/stage/blocks/block-item/block-item.seats.index.ts +0 -81
  176. package/src/lib/svg/stage/blocks/block-item/bound/bound-item.index.ts +0 -43
  177. package/src/lib/svg/stage/blocks/block-item/info/title.ts +0 -30
  178. package/src/lib/svg/stage/blocks/block-item/label/label-item.circle.ts +0 -27
  179. package/src/lib/svg/stage/blocks/block-item/label/label-item.index.ts +0 -46
  180. package/src/lib/svg/stage/blocks/block-item/label/label-item.title.ts +0 -27
  181. package/src/lib/svg/stage/blocks/block-item/seat/seat-item.check.ts +0 -45
  182. package/src/lib/svg/stage/blocks/block-item/seat/seat-item.circle.ts +0 -30
  183. package/src/lib/svg/stage/blocks/block-item/seat/seat-item.index.ts +0 -159
  184. package/src/lib/svg/stage/blocks/block-item/seat/seat-item.title.ts +0 -27
  185. package/src/lib/svg/stage/blocks/blocks.index.ts +0 -68
  186. package/src/lib/svg/stage/blocks.search-circle.ts +0 -86
  187. package/src/lib/svg/stage/multi-select/rect.ts +0 -36
  188. package/src/lib/svg/stage/multi-select.ts +0 -107
  189. package/src/lib/svg/stage/search-circle/circle.ts +0 -37
  190. package/src/lib/svg/stage/stage.index.ts +0 -41
  191. package/src/lib/svg/svg.base.ts +0 -217
  192. package/src/lib/svg/svg.index.ts +0 -76
  193. package/src/lib/svg/tooltip/rect.ts +0 -66
  194. package/src/lib/svg/tooltip/title.ts +0 -57
  195. package/src/lib/svg/tooltip.ts +0 -92
  196. package/src/lib/svg/zoom-out.bg.ts +0 -35
  197. package/src/lib/svg/zoom.manager.ts +0 -440
  198. package/src/lib/window.manager.ts +0 -40
  199. package/src/scss/lib.scss +0 -10
  200. package/src/scss/style.scss +0 -221
  201. package/tsconfig.json +0 -28
  202. package/webpack.environments/development.js +0 -58
  203. package/webpack.environments/production.js +0 -52
@@ -0,0 +1,849 @@
1
+ Name: d3-selection
2
+ Version: 1.4.2
3
+ License: BSD-3-Clause
4
+ Private: false
5
+ Description: Data-driven DOM manipulation: select elements and join them to data.
6
+ Repository: https://github.com/d3/d3-selection.git
7
+ Homepage: https://d3js.org/d3-selection/
8
+ Author: Mike Bostock (https://bost.ocks.org/mike)
9
+ License Copyright:
10
+ ===
11
+
12
+ Copyright (c) 2010-2018, Michael Bostock
13
+ All rights reserved.
14
+
15
+ Redistribution and use in source and binary forms, with or without
16
+ modification, are permitted provided that the following conditions are met:
17
+
18
+ * Redistributions of source code must retain the above copyright notice, this
19
+ list of conditions and the following disclaimer.
20
+
21
+ * Redistributions in binary form must reproduce the above copyright notice,
22
+ this list of conditions and the following disclaimer in the documentation
23
+ and/or other materials provided with the distribution.
24
+
25
+ * The name Michael Bostock may not be used to endorse or promote products
26
+ derived from this software without specific prior written permission.
27
+
28
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
29
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
31
+ DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT,
32
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
33
+ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
35
+ OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
36
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
37
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38
+
39
+
40
+ ---
41
+
42
+ Name: tslib
43
+ Version: 1.14.1
44
+ License: 0BSD
45
+ Private: false
46
+ Description: Runtime library for TypeScript helper functions
47
+ Repository: https://github.com/Microsoft/tslib.git
48
+ Homepage: https://www.typescriptlang.org/
49
+ Author: Microsoft Corp.
50
+ License Copyright:
51
+ ===
52
+
53
+ Copyright (c) Microsoft Corporation.
54
+
55
+ Permission to use, copy, modify, and/or distribute this software for any
56
+ purpose with or without fee is hereby granted.
57
+
58
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
59
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
60
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
61
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
62
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
63
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
64
+ PERFORMANCE OF THIS SOFTWARE.
65
+
66
+ ---
67
+
68
+ Name: d3-polygon
69
+ Version: 1.0.6
70
+ License: BSD-3-Clause
71
+ Private: false
72
+ Description: Operations for two-dimensional polygons.
73
+ Repository: https://github.com/d3/d3-polygon.git
74
+ Homepage: https://d3js.org/d3-polygon/
75
+ Author: Mike Bostock (http://bost.ocks.org/mike)
76
+ License Copyright:
77
+ ===
78
+
79
+ Copyright 2010-2016 Mike Bostock
80
+ All rights reserved.
81
+
82
+ Redistribution and use in source and binary forms, with or without modification,
83
+ are permitted provided that the following conditions are met:
84
+
85
+ * Redistributions of source code must retain the above copyright notice, this
86
+ list of conditions and the following disclaimer.
87
+
88
+ * Redistributions in binary form must reproduce the above copyright notice,
89
+ this list of conditions and the following disclaimer in the documentation
90
+ and/or other materials provided with the distribution.
91
+
92
+ * Neither the name of the author nor the names of contributors may be used to
93
+ endorse or promote products derived from this software without specific prior
94
+ written permission.
95
+
96
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
97
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
98
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
99
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
100
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
101
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
102
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
103
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
104
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
105
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
106
+
107
+
108
+ ---
109
+
110
+ Name: reflect-metadata
111
+ Version: 0.1.14
112
+ License: Apache-2.0
113
+ Private: false
114
+ Description: Polyfill for Metadata Reflection API
115
+ Repository: https://github.com/rbuckton/reflect-metadata.git
116
+ Homepage: http://rbuckton.github.io/reflect-metadata
117
+ Author: Ron Buckton <ron.buckton@microsoft.com> (http://github.com/rbuckton)
118
+ License Copyright:
119
+ ===
120
+
121
+ Apache License
122
+
123
+ Version 2.0, January 2004
124
+
125
+ http://www.apache.org/licenses/
126
+
127
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
128
+
129
+ 1. Definitions.
130
+
131
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
132
+
133
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
134
+
135
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
136
+
137
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
138
+
139
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
140
+
141
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
142
+
143
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
144
+
145
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
146
+
147
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
148
+
149
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
150
+
151
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
152
+
153
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
154
+
155
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
156
+
157
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
158
+
159
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
160
+
161
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
162
+
163
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
164
+
165
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
166
+
167
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
168
+
169
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
170
+
171
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
172
+
173
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
174
+
175
+ END OF TERMS AND CONDITIONS
176
+
177
+ ---
178
+
179
+ Name: d3-path
180
+ Version: 1.0.9
181
+ License: BSD-3-Clause
182
+ Private: false
183
+ Description: Serialize Canvas path commands to SVG.
184
+ Repository: https://github.com/d3/d3-path.git
185
+ Homepage: https://d3js.org/d3-path/
186
+ Author: Mike Bostock (http://bost.ocks.org/mike)
187
+ License Copyright:
188
+ ===
189
+
190
+ Copyright 2015-2016 Mike Bostock
191
+ All rights reserved.
192
+
193
+ Redistribution and use in source and binary forms, with or without modification,
194
+ are permitted provided that the following conditions are met:
195
+
196
+ * Redistributions of source code must retain the above copyright notice, this
197
+ list of conditions and the following disclaimer.
198
+
199
+ * Redistributions in binary form must reproduce the above copyright notice,
200
+ this list of conditions and the following disclaimer in the documentation
201
+ and/or other materials provided with the distribution.
202
+
203
+ * Neither the name of the author nor the names of contributors may be used to
204
+ endorse or promote products derived from this software without specific prior
205
+ written permission.
206
+
207
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
208
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
209
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
210
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
211
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
212
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
213
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
214
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
215
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
216
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
217
+
218
+
219
+ ---
220
+
221
+ Name: d3-shape
222
+ Version: 1.3.7
223
+ License: BSD-3-Clause
224
+ Private: false
225
+ Description: Graphical primitives for visualization, such as lines and areas.
226
+ Repository: https://github.com/d3/d3-shape.git
227
+ Homepage: https://d3js.org/d3-shape/
228
+ Author: Mike Bostock (http://bost.ocks.org/mike)
229
+ License Copyright:
230
+ ===
231
+
232
+ Copyright 2010-2015 Mike Bostock
233
+ All rights reserved.
234
+
235
+ Redistribution and use in source and binary forms, with or without modification,
236
+ are permitted provided that the following conditions are met:
237
+
238
+ * Redistributions of source code must retain the above copyright notice, this
239
+ list of conditions and the following disclaimer.
240
+
241
+ * Redistributions in binary form must reproduce the above copyright notice,
242
+ this list of conditions and the following disclaimer in the documentation
243
+ and/or other materials provided with the distribution.
244
+
245
+ * Neither the name of the author nor the names of contributors may be used to
246
+ endorse or promote products derived from this software without specific prior
247
+ written permission.
248
+
249
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
250
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
251
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
252
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
253
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
254
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
255
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
256
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
257
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
258
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
259
+
260
+
261
+ ---
262
+
263
+ Name: d3-dispatch
264
+ Version: 1.0.6
265
+ License: BSD-3-Clause
266
+ Private: false
267
+ Description: Register named callbacks and call them with arguments.
268
+ Repository: https://github.com/d3/d3-dispatch.git
269
+ Homepage: https://d3js.org/d3-dispatch/
270
+ Author: Mike Bostock (http://bost.ocks.org/mike)
271
+ License Copyright:
272
+ ===
273
+
274
+ Copyright 2010-2016 Mike Bostock
275
+ All rights reserved.
276
+
277
+ Redistribution and use in source and binary forms, with or without modification,
278
+ are permitted provided that the following conditions are met:
279
+
280
+ * Redistributions of source code must retain the above copyright notice, this
281
+ list of conditions and the following disclaimer.
282
+
283
+ * Redistributions in binary form must reproduce the above copyright notice,
284
+ this list of conditions and the following disclaimer in the documentation
285
+ and/or other materials provided with the distribution.
286
+
287
+ * Neither the name of the author nor the names of contributors may be used to
288
+ endorse or promote products derived from this software without specific prior
289
+ written permission.
290
+
291
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
292
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
293
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
294
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
295
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
296
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
297
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
298
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
299
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
300
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
301
+
302
+
303
+ ---
304
+
305
+ Name: d3-drag
306
+ Version: 1.2.5
307
+ License: BSD-3-Clause
308
+ Private: false
309
+ Description: Drag and drop SVG, HTML or Canvas using mouse or touch input.
310
+ Repository: https://github.com/d3/d3-drag.git
311
+ Homepage: https://d3js.org/d3-drag/
312
+ Author: Mike Bostock (http://bost.ocks.org/mike)
313
+ License Copyright:
314
+ ===
315
+
316
+ Copyright 2010-2016 Mike Bostock
317
+ All rights reserved.
318
+
319
+ Redistribution and use in source and binary forms, with or without modification,
320
+ are permitted provided that the following conditions are met:
321
+
322
+ * Redistributions of source code must retain the above copyright notice, this
323
+ list of conditions and the following disclaimer.
324
+
325
+ * Redistributions in binary form must reproduce the above copyright notice,
326
+ this list of conditions and the following disclaimer in the documentation
327
+ and/or other materials provided with the distribution.
328
+
329
+ * Neither the name of the author nor the names of contributors may be used to
330
+ endorse or promote products derived from this software without specific prior
331
+ written permission.
332
+
333
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
334
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
335
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
336
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
337
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
338
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
339
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
340
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
341
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
342
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
343
+
344
+
345
+ ---
346
+
347
+ Name: d3-color
348
+ Version: 1.4.1
349
+ License: BSD-3-Clause
350
+ Private: false
351
+ Description: Color spaces! RGB, HSL, Cubehelix, Lab and HCL (Lch).
352
+ Repository: https://github.com/d3/d3-color.git
353
+ Homepage: https://d3js.org/d3-color/
354
+ Author: Mike Bostock (http://bost.ocks.org/mike)
355
+ License Copyright:
356
+ ===
357
+
358
+ Copyright 2010-2016 Mike Bostock
359
+ All rights reserved.
360
+
361
+ Redistribution and use in source and binary forms, with or without modification,
362
+ are permitted provided that the following conditions are met:
363
+
364
+ * Redistributions of source code must retain the above copyright notice, this
365
+ list of conditions and the following disclaimer.
366
+
367
+ * Redistributions in binary form must reproduce the above copyright notice,
368
+ this list of conditions and the following disclaimer in the documentation
369
+ and/or other materials provided with the distribution.
370
+
371
+ * Neither the name of the author nor the names of contributors may be used to
372
+ endorse or promote products derived from this software without specific prior
373
+ written permission.
374
+
375
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
376
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
377
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
378
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
379
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
380
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
381
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
382
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
383
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
384
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
385
+
386
+
387
+ ---
388
+
389
+ Name: d3-interpolate
390
+ Version: 1.4.0
391
+ License: BSD-3-Clause
392
+ Private: false
393
+ Description: Interpolate numbers, colors, strings, arrays, objects, whatever!
394
+ Repository: https://github.com/d3/d3-interpolate.git
395
+ Homepage: https://d3js.org/d3-interpolate/
396
+ Author: Mike Bostock (http://bost.ocks.org/mike)
397
+ License Copyright:
398
+ ===
399
+
400
+ Copyright 2010-2016 Mike Bostock
401
+ All rights reserved.
402
+
403
+ Redistribution and use in source and binary forms, with or without modification,
404
+ are permitted provided that the following conditions are met:
405
+
406
+ * Redistributions of source code must retain the above copyright notice, this
407
+ list of conditions and the following disclaimer.
408
+
409
+ * Redistributions in binary form must reproduce the above copyright notice,
410
+ this list of conditions and the following disclaimer in the documentation
411
+ and/or other materials provided with the distribution.
412
+
413
+ * Neither the name of the author nor the names of contributors may be used to
414
+ endorse or promote products derived from this software without specific prior
415
+ written permission.
416
+
417
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
418
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
419
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
420
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
421
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
422
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
423
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
424
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
425
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
426
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
427
+
428
+
429
+ ---
430
+
431
+ Name: d3-timer
432
+ Version: 1.0.10
433
+ License: BSD-3-Clause
434
+ Private: false
435
+ Description: An efficient queue capable of managing thousands of concurrent animations.
436
+ Repository: https://github.com/d3/d3-timer.git
437
+ Homepage: https://d3js.org/d3-timer/
438
+ Author: Mike Bostock (http://bost.ocks.org/mike)
439
+ License Copyright:
440
+ ===
441
+
442
+ Copyright 2010-2016 Mike Bostock
443
+ All rights reserved.
444
+
445
+ Redistribution and use in source and binary forms, with or without modification,
446
+ are permitted provided that the following conditions are met:
447
+
448
+ * Redistributions of source code must retain the above copyright notice, this
449
+ list of conditions and the following disclaimer.
450
+
451
+ * Redistributions in binary form must reproduce the above copyright notice,
452
+ this list of conditions and the following disclaimer in the documentation
453
+ and/or other materials provided with the distribution.
454
+
455
+ * Neither the name of the author nor the names of contributors may be used to
456
+ endorse or promote products derived from this software without specific prior
457
+ written permission.
458
+
459
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
460
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
461
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
462
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
463
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
464
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
465
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
466
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
467
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
468
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
469
+
470
+
471
+ ---
472
+
473
+ Name: d3-transition
474
+ Version: 1.3.2
475
+ License: BSD-3-Clause
476
+ Private: false
477
+ Description: Animated transitions for D3 selections.
478
+ Repository: https://github.com/d3/d3-transition.git
479
+ Homepage: https://d3js.org/d3-transition/
480
+ Author: Mike Bostock (https://bost.ocks.org/mike)
481
+ License Copyright:
482
+ ===
483
+
484
+ Copyright (c) 2010-2015, Michael Bostock
485
+ All rights reserved.
486
+
487
+ Redistribution and use in source and binary forms, with or without
488
+ modification, are permitted provided that the following conditions are met:
489
+
490
+ * Redistributions of source code must retain the above copyright notice, this
491
+ list of conditions and the following disclaimer.
492
+
493
+ * Redistributions in binary form must reproduce the above copyright notice,
494
+ this list of conditions and the following disclaimer in the documentation
495
+ and/or other materials provided with the distribution.
496
+
497
+ * The name Michael Bostock may not be used to endorse or promote products
498
+ derived from this software without specific prior written permission.
499
+
500
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
501
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
502
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
503
+ DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT,
504
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
505
+ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
506
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
507
+ OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
508
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
509
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
510
+
511
+ TERMS OF USE - EASING EQUATIONS
512
+
513
+ Open source under the BSD License.
514
+
515
+ Copyright 2001 Robert Penner
516
+ All rights reserved.
517
+
518
+ Redistribution and use in source and binary forms, with or without modification,
519
+ are permitted provided that the following conditions are met:
520
+
521
+ - Redistributions of source code must retain the above copyright notice, this
522
+ list of conditions and the following disclaimer.
523
+
524
+ - Redistributions in binary form must reproduce the above copyright notice,
525
+ this list of conditions and the following disclaimer in the documentation
526
+ and/or other materials provided with the distribution.
527
+
528
+ - Neither the name of the author nor the names of contributors may be used to
529
+ endorse or promote products derived from this software without specific prior
530
+ written permission.
531
+
532
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
533
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
534
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
535
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
536
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
537
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
538
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
539
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
540
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
541
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
542
+
543
+
544
+ ---
545
+
546
+ Name: d3-ease
547
+ Version: 1.0.7
548
+ License: BSD-3-Clause
549
+ Private: false
550
+ Description: Easing functions for smooth animation.
551
+ Repository: https://github.com/d3/d3-ease.git
552
+ Homepage: https://d3js.org/d3-ease/
553
+ Author: Mike Bostock (http://bost.ocks.org/mike)
554
+ License Copyright:
555
+ ===
556
+
557
+ Copyright 2010-2016 Mike Bostock
558
+ Copyright 2001 Robert Penner
559
+ All rights reserved.
560
+
561
+ Redistribution and use in source and binary forms, with or without modification,
562
+ are permitted provided that the following conditions are met:
563
+
564
+ * Redistributions of source code must retain the above copyright notice, this
565
+ list of conditions and the following disclaimer.
566
+
567
+ * Redistributions in binary form must reproduce the above copyright notice,
568
+ this list of conditions and the following disclaimer in the documentation
569
+ and/or other materials provided with the distribution.
570
+
571
+ * Neither the name of the author nor the names of contributors may be used to
572
+ endorse or promote products derived from this software without specific prior
573
+ written permission.
574
+
575
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
576
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
577
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
578
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
579
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
580
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
581
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
582
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
583
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
584
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
585
+
586
+
587
+ ---
588
+
589
+ Name: d3-zoom
590
+ Version: 1.8.3
591
+ License: BSD-3-Clause
592
+ Private: false
593
+ Description: Pan and zoom SVG, HTML or Canvas using mouse or touch input.
594
+ Repository: https://github.com/d3/d3-zoom.git
595
+ Homepage: https://d3js.org/d3-zoom/
596
+ Author: Mike Bostock (http://bost.ocks.org/mike)
597
+ License Copyright:
598
+ ===
599
+
600
+ Copyright 2010-2016 Mike Bostock
601
+ All rights reserved.
602
+
603
+ Redistribution and use in source and binary forms, with or without modification,
604
+ are permitted provided that the following conditions are met:
605
+
606
+ * Redistributions of source code must retain the above copyright notice, this
607
+ list of conditions and the following disclaimer.
608
+
609
+ * Redistributions in binary form must reproduce the above copyright notice,
610
+ this list of conditions and the following disclaimer in the documentation
611
+ and/or other materials provided with the distribution.
612
+
613
+ * Neither the name of the author nor the names of contributors may be used to
614
+ endorse or promote products derived from this software without specific prior
615
+ written permission.
616
+
617
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
618
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
619
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
620
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
621
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
622
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
623
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
624
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
625
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
626
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
627
+
628
+
629
+ ---
630
+
631
+ Name: rxjs
632
+ Version: 6.6.7
633
+ License: Apache-2.0
634
+ Private: false
635
+ Description: Reactive Extensions for modern JavaScript
636
+ Repository: https://github.com/reactivex/rxjs.git
637
+ Homepage: https://github.com/ReactiveX/RxJS
638
+ Author: Ben Lesh <ben@benlesh.com>
639
+ Contributors:
640
+ Ben Lesh <ben@benlesh.com>
641
+ Paul Taylor <paul.e.taylor@me.com>
642
+ Jeff Cross <crossj@google.com>
643
+ Matthew Podwysocki <matthewp@microsoft.com>
644
+ OJ Kwon <kwon.ohjoong@gmail.com>
645
+ Andre Staltz <andre@staltz.com>
646
+ License Copyright:
647
+ ===
648
+
649
+ Apache License
650
+ Version 2.0, January 2004
651
+ http://www.apache.org/licenses/
652
+
653
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
654
+
655
+ 1. Definitions.
656
+
657
+ "License" shall mean the terms and conditions for use, reproduction,
658
+ and distribution as defined by Sections 1 through 9 of this document.
659
+
660
+ "Licensor" shall mean the copyright owner or entity authorized by
661
+ the copyright owner that is granting the License.
662
+
663
+ "Legal Entity" shall mean the union of the acting entity and all
664
+ other entities that control, are controlled by, or are under common
665
+ control with that entity. For the purposes of this definition,
666
+ "control" means (i) the power, direct or indirect, to cause the
667
+ direction or management of such entity, whether by contract or
668
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
669
+ outstanding shares, or (iii) beneficial ownership of such entity.
670
+
671
+ "You" (or "Your") shall mean an individual or Legal Entity
672
+ exercising permissions granted by this License.
673
+
674
+ "Source" form shall mean the preferred form for making modifications,
675
+ including but not limited to software source code, documentation
676
+ source, and configuration files.
677
+
678
+ "Object" form shall mean any form resulting from mechanical
679
+ transformation or translation of a Source form, including but
680
+ not limited to compiled object code, generated documentation,
681
+ and conversions to other media types.
682
+
683
+ "Work" shall mean the work of authorship, whether in Source or
684
+ Object form, made available under the License, as indicated by a
685
+ copyright notice that is included in or attached to the work
686
+ (an example is provided in the Appendix below).
687
+
688
+ "Derivative Works" shall mean any work, whether in Source or Object
689
+ form, that is based on (or derived from) the Work and for which the
690
+ editorial revisions, annotations, elaborations, or other modifications
691
+ represent, as a whole, an original work of authorship. For the purposes
692
+ of this License, Derivative Works shall not include works that remain
693
+ separable from, or merely link (or bind by name) to the interfaces of,
694
+ the Work and Derivative Works thereof.
695
+
696
+ "Contribution" shall mean any work of authorship, including
697
+ the original version of the Work and any modifications or additions
698
+ to that Work or Derivative Works thereof, that is intentionally
699
+ submitted to Licensor for inclusion in the Work by the copyright owner
700
+ or by an individual or Legal Entity authorized to submit on behalf of
701
+ the copyright owner. For the purposes of this definition, "submitted"
702
+ means any form of electronic, verbal, or written communication sent
703
+ to the Licensor or its representatives, including but not limited to
704
+ communication on electronic mailing lists, source code control systems,
705
+ and issue tracking systems that are managed by, or on behalf of, the
706
+ Licensor for the purpose of discussing and improving the Work, but
707
+ excluding communication that is conspicuously marked or otherwise
708
+ designated in writing by the copyright owner as "Not a Contribution."
709
+
710
+ "Contributor" shall mean Licensor and any individual or Legal Entity
711
+ on behalf of whom a Contribution has been received by Licensor and
712
+ subsequently incorporated within the Work.
713
+
714
+ 2. Grant of Copyright License. Subject to the terms and conditions of
715
+ this License, each Contributor hereby grants to You a perpetual,
716
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
717
+ copyright license to reproduce, prepare Derivative Works of,
718
+ publicly display, publicly perform, sublicense, and distribute the
719
+ Work and such Derivative Works in Source or Object form.
720
+
721
+ 3. Grant of Patent License. Subject to the terms and conditions of
722
+ this License, each Contributor hereby grants to You a perpetual,
723
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
724
+ (except as stated in this section) patent license to make, have made,
725
+ use, offer to sell, sell, import, and otherwise transfer the Work,
726
+ where such license applies only to those patent claims licensable
727
+ by such Contributor that are necessarily infringed by their
728
+ Contribution(s) alone or by combination of their Contribution(s)
729
+ with the Work to which such Contribution(s) was submitted. If You
730
+ institute patent litigation against any entity (including a
731
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
732
+ or a Contribution incorporated within the Work constitutes direct
733
+ or contributory patent infringement, then any patent licenses
734
+ granted to You under this License for that Work shall terminate
735
+ as of the date such litigation is filed.
736
+
737
+ 4. Redistribution. You may reproduce and distribute copies of the
738
+ Work or Derivative Works thereof in any medium, with or without
739
+ modifications, and in Source or Object form, provided that You
740
+ meet the following conditions:
741
+
742
+ (a) You must give any other recipients of the Work or
743
+ Derivative Works a copy of this License; and
744
+
745
+ (b) You must cause any modified files to carry prominent notices
746
+ stating that You changed the files; and
747
+
748
+ (c) You must retain, in the Source form of any Derivative Works
749
+ that You distribute, all copyright, patent, trademark, and
750
+ attribution notices from the Source form of the Work,
751
+ excluding those notices that do not pertain to any part of
752
+ the Derivative Works; and
753
+
754
+ (d) If the Work includes a "NOTICE" text file as part of its
755
+ distribution, then any Derivative Works that You distribute must
756
+ include a readable copy of the attribution notices contained
757
+ within such NOTICE file, excluding those notices that do not
758
+ pertain to any part of the Derivative Works, in at least one
759
+ of the following places: within a NOTICE text file distributed
760
+ as part of the Derivative Works; within the Source form or
761
+ documentation, if provided along with the Derivative Works; or,
762
+ within a display generated by the Derivative Works, if and
763
+ wherever such third-party notices normally appear. The contents
764
+ of the NOTICE file are for informational purposes only and
765
+ do not modify the License. You may add Your own attribution
766
+ notices within Derivative Works that You distribute, alongside
767
+ or as an addendum to the NOTICE text from the Work, provided
768
+ that such additional attribution notices cannot be construed
769
+ as modifying the License.
770
+
771
+ You may add Your own copyright statement to Your modifications and
772
+ may provide additional or different license terms and conditions
773
+ for use, reproduction, or distribution of Your modifications, or
774
+ for any such Derivative Works as a whole, provided Your use,
775
+ reproduction, and distribution of the Work otherwise complies with
776
+ the conditions stated in this License.
777
+
778
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
779
+ any Contribution intentionally submitted for inclusion in the Work
780
+ by You to the Licensor shall be under the terms and conditions of
781
+ this License, without any additional terms or conditions.
782
+ Notwithstanding the above, nothing herein shall supersede or modify
783
+ the terms of any separate license agreement you may have executed
784
+ with Licensor regarding such Contributions.
785
+
786
+ 6. Trademarks. This License does not grant permission to use the trade
787
+ names, trademarks, service marks, or product names of the Licensor,
788
+ except as required for reasonable and customary use in describing the
789
+ origin of the Work and reproducing the content of the NOTICE file.
790
+
791
+ 7. Disclaimer of Warranty. Unless required by applicable law or
792
+ agreed to in writing, Licensor provides the Work (and each
793
+ Contributor provides its Contributions) on an "AS IS" BASIS,
794
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
795
+ implied, including, without limitation, any warranties or conditions
796
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
797
+ PARTICULAR PURPOSE. You are solely responsible for determining the
798
+ appropriateness of using or redistributing the Work and assume any
799
+ risks associated with Your exercise of permissions under this License.
800
+
801
+ 8. Limitation of Liability. In no event and under no legal theory,
802
+ whether in tort (including negligence), contract, or otherwise,
803
+ unless required by applicable law (such as deliberate and grossly
804
+ negligent acts) or agreed to in writing, shall any Contributor be
805
+ liable to You for damages, including any direct, indirect, special,
806
+ incidental, or consequential damages of any character arising as a
807
+ result of this License or out of the use or inability to use the
808
+ Work (including but not limited to damages for loss of goodwill,
809
+ work stoppage, computer failure or malfunction, or any and all
810
+ other commercial damages or losses), even if such Contributor
811
+ has been advised of the possibility of such damages.
812
+
813
+ 9. Accepting Warranty or Additional Liability. While redistributing
814
+ the Work or Derivative Works thereof, You may choose to offer,
815
+ and charge a fee for, acceptance of support, warranty, indemnity,
816
+ or other liability obligations and/or rights consistent with this
817
+ License. However, in accepting such obligations, You may act only
818
+ on Your own behalf and on Your sole responsibility, not on behalf
819
+ of any other Contributor, and only if You agree to indemnify,
820
+ defend, and hold each Contributor harmless for any liability
821
+ incurred by, or claims asserted against, such Contributor by reason
822
+ of your accepting any such warranty or additional liability.
823
+
824
+ END OF TERMS AND CONDITIONS
825
+
826
+ APPENDIX: How to apply the Apache License to your work.
827
+
828
+ To apply the Apache License to your work, attach the following
829
+ boilerplate notice, with the fields enclosed by brackets "[]"
830
+ replaced with your own identifying information. (Don't include
831
+ the brackets!) The text should be enclosed in the appropriate
832
+ comment syntax for the file format. We also recommend that a
833
+ file or class name and description of purpose be included on the
834
+ same "printed page" as the copyright notice for easier
835
+ identification within third-party archives.
836
+
837
+ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
838
+
839
+ Licensed under the Apache License, Version 2.0 (the "License");
840
+ you may not use this file except in compliance with the License.
841
+ You may obtain a copy of the License at
842
+
843
+ http://www.apache.org/licenses/LICENSE-2.0
844
+
845
+ Unless required by applicable law or agreed to in writing, software
846
+ distributed under the License is distributed on an "AS IS" BASIS,
847
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
848
+ See the License for the specific language governing permissions and
849
+ limitations under the License.