growbot-web 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (229) hide show
  1. checksums.yaml +7 -0
  2. data/.bowerrc +3 -0
  3. data/.gitignore +22 -0
  4. data/Gemfile +11 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +35 -0
  7. data/Rakefile +39 -0
  8. data/arduino_data.txt +6137 -0
  9. data/bower.json +19 -0
  10. data/config.ru +13 -0
  11. data/growbot-web.gemspec +35 -0
  12. data/lib/growbot/web.rb +6 -0
  13. data/lib/growbot/web/app.rb +49 -0
  14. data/lib/growbot/web/data.rb +42 -0
  15. data/lib/growbot/web/env.rb +9 -0
  16. data/lib/growbot/web/version.rb +5 -0
  17. data/lib/growbot/web/views/coffee/app.coffee +131 -0
  18. data/lib/growbot/web/views/index.haml +10 -0
  19. data/lib/growbot/web/views/layout.haml +20 -0
  20. data/lib/growbot/web/views/sass/app.scss +59 -0
  21. data/lib/growbot/web/views/sass/bitters/_bitters.scss +16 -0
  22. data/lib/growbot/web/views/sass/bitters/_flashes.scss +11 -0
  23. data/lib/growbot/web/views/sass/bitters/_forms.scss +95 -0
  24. data/lib/growbot/web/views/sass/bitters/_grid-settings.scss +14 -0
  25. data/lib/growbot/web/views/sass/bitters/_lists.scss +31 -0
  26. data/lib/growbot/web/views/sass/bitters/_tables.scss +22 -0
  27. data/lib/growbot/web/views/sass/bitters/_typography.scss +104 -0
  28. data/lib/growbot/web/views/sass/bitters/_variables.scss +43 -0
  29. data/lib/growbot/web/views/sass/bitters/extends/_base.scss +1 -0
  30. data/lib/growbot/web/views/sass/bitters/extends/_button.scss +7 -0
  31. data/lib/growbot/web/views/sass/bitters/mixins/_base.scss +1 -0
  32. data/lib/growbot/web/views/sass/bitters/mixins/_flash.scss +15 -0
  33. data/lib/growbot/web/views/sass/bourbon/_bourbon-deprecated-upcoming.scss +8 -0
  34. data/lib/growbot/web/views/sass/bourbon/_bourbon.scss +78 -0
  35. data/lib/growbot/web/views/sass/bourbon/addons/_button.scss +374 -0
  36. data/lib/growbot/web/views/sass/bourbon/addons/_clearfix.scss +23 -0
  37. data/lib/growbot/web/views/sass/bourbon/addons/_directional-values.scss +111 -0
  38. data/lib/growbot/web/views/sass/bourbon/addons/_ellipsis.scss +7 -0
  39. data/lib/growbot/web/views/sass/bourbon/addons/_font-family.scss +5 -0
  40. data/lib/growbot/web/views/sass/bourbon/addons/_hide-text.scss +10 -0
  41. data/lib/growbot/web/views/sass/bourbon/addons/_html5-input-types.scss +86 -0
  42. data/lib/growbot/web/views/sass/bourbon/addons/_position.scss +32 -0
  43. data/lib/growbot/web/views/sass/bourbon/addons/_prefixer.scss +45 -0
  44. data/lib/growbot/web/views/sass/bourbon/addons/_retina-image.scss +31 -0
  45. data/lib/growbot/web/views/sass/bourbon/addons/_size.scss +16 -0
  46. data/lib/growbot/web/views/sass/bourbon/addons/_timing-functions.scss +32 -0
  47. data/lib/growbot/web/views/sass/bourbon/addons/_triangle.scss +83 -0
  48. data/lib/growbot/web/views/sass/bourbon/addons/_word-wrap.scss +8 -0
  49. data/lib/growbot/web/views/sass/bourbon/css3/_animation.scss +52 -0
  50. data/lib/growbot/web/views/sass/bourbon/css3/_appearance.scss +3 -0
  51. data/lib/growbot/web/views/sass/bourbon/css3/_backface-visibility.scss +6 -0
  52. data/lib/growbot/web/views/sass/bourbon/css3/_background-image.scss +42 -0
  53. data/lib/growbot/web/views/sass/bourbon/css3/_background.scss +55 -0
  54. data/lib/growbot/web/views/sass/bourbon/css3/_border-image.scss +59 -0
  55. data/lib/growbot/web/views/sass/bourbon/css3/_border-radius.scss +22 -0
  56. data/lib/growbot/web/views/sass/bourbon/css3/_box-sizing.scss +4 -0
  57. data/lib/growbot/web/views/sass/bourbon/css3/_calc.scss +4 -0
  58. data/lib/growbot/web/views/sass/bourbon/css3/_columns.scss +47 -0
  59. data/lib/growbot/web/views/sass/bourbon/css3/_filter.scss +5 -0
  60. data/lib/growbot/web/views/sass/bourbon/css3/_flex-box.scss +321 -0
  61. data/lib/growbot/web/views/sass/bourbon/css3/_font-face.scss +23 -0
  62. data/lib/growbot/web/views/sass/bourbon/css3/_font-feature-settings.scss +10 -0
  63. data/lib/growbot/web/views/sass/bourbon/css3/_hidpi-media-query.scss +10 -0
  64. data/lib/growbot/web/views/sass/bourbon/css3/_hyphens.scss +4 -0
  65. data/lib/growbot/web/views/sass/bourbon/css3/_image-rendering.scss +14 -0
  66. data/lib/growbot/web/views/sass/bourbon/css3/_keyframes.scss +35 -0
  67. data/lib/growbot/web/views/sass/bourbon/css3/_linear-gradient.scss +38 -0
  68. data/lib/growbot/web/views/sass/bourbon/css3/_perspective.scss +8 -0
  69. data/lib/growbot/web/views/sass/bourbon/css3/_placeholder.scss +8 -0
  70. data/lib/growbot/web/views/sass/bourbon/css3/_radial-gradient.scss +39 -0
  71. data/lib/growbot/web/views/sass/bourbon/css3/_transform.scss +15 -0
  72. data/lib/growbot/web/views/sass/bourbon/css3/_transition.scss +77 -0
  73. data/lib/growbot/web/views/sass/bourbon/css3/_user-select.scss +3 -0
  74. data/lib/growbot/web/views/sass/bourbon/functions/_assign.scss +11 -0
  75. data/lib/growbot/web/views/sass/bourbon/functions/_color-lightness.scss +13 -0
  76. data/lib/growbot/web/views/sass/bourbon/functions/_flex-grid.scss +39 -0
  77. data/lib/growbot/web/views/sass/bourbon/functions/_golden-ratio.scss +3 -0
  78. data/lib/growbot/web/views/sass/bourbon/functions/_grid-width.scss +13 -0
  79. data/lib/growbot/web/views/sass/bourbon/functions/_modular-scale.scss +66 -0
  80. data/lib/growbot/web/views/sass/bourbon/functions/_px-to-em.scss +13 -0
  81. data/lib/growbot/web/views/sass/bourbon/functions/_px-to-rem.scss +15 -0
  82. data/lib/growbot/web/views/sass/bourbon/functions/_strip-units.scss +5 -0
  83. data/lib/growbot/web/views/sass/bourbon/functions/_tint-shade.scss +9 -0
  84. data/lib/growbot/web/views/sass/bourbon/functions/_transition-property-name.scss +22 -0
  85. data/lib/growbot/web/views/sass/bourbon/functions/_unpack.scss +17 -0
  86. data/lib/growbot/web/views/sass/bourbon/helpers/_convert-units.scss +15 -0
  87. data/lib/growbot/web/views/sass/bourbon/helpers/_gradient-positions-parser.scss +13 -0
  88. data/lib/growbot/web/views/sass/bourbon/helpers/_is-num.scss +8 -0
  89. data/lib/growbot/web/views/sass/bourbon/helpers/_linear-angle-parser.scss +25 -0
  90. data/lib/growbot/web/views/sass/bourbon/helpers/_linear-gradient-parser.scss +41 -0
  91. data/lib/growbot/web/views/sass/bourbon/helpers/_linear-positions-parser.scss +61 -0
  92. data/lib/growbot/web/views/sass/bourbon/helpers/_linear-side-corner-parser.scss +31 -0
  93. data/lib/growbot/web/views/sass/bourbon/helpers/_radial-arg-parser.scss +69 -0
  94. data/lib/growbot/web/views/sass/bourbon/helpers/_radial-gradient-parser.scss +50 -0
  95. data/lib/growbot/web/views/sass/bourbon/helpers/_radial-positions-parser.scss +18 -0
  96. data/lib/growbot/web/views/sass/bourbon/helpers/_render-gradients.scss +26 -0
  97. data/lib/growbot/web/views/sass/bourbon/helpers/_shape-size-stripper.scss +10 -0
  98. data/lib/growbot/web/views/sass/bourbon/helpers/_str-to-num.scss +50 -0
  99. data/lib/growbot/web/views/sass/bourbon/settings/_prefixer.scss +6 -0
  100. data/lib/growbot/web/views/sass/bourbon/settings/_px-to-em.scss +1 -0
  101. data/lib/growbot/web/views/sass/neat/_neat-helpers.scss +7 -0
  102. data/lib/growbot/web/views/sass/neat/_neat.scss +21 -0
  103. data/lib/growbot/web/views/sass/neat/functions/_new-breakpoint.scss +16 -0
  104. data/lib/growbot/web/views/sass/neat/functions/_private.scss +125 -0
  105. data/lib/growbot/web/views/sass/neat/grid/_fill-parent.scss +7 -0
  106. data/lib/growbot/web/views/sass/neat/grid/_grid.scss +5 -0
  107. data/lib/growbot/web/views/sass/neat/grid/_media.scss +38 -0
  108. data/lib/growbot/web/views/sass/neat/grid/_omega.scss +61 -0
  109. data/lib/growbot/web/views/sass/neat/grid/_outer-container.scss +8 -0
  110. data/lib/growbot/web/views/sass/neat/grid/_pad.scss +8 -0
  111. data/lib/growbot/web/views/sass/neat/grid/_private.scss +43 -0
  112. data/lib/growbot/web/views/sass/neat/grid/_reset.scss +12 -0
  113. data/lib/growbot/web/views/sass/neat/grid/_row.scss +17 -0
  114. data/lib/growbot/web/views/sass/neat/grid/_shift.scss +16 -0
  115. data/lib/growbot/web/views/sass/neat/grid/_span-columns.scss +43 -0
  116. data/lib/growbot/web/views/sass/neat/grid/_to-deprecate.scss +57 -0
  117. data/lib/growbot/web/views/sass/neat/grid/_visual-grid.scss +41 -0
  118. data/lib/growbot/web/views/sass/neat/settings/_grid.scss +7 -0
  119. data/lib/growbot/web/views/sass/neat/settings/_visual-grid.scss +5 -0
  120. data/lib/growbot/web/views/sass/refills/_navigation.scss +190 -0
  121. data/lib/growbot/web/views/sass/refills/_refills.scss +1 -0
  122. data/lib/growbot/web/views/sass/widgets/_big-number.scss +21 -0
  123. data/lib/growbot/web/views/sass/widgets/_widgets.scss +1 -0
  124. data/public/javascripts/app.js +150 -0
  125. data/public/stylesheets/app.css +1 -0
  126. data/public/vendor/colorbrewer/.bower.json +35 -0
  127. data/public/vendor/colorbrewer/LICENSE +38 -0
  128. data/public/vendor/colorbrewer/README.md +7 -0
  129. data/public/vendor/colorbrewer/bower.json +23 -0
  130. data/public/vendor/colorbrewer/colorbrewer.css +1690 -0
  131. data/public/vendor/colorbrewer/colorbrewer.js +302 -0
  132. data/public/vendor/d3/.bower.json +35 -0
  133. data/public/vendor/d3/CONTRIBUTING.md +25 -0
  134. data/public/vendor/d3/LICENSE +26 -0
  135. data/public/vendor/d3/README.md +9 -0
  136. data/public/vendor/d3/bower.json +24 -0
  137. data/public/vendor/d3/composer.json +19 -0
  138. data/public/vendor/d3/d3.js +9263 -0
  139. data/public/vendor/d3/d3.min.js +5 -0
  140. data/public/vendor/jquery/.bower.json +38 -0
  141. data/public/vendor/jquery/MIT-LICENSE.txt +21 -0
  142. data/public/vendor/jquery/bower.json +27 -0
  143. data/public/vendor/jquery/dist/jquery.js +9190 -0
  144. data/public/vendor/jquery/dist/jquery.min.js +5 -0
  145. data/public/vendor/jquery/dist/jquery.min.map +1 -0
  146. data/public/vendor/jquery/src/ajax.js +806 -0
  147. data/public/vendor/jquery/src/ajax/jsonp.js +89 -0
  148. data/public/vendor/jquery/src/ajax/load.js +75 -0
  149. data/public/vendor/jquery/src/ajax/parseJSON.js +13 -0
  150. data/public/vendor/jquery/src/ajax/parseXML.js +28 -0
  151. data/public/vendor/jquery/src/ajax/script.js +64 -0
  152. data/public/vendor/jquery/src/ajax/var/nonce.js +5 -0
  153. data/public/vendor/jquery/src/ajax/var/rquery.js +3 -0
  154. data/public/vendor/jquery/src/ajax/xhr.js +135 -0
  155. data/public/vendor/jquery/src/attributes.js +11 -0
  156. data/public/vendor/jquery/src/attributes/attr.js +143 -0
  157. data/public/vendor/jquery/src/attributes/classes.js +158 -0
  158. data/public/vendor/jquery/src/attributes/prop.js +96 -0
  159. data/public/vendor/jquery/src/attributes/support.js +35 -0
  160. data/public/vendor/jquery/src/attributes/val.js +163 -0
  161. data/public/vendor/jquery/src/callbacks.js +205 -0
  162. data/public/vendor/jquery/src/core.js +498 -0
  163. data/public/vendor/jquery/src/core/access.js +60 -0
  164. data/public/vendor/jquery/src/core/init.js +123 -0
  165. data/public/vendor/jquery/src/core/parseHTML.js +39 -0
  166. data/public/vendor/jquery/src/core/ready.js +97 -0
  167. data/public/vendor/jquery/src/core/var/rsingleTag.js +4 -0
  168. data/public/vendor/jquery/src/css.js +451 -0
  169. data/public/vendor/jquery/src/css/addGetHookIf.js +24 -0
  170. data/public/vendor/jquery/src/css/curCSS.js +57 -0
  171. data/public/vendor/jquery/src/css/defaultDisplay.js +70 -0
  172. data/public/vendor/jquery/src/css/hiddenVisibleSelectors.js +15 -0
  173. data/public/vendor/jquery/src/css/support.js +91 -0
  174. data/public/vendor/jquery/src/css/swap.js +28 -0
  175. data/public/vendor/jquery/src/css/var/cssExpand.js +3 -0
  176. data/public/vendor/jquery/src/css/var/getStyles.js +5 -0
  177. data/public/vendor/jquery/src/css/var/isHidden.js +13 -0
  178. data/public/vendor/jquery/src/css/var/rmargin.js +3 -0
  179. data/public/vendor/jquery/src/css/var/rnumnonpx.js +5 -0
  180. data/public/vendor/jquery/src/data.js +179 -0
  181. data/public/vendor/jquery/src/data/Data.js +181 -0
  182. data/public/vendor/jquery/src/data/accepts.js +20 -0
  183. data/public/vendor/jquery/src/data/var/data_priv.js +5 -0
  184. data/public/vendor/jquery/src/data/var/data_user.js +5 -0
  185. data/public/vendor/jquery/src/deferred.js +149 -0
  186. data/public/vendor/jquery/src/deprecated.js +13 -0
  187. data/public/vendor/jquery/src/dimensions.js +50 -0
  188. data/public/vendor/jquery/src/effects.js +649 -0
  189. data/public/vendor/jquery/src/effects/Tween.js +114 -0
  190. data/public/vendor/jquery/src/effects/animatedSelector.js +13 -0
  191. data/public/vendor/jquery/src/event.js +868 -0
  192. data/public/vendor/jquery/src/event/alias.js +39 -0
  193. data/public/vendor/jquery/src/event/support.js +9 -0
  194. data/public/vendor/jquery/src/exports/amd.js +24 -0
  195. data/public/vendor/jquery/src/exports/global.js +32 -0
  196. data/public/vendor/jquery/src/intro.js +44 -0
  197. data/public/vendor/jquery/src/jquery.js +36 -0
  198. data/public/vendor/jquery/src/manipulation.js +582 -0
  199. data/public/vendor/jquery/src/manipulation/_evalUrl.js +18 -0
  200. data/public/vendor/jquery/src/manipulation/support.js +31 -0
  201. data/public/vendor/jquery/src/manipulation/var/rcheckableType.js +3 -0
  202. data/public/vendor/jquery/src/offset.js +204 -0
  203. data/public/vendor/jquery/src/outro.js +1 -0
  204. data/public/vendor/jquery/src/queue.js +142 -0
  205. data/public/vendor/jquery/src/queue/delay.js +22 -0
  206. data/public/vendor/jquery/src/selector-native.js +172 -0
  207. data/public/vendor/jquery/src/selector-sizzle.js +14 -0
  208. data/public/vendor/jquery/src/selector.js +1 -0
  209. data/public/vendor/jquery/src/serialize.js +111 -0
  210. data/public/vendor/jquery/src/sizzle/dist/sizzle.js +2044 -0
  211. data/public/vendor/jquery/src/sizzle/dist/sizzle.min.js +3 -0
  212. data/public/vendor/jquery/src/sizzle/dist/sizzle.min.map +1 -0
  213. data/public/vendor/jquery/src/traversing.js +200 -0
  214. data/public/vendor/jquery/src/traversing/findFilter.js +100 -0
  215. data/public/vendor/jquery/src/traversing/var/rneedsContext.js +6 -0
  216. data/public/vendor/jquery/src/var/arr.js +3 -0
  217. data/public/vendor/jquery/src/var/class2type.js +4 -0
  218. data/public/vendor/jquery/src/var/concat.js +5 -0
  219. data/public/vendor/jquery/src/var/hasOwn.js +5 -0
  220. data/public/vendor/jquery/src/var/indexOf.js +5 -0
  221. data/public/vendor/jquery/src/var/pnum.js +3 -0
  222. data/public/vendor/jquery/src/var/push.js +5 -0
  223. data/public/vendor/jquery/src/var/rnotwhite.js +3 -0
  224. data/public/vendor/jquery/src/var/slice.js +5 -0
  225. data/public/vendor/jquery/src/var/strundefined.js +3 -0
  226. data/public/vendor/jquery/src/var/support.js +4 -0
  227. data/public/vendor/jquery/src/var/toString.js +5 -0
  228. data/public/vendor/jquery/src/wrap.js +78 -0
  229. metadata +468 -0
@@ -0,0 +1 @@
1
+ *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}button,input[type="submit"]{border:1px solid #2459a6;border-radius:3px;box-shadow:inset 0 1px 0 0 #89a8d5;color:#fff;display:inline-block;font-size:inherit;font-weight:bold;background-color:#477dca;background-image:-webkit-linear-gradient(#477dca,#2760b2);background-image:linear-gradient(#477dca,#2760b2);padding:7px 18px;text-decoration:none;text-shadow:0 1px 0 #1b4f9a;background-clip:padding-box;-webkit-font-smoothing:antialiased;font-size:1em;font-weight:bold;line-height:1em}button:hover:not(:disabled),input[type="submit"]:hover:not(:disabled){box-shadow:inset 0 1px 0 0 #628cc8;cursor:pointer;background-color:#3c71bb;background-image:-webkit-linear-gradient(#3c71bb,#255aa5);background-image:linear-gradient(#3c71bb,#255aa5)}button:active:not(:disabled),input[type="submit"]:active:not(:disabled),button:focus:not(:disabled),input[type="submit"]:focus:not(:disabled){border:1px solid #2459a6;box-shadow:inset 0 0 8px 4px #235397,inset 0 0 8px 4px #235397}button:disabled,input[type="submit"]:disabled{opacity:0.5;cursor:not-allowed}body{color:#333;font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;font-size:1em;-webkit-font-smoothing:antialiased;line-height:1.5em}h1,h2,h3,h4,h5,h6{font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;line-height:1.25em;margin:0;text-rendering:optimizeLegibility}h1{font-size:2.25em}h2{font-size:2em}h3{font-size:1.75em}h4{font-size:1.5em}h5{font-size:1.25em}h6{font-size:1em}p{margin:0 0 0.75em}a{color:#477dca;text-decoration:none;-webkit-transition:color 0.1s linear;-moz-transition:color 0.1s linear;transition:color 0.1s linear}a:hover{color:#2c5999}a:active,a:focus{color:#2c5999;outline:none}hr{border-bottom:1px solid #ddd;border-left:none;border-right:none;border-top:none;margin:1.5em 0}img{margin:0;max-width:100%}abbr,acronym{border-bottom:1px dotted #ddd;cursor:help}address{display:block;margin:0 0 0.75em}hgroup{margin-bottom:0.75em}del{color:#595959}blockquote{border-left:2px solid #ddd;color:#595959;margin:1.5em 0;padding-left:0.75em}cite{color:#737373;font-style:italic}cite:before{content:'\2014 \00A0'}fieldset{background:#f7f7f7;border:1px solid #ddd;margin:0 0 0.75em 0;padding:1.5em}input,label,select{display:block;font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;font-size:1em}label{font-weight:bold;margin-bottom:0.375em}label.required:after{content:"*"}label abbr{display:none}textarea,input[type="email"],input[type="number"],input[type="password"],input[type="search"],input[type="tel"],input[type="text"],input[type="url"],input[type="color"],input[type="date"],input[type="datetime"],input[type="datetime-local"],input[type="month"],input[type="time"],input[type="week"],select[multiple=multiple]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:border-color;-moz-transition:border-color;transition:border-color;background-color:white;border-radius:0.1875em;border:1px solid #ddd;box-shadow:inset 0 1px 3px rgba(0,0,0,0.06);font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;font-size:1em;margin-bottom:0.75em;padding:0.5em 0.5em;width:100%}textarea:hover,input[type="email"]:hover,input[type="number"]:hover,input[type="password"]:hover,input[type="search"]:hover,input[type="tel"]:hover,input[type="text"]:hover,input[type="url"]:hover,input[type="color"]:hover,input[type="date"]:hover,input[type="datetime"]:hover,input[type="datetime-local"]:hover,input[type="month"]:hover,input[type="time"]:hover,input[type="week"]:hover,select[multiple=multiple]:hover{border-color:#c4c4c4}textarea:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="password"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="text"]:focus,input[type="url"]:focus,input[type="color"]:focus,input[type="date"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,select[multiple=multiple]:focus{border-color:#477dca;box-shadow:inset 0 1px 3px rgba(0,0,0,0.06),0 0 5px rgba(55,112,192,0.7);outline:none}textarea{resize:vertical}input[type="search"]{-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;appearance:none}input[type="checkbox"],input[type="radio"]{display:inline;margin-right:0.375em}input[type="file"]{width:100%}select{width:auto;max-width:100%;margin-bottom:1.5em}button,input[type="submit"]{-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;appearance:none;cursor:pointer;user-select:none;vertical-align:middle;white-space:nowrap}table{border-collapse:collapse;margin:0.75em 0;table-layout:fixed;width:100%}th{border-bottom:1px solid #b7b7b7;font-weight:bold;padding:0.75em 0;text-align:left}td{border-bottom:1px solid #ddd;padding:0.75em 0}tr,td,th{vertical-align:middle}ul,ol{margin:0;padding:0;list-style-type:none}dl{line-height:1.5em;margin-bottom:0.75em}dl dt{font-weight:bold;margin-top:0.75em}dl dd{margin:0}div.error{background:#fbe3e4;color:#96151b;font-weight:bold;margin-bottom:0.75em;padding:0.75em}div.error a{color:#6a0f13}div.error a:hover{color:#110203}div.notice{background:#fff6bf;color:#8c7800;font-weight:bold;margin-bottom:0.75em;padding:0.75em}div.notice a{color:#594c00}div.notice a:hover{color:#000}div.success{background:#e6efc2;color:#56651a;font-weight:bold;margin-bottom:0.75em;padding:0.75em}div.success a{color:#333c10}div.success a:hover{color:#000}header.navigation{background-color:#333;border-bottom:1px solid #1a1a1a;font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;height:60px;width:100%;z-index:999}header.navigation .menu-wrapper{max-width:68em;margin-left:auto;margin-right:auto;position:relative;z-index:9999}header.navigation .menu-wrapper:after{content:"";display:table;clear:both}header.navigation .logo{float:left;max-height:60px;padding-right:2em;color:white;font-weight:bold;font-size:1.5em;line-height:60px}header.navigation .logo img{max-height:60px;padding:.8em 0}header.navigation .navigation-menu-button{color:rgba(255,255,255,0.7);cursor:pointer;display:block;float:right;font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;font-weight:700;line-height:60px;margin:0;padding-right:1em;text-transform:uppercase}@media screen and (min-width: 53.75em){header.navigation .navigation-menu-button{display:none}}header.navigation .navigation-menu-button:hover{color:#fff}@media screen and (min-width: 53.75em){header.navigation .nav{float:left}}header.navigation ul#navigation-menu{clear:both;-webkit-transform-style:preserve-3d;display:none;margin:0 auto;overflow:hidden;padding:0;width:100%;z-index:9999}@media screen and (min-width: 53.75em){header.navigation ul#navigation-menu{display:inline;margin:0;padding:0}}header.navigation ul li{background:#333;display:block;line-height:60px;overflow:hidden;padding-right:.8em;text-align:right;width:100%;z-index:9999}@media screen and (min-width: 53.75em){header.navigation ul li{background:transparent;display:inline;line-height:60px;padding-right:2em;text-decoration:none;width:auto}}header.navigation ul li a{font-weight:400;color:rgba(255,255,255,0.7)}header.navigation ul li a:hover{color:#fff}@media screen and (min-width: 53.75em){header.navigation .sign-up,header.navigation .take-reading{position:absolute;top:0px;right:0px;bottom:0;left:0;padding-right:1em}header.navigation .sign-up a,header.navigation .take-reading a{-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;background:#477dca;border-radius:0.1875em;color:white;font-size:.8em;font-weight:800;padding:.6em 1em;text-transform:uppercase}header.navigation .sign-up a:hover,header.navigation .take-reading a:hover{background:#6f99d5}}header.navigation li.navigation-search-bar{display:none}@media screen and (min-width: 53.75em){header.navigation li.navigation-search-bar{position:absolute;top:0px;right:76px;bottom:0;left:0;display:inline-block;line-height:0 !important;padding:13px 30px}}header.navigation .search-bar{width:19em;position:relative;display:inline-block}header.navigation .search-bar input{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block}header.navigation .search-bar .search-and-submit{position:relative}header.navigation .search-bar .search-and-submit input[type=search]{background:#404040;border:1px solid #262626;padding:.6em .8em;font-size:.9em;font-style:italic;color:rgba(255,255,255,0.7);border-radius:0.375em;margin:0}header.navigation .search-bar .search-and-submit button[type=submit]{border:1px solid #363636;border-radius:3px;box-shadow:inset 0 1px 0 0 gray;color:#fff;display:inline-block;font-size:inherit;font-weight:bold;background-color:#595959;background-image:-webkit-linear-gradient(#595959,#3d3d3d);background-image:linear-gradient(#595959,#3d3d3d);padding:7px 18px;text-decoration:none;text-shadow:0 1px 0 #2b2b2b;background-clip:padding-box;border:1px solid #3a3131;border-radius:3px;box-shadow:inset 0 1px 0 0 gray;color:#fff;display:inline-block;font-size:inherit;font-weight:bold;background-color:#595959;background-image:-webkit-linear-gradient(#595959,#433838);background-image:linear-gradient(#595959,#433838);padding:7px 18px;text-decoration:none;text-shadow:0 1px 0 #322525;background-clip:padding-box;position:absolute;top:0.3em;right:0.3em;bottom:0.3em;left:0;outline:none;padding:5px 15px}header.navigation .search-bar .search-and-submit button[type=submit]:hover:not(:disabled){box-shadow:inset 0 1px 0 0 #666;cursor:pointer;background-color:#4d4d4d;background-image:-webkit-linear-gradient(#4d4d4d,#363636);background-image:linear-gradient(#4d4d4d,#363636)}header.navigation .search-bar .search-and-submit button[type=submit]:active:not(:disabled),header.navigation .search-bar .search-and-submit button[type=submit]:focus:not(:disabled){border:1px solid #363636;box-shadow:inset 0 0 8px 4px #2e2e2e,inset 0 0 8px 4px #2e2e2e}header.navigation .search-bar .search-and-submit button[type=submit]:hover:not(:disabled){box-shadow:inset 0 1px 0 0 #666;cursor:pointer;background-color:#4d4d4d;background-image:-webkit-linear-gradient(#4d4d4d,#3a3131);background-image:linear-gradient(#4d4d4d,#3a3131)}header.navigation .search-bar .search-and-submit button[type=submit]:active:not(:disabled),header.navigation .search-bar .search-and-submit button[type=submit]:focus:not(:disabled){border:1px solid #3a3131;box-shadow:inset 0 0 8px 4px #312b2b,inset 0 0 8px 4px #312b2b}header.navigation .search-bar .search-and-submit button[type=submit]:disabled{opacity:0.5;cursor:not-allowed}header.navigation .search-bar .search-and-submit button[type=submit] img{height:12px;opacity:.7}.widget.big-number{border:2px solid #999;background:#333;border-radius:1em;padding:0.8em 0;text-align:center}.widget.big-number .number{font-size:3.5em;font-weight:800;line-height:0.8em;color:#477dca}.widget.big-number .label{font-size:0.7em;color:#ddd}body{margin:0;padding:0}section{max-width:68em;margin-left:auto;margin-right:auto}section:after{content:"";display:table;clear:both}section main{float:left;display:block;margin-right:2.35765%;width:74.41059%}section main:last-child{margin-right:0}section aside{float:left;display:block;margin-right:2.35765%;width:23.23176%}section aside:last-child{margin-right:0}section .title{border-bottom:1px solid #eee;margin-bottom:24.27px}path{stroke-width:1;fill:none}.axis{shape-rendering:crispEdges}.axis text{font-size:10px}.axis line,.axis path{stroke:#ddd}.axis.x .minor{stroke-opacity:0.5}
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "colorbrewer",
3
+ "version": "1.0.0",
4
+ "description": "Color specifications and designs developed by Cynthia Brewer (http://colorbrewer.org/)",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git://github.com/undashes/colorbrewer.git"
8
+ },
9
+ "keywords": [
10
+ "colors",
11
+ "design",
12
+ "visualization",
13
+ "svg"
14
+ ],
15
+ "author": {
16
+ "name": "Cynthia Brewer",
17
+ "uri": "http://www.personal.psu.edu/cab38/"
18
+ },
19
+ "license": "Apache-Style",
20
+ "main": "colorbrewer.js",
21
+ "scripts": [
22
+ "colorbrewer.js"
23
+ ],
24
+ "homepage": "http://www.personal.psu.edu/cab38/ColorBrewer/ColorBrewer_updates.html",
25
+ "_release": "1.0.0",
26
+ "_resolution": {
27
+ "type": "version",
28
+ "tag": "v1.0.0",
29
+ "commit": "537e821f7e2f241dcf3240bce887eb4ce720d65f"
30
+ },
31
+ "_source": "git://github.com/undashes/colorbrewer.git",
32
+ "_target": "~1.0.0",
33
+ "_originalSource": "colorbrewer",
34
+ "_direct": true
35
+ }
@@ -0,0 +1,38 @@
1
+ Apache-Style Software License for ColorBrewer software and ColorBrewer Color
2
+ Schemes
3
+
4
+ Copyright (c) 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania State
5
+ University.
6
+
7
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
8
+ use this file except in compliance with the License. You may obtain a copy of
9
+ the License at
10
+
11
+ http://www.apache.org/licenses/LICENSE-2.0
12
+
13
+ Unless required by applicable law or agreed to in writing, software
14
+ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15
+ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
16
+ License for the specific language governing permissions and limitations under
17
+ the License.
18
+
19
+ Redistribution and use in source and binary forms, with or without
20
+ modification, are permitted provided that the following conditions are met:
21
+
22
+ 1. Redistributions as source code must retain the above copyright notice, this
23
+ list of conditions and the following disclaimer.
24
+
25
+ 2. The end-user documentation included with the redistribution, if any, must
26
+ include the following acknowledgment: "This product includes color
27
+ specifications and designs developed by Cynthia Brewer
28
+ (http://colorbrewer.org/)." Alternately, this acknowledgment may appear in the
29
+ software itself, if and wherever such third-party acknowledgments normally
30
+ appear.
31
+
32
+ 4. The name "ColorBrewer" must not be used to endorse or promote products
33
+ derived from this software without prior written permission. For written
34
+ permission, please contact Cynthia Brewer at cbrewer@psu.edu.
35
+
36
+ 5. Products derived from this software may not be called "ColorBrewer", nor
37
+ may "ColorBrewer" appear in their name, without prior written permission of
38
+ Cynthia Brewer.
@@ -0,0 +1,7 @@
1
+ colorbrewer
2
+ ===========
3
+
4
+ Color specifications and designs developed by Cynthia Brewer (http://colorbrewer.org/).
5
+
6
+ This is a shim repository for the [files provided in d3.js](https://github.com/mbostock/d3/tree/master/lib/colorbrewer).
7
+
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "colorbrewer",
3
+ "version": "1.0.0",
4
+ "description": "Color specifications and designs developed by Cynthia Brewer (http://colorbrewer.org/)",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git://github.com/undashes/colorbrewer.git"
8
+ },
9
+ "keywords": [
10
+ "colors",
11
+ "design",
12
+ "visualization",
13
+ "svg"
14
+ ],
15
+ "author": {
16
+ "name": "Cynthia Brewer",
17
+ "uri": "http://www.personal.psu.edu/cab38/"
18
+ },
19
+ "license": "Apache-Style",
20
+ "main": "colorbrewer.js",
21
+ "scripts": ["colorbrewer.js"],
22
+ "homepage": "http://www.personal.psu.edu/cab38/ColorBrewer/ColorBrewer_updates.html"
23
+ }
@@ -0,0 +1,1690 @@
1
+ /* This product includes color specifications and designs developed by Cynthia Brewer (http://colorbrewer.org/). */
2
+ .YlGn .q0-3{fill:rgb(247,252,185)}
3
+ .YlGn .q1-3{fill:rgb(173,221,142)}
4
+ .YlGn .q2-3{fill:rgb(49,163,84)}
5
+ .YlGn .q0-4{fill:rgb(255,255,204)}
6
+ .YlGn .q1-4{fill:rgb(194,230,153)}
7
+ .YlGn .q2-4{fill:rgb(120,198,121)}
8
+ .YlGn .q3-4{fill:rgb(35,132,67)}
9
+ .YlGn .q0-5{fill:rgb(255,255,204)}
10
+ .YlGn .q1-5{fill:rgb(194,230,153)}
11
+ .YlGn .q2-5{fill:rgb(120,198,121)}
12
+ .YlGn .q3-5{fill:rgb(49,163,84)}
13
+ .YlGn .q4-5{fill:rgb(0,104,55)}
14
+ .YlGn .q0-6{fill:rgb(255,255,204)}
15
+ .YlGn .q1-6{fill:rgb(217,240,163)}
16
+ .YlGn .q2-6{fill:rgb(173,221,142)}
17
+ .YlGn .q3-6{fill:rgb(120,198,121)}
18
+ .YlGn .q4-6{fill:rgb(49,163,84)}
19
+ .YlGn .q5-6{fill:rgb(0,104,55)}
20
+ .YlGn .q0-7{fill:rgb(255,255,204)}
21
+ .YlGn .q1-7{fill:rgb(217,240,163)}
22
+ .YlGn .q2-7{fill:rgb(173,221,142)}
23
+ .YlGn .q3-7{fill:rgb(120,198,121)}
24
+ .YlGn .q4-7{fill:rgb(65,171,93)}
25
+ .YlGn .q5-7{fill:rgb(35,132,67)}
26
+ .YlGn .q6-7{fill:rgb(0,90,50)}
27
+ .YlGn .q0-8{fill:rgb(255,255,229)}
28
+ .YlGn .q1-8{fill:rgb(247,252,185)}
29
+ .YlGn .q2-8{fill:rgb(217,240,163)}
30
+ .YlGn .q3-8{fill:rgb(173,221,142)}
31
+ .YlGn .q4-8{fill:rgb(120,198,121)}
32
+ .YlGn .q5-8{fill:rgb(65,171,93)}
33
+ .YlGn .q6-8{fill:rgb(35,132,67)}
34
+ .YlGn .q7-8{fill:rgb(0,90,50)}
35
+ .YlGn .q0-9{fill:rgb(255,255,229)}
36
+ .YlGn .q1-9{fill:rgb(247,252,185)}
37
+ .YlGn .q2-9{fill:rgb(217,240,163)}
38
+ .YlGn .q3-9{fill:rgb(173,221,142)}
39
+ .YlGn .q4-9{fill:rgb(120,198,121)}
40
+ .YlGn .q5-9{fill:rgb(65,171,93)}
41
+ .YlGn .q6-9{fill:rgb(35,132,67)}
42
+ .YlGn .q7-9{fill:rgb(0,104,55)}
43
+ .YlGn .q8-9{fill:rgb(0,69,41)}
44
+ .YlGnBu .q0-3{fill:rgb(237,248,177)}
45
+ .YlGnBu .q1-3{fill:rgb(127,205,187)}
46
+ .YlGnBu .q2-3{fill:rgb(44,127,184)}
47
+ .YlGnBu .q0-4{fill:rgb(255,255,204)}
48
+ .YlGnBu .q1-4{fill:rgb(161,218,180)}
49
+ .YlGnBu .q2-4{fill:rgb(65,182,196)}
50
+ .YlGnBu .q3-4{fill:rgb(34,94,168)}
51
+ .YlGnBu .q0-5{fill:rgb(255,255,204)}
52
+ .YlGnBu .q1-5{fill:rgb(161,218,180)}
53
+ .YlGnBu .q2-5{fill:rgb(65,182,196)}
54
+ .YlGnBu .q3-5{fill:rgb(44,127,184)}
55
+ .YlGnBu .q4-5{fill:rgb(37,52,148)}
56
+ .YlGnBu .q0-6{fill:rgb(255,255,204)}
57
+ .YlGnBu .q1-6{fill:rgb(199,233,180)}
58
+ .YlGnBu .q2-6{fill:rgb(127,205,187)}
59
+ .YlGnBu .q3-6{fill:rgb(65,182,196)}
60
+ .YlGnBu .q4-6{fill:rgb(44,127,184)}
61
+ .YlGnBu .q5-6{fill:rgb(37,52,148)}
62
+ .YlGnBu .q0-7{fill:rgb(255,255,204)}
63
+ .YlGnBu .q1-7{fill:rgb(199,233,180)}
64
+ .YlGnBu .q2-7{fill:rgb(127,205,187)}
65
+ .YlGnBu .q3-7{fill:rgb(65,182,196)}
66
+ .YlGnBu .q4-7{fill:rgb(29,145,192)}
67
+ .YlGnBu .q5-7{fill:rgb(34,94,168)}
68
+ .YlGnBu .q6-7{fill:rgb(12,44,132)}
69
+ .YlGnBu .q0-8{fill:rgb(255,255,217)}
70
+ .YlGnBu .q1-8{fill:rgb(237,248,177)}
71
+ .YlGnBu .q2-8{fill:rgb(199,233,180)}
72
+ .YlGnBu .q3-8{fill:rgb(127,205,187)}
73
+ .YlGnBu .q4-8{fill:rgb(65,182,196)}
74
+ .YlGnBu .q5-8{fill:rgb(29,145,192)}
75
+ .YlGnBu .q6-8{fill:rgb(34,94,168)}
76
+ .YlGnBu .q7-8{fill:rgb(12,44,132)}
77
+ .YlGnBu .q0-9{fill:rgb(255,255,217)}
78
+ .YlGnBu .q1-9{fill:rgb(237,248,177)}
79
+ .YlGnBu .q2-9{fill:rgb(199,233,180)}
80
+ .YlGnBu .q3-9{fill:rgb(127,205,187)}
81
+ .YlGnBu .q4-9{fill:rgb(65,182,196)}
82
+ .YlGnBu .q5-9{fill:rgb(29,145,192)}
83
+ .YlGnBu .q6-9{fill:rgb(34,94,168)}
84
+ .YlGnBu .q7-9{fill:rgb(37,52,148)}
85
+ .YlGnBu .q8-9{fill:rgb(8,29,88)}
86
+ .GnBu .q0-3{fill:rgb(224,243,219)}
87
+ .GnBu .q1-3{fill:rgb(168,221,181)}
88
+ .GnBu .q2-3{fill:rgb(67,162,202)}
89
+ .GnBu .q0-4{fill:rgb(240,249,232)}
90
+ .GnBu .q1-4{fill:rgb(186,228,188)}
91
+ .GnBu .q2-4{fill:rgb(123,204,196)}
92
+ .GnBu .q3-4{fill:rgb(43,140,190)}
93
+ .GnBu .q0-5{fill:rgb(240,249,232)}
94
+ .GnBu .q1-5{fill:rgb(186,228,188)}
95
+ .GnBu .q2-5{fill:rgb(123,204,196)}
96
+ .GnBu .q3-5{fill:rgb(67,162,202)}
97
+ .GnBu .q4-5{fill:rgb(8,104,172)}
98
+ .GnBu .q0-6{fill:rgb(240,249,232)}
99
+ .GnBu .q1-6{fill:rgb(204,235,197)}
100
+ .GnBu .q2-6{fill:rgb(168,221,181)}
101
+ .GnBu .q3-6{fill:rgb(123,204,196)}
102
+ .GnBu .q4-6{fill:rgb(67,162,202)}
103
+ .GnBu .q5-6{fill:rgb(8,104,172)}
104
+ .GnBu .q0-7{fill:rgb(240,249,232)}
105
+ .GnBu .q1-7{fill:rgb(204,235,197)}
106
+ .GnBu .q2-7{fill:rgb(168,221,181)}
107
+ .GnBu .q3-7{fill:rgb(123,204,196)}
108
+ .GnBu .q4-7{fill:rgb(78,179,211)}
109
+ .GnBu .q5-7{fill:rgb(43,140,190)}
110
+ .GnBu .q6-7{fill:rgb(8,88,158)}
111
+ .GnBu .q0-8{fill:rgb(247,252,240)}
112
+ .GnBu .q1-8{fill:rgb(224,243,219)}
113
+ .GnBu .q2-8{fill:rgb(204,235,197)}
114
+ .GnBu .q3-8{fill:rgb(168,221,181)}
115
+ .GnBu .q4-8{fill:rgb(123,204,196)}
116
+ .GnBu .q5-8{fill:rgb(78,179,211)}
117
+ .GnBu .q6-8{fill:rgb(43,140,190)}
118
+ .GnBu .q7-8{fill:rgb(8,88,158)}
119
+ .GnBu .q0-9{fill:rgb(247,252,240)}
120
+ .GnBu .q1-9{fill:rgb(224,243,219)}
121
+ .GnBu .q2-9{fill:rgb(204,235,197)}
122
+ .GnBu .q3-9{fill:rgb(168,221,181)}
123
+ .GnBu .q4-9{fill:rgb(123,204,196)}
124
+ .GnBu .q5-9{fill:rgb(78,179,211)}
125
+ .GnBu .q6-9{fill:rgb(43,140,190)}
126
+ .GnBu .q7-9{fill:rgb(8,104,172)}
127
+ .GnBu .q8-9{fill:rgb(8,64,129)}
128
+ .BuGn .q0-3{fill:rgb(229,245,249)}
129
+ .BuGn .q1-3{fill:rgb(153,216,201)}
130
+ .BuGn .q2-3{fill:rgb(44,162,95)}
131
+ .BuGn .q0-4{fill:rgb(237,248,251)}
132
+ .BuGn .q1-4{fill:rgb(178,226,226)}
133
+ .BuGn .q2-4{fill:rgb(102,194,164)}
134
+ .BuGn .q3-4{fill:rgb(35,139,69)}
135
+ .BuGn .q0-5{fill:rgb(237,248,251)}
136
+ .BuGn .q1-5{fill:rgb(178,226,226)}
137
+ .BuGn .q2-5{fill:rgb(102,194,164)}
138
+ .BuGn .q3-5{fill:rgb(44,162,95)}
139
+ .BuGn .q4-5{fill:rgb(0,109,44)}
140
+ .BuGn .q0-6{fill:rgb(237,248,251)}
141
+ .BuGn .q1-6{fill:rgb(204,236,230)}
142
+ .BuGn .q2-6{fill:rgb(153,216,201)}
143
+ .BuGn .q3-6{fill:rgb(102,194,164)}
144
+ .BuGn .q4-6{fill:rgb(44,162,95)}
145
+ .BuGn .q5-6{fill:rgb(0,109,44)}
146
+ .BuGn .q0-7{fill:rgb(237,248,251)}
147
+ .BuGn .q1-7{fill:rgb(204,236,230)}
148
+ .BuGn .q2-7{fill:rgb(153,216,201)}
149
+ .BuGn .q3-7{fill:rgb(102,194,164)}
150
+ .BuGn .q4-7{fill:rgb(65,174,118)}
151
+ .BuGn .q5-7{fill:rgb(35,139,69)}
152
+ .BuGn .q6-7{fill:rgb(0,88,36)}
153
+ .BuGn .q0-8{fill:rgb(247,252,253)}
154
+ .BuGn .q1-8{fill:rgb(229,245,249)}
155
+ .BuGn .q2-8{fill:rgb(204,236,230)}
156
+ .BuGn .q3-8{fill:rgb(153,216,201)}
157
+ .BuGn .q4-8{fill:rgb(102,194,164)}
158
+ .BuGn .q5-8{fill:rgb(65,174,118)}
159
+ .BuGn .q6-8{fill:rgb(35,139,69)}
160
+ .BuGn .q7-8{fill:rgb(0,88,36)}
161
+ .BuGn .q0-9{fill:rgb(247,252,253)}
162
+ .BuGn .q1-9{fill:rgb(229,245,249)}
163
+ .BuGn .q2-9{fill:rgb(204,236,230)}
164
+ .BuGn .q3-9{fill:rgb(153,216,201)}
165
+ .BuGn .q4-9{fill:rgb(102,194,164)}
166
+ .BuGn .q5-9{fill:rgb(65,174,118)}
167
+ .BuGn .q6-9{fill:rgb(35,139,69)}
168
+ .BuGn .q7-9{fill:rgb(0,109,44)}
169
+ .BuGn .q8-9{fill:rgb(0,68,27)}
170
+ .PuBuGn .q0-3{fill:rgb(236,226,240)}
171
+ .PuBuGn .q1-3{fill:rgb(166,189,219)}
172
+ .PuBuGn .q2-3{fill:rgb(28,144,153)}
173
+ .PuBuGn .q0-4{fill:rgb(246,239,247)}
174
+ .PuBuGn .q1-4{fill:rgb(189,201,225)}
175
+ .PuBuGn .q2-4{fill:rgb(103,169,207)}
176
+ .PuBuGn .q3-4{fill:rgb(2,129,138)}
177
+ .PuBuGn .q0-5{fill:rgb(246,239,247)}
178
+ .PuBuGn .q1-5{fill:rgb(189,201,225)}
179
+ .PuBuGn .q2-5{fill:rgb(103,169,207)}
180
+ .PuBuGn .q3-5{fill:rgb(28,144,153)}
181
+ .PuBuGn .q4-5{fill:rgb(1,108,89)}
182
+ .PuBuGn .q0-6{fill:rgb(246,239,247)}
183
+ .PuBuGn .q1-6{fill:rgb(208,209,230)}
184
+ .PuBuGn .q2-6{fill:rgb(166,189,219)}
185
+ .PuBuGn .q3-6{fill:rgb(103,169,207)}
186
+ .PuBuGn .q4-6{fill:rgb(28,144,153)}
187
+ .PuBuGn .q5-6{fill:rgb(1,108,89)}
188
+ .PuBuGn .q0-7{fill:rgb(246,239,247)}
189
+ .PuBuGn .q1-7{fill:rgb(208,209,230)}
190
+ .PuBuGn .q2-7{fill:rgb(166,189,219)}
191
+ .PuBuGn .q3-7{fill:rgb(103,169,207)}
192
+ .PuBuGn .q4-7{fill:rgb(54,144,192)}
193
+ .PuBuGn .q5-7{fill:rgb(2,129,138)}
194
+ .PuBuGn .q6-7{fill:rgb(1,100,80)}
195
+ .PuBuGn .q0-8{fill:rgb(255,247,251)}
196
+ .PuBuGn .q1-8{fill:rgb(236,226,240)}
197
+ .PuBuGn .q2-8{fill:rgb(208,209,230)}
198
+ .PuBuGn .q3-8{fill:rgb(166,189,219)}
199
+ .PuBuGn .q4-8{fill:rgb(103,169,207)}
200
+ .PuBuGn .q5-8{fill:rgb(54,144,192)}
201
+ .PuBuGn .q6-8{fill:rgb(2,129,138)}
202
+ .PuBuGn .q7-8{fill:rgb(1,100,80)}
203
+ .PuBuGn .q0-9{fill:rgb(255,247,251)}
204
+ .PuBuGn .q1-9{fill:rgb(236,226,240)}
205
+ .PuBuGn .q2-9{fill:rgb(208,209,230)}
206
+ .PuBuGn .q3-9{fill:rgb(166,189,219)}
207
+ .PuBuGn .q4-9{fill:rgb(103,169,207)}
208
+ .PuBuGn .q5-9{fill:rgb(54,144,192)}
209
+ .PuBuGn .q6-9{fill:rgb(2,129,138)}
210
+ .PuBuGn .q7-9{fill:rgb(1,108,89)}
211
+ .PuBuGn .q8-9{fill:rgb(1,70,54)}
212
+ .PuBu .q0-3{fill:rgb(236,231,242)}
213
+ .PuBu .q1-3{fill:rgb(166,189,219)}
214
+ .PuBu .q2-3{fill:rgb(43,140,190)}
215
+ .PuBu .q0-4{fill:rgb(241,238,246)}
216
+ .PuBu .q1-4{fill:rgb(189,201,225)}
217
+ .PuBu .q2-4{fill:rgb(116,169,207)}
218
+ .PuBu .q3-4{fill:rgb(5,112,176)}
219
+ .PuBu .q0-5{fill:rgb(241,238,246)}
220
+ .PuBu .q1-5{fill:rgb(189,201,225)}
221
+ .PuBu .q2-5{fill:rgb(116,169,207)}
222
+ .PuBu .q3-5{fill:rgb(43,140,190)}
223
+ .PuBu .q4-5{fill:rgb(4,90,141)}
224
+ .PuBu .q0-6{fill:rgb(241,238,246)}
225
+ .PuBu .q1-6{fill:rgb(208,209,230)}
226
+ .PuBu .q2-6{fill:rgb(166,189,219)}
227
+ .PuBu .q3-6{fill:rgb(116,169,207)}
228
+ .PuBu .q4-6{fill:rgb(43,140,190)}
229
+ .PuBu .q5-6{fill:rgb(4,90,141)}
230
+ .PuBu .q0-7{fill:rgb(241,238,246)}
231
+ .PuBu .q1-7{fill:rgb(208,209,230)}
232
+ .PuBu .q2-7{fill:rgb(166,189,219)}
233
+ .PuBu .q3-7{fill:rgb(116,169,207)}
234
+ .PuBu .q4-7{fill:rgb(54,144,192)}
235
+ .PuBu .q5-7{fill:rgb(5,112,176)}
236
+ .PuBu .q6-7{fill:rgb(3,78,123)}
237
+ .PuBu .q0-8{fill:rgb(255,247,251)}
238
+ .PuBu .q1-8{fill:rgb(236,231,242)}
239
+ .PuBu .q2-8{fill:rgb(208,209,230)}
240
+ .PuBu .q3-8{fill:rgb(166,189,219)}
241
+ .PuBu .q4-8{fill:rgb(116,169,207)}
242
+ .PuBu .q5-8{fill:rgb(54,144,192)}
243
+ .PuBu .q6-8{fill:rgb(5,112,176)}
244
+ .PuBu .q7-8{fill:rgb(3,78,123)}
245
+ .PuBu .q0-9{fill:rgb(255,247,251)}
246
+ .PuBu .q1-9{fill:rgb(236,231,242)}
247
+ .PuBu .q2-9{fill:rgb(208,209,230)}
248
+ .PuBu .q3-9{fill:rgb(166,189,219)}
249
+ .PuBu .q4-9{fill:rgb(116,169,207)}
250
+ .PuBu .q5-9{fill:rgb(54,144,192)}
251
+ .PuBu .q6-9{fill:rgb(5,112,176)}
252
+ .PuBu .q7-9{fill:rgb(4,90,141)}
253
+ .PuBu .q8-9{fill:rgb(2,56,88)}
254
+ .BuPu .q0-3{fill:rgb(224,236,244)}
255
+ .BuPu .q1-3{fill:rgb(158,188,218)}
256
+ .BuPu .q2-3{fill:rgb(136,86,167)}
257
+ .BuPu .q0-4{fill:rgb(237,248,251)}
258
+ .BuPu .q1-4{fill:rgb(179,205,227)}
259
+ .BuPu .q2-4{fill:rgb(140,150,198)}
260
+ .BuPu .q3-4{fill:rgb(136,65,157)}
261
+ .BuPu .q0-5{fill:rgb(237,248,251)}
262
+ .BuPu .q1-5{fill:rgb(179,205,227)}
263
+ .BuPu .q2-5{fill:rgb(140,150,198)}
264
+ .BuPu .q3-5{fill:rgb(136,86,167)}
265
+ .BuPu .q4-5{fill:rgb(129,15,124)}
266
+ .BuPu .q0-6{fill:rgb(237,248,251)}
267
+ .BuPu .q1-6{fill:rgb(191,211,230)}
268
+ .BuPu .q2-6{fill:rgb(158,188,218)}
269
+ .BuPu .q3-6{fill:rgb(140,150,198)}
270
+ .BuPu .q4-6{fill:rgb(136,86,167)}
271
+ .BuPu .q5-6{fill:rgb(129,15,124)}
272
+ .BuPu .q0-7{fill:rgb(237,248,251)}
273
+ .BuPu .q1-7{fill:rgb(191,211,230)}
274
+ .BuPu .q2-7{fill:rgb(158,188,218)}
275
+ .BuPu .q3-7{fill:rgb(140,150,198)}
276
+ .BuPu .q4-7{fill:rgb(140,107,177)}
277
+ .BuPu .q5-7{fill:rgb(136,65,157)}
278
+ .BuPu .q6-7{fill:rgb(110,1,107)}
279
+ .BuPu .q0-8{fill:rgb(247,252,253)}
280
+ .BuPu .q1-8{fill:rgb(224,236,244)}
281
+ .BuPu .q2-8{fill:rgb(191,211,230)}
282
+ .BuPu .q3-8{fill:rgb(158,188,218)}
283
+ .BuPu .q4-8{fill:rgb(140,150,198)}
284
+ .BuPu .q5-8{fill:rgb(140,107,177)}
285
+ .BuPu .q6-8{fill:rgb(136,65,157)}
286
+ .BuPu .q7-8{fill:rgb(110,1,107)}
287
+ .BuPu .q0-9{fill:rgb(247,252,253)}
288
+ .BuPu .q1-9{fill:rgb(224,236,244)}
289
+ .BuPu .q2-9{fill:rgb(191,211,230)}
290
+ .BuPu .q3-9{fill:rgb(158,188,218)}
291
+ .BuPu .q4-9{fill:rgb(140,150,198)}
292
+ .BuPu .q5-9{fill:rgb(140,107,177)}
293
+ .BuPu .q6-9{fill:rgb(136,65,157)}
294
+ .BuPu .q7-9{fill:rgb(129,15,124)}
295
+ .BuPu .q8-9{fill:rgb(77,0,75)}
296
+ .RdPu .q0-3{fill:rgb(253,224,221)}
297
+ .RdPu .q1-3{fill:rgb(250,159,181)}
298
+ .RdPu .q2-3{fill:rgb(197,27,138)}
299
+ .RdPu .q0-4{fill:rgb(254,235,226)}
300
+ .RdPu .q1-4{fill:rgb(251,180,185)}
301
+ .RdPu .q2-4{fill:rgb(247,104,161)}
302
+ .RdPu .q3-4{fill:rgb(174,1,126)}
303
+ .RdPu .q0-5{fill:rgb(254,235,226)}
304
+ .RdPu .q1-5{fill:rgb(251,180,185)}
305
+ .RdPu .q2-5{fill:rgb(247,104,161)}
306
+ .RdPu .q3-5{fill:rgb(197,27,138)}
307
+ .RdPu .q4-5{fill:rgb(122,1,119)}
308
+ .RdPu .q0-6{fill:rgb(254,235,226)}
309
+ .RdPu .q1-6{fill:rgb(252,197,192)}
310
+ .RdPu .q2-6{fill:rgb(250,159,181)}
311
+ .RdPu .q3-6{fill:rgb(247,104,161)}
312
+ .RdPu .q4-6{fill:rgb(197,27,138)}
313
+ .RdPu .q5-6{fill:rgb(122,1,119)}
314
+ .RdPu .q0-7{fill:rgb(254,235,226)}
315
+ .RdPu .q1-7{fill:rgb(252,197,192)}
316
+ .RdPu .q2-7{fill:rgb(250,159,181)}
317
+ .RdPu .q3-7{fill:rgb(247,104,161)}
318
+ .RdPu .q4-7{fill:rgb(221,52,151)}
319
+ .RdPu .q5-7{fill:rgb(174,1,126)}
320
+ .RdPu .q6-7{fill:rgb(122,1,119)}
321
+ .RdPu .q0-8{fill:rgb(255,247,243)}
322
+ .RdPu .q1-8{fill:rgb(253,224,221)}
323
+ .RdPu .q2-8{fill:rgb(252,197,192)}
324
+ .RdPu .q3-8{fill:rgb(250,159,181)}
325
+ .RdPu .q4-8{fill:rgb(247,104,161)}
326
+ .RdPu .q5-8{fill:rgb(221,52,151)}
327
+ .RdPu .q6-8{fill:rgb(174,1,126)}
328
+ .RdPu .q7-8{fill:rgb(122,1,119)}
329
+ .RdPu .q0-9{fill:rgb(255,247,243)}
330
+ .RdPu .q1-9{fill:rgb(253,224,221)}
331
+ .RdPu .q2-9{fill:rgb(252,197,192)}
332
+ .RdPu .q3-9{fill:rgb(250,159,181)}
333
+ .RdPu .q4-9{fill:rgb(247,104,161)}
334
+ .RdPu .q5-9{fill:rgb(221,52,151)}
335
+ .RdPu .q6-9{fill:rgb(174,1,126)}
336
+ .RdPu .q7-9{fill:rgb(122,1,119)}
337
+ .RdPu .q8-9{fill:rgb(73,0,106)}
338
+ .PuRd .q0-3{fill:rgb(231,225,239)}
339
+ .PuRd .q1-3{fill:rgb(201,148,199)}
340
+ .PuRd .q2-3{fill:rgb(221,28,119)}
341
+ .PuRd .q0-4{fill:rgb(241,238,246)}
342
+ .PuRd .q1-4{fill:rgb(215,181,216)}
343
+ .PuRd .q2-4{fill:rgb(223,101,176)}
344
+ .PuRd .q3-4{fill:rgb(206,18,86)}
345
+ .PuRd .q0-5{fill:rgb(241,238,246)}
346
+ .PuRd .q1-5{fill:rgb(215,181,216)}
347
+ .PuRd .q2-5{fill:rgb(223,101,176)}
348
+ .PuRd .q3-5{fill:rgb(221,28,119)}
349
+ .PuRd .q4-5{fill:rgb(152,0,67)}
350
+ .PuRd .q0-6{fill:rgb(241,238,246)}
351
+ .PuRd .q1-6{fill:rgb(212,185,218)}
352
+ .PuRd .q2-6{fill:rgb(201,148,199)}
353
+ .PuRd .q3-6{fill:rgb(223,101,176)}
354
+ .PuRd .q4-6{fill:rgb(221,28,119)}
355
+ .PuRd .q5-6{fill:rgb(152,0,67)}
356
+ .PuRd .q0-7{fill:rgb(241,238,246)}
357
+ .PuRd .q1-7{fill:rgb(212,185,218)}
358
+ .PuRd .q2-7{fill:rgb(201,148,199)}
359
+ .PuRd .q3-7{fill:rgb(223,101,176)}
360
+ .PuRd .q4-7{fill:rgb(231,41,138)}
361
+ .PuRd .q5-7{fill:rgb(206,18,86)}
362
+ .PuRd .q6-7{fill:rgb(145,0,63)}
363
+ .PuRd .q0-8{fill:rgb(247,244,249)}
364
+ .PuRd .q1-8{fill:rgb(231,225,239)}
365
+ .PuRd .q2-8{fill:rgb(212,185,218)}
366
+ .PuRd .q3-8{fill:rgb(201,148,199)}
367
+ .PuRd .q4-8{fill:rgb(223,101,176)}
368
+ .PuRd .q5-8{fill:rgb(231,41,138)}
369
+ .PuRd .q6-8{fill:rgb(206,18,86)}
370
+ .PuRd .q7-8{fill:rgb(145,0,63)}
371
+ .PuRd .q0-9{fill:rgb(247,244,249)}
372
+ .PuRd .q1-9{fill:rgb(231,225,239)}
373
+ .PuRd .q2-9{fill:rgb(212,185,218)}
374
+ .PuRd .q3-9{fill:rgb(201,148,199)}
375
+ .PuRd .q4-9{fill:rgb(223,101,176)}
376
+ .PuRd .q5-9{fill:rgb(231,41,138)}
377
+ .PuRd .q6-9{fill:rgb(206,18,86)}
378
+ .PuRd .q7-9{fill:rgb(152,0,67)}
379
+ .PuRd .q8-9{fill:rgb(103,0,31)}
380
+ .OrRd .q0-3{fill:rgb(254,232,200)}
381
+ .OrRd .q1-3{fill:rgb(253,187,132)}
382
+ .OrRd .q2-3{fill:rgb(227,74,51)}
383
+ .OrRd .q0-4{fill:rgb(254,240,217)}
384
+ .OrRd .q1-4{fill:rgb(253,204,138)}
385
+ .OrRd .q2-4{fill:rgb(252,141,89)}
386
+ .OrRd .q3-4{fill:rgb(215,48,31)}
387
+ .OrRd .q0-5{fill:rgb(254,240,217)}
388
+ .OrRd .q1-5{fill:rgb(253,204,138)}
389
+ .OrRd .q2-5{fill:rgb(252,141,89)}
390
+ .OrRd .q3-5{fill:rgb(227,74,51)}
391
+ .OrRd .q4-5{fill:rgb(179,0,0)}
392
+ .OrRd .q0-6{fill:rgb(254,240,217)}
393
+ .OrRd .q1-6{fill:rgb(253,212,158)}
394
+ .OrRd .q2-6{fill:rgb(253,187,132)}
395
+ .OrRd .q3-6{fill:rgb(252,141,89)}
396
+ .OrRd .q4-6{fill:rgb(227,74,51)}
397
+ .OrRd .q5-6{fill:rgb(179,0,0)}
398
+ .OrRd .q0-7{fill:rgb(254,240,217)}
399
+ .OrRd .q1-7{fill:rgb(253,212,158)}
400
+ .OrRd .q2-7{fill:rgb(253,187,132)}
401
+ .OrRd .q3-7{fill:rgb(252,141,89)}
402
+ .OrRd .q4-7{fill:rgb(239,101,72)}
403
+ .OrRd .q5-7{fill:rgb(215,48,31)}
404
+ .OrRd .q6-7{fill:rgb(153,0,0)}
405
+ .OrRd .q0-8{fill:rgb(255,247,236)}
406
+ .OrRd .q1-8{fill:rgb(254,232,200)}
407
+ .OrRd .q2-8{fill:rgb(253,212,158)}
408
+ .OrRd .q3-8{fill:rgb(253,187,132)}
409
+ .OrRd .q4-8{fill:rgb(252,141,89)}
410
+ .OrRd .q5-8{fill:rgb(239,101,72)}
411
+ .OrRd .q6-8{fill:rgb(215,48,31)}
412
+ .OrRd .q7-8{fill:rgb(153,0,0)}
413
+ .OrRd .q0-9{fill:rgb(255,247,236)}
414
+ .OrRd .q1-9{fill:rgb(254,232,200)}
415
+ .OrRd .q2-9{fill:rgb(253,212,158)}
416
+ .OrRd .q3-9{fill:rgb(253,187,132)}
417
+ .OrRd .q4-9{fill:rgb(252,141,89)}
418
+ .OrRd .q5-9{fill:rgb(239,101,72)}
419
+ .OrRd .q6-9{fill:rgb(215,48,31)}
420
+ .OrRd .q7-9{fill:rgb(179,0,0)}
421
+ .OrRd .q8-9{fill:rgb(127,0,0)}
422
+ .YlOrRd .q0-3{fill:rgb(255,237,160)}
423
+ .YlOrRd .q1-3{fill:rgb(254,178,76)}
424
+ .YlOrRd .q2-3{fill:rgb(240,59,32)}
425
+ .YlOrRd .q0-4{fill:rgb(255,255,178)}
426
+ .YlOrRd .q1-4{fill:rgb(254,204,92)}
427
+ .YlOrRd .q2-4{fill:rgb(253,141,60)}
428
+ .YlOrRd .q3-4{fill:rgb(227,26,28)}
429
+ .YlOrRd .q0-5{fill:rgb(255,255,178)}
430
+ .YlOrRd .q1-5{fill:rgb(254,204,92)}
431
+ .YlOrRd .q2-5{fill:rgb(253,141,60)}
432
+ .YlOrRd .q3-5{fill:rgb(240,59,32)}
433
+ .YlOrRd .q4-5{fill:rgb(189,0,38)}
434
+ .YlOrRd .q0-6{fill:rgb(255,255,178)}
435
+ .YlOrRd .q1-6{fill:rgb(254,217,118)}
436
+ .YlOrRd .q2-6{fill:rgb(254,178,76)}
437
+ .YlOrRd .q3-6{fill:rgb(253,141,60)}
438
+ .YlOrRd .q4-6{fill:rgb(240,59,32)}
439
+ .YlOrRd .q5-6{fill:rgb(189,0,38)}
440
+ .YlOrRd .q0-7{fill:rgb(255,255,178)}
441
+ .YlOrRd .q1-7{fill:rgb(254,217,118)}
442
+ .YlOrRd .q2-7{fill:rgb(254,178,76)}
443
+ .YlOrRd .q3-7{fill:rgb(253,141,60)}
444
+ .YlOrRd .q4-7{fill:rgb(252,78,42)}
445
+ .YlOrRd .q5-7{fill:rgb(227,26,28)}
446
+ .YlOrRd .q6-7{fill:rgb(177,0,38)}
447
+ .YlOrRd .q0-8{fill:rgb(255,255,204)}
448
+ .YlOrRd .q1-8{fill:rgb(255,237,160)}
449
+ .YlOrRd .q2-8{fill:rgb(254,217,118)}
450
+ .YlOrRd .q3-8{fill:rgb(254,178,76)}
451
+ .YlOrRd .q4-8{fill:rgb(253,141,60)}
452
+ .YlOrRd .q5-8{fill:rgb(252,78,42)}
453
+ .YlOrRd .q6-8{fill:rgb(227,26,28)}
454
+ .YlOrRd .q7-8{fill:rgb(177,0,38)}
455
+ .YlOrRd .q0-9{fill:rgb(255,255,204)}
456
+ .YlOrRd .q1-9{fill:rgb(255,237,160)}
457
+ .YlOrRd .q2-9{fill:rgb(254,217,118)}
458
+ .YlOrRd .q3-9{fill:rgb(254,178,76)}
459
+ .YlOrRd .q4-9{fill:rgb(253,141,60)}
460
+ .YlOrRd .q5-9{fill:rgb(252,78,42)}
461
+ .YlOrRd .q6-9{fill:rgb(227,26,28)}
462
+ .YlOrRd .q7-9{fill:rgb(189,0,38)}
463
+ .YlOrRd .q8-9{fill:rgb(128,0,38)}
464
+ .YlOrBr .q0-3{fill:rgb(255,247,188)}
465
+ .YlOrBr .q1-3{fill:rgb(254,196,79)}
466
+ .YlOrBr .q2-3{fill:rgb(217,95,14)}
467
+ .YlOrBr .q0-4{fill:rgb(255,255,212)}
468
+ .YlOrBr .q1-4{fill:rgb(254,217,142)}
469
+ .YlOrBr .q2-4{fill:rgb(254,153,41)}
470
+ .YlOrBr .q3-4{fill:rgb(204,76,2)}
471
+ .YlOrBr .q0-5{fill:rgb(255,255,212)}
472
+ .YlOrBr .q1-5{fill:rgb(254,217,142)}
473
+ .YlOrBr .q2-5{fill:rgb(254,153,41)}
474
+ .YlOrBr .q3-5{fill:rgb(217,95,14)}
475
+ .YlOrBr .q4-5{fill:rgb(153,52,4)}
476
+ .YlOrBr .q0-6{fill:rgb(255,255,212)}
477
+ .YlOrBr .q1-6{fill:rgb(254,227,145)}
478
+ .YlOrBr .q2-6{fill:rgb(254,196,79)}
479
+ .YlOrBr .q3-6{fill:rgb(254,153,41)}
480
+ .YlOrBr .q4-6{fill:rgb(217,95,14)}
481
+ .YlOrBr .q5-6{fill:rgb(153,52,4)}
482
+ .YlOrBr .q0-7{fill:rgb(255,255,212)}
483
+ .YlOrBr .q1-7{fill:rgb(254,227,145)}
484
+ .YlOrBr .q2-7{fill:rgb(254,196,79)}
485
+ .YlOrBr .q3-7{fill:rgb(254,153,41)}
486
+ .YlOrBr .q4-7{fill:rgb(236,112,20)}
487
+ .YlOrBr .q5-7{fill:rgb(204,76,2)}
488
+ .YlOrBr .q6-7{fill:rgb(140,45,4)}
489
+ .YlOrBr .q0-8{fill:rgb(255,255,229)}
490
+ .YlOrBr .q1-8{fill:rgb(255,247,188)}
491
+ .YlOrBr .q2-8{fill:rgb(254,227,145)}
492
+ .YlOrBr .q3-8{fill:rgb(254,196,79)}
493
+ .YlOrBr .q4-8{fill:rgb(254,153,41)}
494
+ .YlOrBr .q5-8{fill:rgb(236,112,20)}
495
+ .YlOrBr .q6-8{fill:rgb(204,76,2)}
496
+ .YlOrBr .q7-8{fill:rgb(140,45,4)}
497
+ .YlOrBr .q0-9{fill:rgb(255,255,229)}
498
+ .YlOrBr .q1-9{fill:rgb(255,247,188)}
499
+ .YlOrBr .q2-9{fill:rgb(254,227,145)}
500
+ .YlOrBr .q3-9{fill:rgb(254,196,79)}
501
+ .YlOrBr .q4-9{fill:rgb(254,153,41)}
502
+ .YlOrBr .q5-9{fill:rgb(236,112,20)}
503
+ .YlOrBr .q6-9{fill:rgb(204,76,2)}
504
+ .YlOrBr .q7-9{fill:rgb(153,52,4)}
505
+ .YlOrBr .q8-9{fill:rgb(102,37,6)}
506
+ .Purples .q0-3{fill:rgb(239,237,245)}
507
+ .Purples .q1-3{fill:rgb(188,189,220)}
508
+ .Purples .q2-3{fill:rgb(117,107,177)}
509
+ .Purples .q0-4{fill:rgb(242,240,247)}
510
+ .Purples .q1-4{fill:rgb(203,201,226)}
511
+ .Purples .q2-4{fill:rgb(158,154,200)}
512
+ .Purples .q3-4{fill:rgb(106,81,163)}
513
+ .Purples .q0-5{fill:rgb(242,240,247)}
514
+ .Purples .q1-5{fill:rgb(203,201,226)}
515
+ .Purples .q2-5{fill:rgb(158,154,200)}
516
+ .Purples .q3-5{fill:rgb(117,107,177)}
517
+ .Purples .q4-5{fill:rgb(84,39,143)}
518
+ .Purples .q0-6{fill:rgb(242,240,247)}
519
+ .Purples .q1-6{fill:rgb(218,218,235)}
520
+ .Purples .q2-6{fill:rgb(188,189,220)}
521
+ .Purples .q3-6{fill:rgb(158,154,200)}
522
+ .Purples .q4-6{fill:rgb(117,107,177)}
523
+ .Purples .q5-6{fill:rgb(84,39,143)}
524
+ .Purples .q0-7{fill:rgb(242,240,247)}
525
+ .Purples .q1-7{fill:rgb(218,218,235)}
526
+ .Purples .q2-7{fill:rgb(188,189,220)}
527
+ .Purples .q3-7{fill:rgb(158,154,200)}
528
+ .Purples .q4-7{fill:rgb(128,125,186)}
529
+ .Purples .q5-7{fill:rgb(106,81,163)}
530
+ .Purples .q6-7{fill:rgb(74,20,134)}
531
+ .Purples .q0-8{fill:rgb(252,251,253)}
532
+ .Purples .q1-8{fill:rgb(239,237,245)}
533
+ .Purples .q2-8{fill:rgb(218,218,235)}
534
+ .Purples .q3-8{fill:rgb(188,189,220)}
535
+ .Purples .q4-8{fill:rgb(158,154,200)}
536
+ .Purples .q5-8{fill:rgb(128,125,186)}
537
+ .Purples .q6-8{fill:rgb(106,81,163)}
538
+ .Purples .q7-8{fill:rgb(74,20,134)}
539
+ .Purples .q0-9{fill:rgb(252,251,253)}
540
+ .Purples .q1-9{fill:rgb(239,237,245)}
541
+ .Purples .q2-9{fill:rgb(218,218,235)}
542
+ .Purples .q3-9{fill:rgb(188,189,220)}
543
+ .Purples .q4-9{fill:rgb(158,154,200)}
544
+ .Purples .q5-9{fill:rgb(128,125,186)}
545
+ .Purples .q6-9{fill:rgb(106,81,163)}
546
+ .Purples .q7-9{fill:rgb(84,39,143)}
547
+ .Purples .q8-9{fill:rgb(63,0,125)}
548
+ .Blues .q0-3{fill:rgb(222,235,247)}
549
+ .Blues .q1-3{fill:rgb(158,202,225)}
550
+ .Blues .q2-3{fill:rgb(49,130,189)}
551
+ .Blues .q0-4{fill:rgb(239,243,255)}
552
+ .Blues .q1-4{fill:rgb(189,215,231)}
553
+ .Blues .q2-4{fill:rgb(107,174,214)}
554
+ .Blues .q3-4{fill:rgb(33,113,181)}
555
+ .Blues .q0-5{fill:rgb(239,243,255)}
556
+ .Blues .q1-5{fill:rgb(189,215,231)}
557
+ .Blues .q2-5{fill:rgb(107,174,214)}
558
+ .Blues .q3-5{fill:rgb(49,130,189)}
559
+ .Blues .q4-5{fill:rgb(8,81,156)}
560
+ .Blues .q0-6{fill:rgb(239,243,255)}
561
+ .Blues .q1-6{fill:rgb(198,219,239)}
562
+ .Blues .q2-6{fill:rgb(158,202,225)}
563
+ .Blues .q3-6{fill:rgb(107,174,214)}
564
+ .Blues .q4-6{fill:rgb(49,130,189)}
565
+ .Blues .q5-6{fill:rgb(8,81,156)}
566
+ .Blues .q0-7{fill:rgb(239,243,255)}
567
+ .Blues .q1-7{fill:rgb(198,219,239)}
568
+ .Blues .q2-7{fill:rgb(158,202,225)}
569
+ .Blues .q3-7{fill:rgb(107,174,214)}
570
+ .Blues .q4-7{fill:rgb(66,146,198)}
571
+ .Blues .q5-7{fill:rgb(33,113,181)}
572
+ .Blues .q6-7{fill:rgb(8,69,148)}
573
+ .Blues .q0-8{fill:rgb(247,251,255)}
574
+ .Blues .q1-8{fill:rgb(222,235,247)}
575
+ .Blues .q2-8{fill:rgb(198,219,239)}
576
+ .Blues .q3-8{fill:rgb(158,202,225)}
577
+ .Blues .q4-8{fill:rgb(107,174,214)}
578
+ .Blues .q5-8{fill:rgb(66,146,198)}
579
+ .Blues .q6-8{fill:rgb(33,113,181)}
580
+ .Blues .q7-8{fill:rgb(8,69,148)}
581
+ .Blues .q0-9{fill:rgb(247,251,255)}
582
+ .Blues .q1-9{fill:rgb(222,235,247)}
583
+ .Blues .q2-9{fill:rgb(198,219,239)}
584
+ .Blues .q3-9{fill:rgb(158,202,225)}
585
+ .Blues .q4-9{fill:rgb(107,174,214)}
586
+ .Blues .q5-9{fill:rgb(66,146,198)}
587
+ .Blues .q6-9{fill:rgb(33,113,181)}
588
+ .Blues .q7-9{fill:rgb(8,81,156)}
589
+ .Blues .q8-9{fill:rgb(8,48,107)}
590
+ .Greens .q0-3{fill:rgb(229,245,224)}
591
+ .Greens .q1-3{fill:rgb(161,217,155)}
592
+ .Greens .q2-3{fill:rgb(49,163,84)}
593
+ .Greens .q0-4{fill:rgb(237,248,233)}
594
+ .Greens .q1-4{fill:rgb(186,228,179)}
595
+ .Greens .q2-4{fill:rgb(116,196,118)}
596
+ .Greens .q3-4{fill:rgb(35,139,69)}
597
+ .Greens .q0-5{fill:rgb(237,248,233)}
598
+ .Greens .q1-5{fill:rgb(186,228,179)}
599
+ .Greens .q2-5{fill:rgb(116,196,118)}
600
+ .Greens .q3-5{fill:rgb(49,163,84)}
601
+ .Greens .q4-5{fill:rgb(0,109,44)}
602
+ .Greens .q0-6{fill:rgb(237,248,233)}
603
+ .Greens .q1-6{fill:rgb(199,233,192)}
604
+ .Greens .q2-6{fill:rgb(161,217,155)}
605
+ .Greens .q3-6{fill:rgb(116,196,118)}
606
+ .Greens .q4-6{fill:rgb(49,163,84)}
607
+ .Greens .q5-6{fill:rgb(0,109,44)}
608
+ .Greens .q0-7{fill:rgb(237,248,233)}
609
+ .Greens .q1-7{fill:rgb(199,233,192)}
610
+ .Greens .q2-7{fill:rgb(161,217,155)}
611
+ .Greens .q3-7{fill:rgb(116,196,118)}
612
+ .Greens .q4-7{fill:rgb(65,171,93)}
613
+ .Greens .q5-7{fill:rgb(35,139,69)}
614
+ .Greens .q6-7{fill:rgb(0,90,50)}
615
+ .Greens .q0-8{fill:rgb(247,252,245)}
616
+ .Greens .q1-8{fill:rgb(229,245,224)}
617
+ .Greens .q2-8{fill:rgb(199,233,192)}
618
+ .Greens .q3-8{fill:rgb(161,217,155)}
619
+ .Greens .q4-8{fill:rgb(116,196,118)}
620
+ .Greens .q5-8{fill:rgb(65,171,93)}
621
+ .Greens .q6-8{fill:rgb(35,139,69)}
622
+ .Greens .q7-8{fill:rgb(0,90,50)}
623
+ .Greens .q0-9{fill:rgb(247,252,245)}
624
+ .Greens .q1-9{fill:rgb(229,245,224)}
625
+ .Greens .q2-9{fill:rgb(199,233,192)}
626
+ .Greens .q3-9{fill:rgb(161,217,155)}
627
+ .Greens .q4-9{fill:rgb(116,196,118)}
628
+ .Greens .q5-9{fill:rgb(65,171,93)}
629
+ .Greens .q6-9{fill:rgb(35,139,69)}
630
+ .Greens .q7-9{fill:rgb(0,109,44)}
631
+ .Greens .q8-9{fill:rgb(0,68,27)}
632
+ .Oranges .q0-3{fill:rgb(254,230,206)}
633
+ .Oranges .q1-3{fill:rgb(253,174,107)}
634
+ .Oranges .q2-3{fill:rgb(230,85,13)}
635
+ .Oranges .q0-4{fill:rgb(254,237,222)}
636
+ .Oranges .q1-4{fill:rgb(253,190,133)}
637
+ .Oranges .q2-4{fill:rgb(253,141,60)}
638
+ .Oranges .q3-4{fill:rgb(217,71,1)}
639
+ .Oranges .q0-5{fill:rgb(254,237,222)}
640
+ .Oranges .q1-5{fill:rgb(253,190,133)}
641
+ .Oranges .q2-5{fill:rgb(253,141,60)}
642
+ .Oranges .q3-5{fill:rgb(230,85,13)}
643
+ .Oranges .q4-5{fill:rgb(166,54,3)}
644
+ .Oranges .q0-6{fill:rgb(254,237,222)}
645
+ .Oranges .q1-6{fill:rgb(253,208,162)}
646
+ .Oranges .q2-6{fill:rgb(253,174,107)}
647
+ .Oranges .q3-6{fill:rgb(253,141,60)}
648
+ .Oranges .q4-6{fill:rgb(230,85,13)}
649
+ .Oranges .q5-6{fill:rgb(166,54,3)}
650
+ .Oranges .q0-7{fill:rgb(254,237,222)}
651
+ .Oranges .q1-7{fill:rgb(253,208,162)}
652
+ .Oranges .q2-7{fill:rgb(253,174,107)}
653
+ .Oranges .q3-7{fill:rgb(253,141,60)}
654
+ .Oranges .q4-7{fill:rgb(241,105,19)}
655
+ .Oranges .q5-7{fill:rgb(217,72,1)}
656
+ .Oranges .q6-7{fill:rgb(140,45,4)}
657
+ .Oranges .q0-8{fill:rgb(255,245,235)}
658
+ .Oranges .q1-8{fill:rgb(254,230,206)}
659
+ .Oranges .q2-8{fill:rgb(253,208,162)}
660
+ .Oranges .q3-8{fill:rgb(253,174,107)}
661
+ .Oranges .q4-8{fill:rgb(253,141,60)}
662
+ .Oranges .q5-8{fill:rgb(241,105,19)}
663
+ .Oranges .q6-8{fill:rgb(217,72,1)}
664
+ .Oranges .q7-8{fill:rgb(140,45,4)}
665
+ .Oranges .q0-9{fill:rgb(255,245,235)}
666
+ .Oranges .q1-9{fill:rgb(254,230,206)}
667
+ .Oranges .q2-9{fill:rgb(253,208,162)}
668
+ .Oranges .q3-9{fill:rgb(253,174,107)}
669
+ .Oranges .q4-9{fill:rgb(253,141,60)}
670
+ .Oranges .q5-9{fill:rgb(241,105,19)}
671
+ .Oranges .q6-9{fill:rgb(217,72,1)}
672
+ .Oranges .q7-9{fill:rgb(166,54,3)}
673
+ .Oranges .q8-9{fill:rgb(127,39,4)}
674
+ .Reds .q0-3{fill:rgb(254,224,210)}
675
+ .Reds .q1-3{fill:rgb(252,146,114)}
676
+ .Reds .q2-3{fill:rgb(222,45,38)}
677
+ .Reds .q0-4{fill:rgb(254,229,217)}
678
+ .Reds .q1-4{fill:rgb(252,174,145)}
679
+ .Reds .q2-4{fill:rgb(251,106,74)}
680
+ .Reds .q3-4{fill:rgb(203,24,29)}
681
+ .Reds .q0-5{fill:rgb(254,229,217)}
682
+ .Reds .q1-5{fill:rgb(252,174,145)}
683
+ .Reds .q2-5{fill:rgb(251,106,74)}
684
+ .Reds .q3-5{fill:rgb(222,45,38)}
685
+ .Reds .q4-5{fill:rgb(165,15,21)}
686
+ .Reds .q0-6{fill:rgb(254,229,217)}
687
+ .Reds .q1-6{fill:rgb(252,187,161)}
688
+ .Reds .q2-6{fill:rgb(252,146,114)}
689
+ .Reds .q3-6{fill:rgb(251,106,74)}
690
+ .Reds .q4-6{fill:rgb(222,45,38)}
691
+ .Reds .q5-6{fill:rgb(165,15,21)}
692
+ .Reds .q0-7{fill:rgb(254,229,217)}
693
+ .Reds .q1-7{fill:rgb(252,187,161)}
694
+ .Reds .q2-7{fill:rgb(252,146,114)}
695
+ .Reds .q3-7{fill:rgb(251,106,74)}
696
+ .Reds .q4-7{fill:rgb(239,59,44)}
697
+ .Reds .q5-7{fill:rgb(203,24,29)}
698
+ .Reds .q6-7{fill:rgb(153,0,13)}
699
+ .Reds .q0-8{fill:rgb(255,245,240)}
700
+ .Reds .q1-8{fill:rgb(254,224,210)}
701
+ .Reds .q2-8{fill:rgb(252,187,161)}
702
+ .Reds .q3-8{fill:rgb(252,146,114)}
703
+ .Reds .q4-8{fill:rgb(251,106,74)}
704
+ .Reds .q5-8{fill:rgb(239,59,44)}
705
+ .Reds .q6-8{fill:rgb(203,24,29)}
706
+ .Reds .q7-8{fill:rgb(153,0,13)}
707
+ .Reds .q0-9{fill:rgb(255,245,240)}
708
+ .Reds .q1-9{fill:rgb(254,224,210)}
709
+ .Reds .q2-9{fill:rgb(252,187,161)}
710
+ .Reds .q3-9{fill:rgb(252,146,114)}
711
+ .Reds .q4-9{fill:rgb(251,106,74)}
712
+ .Reds .q5-9{fill:rgb(239,59,44)}
713
+ .Reds .q6-9{fill:rgb(203,24,29)}
714
+ .Reds .q7-9{fill:rgb(165,15,21)}
715
+ .Reds .q8-9{fill:rgb(103,0,13)}
716
+ .Greys .q0-3{fill:rgb(240,240,240)}
717
+ .Greys .q1-3{fill:rgb(189,189,189)}
718
+ .Greys .q2-3{fill:rgb(99,99,99)}
719
+ .Greys .q0-4{fill:rgb(247,247,247)}
720
+ .Greys .q1-4{fill:rgb(204,204,204)}
721
+ .Greys .q2-4{fill:rgb(150,150,150)}
722
+ .Greys .q3-4{fill:rgb(82,82,82)}
723
+ .Greys .q0-5{fill:rgb(247,247,247)}
724
+ .Greys .q1-5{fill:rgb(204,204,204)}
725
+ .Greys .q2-5{fill:rgb(150,150,150)}
726
+ .Greys .q3-5{fill:rgb(99,99,99)}
727
+ .Greys .q4-5{fill:rgb(37,37,37)}
728
+ .Greys .q0-6{fill:rgb(247,247,247)}
729
+ .Greys .q1-6{fill:rgb(217,217,217)}
730
+ .Greys .q2-6{fill:rgb(189,189,189)}
731
+ .Greys .q3-6{fill:rgb(150,150,150)}
732
+ .Greys .q4-6{fill:rgb(99,99,99)}
733
+ .Greys .q5-6{fill:rgb(37,37,37)}
734
+ .Greys .q0-7{fill:rgb(247,247,247)}
735
+ .Greys .q1-7{fill:rgb(217,217,217)}
736
+ .Greys .q2-7{fill:rgb(189,189,189)}
737
+ .Greys .q3-7{fill:rgb(150,150,150)}
738
+ .Greys .q4-7{fill:rgb(115,115,115)}
739
+ .Greys .q5-7{fill:rgb(82,82,82)}
740
+ .Greys .q6-7{fill:rgb(37,37,37)}
741
+ .Greys .q0-8{fill:rgb(255,255,255)}
742
+ .Greys .q1-8{fill:rgb(240,240,240)}
743
+ .Greys .q2-8{fill:rgb(217,217,217)}
744
+ .Greys .q3-8{fill:rgb(189,189,189)}
745
+ .Greys .q4-8{fill:rgb(150,150,150)}
746
+ .Greys .q5-8{fill:rgb(115,115,115)}
747
+ .Greys .q6-8{fill:rgb(82,82,82)}
748
+ .Greys .q7-8{fill:rgb(37,37,37)}
749
+ .Greys .q0-9{fill:rgb(255,255,255)}
750
+ .Greys .q1-9{fill:rgb(240,240,240)}
751
+ .Greys .q2-9{fill:rgb(217,217,217)}
752
+ .Greys .q3-9{fill:rgb(189,189,189)}
753
+ .Greys .q4-9{fill:rgb(150,150,150)}
754
+ .Greys .q5-9{fill:rgb(115,115,115)}
755
+ .Greys .q6-9{fill:rgb(82,82,82)}
756
+ .Greys .q7-9{fill:rgb(37,37,37)}
757
+ .Greys .q8-9{fill:rgb(0,0,0)}
758
+ .PuOr .q0-3{fill:rgb(241,163,64)}
759
+ .PuOr .q1-3{fill:rgb(247,247,247)}
760
+ .PuOr .q2-3{fill:rgb(153,142,195)}
761
+ .PuOr .q0-4{fill:rgb(230,97,1)}
762
+ .PuOr .q1-4{fill:rgb(253,184,99)}
763
+ .PuOr .q2-4{fill:rgb(178,171,210)}
764
+ .PuOr .q3-4{fill:rgb(94,60,153)}
765
+ .PuOr .q0-5{fill:rgb(230,97,1)}
766
+ .PuOr .q1-5{fill:rgb(253,184,99)}
767
+ .PuOr .q2-5{fill:rgb(247,247,247)}
768
+ .PuOr .q3-5{fill:rgb(178,171,210)}
769
+ .PuOr .q4-5{fill:rgb(94,60,153)}
770
+ .PuOr .q0-6{fill:rgb(179,88,6)}
771
+ .PuOr .q1-6{fill:rgb(241,163,64)}
772
+ .PuOr .q2-6{fill:rgb(254,224,182)}
773
+ .PuOr .q3-6{fill:rgb(216,218,235)}
774
+ .PuOr .q4-6{fill:rgb(153,142,195)}
775
+ .PuOr .q5-6{fill:rgb(84,39,136)}
776
+ .PuOr .q0-7{fill:rgb(179,88,6)}
777
+ .PuOr .q1-7{fill:rgb(241,163,64)}
778
+ .PuOr .q2-7{fill:rgb(254,224,182)}
779
+ .PuOr .q3-7{fill:rgb(247,247,247)}
780
+ .PuOr .q4-7{fill:rgb(216,218,235)}
781
+ .PuOr .q5-7{fill:rgb(153,142,195)}
782
+ .PuOr .q6-7{fill:rgb(84,39,136)}
783
+ .PuOr .q0-8{fill:rgb(179,88,6)}
784
+ .PuOr .q1-8{fill:rgb(224,130,20)}
785
+ .PuOr .q2-8{fill:rgb(253,184,99)}
786
+ .PuOr .q3-8{fill:rgb(254,224,182)}
787
+ .PuOr .q4-8{fill:rgb(216,218,235)}
788
+ .PuOr .q5-8{fill:rgb(178,171,210)}
789
+ .PuOr .q6-8{fill:rgb(128,115,172)}
790
+ .PuOr .q7-8{fill:rgb(84,39,136)}
791
+ .PuOr .q0-9{fill:rgb(179,88,6)}
792
+ .PuOr .q1-9{fill:rgb(224,130,20)}
793
+ .PuOr .q2-9{fill:rgb(253,184,99)}
794
+ .PuOr .q3-9{fill:rgb(254,224,182)}
795
+ .PuOr .q4-9{fill:rgb(247,247,247)}
796
+ .PuOr .q5-9{fill:rgb(216,218,235)}
797
+ .PuOr .q6-9{fill:rgb(178,171,210)}
798
+ .PuOr .q7-9{fill:rgb(128,115,172)}
799
+ .PuOr .q8-9{fill:rgb(84,39,136)}
800
+ .PuOr .q0-10{fill:rgb(127,59,8)}
801
+ .PuOr .q1-10{fill:rgb(179,88,6)}
802
+ .PuOr .q2-10{fill:rgb(224,130,20)}
803
+ .PuOr .q3-10{fill:rgb(253,184,99)}
804
+ .PuOr .q4-10{fill:rgb(254,224,182)}
805
+ .PuOr .q5-10{fill:rgb(216,218,235)}
806
+ .PuOr .q6-10{fill:rgb(178,171,210)}
807
+ .PuOr .q7-10{fill:rgb(128,115,172)}
808
+ .PuOr .q8-10{fill:rgb(84,39,136)}
809
+ .PuOr .q9-10{fill:rgb(45,0,75)}
810
+ .PuOr .q0-11{fill:rgb(127,59,8)}
811
+ .PuOr .q1-11{fill:rgb(179,88,6)}
812
+ .PuOr .q2-11{fill:rgb(224,130,20)}
813
+ .PuOr .q3-11{fill:rgb(253,184,99)}
814
+ .PuOr .q4-11{fill:rgb(254,224,182)}
815
+ .PuOr .q5-11{fill:rgb(247,247,247)}
816
+ .PuOr .q6-11{fill:rgb(216,218,235)}
817
+ .PuOr .q7-11{fill:rgb(178,171,210)}
818
+ .PuOr .q8-11{fill:rgb(128,115,172)}
819
+ .PuOr .q9-11{fill:rgb(84,39,136)}
820
+ .PuOr .q10-11{fill:rgb(45,0,75)}
821
+ .BrBG .q0-3{fill:rgb(216,179,101)}
822
+ .BrBG .q1-3{fill:rgb(245,245,245)}
823
+ .BrBG .q2-3{fill:rgb(90,180,172)}
824
+ .BrBG .q0-4{fill:rgb(166,97,26)}
825
+ .BrBG .q1-4{fill:rgb(223,194,125)}
826
+ .BrBG .q2-4{fill:rgb(128,205,193)}
827
+ .BrBG .q3-4{fill:rgb(1,133,113)}
828
+ .BrBG .q0-5{fill:rgb(166,97,26)}
829
+ .BrBG .q1-5{fill:rgb(223,194,125)}
830
+ .BrBG .q2-5{fill:rgb(245,245,245)}
831
+ .BrBG .q3-5{fill:rgb(128,205,193)}
832
+ .BrBG .q4-5{fill:rgb(1,133,113)}
833
+ .BrBG .q0-6{fill:rgb(140,81,10)}
834
+ .BrBG .q1-6{fill:rgb(216,179,101)}
835
+ .BrBG .q2-6{fill:rgb(246,232,195)}
836
+ .BrBG .q3-6{fill:rgb(199,234,229)}
837
+ .BrBG .q4-6{fill:rgb(90,180,172)}
838
+ .BrBG .q5-6{fill:rgb(1,102,94)}
839
+ .BrBG .q0-7{fill:rgb(140,81,10)}
840
+ .BrBG .q1-7{fill:rgb(216,179,101)}
841
+ .BrBG .q2-7{fill:rgb(246,232,195)}
842
+ .BrBG .q3-7{fill:rgb(245,245,245)}
843
+ .BrBG .q4-7{fill:rgb(199,234,229)}
844
+ .BrBG .q5-7{fill:rgb(90,180,172)}
845
+ .BrBG .q6-7{fill:rgb(1,102,94)}
846
+ .BrBG .q0-8{fill:rgb(140,81,10)}
847
+ .BrBG .q1-8{fill:rgb(191,129,45)}
848
+ .BrBG .q2-8{fill:rgb(223,194,125)}
849
+ .BrBG .q3-8{fill:rgb(246,232,195)}
850
+ .BrBG .q4-8{fill:rgb(199,234,229)}
851
+ .BrBG .q5-8{fill:rgb(128,205,193)}
852
+ .BrBG .q6-8{fill:rgb(53,151,143)}
853
+ .BrBG .q7-8{fill:rgb(1,102,94)}
854
+ .BrBG .q0-9{fill:rgb(140,81,10)}
855
+ .BrBG .q1-9{fill:rgb(191,129,45)}
856
+ .BrBG .q2-9{fill:rgb(223,194,125)}
857
+ .BrBG .q3-9{fill:rgb(246,232,195)}
858
+ .BrBG .q4-9{fill:rgb(245,245,245)}
859
+ .BrBG .q5-9{fill:rgb(199,234,229)}
860
+ .BrBG .q6-9{fill:rgb(128,205,193)}
861
+ .BrBG .q7-9{fill:rgb(53,151,143)}
862
+ .BrBG .q8-9{fill:rgb(1,102,94)}
863
+ .BrBG .q0-10{fill:rgb(84,48,5)}
864
+ .BrBG .q1-10{fill:rgb(140,81,10)}
865
+ .BrBG .q2-10{fill:rgb(191,129,45)}
866
+ .BrBG .q3-10{fill:rgb(223,194,125)}
867
+ .BrBG .q4-10{fill:rgb(246,232,195)}
868
+ .BrBG .q5-10{fill:rgb(199,234,229)}
869
+ .BrBG .q6-10{fill:rgb(128,205,193)}
870
+ .BrBG .q7-10{fill:rgb(53,151,143)}
871
+ .BrBG .q8-10{fill:rgb(1,102,94)}
872
+ .BrBG .q9-10{fill:rgb(0,60,48)}
873
+ .BrBG .q0-11{fill:rgb(84,48,5)}
874
+ .BrBG .q1-11{fill:rgb(140,81,10)}
875
+ .BrBG .q2-11{fill:rgb(191,129,45)}
876
+ .BrBG .q3-11{fill:rgb(223,194,125)}
877
+ .BrBG .q4-11{fill:rgb(246,232,195)}
878
+ .BrBG .q5-11{fill:rgb(245,245,245)}
879
+ .BrBG .q6-11{fill:rgb(199,234,229)}
880
+ .BrBG .q7-11{fill:rgb(128,205,193)}
881
+ .BrBG .q8-11{fill:rgb(53,151,143)}
882
+ .BrBG .q9-11{fill:rgb(1,102,94)}
883
+ .BrBG .q10-11{fill:rgb(0,60,48)}
884
+ .PRGn .q0-3{fill:rgb(175,141,195)}
885
+ .PRGn .q1-3{fill:rgb(247,247,247)}
886
+ .PRGn .q2-3{fill:rgb(127,191,123)}
887
+ .PRGn .q0-4{fill:rgb(123,50,148)}
888
+ .PRGn .q1-4{fill:rgb(194,165,207)}
889
+ .PRGn .q2-4{fill:rgb(166,219,160)}
890
+ .PRGn .q3-4{fill:rgb(0,136,55)}
891
+ .PRGn .q0-5{fill:rgb(123,50,148)}
892
+ .PRGn .q1-5{fill:rgb(194,165,207)}
893
+ .PRGn .q2-5{fill:rgb(247,247,247)}
894
+ .PRGn .q3-5{fill:rgb(166,219,160)}
895
+ .PRGn .q4-5{fill:rgb(0,136,55)}
896
+ .PRGn .q0-6{fill:rgb(118,42,131)}
897
+ .PRGn .q1-6{fill:rgb(175,141,195)}
898
+ .PRGn .q2-6{fill:rgb(231,212,232)}
899
+ .PRGn .q3-6{fill:rgb(217,240,211)}
900
+ .PRGn .q4-6{fill:rgb(127,191,123)}
901
+ .PRGn .q5-6{fill:rgb(27,120,55)}
902
+ .PRGn .q0-7{fill:rgb(118,42,131)}
903
+ .PRGn .q1-7{fill:rgb(175,141,195)}
904
+ .PRGn .q2-7{fill:rgb(231,212,232)}
905
+ .PRGn .q3-7{fill:rgb(247,247,247)}
906
+ .PRGn .q4-7{fill:rgb(217,240,211)}
907
+ .PRGn .q5-7{fill:rgb(127,191,123)}
908
+ .PRGn .q6-7{fill:rgb(27,120,55)}
909
+ .PRGn .q0-8{fill:rgb(118,42,131)}
910
+ .PRGn .q1-8{fill:rgb(153,112,171)}
911
+ .PRGn .q2-8{fill:rgb(194,165,207)}
912
+ .PRGn .q3-8{fill:rgb(231,212,232)}
913
+ .PRGn .q4-8{fill:rgb(217,240,211)}
914
+ .PRGn .q5-8{fill:rgb(166,219,160)}
915
+ .PRGn .q6-8{fill:rgb(90,174,97)}
916
+ .PRGn .q7-8{fill:rgb(27,120,55)}
917
+ .PRGn .q0-9{fill:rgb(118,42,131)}
918
+ .PRGn .q1-9{fill:rgb(153,112,171)}
919
+ .PRGn .q2-9{fill:rgb(194,165,207)}
920
+ .PRGn .q3-9{fill:rgb(231,212,232)}
921
+ .PRGn .q4-9{fill:rgb(247,247,247)}
922
+ .PRGn .q5-9{fill:rgb(217,240,211)}
923
+ .PRGn .q6-9{fill:rgb(166,219,160)}
924
+ .PRGn .q7-9{fill:rgb(90,174,97)}
925
+ .PRGn .q8-9{fill:rgb(27,120,55)}
926
+ .PRGn .q0-10{fill:rgb(64,0,75)}
927
+ .PRGn .q1-10{fill:rgb(118,42,131)}
928
+ .PRGn .q2-10{fill:rgb(153,112,171)}
929
+ .PRGn .q3-10{fill:rgb(194,165,207)}
930
+ .PRGn .q4-10{fill:rgb(231,212,232)}
931
+ .PRGn .q5-10{fill:rgb(217,240,211)}
932
+ .PRGn .q6-10{fill:rgb(166,219,160)}
933
+ .PRGn .q7-10{fill:rgb(90,174,97)}
934
+ .PRGn .q8-10{fill:rgb(27,120,55)}
935
+ .PRGn .q9-10{fill:rgb(0,68,27)}
936
+ .PRGn .q0-11{fill:rgb(64,0,75)}
937
+ .PRGn .q1-11{fill:rgb(118,42,131)}
938
+ .PRGn .q2-11{fill:rgb(153,112,171)}
939
+ .PRGn .q3-11{fill:rgb(194,165,207)}
940
+ .PRGn .q4-11{fill:rgb(231,212,232)}
941
+ .PRGn .q5-11{fill:rgb(247,247,247)}
942
+ .PRGn .q6-11{fill:rgb(217,240,211)}
943
+ .PRGn .q7-11{fill:rgb(166,219,160)}
944
+ .PRGn .q8-11{fill:rgb(90,174,97)}
945
+ .PRGn .q9-11{fill:rgb(27,120,55)}
946
+ .PRGn .q10-11{fill:rgb(0,68,27)}
947
+ .PiYG .q0-3{fill:rgb(233,163,201)}
948
+ .PiYG .q1-3{fill:rgb(247,247,247)}
949
+ .PiYG .q2-3{fill:rgb(161,215,106)}
950
+ .PiYG .q0-4{fill:rgb(208,28,139)}
951
+ .PiYG .q1-4{fill:rgb(241,182,218)}
952
+ .PiYG .q2-4{fill:rgb(184,225,134)}
953
+ .PiYG .q3-4{fill:rgb(77,172,38)}
954
+ .PiYG .q0-5{fill:rgb(208,28,139)}
955
+ .PiYG .q1-5{fill:rgb(241,182,218)}
956
+ .PiYG .q2-5{fill:rgb(247,247,247)}
957
+ .PiYG .q3-5{fill:rgb(184,225,134)}
958
+ .PiYG .q4-5{fill:rgb(77,172,38)}
959
+ .PiYG .q0-6{fill:rgb(197,27,125)}
960
+ .PiYG .q1-6{fill:rgb(233,163,201)}
961
+ .PiYG .q2-6{fill:rgb(253,224,239)}
962
+ .PiYG .q3-6{fill:rgb(230,245,208)}
963
+ .PiYG .q4-6{fill:rgb(161,215,106)}
964
+ .PiYG .q5-6{fill:rgb(77,146,33)}
965
+ .PiYG .q0-7{fill:rgb(197,27,125)}
966
+ .PiYG .q1-7{fill:rgb(233,163,201)}
967
+ .PiYG .q2-7{fill:rgb(253,224,239)}
968
+ .PiYG .q3-7{fill:rgb(247,247,247)}
969
+ .PiYG .q4-7{fill:rgb(230,245,208)}
970
+ .PiYG .q5-7{fill:rgb(161,215,106)}
971
+ .PiYG .q6-7{fill:rgb(77,146,33)}
972
+ .PiYG .q0-8{fill:rgb(197,27,125)}
973
+ .PiYG .q1-8{fill:rgb(222,119,174)}
974
+ .PiYG .q2-8{fill:rgb(241,182,218)}
975
+ .PiYG .q3-8{fill:rgb(253,224,239)}
976
+ .PiYG .q4-8{fill:rgb(230,245,208)}
977
+ .PiYG .q5-8{fill:rgb(184,225,134)}
978
+ .PiYG .q6-8{fill:rgb(127,188,65)}
979
+ .PiYG .q7-8{fill:rgb(77,146,33)}
980
+ .PiYG .q0-9{fill:rgb(197,27,125)}
981
+ .PiYG .q1-9{fill:rgb(222,119,174)}
982
+ .PiYG .q2-9{fill:rgb(241,182,218)}
983
+ .PiYG .q3-9{fill:rgb(253,224,239)}
984
+ .PiYG .q4-9{fill:rgb(247,247,247)}
985
+ .PiYG .q5-9{fill:rgb(230,245,208)}
986
+ .PiYG .q6-9{fill:rgb(184,225,134)}
987
+ .PiYG .q7-9{fill:rgb(127,188,65)}
988
+ .PiYG .q8-9{fill:rgb(77,146,33)}
989
+ .PiYG .q0-10{fill:rgb(142,1,82)}
990
+ .PiYG .q1-10{fill:rgb(197,27,125)}
991
+ .PiYG .q2-10{fill:rgb(222,119,174)}
992
+ .PiYG .q3-10{fill:rgb(241,182,218)}
993
+ .PiYG .q4-10{fill:rgb(253,224,239)}
994
+ .PiYG .q5-10{fill:rgb(230,245,208)}
995
+ .PiYG .q6-10{fill:rgb(184,225,134)}
996
+ .PiYG .q7-10{fill:rgb(127,188,65)}
997
+ .PiYG .q8-10{fill:rgb(77,146,33)}
998
+ .PiYG .q9-10{fill:rgb(39,100,25)}
999
+ .PiYG .q0-11{fill:rgb(142,1,82)}
1000
+ .PiYG .q1-11{fill:rgb(197,27,125)}
1001
+ .PiYG .q2-11{fill:rgb(222,119,174)}
1002
+ .PiYG .q3-11{fill:rgb(241,182,218)}
1003
+ .PiYG .q4-11{fill:rgb(253,224,239)}
1004
+ .PiYG .q5-11{fill:rgb(247,247,247)}
1005
+ .PiYG .q6-11{fill:rgb(230,245,208)}
1006
+ .PiYG .q7-11{fill:rgb(184,225,134)}
1007
+ .PiYG .q8-11{fill:rgb(127,188,65)}
1008
+ .PiYG .q9-11{fill:rgb(77,146,33)}
1009
+ .PiYG .q10-11{fill:rgb(39,100,25)}
1010
+ .RdBu .q0-3{fill:rgb(239,138,98)}
1011
+ .RdBu .q1-3{fill:rgb(247,247,247)}
1012
+ .RdBu .q2-3{fill:rgb(103,169,207)}
1013
+ .RdBu .q0-4{fill:rgb(202,0,32)}
1014
+ .RdBu .q1-4{fill:rgb(244,165,130)}
1015
+ .RdBu .q2-4{fill:rgb(146,197,222)}
1016
+ .RdBu .q3-4{fill:rgb(5,113,176)}
1017
+ .RdBu .q0-5{fill:rgb(202,0,32)}
1018
+ .RdBu .q1-5{fill:rgb(244,165,130)}
1019
+ .RdBu .q2-5{fill:rgb(247,247,247)}
1020
+ .RdBu .q3-5{fill:rgb(146,197,222)}
1021
+ .RdBu .q4-5{fill:rgb(5,113,176)}
1022
+ .RdBu .q0-6{fill:rgb(178,24,43)}
1023
+ .RdBu .q1-6{fill:rgb(239,138,98)}
1024
+ .RdBu .q2-6{fill:rgb(253,219,199)}
1025
+ .RdBu .q3-6{fill:rgb(209,229,240)}
1026
+ .RdBu .q4-6{fill:rgb(103,169,207)}
1027
+ .RdBu .q5-6{fill:rgb(33,102,172)}
1028
+ .RdBu .q0-7{fill:rgb(178,24,43)}
1029
+ .RdBu .q1-7{fill:rgb(239,138,98)}
1030
+ .RdBu .q2-7{fill:rgb(253,219,199)}
1031
+ .RdBu .q3-7{fill:rgb(247,247,247)}
1032
+ .RdBu .q4-7{fill:rgb(209,229,240)}
1033
+ .RdBu .q5-7{fill:rgb(103,169,207)}
1034
+ .RdBu .q6-7{fill:rgb(33,102,172)}
1035
+ .RdBu .q0-8{fill:rgb(178,24,43)}
1036
+ .RdBu .q1-8{fill:rgb(214,96,77)}
1037
+ .RdBu .q2-8{fill:rgb(244,165,130)}
1038
+ .RdBu .q3-8{fill:rgb(253,219,199)}
1039
+ .RdBu .q4-8{fill:rgb(209,229,240)}
1040
+ .RdBu .q5-8{fill:rgb(146,197,222)}
1041
+ .RdBu .q6-8{fill:rgb(67,147,195)}
1042
+ .RdBu .q7-8{fill:rgb(33,102,172)}
1043
+ .RdBu .q0-9{fill:rgb(178,24,43)}
1044
+ .RdBu .q1-9{fill:rgb(214,96,77)}
1045
+ .RdBu .q2-9{fill:rgb(244,165,130)}
1046
+ .RdBu .q3-9{fill:rgb(253,219,199)}
1047
+ .RdBu .q4-9{fill:rgb(247,247,247)}
1048
+ .RdBu .q5-9{fill:rgb(209,229,240)}
1049
+ .RdBu .q6-9{fill:rgb(146,197,222)}
1050
+ .RdBu .q7-9{fill:rgb(67,147,195)}
1051
+ .RdBu .q8-9{fill:rgb(33,102,172)}
1052
+ .RdBu .q0-10{fill:rgb(103,0,31)}
1053
+ .RdBu .q1-10{fill:rgb(178,24,43)}
1054
+ .RdBu .q2-10{fill:rgb(214,96,77)}
1055
+ .RdBu .q3-10{fill:rgb(244,165,130)}
1056
+ .RdBu .q4-10{fill:rgb(253,219,199)}
1057
+ .RdBu .q5-10{fill:rgb(209,229,240)}
1058
+ .RdBu .q6-10{fill:rgb(146,197,222)}
1059
+ .RdBu .q7-10{fill:rgb(67,147,195)}
1060
+ .RdBu .q8-10{fill:rgb(33,102,172)}
1061
+ .RdBu .q9-10{fill:rgb(5,48,97)}
1062
+ .RdBu .q0-11{fill:rgb(103,0,31)}
1063
+ .RdBu .q1-11{fill:rgb(178,24,43)}
1064
+ .RdBu .q2-11{fill:rgb(214,96,77)}
1065
+ .RdBu .q3-11{fill:rgb(244,165,130)}
1066
+ .RdBu .q4-11{fill:rgb(253,219,199)}
1067
+ .RdBu .q5-11{fill:rgb(247,247,247)}
1068
+ .RdBu .q6-11{fill:rgb(209,229,240)}
1069
+ .RdBu .q7-11{fill:rgb(146,197,222)}
1070
+ .RdBu .q8-11{fill:rgb(67,147,195)}
1071
+ .RdBu .q9-11{fill:rgb(33,102,172)}
1072
+ .RdBu .q10-11{fill:rgb(5,48,97)}
1073
+ .RdGy .q0-3{fill:rgb(239,138,98)}
1074
+ .RdGy .q1-3{fill:rgb(255,255,255)}
1075
+ .RdGy .q2-3{fill:rgb(153,153,153)}
1076
+ .RdGy .q0-4{fill:rgb(202,0,32)}
1077
+ .RdGy .q1-4{fill:rgb(244,165,130)}
1078
+ .RdGy .q2-4{fill:rgb(186,186,186)}
1079
+ .RdGy .q3-4{fill:rgb(64,64,64)}
1080
+ .RdGy .q0-5{fill:rgb(202,0,32)}
1081
+ .RdGy .q1-5{fill:rgb(244,165,130)}
1082
+ .RdGy .q2-5{fill:rgb(255,255,255)}
1083
+ .RdGy .q3-5{fill:rgb(186,186,186)}
1084
+ .RdGy .q4-5{fill:rgb(64,64,64)}
1085
+ .RdGy .q0-6{fill:rgb(178,24,43)}
1086
+ .RdGy .q1-6{fill:rgb(239,138,98)}
1087
+ .RdGy .q2-6{fill:rgb(253,219,199)}
1088
+ .RdGy .q3-6{fill:rgb(224,224,224)}
1089
+ .RdGy .q4-6{fill:rgb(153,153,153)}
1090
+ .RdGy .q5-6{fill:rgb(77,77,77)}
1091
+ .RdGy .q0-7{fill:rgb(178,24,43)}
1092
+ .RdGy .q1-7{fill:rgb(239,138,98)}
1093
+ .RdGy .q2-7{fill:rgb(253,219,199)}
1094
+ .RdGy .q3-7{fill:rgb(255,255,255)}
1095
+ .RdGy .q4-7{fill:rgb(224,224,224)}
1096
+ .RdGy .q5-7{fill:rgb(153,153,153)}
1097
+ .RdGy .q6-7{fill:rgb(77,77,77)}
1098
+ .RdGy .q0-8{fill:rgb(178,24,43)}
1099
+ .RdGy .q1-8{fill:rgb(214,96,77)}
1100
+ .RdGy .q2-8{fill:rgb(244,165,130)}
1101
+ .RdGy .q3-8{fill:rgb(253,219,199)}
1102
+ .RdGy .q4-8{fill:rgb(224,224,224)}
1103
+ .RdGy .q5-8{fill:rgb(186,186,186)}
1104
+ .RdGy .q6-8{fill:rgb(135,135,135)}
1105
+ .RdGy .q7-8{fill:rgb(77,77,77)}
1106
+ .RdGy .q0-9{fill:rgb(178,24,43)}
1107
+ .RdGy .q1-9{fill:rgb(214,96,77)}
1108
+ .RdGy .q2-9{fill:rgb(244,165,130)}
1109
+ .RdGy .q3-9{fill:rgb(253,219,199)}
1110
+ .RdGy .q4-9{fill:rgb(255,255,255)}
1111
+ .RdGy .q5-9{fill:rgb(224,224,224)}
1112
+ .RdGy .q6-9{fill:rgb(186,186,186)}
1113
+ .RdGy .q7-9{fill:rgb(135,135,135)}
1114
+ .RdGy .q8-9{fill:rgb(77,77,77)}
1115
+ .RdGy .q0-10{fill:rgb(103,0,31)}
1116
+ .RdGy .q1-10{fill:rgb(178,24,43)}
1117
+ .RdGy .q2-10{fill:rgb(214,96,77)}
1118
+ .RdGy .q3-10{fill:rgb(244,165,130)}
1119
+ .RdGy .q4-10{fill:rgb(253,219,199)}
1120
+ .RdGy .q5-10{fill:rgb(224,224,224)}
1121
+ .RdGy .q6-10{fill:rgb(186,186,186)}
1122
+ .RdGy .q7-10{fill:rgb(135,135,135)}
1123
+ .RdGy .q8-10{fill:rgb(77,77,77)}
1124
+ .RdGy .q9-10{fill:rgb(26,26,26)}
1125
+ .RdGy .q0-11{fill:rgb(103,0,31)}
1126
+ .RdGy .q1-11{fill:rgb(178,24,43)}
1127
+ .RdGy .q2-11{fill:rgb(214,96,77)}
1128
+ .RdGy .q3-11{fill:rgb(244,165,130)}
1129
+ .RdGy .q4-11{fill:rgb(253,219,199)}
1130
+ .RdGy .q5-11{fill:rgb(255,255,255)}
1131
+ .RdGy .q6-11{fill:rgb(224,224,224)}
1132
+ .RdGy .q7-11{fill:rgb(186,186,186)}
1133
+ .RdGy .q8-11{fill:rgb(135,135,135)}
1134
+ .RdGy .q9-11{fill:rgb(77,77,77)}
1135
+ .RdGy .q10-11{fill:rgb(26,26,26)}
1136
+ .RdYlBu .q0-3{fill:rgb(252,141,89)}
1137
+ .RdYlBu .q1-3{fill:rgb(255,255,191)}
1138
+ .RdYlBu .q2-3{fill:rgb(145,191,219)}
1139
+ .RdYlBu .q0-4{fill:rgb(215,25,28)}
1140
+ .RdYlBu .q1-4{fill:rgb(253,174,97)}
1141
+ .RdYlBu .q2-4{fill:rgb(171,217,233)}
1142
+ .RdYlBu .q3-4{fill:rgb(44,123,182)}
1143
+ .RdYlBu .q0-5{fill:rgb(215,25,28)}
1144
+ .RdYlBu .q1-5{fill:rgb(253,174,97)}
1145
+ .RdYlBu .q2-5{fill:rgb(255,255,191)}
1146
+ .RdYlBu .q3-5{fill:rgb(171,217,233)}
1147
+ .RdYlBu .q4-5{fill:rgb(44,123,182)}
1148
+ .RdYlBu .q0-6{fill:rgb(215,48,39)}
1149
+ .RdYlBu .q1-6{fill:rgb(252,141,89)}
1150
+ .RdYlBu .q2-6{fill:rgb(254,224,144)}
1151
+ .RdYlBu .q3-6{fill:rgb(224,243,248)}
1152
+ .RdYlBu .q4-6{fill:rgb(145,191,219)}
1153
+ .RdYlBu .q5-6{fill:rgb(69,117,180)}
1154
+ .RdYlBu .q0-7{fill:rgb(215,48,39)}
1155
+ .RdYlBu .q1-7{fill:rgb(252,141,89)}
1156
+ .RdYlBu .q2-7{fill:rgb(254,224,144)}
1157
+ .RdYlBu .q3-7{fill:rgb(255,255,191)}
1158
+ .RdYlBu .q4-7{fill:rgb(224,243,248)}
1159
+ .RdYlBu .q5-7{fill:rgb(145,191,219)}
1160
+ .RdYlBu .q6-7{fill:rgb(69,117,180)}
1161
+ .RdYlBu .q0-8{fill:rgb(215,48,39)}
1162
+ .RdYlBu .q1-8{fill:rgb(244,109,67)}
1163
+ .RdYlBu .q2-8{fill:rgb(253,174,97)}
1164
+ .RdYlBu .q3-8{fill:rgb(254,224,144)}
1165
+ .RdYlBu .q4-8{fill:rgb(224,243,248)}
1166
+ .RdYlBu .q5-8{fill:rgb(171,217,233)}
1167
+ .RdYlBu .q6-8{fill:rgb(116,173,209)}
1168
+ .RdYlBu .q7-8{fill:rgb(69,117,180)}
1169
+ .RdYlBu .q0-9{fill:rgb(215,48,39)}
1170
+ .RdYlBu .q1-9{fill:rgb(244,109,67)}
1171
+ .RdYlBu .q2-9{fill:rgb(253,174,97)}
1172
+ .RdYlBu .q3-9{fill:rgb(254,224,144)}
1173
+ .RdYlBu .q4-9{fill:rgb(255,255,191)}
1174
+ .RdYlBu .q5-9{fill:rgb(224,243,248)}
1175
+ .RdYlBu .q6-9{fill:rgb(171,217,233)}
1176
+ .RdYlBu .q7-9{fill:rgb(116,173,209)}
1177
+ .RdYlBu .q8-9{fill:rgb(69,117,180)}
1178
+ .RdYlBu .q0-10{fill:rgb(165,0,38)}
1179
+ .RdYlBu .q1-10{fill:rgb(215,48,39)}
1180
+ .RdYlBu .q2-10{fill:rgb(244,109,67)}
1181
+ .RdYlBu .q3-10{fill:rgb(253,174,97)}
1182
+ .RdYlBu .q4-10{fill:rgb(254,224,144)}
1183
+ .RdYlBu .q5-10{fill:rgb(224,243,248)}
1184
+ .RdYlBu .q6-10{fill:rgb(171,217,233)}
1185
+ .RdYlBu .q7-10{fill:rgb(116,173,209)}
1186
+ .RdYlBu .q8-10{fill:rgb(69,117,180)}
1187
+ .RdYlBu .q9-10{fill:rgb(49,54,149)}
1188
+ .RdYlBu .q0-11{fill:rgb(165,0,38)}
1189
+ .RdYlBu .q1-11{fill:rgb(215,48,39)}
1190
+ .RdYlBu .q2-11{fill:rgb(244,109,67)}
1191
+ .RdYlBu .q3-11{fill:rgb(253,174,97)}
1192
+ .RdYlBu .q4-11{fill:rgb(254,224,144)}
1193
+ .RdYlBu .q5-11{fill:rgb(255,255,191)}
1194
+ .RdYlBu .q6-11{fill:rgb(224,243,248)}
1195
+ .RdYlBu .q7-11{fill:rgb(171,217,233)}
1196
+ .RdYlBu .q8-11{fill:rgb(116,173,209)}
1197
+ .RdYlBu .q9-11{fill:rgb(69,117,180)}
1198
+ .RdYlBu .q10-11{fill:rgb(49,54,149)}
1199
+ .Spectral .q0-3{fill:rgb(252,141,89)}
1200
+ .Spectral .q1-3{fill:rgb(255,255,191)}
1201
+ .Spectral .q2-3{fill:rgb(153,213,148)}
1202
+ .Spectral .q0-4{fill:rgb(215,25,28)}
1203
+ .Spectral .q1-4{fill:rgb(253,174,97)}
1204
+ .Spectral .q2-4{fill:rgb(171,221,164)}
1205
+ .Spectral .q3-4{fill:rgb(43,131,186)}
1206
+ .Spectral .q0-5{fill:rgb(215,25,28)}
1207
+ .Spectral .q1-5{fill:rgb(253,174,97)}
1208
+ .Spectral .q2-5{fill:rgb(255,255,191)}
1209
+ .Spectral .q3-5{fill:rgb(171,221,164)}
1210
+ .Spectral .q4-5{fill:rgb(43,131,186)}
1211
+ .Spectral .q0-6{fill:rgb(213,62,79)}
1212
+ .Spectral .q1-6{fill:rgb(252,141,89)}
1213
+ .Spectral .q2-6{fill:rgb(254,224,139)}
1214
+ .Spectral .q3-6{fill:rgb(230,245,152)}
1215
+ .Spectral .q4-6{fill:rgb(153,213,148)}
1216
+ .Spectral .q5-6{fill:rgb(50,136,189)}
1217
+ .Spectral .q0-7{fill:rgb(213,62,79)}
1218
+ .Spectral .q1-7{fill:rgb(252,141,89)}
1219
+ .Spectral .q2-7{fill:rgb(254,224,139)}
1220
+ .Spectral .q3-7{fill:rgb(255,255,191)}
1221
+ .Spectral .q4-7{fill:rgb(230,245,152)}
1222
+ .Spectral .q5-7{fill:rgb(153,213,148)}
1223
+ .Spectral .q6-7{fill:rgb(50,136,189)}
1224
+ .Spectral .q0-8{fill:rgb(213,62,79)}
1225
+ .Spectral .q1-8{fill:rgb(244,109,67)}
1226
+ .Spectral .q2-8{fill:rgb(253,174,97)}
1227
+ .Spectral .q3-8{fill:rgb(254,224,139)}
1228
+ .Spectral .q4-8{fill:rgb(230,245,152)}
1229
+ .Spectral .q5-8{fill:rgb(171,221,164)}
1230
+ .Spectral .q6-8{fill:rgb(102,194,165)}
1231
+ .Spectral .q7-8{fill:rgb(50,136,189)}
1232
+ .Spectral .q0-9{fill:rgb(213,62,79)}
1233
+ .Spectral .q1-9{fill:rgb(244,109,67)}
1234
+ .Spectral .q2-9{fill:rgb(253,174,97)}
1235
+ .Spectral .q3-9{fill:rgb(254,224,139)}
1236
+ .Spectral .q4-9{fill:rgb(255,255,191)}
1237
+ .Spectral .q5-9{fill:rgb(230,245,152)}
1238
+ .Spectral .q6-9{fill:rgb(171,221,164)}
1239
+ .Spectral .q7-9{fill:rgb(102,194,165)}
1240
+ .Spectral .q8-9{fill:rgb(50,136,189)}
1241
+ .Spectral .q0-10{fill:rgb(158,1,66)}
1242
+ .Spectral .q1-10{fill:rgb(213,62,79)}
1243
+ .Spectral .q2-10{fill:rgb(244,109,67)}
1244
+ .Spectral .q3-10{fill:rgb(253,174,97)}
1245
+ .Spectral .q4-10{fill:rgb(254,224,139)}
1246
+ .Spectral .q5-10{fill:rgb(230,245,152)}
1247
+ .Spectral .q6-10{fill:rgb(171,221,164)}
1248
+ .Spectral .q7-10{fill:rgb(102,194,165)}
1249
+ .Spectral .q8-10{fill:rgb(50,136,189)}
1250
+ .Spectral .q9-10{fill:rgb(94,79,162)}
1251
+ .Spectral .q0-11{fill:rgb(158,1,66)}
1252
+ .Spectral .q1-11{fill:rgb(213,62,79)}
1253
+ .Spectral .q2-11{fill:rgb(244,109,67)}
1254
+ .Spectral .q3-11{fill:rgb(253,174,97)}
1255
+ .Spectral .q4-11{fill:rgb(254,224,139)}
1256
+ .Spectral .q5-11{fill:rgb(255,255,191)}
1257
+ .Spectral .q6-11{fill:rgb(230,245,152)}
1258
+ .Spectral .q7-11{fill:rgb(171,221,164)}
1259
+ .Spectral .q8-11{fill:rgb(102,194,165)}
1260
+ .Spectral .q9-11{fill:rgb(50,136,189)}
1261
+ .Spectral .q10-11{fill:rgb(94,79,162)}
1262
+ .RdYlGn .q0-3{fill:rgb(252,141,89)}
1263
+ .RdYlGn .q1-3{fill:rgb(255,255,191)}
1264
+ .RdYlGn .q2-3{fill:rgb(145,207,96)}
1265
+ .RdYlGn .q0-4{fill:rgb(215,25,28)}
1266
+ .RdYlGn .q1-4{fill:rgb(253,174,97)}
1267
+ .RdYlGn .q2-4{fill:rgb(166,217,106)}
1268
+ .RdYlGn .q3-4{fill:rgb(26,150,65)}
1269
+ .RdYlGn .q0-5{fill:rgb(215,25,28)}
1270
+ .RdYlGn .q1-5{fill:rgb(253,174,97)}
1271
+ .RdYlGn .q2-5{fill:rgb(255,255,191)}
1272
+ .RdYlGn .q3-5{fill:rgb(166,217,106)}
1273
+ .RdYlGn .q4-5{fill:rgb(26,150,65)}
1274
+ .RdYlGn .q0-6{fill:rgb(215,48,39)}
1275
+ .RdYlGn .q1-6{fill:rgb(252,141,89)}
1276
+ .RdYlGn .q2-6{fill:rgb(254,224,139)}
1277
+ .RdYlGn .q3-6{fill:rgb(217,239,139)}
1278
+ .RdYlGn .q4-6{fill:rgb(145,207,96)}
1279
+ .RdYlGn .q5-6{fill:rgb(26,152,80)}
1280
+ .RdYlGn .q0-7{fill:rgb(215,48,39)}
1281
+ .RdYlGn .q1-7{fill:rgb(252,141,89)}
1282
+ .RdYlGn .q2-7{fill:rgb(254,224,139)}
1283
+ .RdYlGn .q3-7{fill:rgb(255,255,191)}
1284
+ .RdYlGn .q4-7{fill:rgb(217,239,139)}
1285
+ .RdYlGn .q5-7{fill:rgb(145,207,96)}
1286
+ .RdYlGn .q6-7{fill:rgb(26,152,80)}
1287
+ .RdYlGn .q0-8{fill:rgb(215,48,39)}
1288
+ .RdYlGn .q1-8{fill:rgb(244,109,67)}
1289
+ .RdYlGn .q2-8{fill:rgb(253,174,97)}
1290
+ .RdYlGn .q3-8{fill:rgb(254,224,139)}
1291
+ .RdYlGn .q4-8{fill:rgb(217,239,139)}
1292
+ .RdYlGn .q5-8{fill:rgb(166,217,106)}
1293
+ .RdYlGn .q6-8{fill:rgb(102,189,99)}
1294
+ .RdYlGn .q7-8{fill:rgb(26,152,80)}
1295
+ .RdYlGn .q0-9{fill:rgb(215,48,39)}
1296
+ .RdYlGn .q1-9{fill:rgb(244,109,67)}
1297
+ .RdYlGn .q2-9{fill:rgb(253,174,97)}
1298
+ .RdYlGn .q3-9{fill:rgb(254,224,139)}
1299
+ .RdYlGn .q4-9{fill:rgb(255,255,191)}
1300
+ .RdYlGn .q5-9{fill:rgb(217,239,139)}
1301
+ .RdYlGn .q6-9{fill:rgb(166,217,106)}
1302
+ .RdYlGn .q7-9{fill:rgb(102,189,99)}
1303
+ .RdYlGn .q8-9{fill:rgb(26,152,80)}
1304
+ .RdYlGn .q0-10{fill:rgb(165,0,38)}
1305
+ .RdYlGn .q1-10{fill:rgb(215,48,39)}
1306
+ .RdYlGn .q2-10{fill:rgb(244,109,67)}
1307
+ .RdYlGn .q3-10{fill:rgb(253,174,97)}
1308
+ .RdYlGn .q4-10{fill:rgb(254,224,139)}
1309
+ .RdYlGn .q5-10{fill:rgb(217,239,139)}
1310
+ .RdYlGn .q6-10{fill:rgb(166,217,106)}
1311
+ .RdYlGn .q7-10{fill:rgb(102,189,99)}
1312
+ .RdYlGn .q8-10{fill:rgb(26,152,80)}
1313
+ .RdYlGn .q9-10{fill:rgb(0,104,55)}
1314
+ .RdYlGn .q0-11{fill:rgb(165,0,38)}
1315
+ .RdYlGn .q1-11{fill:rgb(215,48,39)}
1316
+ .RdYlGn .q2-11{fill:rgb(244,109,67)}
1317
+ .RdYlGn .q3-11{fill:rgb(253,174,97)}
1318
+ .RdYlGn .q4-11{fill:rgb(254,224,139)}
1319
+ .RdYlGn .q5-11{fill:rgb(255,255,191)}
1320
+ .RdYlGn .q6-11{fill:rgb(217,239,139)}
1321
+ .RdYlGn .q7-11{fill:rgb(166,217,106)}
1322
+ .RdYlGn .q8-11{fill:rgb(102,189,99)}
1323
+ .RdYlGn .q9-11{fill:rgb(26,152,80)}
1324
+ .RdYlGn .q10-11{fill:rgb(0,104,55)}
1325
+ .Accent .q0-3{fill:rgb(127,201,127)}
1326
+ .Accent .q1-3{fill:rgb(190,174,212)}
1327
+ .Accent .q2-3{fill:rgb(253,192,134)}
1328
+ .Accent .q0-4{fill:rgb(127,201,127)}
1329
+ .Accent .q1-4{fill:rgb(190,174,212)}
1330
+ .Accent .q2-4{fill:rgb(253,192,134)}
1331
+ .Accent .q3-4{fill:rgb(255,255,153)}
1332
+ .Accent .q0-5{fill:rgb(127,201,127)}
1333
+ .Accent .q1-5{fill:rgb(190,174,212)}
1334
+ .Accent .q2-5{fill:rgb(253,192,134)}
1335
+ .Accent .q3-5{fill:rgb(255,255,153)}
1336
+ .Accent .q4-5{fill:rgb(56,108,176)}
1337
+ .Accent .q0-6{fill:rgb(127,201,127)}
1338
+ .Accent .q1-6{fill:rgb(190,174,212)}
1339
+ .Accent .q2-6{fill:rgb(253,192,134)}
1340
+ .Accent .q3-6{fill:rgb(255,255,153)}
1341
+ .Accent .q4-6{fill:rgb(56,108,176)}
1342
+ .Accent .q5-6{fill:rgb(240,2,127)}
1343
+ .Accent .q0-7{fill:rgb(127,201,127)}
1344
+ .Accent .q1-7{fill:rgb(190,174,212)}
1345
+ .Accent .q2-7{fill:rgb(253,192,134)}
1346
+ .Accent .q3-7{fill:rgb(255,255,153)}
1347
+ .Accent .q4-7{fill:rgb(56,108,176)}
1348
+ .Accent .q5-7{fill:rgb(240,2,127)}
1349
+ .Accent .q6-7{fill:rgb(191,91,23)}
1350
+ .Accent .q0-8{fill:rgb(127,201,127)}
1351
+ .Accent .q1-8{fill:rgb(190,174,212)}
1352
+ .Accent .q2-8{fill:rgb(253,192,134)}
1353
+ .Accent .q3-8{fill:rgb(255,255,153)}
1354
+ .Accent .q4-8{fill:rgb(56,108,176)}
1355
+ .Accent .q5-8{fill:rgb(240,2,127)}
1356
+ .Accent .q6-8{fill:rgb(191,91,23)}
1357
+ .Accent .q7-8{fill:rgb(102,102,102)}
1358
+ .Dark2 .q0-3{fill:rgb(27,158,119)}
1359
+ .Dark2 .q1-3{fill:rgb(217,95,2)}
1360
+ .Dark2 .q2-3{fill:rgb(117,112,179)}
1361
+ .Dark2 .q0-4{fill:rgb(27,158,119)}
1362
+ .Dark2 .q1-4{fill:rgb(217,95,2)}
1363
+ .Dark2 .q2-4{fill:rgb(117,112,179)}
1364
+ .Dark2 .q3-4{fill:rgb(231,41,138)}
1365
+ .Dark2 .q0-5{fill:rgb(27,158,119)}
1366
+ .Dark2 .q1-5{fill:rgb(217,95,2)}
1367
+ .Dark2 .q2-5{fill:rgb(117,112,179)}
1368
+ .Dark2 .q3-5{fill:rgb(231,41,138)}
1369
+ .Dark2 .q4-5{fill:rgb(102,166,30)}
1370
+ .Dark2 .q0-6{fill:rgb(27,158,119)}
1371
+ .Dark2 .q1-6{fill:rgb(217,95,2)}
1372
+ .Dark2 .q2-6{fill:rgb(117,112,179)}
1373
+ .Dark2 .q3-6{fill:rgb(231,41,138)}
1374
+ .Dark2 .q4-6{fill:rgb(102,166,30)}
1375
+ .Dark2 .q5-6{fill:rgb(230,171,2)}
1376
+ .Dark2 .q0-7{fill:rgb(27,158,119)}
1377
+ .Dark2 .q1-7{fill:rgb(217,95,2)}
1378
+ .Dark2 .q2-7{fill:rgb(117,112,179)}
1379
+ .Dark2 .q3-7{fill:rgb(231,41,138)}
1380
+ .Dark2 .q4-7{fill:rgb(102,166,30)}
1381
+ .Dark2 .q5-7{fill:rgb(230,171,2)}
1382
+ .Dark2 .q6-7{fill:rgb(166,118,29)}
1383
+ .Dark2 .q0-8{fill:rgb(27,158,119)}
1384
+ .Dark2 .q1-8{fill:rgb(217,95,2)}
1385
+ .Dark2 .q2-8{fill:rgb(117,112,179)}
1386
+ .Dark2 .q3-8{fill:rgb(231,41,138)}
1387
+ .Dark2 .q4-8{fill:rgb(102,166,30)}
1388
+ .Dark2 .q5-8{fill:rgb(230,171,2)}
1389
+ .Dark2 .q6-8{fill:rgb(166,118,29)}
1390
+ .Dark2 .q7-8{fill:rgb(102,102,102)}
1391
+ .Paired .q0-3{fill:rgb(166,206,227)}
1392
+ .Paired .q1-3{fill:rgb(31,120,180)}
1393
+ .Paired .q2-3{fill:rgb(178,223,138)}
1394
+ .Paired .q0-4{fill:rgb(166,206,227)}
1395
+ .Paired .q1-4{fill:rgb(31,120,180)}
1396
+ .Paired .q2-4{fill:rgb(178,223,138)}
1397
+ .Paired .q3-4{fill:rgb(51,160,44)}
1398
+ .Paired .q0-5{fill:rgb(166,206,227)}
1399
+ .Paired .q1-5{fill:rgb(31,120,180)}
1400
+ .Paired .q2-5{fill:rgb(178,223,138)}
1401
+ .Paired .q3-5{fill:rgb(51,160,44)}
1402
+ .Paired .q4-5{fill:rgb(251,154,153)}
1403
+ .Paired .q0-6{fill:rgb(166,206,227)}
1404
+ .Paired .q1-6{fill:rgb(31,120,180)}
1405
+ .Paired .q2-6{fill:rgb(178,223,138)}
1406
+ .Paired .q3-6{fill:rgb(51,160,44)}
1407
+ .Paired .q4-6{fill:rgb(251,154,153)}
1408
+ .Paired .q5-6{fill:rgb(227,26,28)}
1409
+ .Paired .q0-7{fill:rgb(166,206,227)}
1410
+ .Paired .q1-7{fill:rgb(31,120,180)}
1411
+ .Paired .q2-7{fill:rgb(178,223,138)}
1412
+ .Paired .q3-7{fill:rgb(51,160,44)}
1413
+ .Paired .q4-7{fill:rgb(251,154,153)}
1414
+ .Paired .q5-7{fill:rgb(227,26,28)}
1415
+ .Paired .q6-7{fill:rgb(253,191,111)}
1416
+ .Paired .q0-8{fill:rgb(166,206,227)}
1417
+ .Paired .q1-8{fill:rgb(31,120,180)}
1418
+ .Paired .q2-8{fill:rgb(178,223,138)}
1419
+ .Paired .q3-8{fill:rgb(51,160,44)}
1420
+ .Paired .q4-8{fill:rgb(251,154,153)}
1421
+ .Paired .q5-8{fill:rgb(227,26,28)}
1422
+ .Paired .q6-8{fill:rgb(253,191,111)}
1423
+ .Paired .q7-8{fill:rgb(255,127,0)}
1424
+ .Paired .q0-9{fill:rgb(166,206,227)}
1425
+ .Paired .q1-9{fill:rgb(31,120,180)}
1426
+ .Paired .q2-9{fill:rgb(178,223,138)}
1427
+ .Paired .q3-9{fill:rgb(51,160,44)}
1428
+ .Paired .q4-9{fill:rgb(251,154,153)}
1429
+ .Paired .q5-9{fill:rgb(227,26,28)}
1430
+ .Paired .q6-9{fill:rgb(253,191,111)}
1431
+ .Paired .q7-9{fill:rgb(255,127,0)}
1432
+ .Paired .q8-9{fill:rgb(202,178,214)}
1433
+ .Paired .q0-10{fill:rgb(166,206,227)}
1434
+ .Paired .q1-10{fill:rgb(31,120,180)}
1435
+ .Paired .q2-10{fill:rgb(178,223,138)}
1436
+ .Paired .q3-10{fill:rgb(51,160,44)}
1437
+ .Paired .q4-10{fill:rgb(251,154,153)}
1438
+ .Paired .q5-10{fill:rgb(227,26,28)}
1439
+ .Paired .q6-10{fill:rgb(253,191,111)}
1440
+ .Paired .q7-10{fill:rgb(255,127,0)}
1441
+ .Paired .q8-10{fill:rgb(202,178,214)}
1442
+ .Paired .q9-10{fill:rgb(106,61,154)}
1443
+ .Paired .q0-11{fill:rgb(166,206,227)}
1444
+ .Paired .q1-11{fill:rgb(31,120,180)}
1445
+ .Paired .q2-11{fill:rgb(178,223,138)}
1446
+ .Paired .q3-11{fill:rgb(51,160,44)}
1447
+ .Paired .q4-11{fill:rgb(251,154,153)}
1448
+ .Paired .q5-11{fill:rgb(227,26,28)}
1449
+ .Paired .q6-11{fill:rgb(253,191,111)}
1450
+ .Paired .q7-11{fill:rgb(255,127,0)}
1451
+ .Paired .q8-11{fill:rgb(202,178,214)}
1452
+ .Paired .q9-11{fill:rgb(106,61,154)}
1453
+ .Paired .q10-11{fill:rgb(255,255,153)}
1454
+ .Paired .q0-12{fill:rgb(166,206,227)}
1455
+ .Paired .q1-12{fill:rgb(31,120,180)}
1456
+ .Paired .q2-12{fill:rgb(178,223,138)}
1457
+ .Paired .q3-12{fill:rgb(51,160,44)}
1458
+ .Paired .q4-12{fill:rgb(251,154,153)}
1459
+ .Paired .q5-12{fill:rgb(227,26,28)}
1460
+ .Paired .q6-12{fill:rgb(253,191,111)}
1461
+ .Paired .q7-12{fill:rgb(255,127,0)}
1462
+ .Paired .q8-12{fill:rgb(202,178,214)}
1463
+ .Paired .q9-12{fill:rgb(106,61,154)}
1464
+ .Paired .q10-12{fill:rgb(255,255,153)}
1465
+ .Paired .q11-12{fill:rgb(177,89,40)}
1466
+ .Pastel1 .q0-3{fill:rgb(251,180,174)}
1467
+ .Pastel1 .q1-3{fill:rgb(179,205,227)}
1468
+ .Pastel1 .q2-3{fill:rgb(204,235,197)}
1469
+ .Pastel1 .q0-4{fill:rgb(251,180,174)}
1470
+ .Pastel1 .q1-4{fill:rgb(179,205,227)}
1471
+ .Pastel1 .q2-4{fill:rgb(204,235,197)}
1472
+ .Pastel1 .q3-4{fill:rgb(222,203,228)}
1473
+ .Pastel1 .q0-5{fill:rgb(251,180,174)}
1474
+ .Pastel1 .q1-5{fill:rgb(179,205,227)}
1475
+ .Pastel1 .q2-5{fill:rgb(204,235,197)}
1476
+ .Pastel1 .q3-5{fill:rgb(222,203,228)}
1477
+ .Pastel1 .q4-5{fill:rgb(254,217,166)}
1478
+ .Pastel1 .q0-6{fill:rgb(251,180,174)}
1479
+ .Pastel1 .q1-6{fill:rgb(179,205,227)}
1480
+ .Pastel1 .q2-6{fill:rgb(204,235,197)}
1481
+ .Pastel1 .q3-6{fill:rgb(222,203,228)}
1482
+ .Pastel1 .q4-6{fill:rgb(254,217,166)}
1483
+ .Pastel1 .q5-6{fill:rgb(255,255,204)}
1484
+ .Pastel1 .q0-7{fill:rgb(251,180,174)}
1485
+ .Pastel1 .q1-7{fill:rgb(179,205,227)}
1486
+ .Pastel1 .q2-7{fill:rgb(204,235,197)}
1487
+ .Pastel1 .q3-7{fill:rgb(222,203,228)}
1488
+ .Pastel1 .q4-7{fill:rgb(254,217,166)}
1489
+ .Pastel1 .q5-7{fill:rgb(255,255,204)}
1490
+ .Pastel1 .q6-7{fill:rgb(229,216,189)}
1491
+ .Pastel1 .q0-8{fill:rgb(251,180,174)}
1492
+ .Pastel1 .q1-8{fill:rgb(179,205,227)}
1493
+ .Pastel1 .q2-8{fill:rgb(204,235,197)}
1494
+ .Pastel1 .q3-8{fill:rgb(222,203,228)}
1495
+ .Pastel1 .q4-8{fill:rgb(254,217,166)}
1496
+ .Pastel1 .q5-8{fill:rgb(255,255,204)}
1497
+ .Pastel1 .q6-8{fill:rgb(229,216,189)}
1498
+ .Pastel1 .q7-8{fill:rgb(253,218,236)}
1499
+ .Pastel1 .q0-9{fill:rgb(251,180,174)}
1500
+ .Pastel1 .q1-9{fill:rgb(179,205,227)}
1501
+ .Pastel1 .q2-9{fill:rgb(204,235,197)}
1502
+ .Pastel1 .q3-9{fill:rgb(222,203,228)}
1503
+ .Pastel1 .q4-9{fill:rgb(254,217,166)}
1504
+ .Pastel1 .q5-9{fill:rgb(255,255,204)}
1505
+ .Pastel1 .q6-9{fill:rgb(229,216,189)}
1506
+ .Pastel1 .q7-9{fill:rgb(253,218,236)}
1507
+ .Pastel1 .q8-9{fill:rgb(242,242,242)}
1508
+ .Pastel2 .q0-3{fill:rgb(179,226,205)}
1509
+ .Pastel2 .q1-3{fill:rgb(253,205,172)}
1510
+ .Pastel2 .q2-3{fill:rgb(203,213,232)}
1511
+ .Pastel2 .q0-4{fill:rgb(179,226,205)}
1512
+ .Pastel2 .q1-4{fill:rgb(253,205,172)}
1513
+ .Pastel2 .q2-4{fill:rgb(203,213,232)}
1514
+ .Pastel2 .q3-4{fill:rgb(244,202,228)}
1515
+ .Pastel2 .q0-5{fill:rgb(179,226,205)}
1516
+ .Pastel2 .q1-5{fill:rgb(253,205,172)}
1517
+ .Pastel2 .q2-5{fill:rgb(203,213,232)}
1518
+ .Pastel2 .q3-5{fill:rgb(244,202,228)}
1519
+ .Pastel2 .q4-5{fill:rgb(230,245,201)}
1520
+ .Pastel2 .q0-6{fill:rgb(179,226,205)}
1521
+ .Pastel2 .q1-6{fill:rgb(253,205,172)}
1522
+ .Pastel2 .q2-6{fill:rgb(203,213,232)}
1523
+ .Pastel2 .q3-6{fill:rgb(244,202,228)}
1524
+ .Pastel2 .q4-6{fill:rgb(230,245,201)}
1525
+ .Pastel2 .q5-6{fill:rgb(255,242,174)}
1526
+ .Pastel2 .q0-7{fill:rgb(179,226,205)}
1527
+ .Pastel2 .q1-7{fill:rgb(253,205,172)}
1528
+ .Pastel2 .q2-7{fill:rgb(203,213,232)}
1529
+ .Pastel2 .q3-7{fill:rgb(244,202,228)}
1530
+ .Pastel2 .q4-7{fill:rgb(230,245,201)}
1531
+ .Pastel2 .q5-7{fill:rgb(255,242,174)}
1532
+ .Pastel2 .q6-7{fill:rgb(241,226,204)}
1533
+ .Pastel2 .q0-8{fill:rgb(179,226,205)}
1534
+ .Pastel2 .q1-8{fill:rgb(253,205,172)}
1535
+ .Pastel2 .q2-8{fill:rgb(203,213,232)}
1536
+ .Pastel2 .q3-8{fill:rgb(244,202,228)}
1537
+ .Pastel2 .q4-8{fill:rgb(230,245,201)}
1538
+ .Pastel2 .q5-8{fill:rgb(255,242,174)}
1539
+ .Pastel2 .q6-8{fill:rgb(241,226,204)}
1540
+ .Pastel2 .q7-8{fill:rgb(204,204,204)}
1541
+ .Set1 .q0-3{fill:rgb(228,26,28)}
1542
+ .Set1 .q1-3{fill:rgb(55,126,184)}
1543
+ .Set1 .q2-3{fill:rgb(77,175,74)}
1544
+ .Set1 .q0-4{fill:rgb(228,26,28)}
1545
+ .Set1 .q1-4{fill:rgb(55,126,184)}
1546
+ .Set1 .q2-4{fill:rgb(77,175,74)}
1547
+ .Set1 .q3-4{fill:rgb(152,78,163)}
1548
+ .Set1 .q0-5{fill:rgb(228,26,28)}
1549
+ .Set1 .q1-5{fill:rgb(55,126,184)}
1550
+ .Set1 .q2-5{fill:rgb(77,175,74)}
1551
+ .Set1 .q3-5{fill:rgb(152,78,163)}
1552
+ .Set1 .q4-5{fill:rgb(255,127,0)}
1553
+ .Set1 .q0-6{fill:rgb(228,26,28)}
1554
+ .Set1 .q1-6{fill:rgb(55,126,184)}
1555
+ .Set1 .q2-6{fill:rgb(77,175,74)}
1556
+ .Set1 .q3-6{fill:rgb(152,78,163)}
1557
+ .Set1 .q4-6{fill:rgb(255,127,0)}
1558
+ .Set1 .q5-6{fill:rgb(255,255,51)}
1559
+ .Set1 .q0-7{fill:rgb(228,26,28)}
1560
+ .Set1 .q1-7{fill:rgb(55,126,184)}
1561
+ .Set1 .q2-7{fill:rgb(77,175,74)}
1562
+ .Set1 .q3-7{fill:rgb(152,78,163)}
1563
+ .Set1 .q4-7{fill:rgb(255,127,0)}
1564
+ .Set1 .q5-7{fill:rgb(255,255,51)}
1565
+ .Set1 .q6-7{fill:rgb(166,86,40)}
1566
+ .Set1 .q0-8{fill:rgb(228,26,28)}
1567
+ .Set1 .q1-8{fill:rgb(55,126,184)}
1568
+ .Set1 .q2-8{fill:rgb(77,175,74)}
1569
+ .Set1 .q3-8{fill:rgb(152,78,163)}
1570
+ .Set1 .q4-8{fill:rgb(255,127,0)}
1571
+ .Set1 .q5-8{fill:rgb(255,255,51)}
1572
+ .Set1 .q6-8{fill:rgb(166,86,40)}
1573
+ .Set1 .q7-8{fill:rgb(247,129,191)}
1574
+ .Set1 .q0-9{fill:rgb(228,26,28)}
1575
+ .Set1 .q1-9{fill:rgb(55,126,184)}
1576
+ .Set1 .q2-9{fill:rgb(77,175,74)}
1577
+ .Set1 .q3-9{fill:rgb(152,78,163)}
1578
+ .Set1 .q4-9{fill:rgb(255,127,0)}
1579
+ .Set1 .q5-9{fill:rgb(255,255,51)}
1580
+ .Set1 .q6-9{fill:rgb(166,86,40)}
1581
+ .Set1 .q7-9{fill:rgb(247,129,191)}
1582
+ .Set1 .q8-9{fill:rgb(153,153,153)}
1583
+ .Set2 .q0-3{fill:rgb(102,194,165)}
1584
+ .Set2 .q1-3{fill:rgb(252,141,98)}
1585
+ .Set2 .q2-3{fill:rgb(141,160,203)}
1586
+ .Set2 .q0-4{fill:rgb(102,194,165)}
1587
+ .Set2 .q1-4{fill:rgb(252,141,98)}
1588
+ .Set2 .q2-4{fill:rgb(141,160,203)}
1589
+ .Set2 .q3-4{fill:rgb(231,138,195)}
1590
+ .Set2 .q0-5{fill:rgb(102,194,165)}
1591
+ .Set2 .q1-5{fill:rgb(252,141,98)}
1592
+ .Set2 .q2-5{fill:rgb(141,160,203)}
1593
+ .Set2 .q3-5{fill:rgb(231,138,195)}
1594
+ .Set2 .q4-5{fill:rgb(166,216,84)}
1595
+ .Set2 .q0-6{fill:rgb(102,194,165)}
1596
+ .Set2 .q1-6{fill:rgb(252,141,98)}
1597
+ .Set2 .q2-6{fill:rgb(141,160,203)}
1598
+ .Set2 .q3-6{fill:rgb(231,138,195)}
1599
+ .Set2 .q4-6{fill:rgb(166,216,84)}
1600
+ .Set2 .q5-6{fill:rgb(255,217,47)}
1601
+ .Set2 .q0-7{fill:rgb(102,194,165)}
1602
+ .Set2 .q1-7{fill:rgb(252,141,98)}
1603
+ .Set2 .q2-7{fill:rgb(141,160,203)}
1604
+ .Set2 .q3-7{fill:rgb(231,138,195)}
1605
+ .Set2 .q4-7{fill:rgb(166,216,84)}
1606
+ .Set2 .q5-7{fill:rgb(255,217,47)}
1607
+ .Set2 .q6-7{fill:rgb(229,196,148)}
1608
+ .Set2 .q0-8{fill:rgb(102,194,165)}
1609
+ .Set2 .q1-8{fill:rgb(252,141,98)}
1610
+ .Set2 .q2-8{fill:rgb(141,160,203)}
1611
+ .Set2 .q3-8{fill:rgb(231,138,195)}
1612
+ .Set2 .q4-8{fill:rgb(166,216,84)}
1613
+ .Set2 .q5-8{fill:rgb(255,217,47)}
1614
+ .Set2 .q6-8{fill:rgb(229,196,148)}
1615
+ .Set2 .q7-8{fill:rgb(179,179,179)}
1616
+ .Set3 .q0-3{fill:rgb(141,211,199)}
1617
+ .Set3 .q1-3{fill:rgb(255,255,179)}
1618
+ .Set3 .q2-3{fill:rgb(190,186,218)}
1619
+ .Set3 .q0-4{fill:rgb(141,211,199)}
1620
+ .Set3 .q1-4{fill:rgb(255,255,179)}
1621
+ .Set3 .q2-4{fill:rgb(190,186,218)}
1622
+ .Set3 .q3-4{fill:rgb(251,128,114)}
1623
+ .Set3 .q0-5{fill:rgb(141,211,199)}
1624
+ .Set3 .q1-5{fill:rgb(255,255,179)}
1625
+ .Set3 .q2-5{fill:rgb(190,186,218)}
1626
+ .Set3 .q3-5{fill:rgb(251,128,114)}
1627
+ .Set3 .q4-5{fill:rgb(128,177,211)}
1628
+ .Set3 .q0-6{fill:rgb(141,211,199)}
1629
+ .Set3 .q1-6{fill:rgb(255,255,179)}
1630
+ .Set3 .q2-6{fill:rgb(190,186,218)}
1631
+ .Set3 .q3-6{fill:rgb(251,128,114)}
1632
+ .Set3 .q4-6{fill:rgb(128,177,211)}
1633
+ .Set3 .q5-6{fill:rgb(253,180,98)}
1634
+ .Set3 .q0-7{fill:rgb(141,211,199)}
1635
+ .Set3 .q1-7{fill:rgb(255,255,179)}
1636
+ .Set3 .q2-7{fill:rgb(190,186,218)}
1637
+ .Set3 .q3-7{fill:rgb(251,128,114)}
1638
+ .Set3 .q4-7{fill:rgb(128,177,211)}
1639
+ .Set3 .q5-7{fill:rgb(253,180,98)}
1640
+ .Set3 .q6-7{fill:rgb(179,222,105)}
1641
+ .Set3 .q0-8{fill:rgb(141,211,199)}
1642
+ .Set3 .q1-8{fill:rgb(255,255,179)}
1643
+ .Set3 .q2-8{fill:rgb(190,186,218)}
1644
+ .Set3 .q3-8{fill:rgb(251,128,114)}
1645
+ .Set3 .q4-8{fill:rgb(128,177,211)}
1646
+ .Set3 .q5-8{fill:rgb(253,180,98)}
1647
+ .Set3 .q6-8{fill:rgb(179,222,105)}
1648
+ .Set3 .q7-8{fill:rgb(252,205,229)}
1649
+ .Set3 .q0-9{fill:rgb(141,211,199)}
1650
+ .Set3 .q1-9{fill:rgb(255,255,179)}
1651
+ .Set3 .q2-9{fill:rgb(190,186,218)}
1652
+ .Set3 .q3-9{fill:rgb(251,128,114)}
1653
+ .Set3 .q4-9{fill:rgb(128,177,211)}
1654
+ .Set3 .q5-9{fill:rgb(253,180,98)}
1655
+ .Set3 .q6-9{fill:rgb(179,222,105)}
1656
+ .Set3 .q7-9{fill:rgb(252,205,229)}
1657
+ .Set3 .q8-9{fill:rgb(217,217,217)}
1658
+ .Set3 .q0-10{fill:rgb(141,211,199)}
1659
+ .Set3 .q1-10{fill:rgb(255,255,179)}
1660
+ .Set3 .q2-10{fill:rgb(190,186,218)}
1661
+ .Set3 .q3-10{fill:rgb(251,128,114)}
1662
+ .Set3 .q4-10{fill:rgb(128,177,211)}
1663
+ .Set3 .q5-10{fill:rgb(253,180,98)}
1664
+ .Set3 .q6-10{fill:rgb(179,222,105)}
1665
+ .Set3 .q7-10{fill:rgb(252,205,229)}
1666
+ .Set3 .q8-10{fill:rgb(217,217,217)}
1667
+ .Set3 .q9-10{fill:rgb(188,128,189)}
1668
+ .Set3 .q0-11{fill:rgb(141,211,199)}
1669
+ .Set3 .q1-11{fill:rgb(255,255,179)}
1670
+ .Set3 .q2-11{fill:rgb(190,186,218)}
1671
+ .Set3 .q3-11{fill:rgb(251,128,114)}
1672
+ .Set3 .q4-11{fill:rgb(128,177,211)}
1673
+ .Set3 .q5-11{fill:rgb(253,180,98)}
1674
+ .Set3 .q6-11{fill:rgb(179,222,105)}
1675
+ .Set3 .q7-11{fill:rgb(252,205,229)}
1676
+ .Set3 .q8-11{fill:rgb(217,217,217)}
1677
+ .Set3 .q9-11{fill:rgb(188,128,189)}
1678
+ .Set3 .q10-11{fill:rgb(204,235,197)}
1679
+ .Set3 .q0-12{fill:rgb(141,211,199)}
1680
+ .Set3 .q1-12{fill:rgb(255,255,179)}
1681
+ .Set3 .q2-12{fill:rgb(190,186,218)}
1682
+ .Set3 .q3-12{fill:rgb(251,128,114)}
1683
+ .Set3 .q4-12{fill:rgb(128,177,211)}
1684
+ .Set3 .q5-12{fill:rgb(253,180,98)}
1685
+ .Set3 .q6-12{fill:rgb(179,222,105)}
1686
+ .Set3 .q7-12{fill:rgb(252,205,229)}
1687
+ .Set3 .q8-12{fill:rgb(217,217,217)}
1688
+ .Set3 .q9-12{fill:rgb(188,128,189)}
1689
+ .Set3 .q10-12{fill:rgb(204,235,197)}
1690
+ .Set3 .q11-12{fill:rgb(255,237,111)}