Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.35 KB | None | 0 0
  1. - const gridSize = 400
  2. - const hogColors = ['#311F17', '#BD7816', '#B87F57', '#684831']
  3. - const randomInRange = (max, min = 0) => Math.floor(Math.random() * (max - min)) + min
  4. //- How many hogs and how much time do we have?
  5. //- We aren't doing 3 - 5 minutes. Let's do 30 - 50 seconds.
  6. - const seconds = randomInRange(30, 50)
  7. //- - const seconds = 20
  8. //- Same for the hogs
  9. - const hogsAmount = randomInRange(30, 50)
  10. //- Where the magic happens. Check out the full function in the script panel
  11. - const hogs=Array(hogsAmount).fill().map(()=>{let a=randomInRange(0,100),b=.5<Math.random()?0:100,c=randomInRange(-45,45),d=0,e=0;const f=4*Math.random()+1,g=4*Math.random()+1,h=.5<Math.random();return h&&(a=.5<Math.random()?0:100,b=randomInRange(0,100)),0===a&&(c=-90+randomInRange(-45,45),d=-50),100===a&&(c=90+randomInRange(-45,45),d=50),0===b&&(e=-50),100===b&&(c=180+randomInRange(-45,45),e=50),{left:a,top:b,rotation:c,translateX:d,translateY:e,speed:f,delay:g}});
  12. //- We need to declare some paths as I'm not sure how to randomly generate them
  13. - const circlePath = (r = 50) => `M 0 0 A ${r} ${r} 0 1 1 0 ${r * 2} A ${r} ${r} 0 1 1 0 0`
  14. //- Then we want a wavy path, a straight path and maybe a figure of eight path?
  15. - const linePath = () => `M 0 0 L 0 ${gridSize * 1.5}`
  16. - const wavePath = (x, y) => `M 0 0 Q ${x} ${y} 0 ${gridSize * 1.5}`
  17. form(style=`--seconds: ${seconds}; --hogs: ${hogsAmount}; --grid-size: ${gridSize}`)
  18. input.start(type='checkbox')
  19. .info-screen.title-screen
  20. .title-screen__content.info-screen__content
  21. h1
  22. | 30-50 Feral Hogs!
  23. p
  24. | You&apos;ll get 30-50 seconds to catch as many of
  25. | 30-50 feral hogs as you can.
  26. | Golden maned hogs score more points!
  27. button Start
  28. .pen
  29. - for (let h = 0; h < hogs.length; h++)
  30. - const {left, top, rotation, translateX, translateY, speed, delay} = hogs[h]
  31. - const x = randomInRange(-(gridSize / 2), gridSize / 2)
  32. - const y = randomInRange(0, gridSize)
  33. - const golden = Math.random() > 0.9
  34. - const score = golden ? 10 : 1
  35. - const color = hogColors[Math.floor(Math.random() * hogColors.length)]
  36. - const maneColor = golden ? '#d4af37' : '#000000'
  37. - let path = Math.random() > 0.75 ? circlePath(randomInRange(-100, 100)) : Math.random() > 0.5 ? linePath(x, y) : wavePath(x, y)
  38. .hog(style=`--path: '${path}'; --left: ${left}; --top: ${top}; --rotation: ${rotation}; --translateX: ${translateX}; --translateY: ${translateY}; --speed: ${speed}; --delay: ${delay}; --color: ${color}; --maneColor: ${maneColor}; --score: ${score}`)
  39. input(type='checkbox', id=`hog--${h}`)
  40. label.hog__container(for=`hog--${h}`)
  41. .hog__body
  42. svg(preserveaspectratio='xMinYMin' viewbox='0 0 11.641666 11.641667')
  43. g#layer1(transform='translate(0,-285.35832)')
  44. g#g952(transform='rotate(90,5.895567,291.17916)')
  45. path#path921(style='fill:#ffffff;stroke:none;stroke-width:0.02840113;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' d='m 5.8203165,285.62548 a 2.2001562,1.6385547 0 0 0 -2.196765,1.5844 2.4776532,2.0812287 0 0 1 2.196765,-1.12189 2.4776532,2.0812287 0 0 1 2.1977987,1.12241 2.2001562,1.6385547 0 0 0 -2.1977987,-1.58492 z')
  46. ellipse#path820.hog__abdomen(style='stroke:none;stroke-width:2.78336954;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' cx='5.8208332' cy='290.54489' rx='3.1075277' ry='4.4597759')
  47. ellipse#path858(style='fill:#a05a2c;stroke:none;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' cx='5.8208332' cy='286.39563' rx='1.5592697' ry='1.0373108')
  48. rect#rect828.hog__tail(style='stroke:none;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' width='0.33035377' height='1.5724839' x='5.6556563' y='294.89835')
  49. circle#path830.hog__tail-end(style='stroke:none;stroke-width:0.34369779;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' cx='5.8208332' cy='296.60312' r='0.39687499')
  50. path#circle862(style='fill:#a05a2c;stroke:none;stroke-width:1.6755935;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' d='M 19.400391,3.1875 A 11.744987,16.855846 0 0 0 13.820312,7.5058594 4.1980704,4.1980704 0 0 0 18,11.337891 4.1980704,4.1980704 0 0 0 22.197266,7.1386719 4.1980704,4.1980704 0 0 0 19.400391,3.1875 Z' transform='matrix(0.26458333,0,0,0.26458333,0,285.35832)')
  51. path#path880(d='m 6.5132975,286.20168 a 3.1075278,4.4597759 0 0 1 1.4763959,1.14257 1.1107394,1.1107394 0 0 1 -1.1058758,1.01389 1.1107394,1.1107394 0 0 1 -1.1105266,-1.11105 1.1107394,1.1107394 0 0 1 0.7400065,-1.04541 z' style='fill:#a05a2c;stroke:none;stroke-width:0.4433341;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1')
  52. ellipse#path832(style='fill:#d38d5f;stroke:none;stroke-width:0.27604845;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' cx='5.8208332' cy='286.01978' rx='1.3229166' ry='0.66145831')
  53. circle#path834(style='fill:#c87137;stroke:none;stroke-width:0.70904714;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' cx='5.2916665' cy='285.728' r='0.26458332')
  54. circle#circle836(r='0.26458332' cy='285.71478' cx='6.3499999' style='fill:#c87137;stroke:none;stroke-width:0.70904714;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1')
  55. circle#path882(style='fill:#a05a2c;stroke:none;stroke-width:0.26203078;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' cx='5.8208332' cy='287.76147' r='1.0583333')
  56. g#g846
  57. circle#path838(r='0.66145831' cy='287.24719' cx='4.7624998' style='fill:#241c1c;stroke:none;stroke-width:0.26401064;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1')
  58. circle#path842(r='0.13229166' cy='287.48566' cx='5.0215273' style='fill:#ffffff;stroke:none;stroke-width:0.53060228;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1')
  59. g#g852(transform='translate(2.1166669)')
  60. circle#circle848(style='fill:#241c1c;stroke:none;stroke-width:0.26401064;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' cx='4.7624998' cy='287.24719' r='0.66145831')
  61. circle#circle850(style='fill:#ffffff;stroke:none;stroke-width:0.53060228;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' cx='5.0215273' cy='287.48566' r='0.13229166')
  62. rect#rect854.hog__mane(style='stroke:none;stroke-width:0.29206482;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' width='1.0583333' height='3.96875' x='5.2916665' y='287.52032' ry='0.42868033')
  63. g#g893(transform='rotate(15.659861,8.1286701,281.93906)')
  64. path#path884(d='m 8.8400561,288.01642 c 0.1209305,-0.40182 0.4966402,-0.37745 0.9626182,-0.23722 0.4659847,0.14023 1.0302237,-0.0463 1.0546557,0.38197 -0.120924,0.40184 -0.823529,0.89421 -1.2895239,0.75397 -0.4659752,-0.14024 -0.8486806,-0.49689 -0.72775,-0.89872 z' style='fill:#a05a2c;stroke:none;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1')
  65. path#path889(style='fill:#de8787;stroke:none;stroke-width:0.21086793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' d='m 9.0437873,288.07699 c 0.096228,-0.31972 0.3951905,-0.30035 0.7659824,-0.18876 0.3707973,0.11159 0.8197773,-0.0369 0.8392193,0.30396 -0.09622,0.31974 -0.6553046,0.71154 -1.0261107,0.59994 -0.3707894,-0.11158 -0.6753189,-0.39539 -0.579091,-0.71514 z')
  66. g#g899(transform='matrix(-0.96288108,0.26992596,0.26992596,0.96288108,-64.613265,8.2711343)')
  67. path#path895(style='fill:#a05a2c;stroke:none;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' d='m 8.8400561,288.01642 c 0.1209305,-0.40182 0.4966402,-0.37745 0.9626182,-0.23722 0.4659847,0.14023 1.0302237,-0.0463 1.0546557,0.38197 -0.120924,0.40184 -0.823529,0.89421 -1.2895239,0.75397 -0.4659752,-0.14024 -0.8486806,-0.49689 -0.72775,-0.89872 z')
  68. path#path897(d='m 9.0437873,288.07699 c 0.096228,-0.31972 0.3951905,-0.30035 0.7659824,-0.18876 0.3707973,0.11159 0.8197773,-0.0369 0.8392193,0.30396 -0.09622,0.31974 -0.6553046,0.71154 -1.0261107,0.59994 -0.3707894,-0.11158 -0.6753189,-0.39539 -0.579091,-0.71514 z' style='fill:#de8787;stroke:none;stroke-width:0.21086793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1')
  69. path#path905(style='fill:#a05a2c;stroke:none;stroke-width:0.02645833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' d='m 4.8841898,288.17908 c -0.00365,0.0299 -0.00273,0.0601 -0.00148,0.0901 5.556e-4,0.0186 0.00146,0.0372 0.00159,0.0558 4.07e-5,0.0143 3.439e-4,0.0286 2.307e-4,0.0429 -1.64e-5,0.0133 5.95e-5,0.0267 -2.25e-5,0.04 4e-6,0.0133 8.12e-5,0.0265 5e-7,0.0398 8.15e-5,0.017 -1.992e-4,0.0341 -3.175e-4,0.0512 4.18e-5,0.0198 1.641e-4,0.0395 9.85e-5,0.0593 4.498e-4,0.0157 -1.77e-4,0.0314 2.309e-4,0.047 8.732e-4,0.0171 -3.968e-4,0.0333 -0.00504,0.0498 -0.00337,0.0142 -0.00773,0.0282 -0.00977,0.0426 -5.557e-4,0.0149 3.175e-4,0.0298 8.995e-4,0.0447 3.705e-4,0.0178 4.763e-4,0.0355 4.498e-4,0.0533 -1.079e-4,0.0236 -1.809e-4,0.0472 -2.225e-4,0.0707 3.704e-4,0.0228 1.519e-4,0.0457 -9.63e-5,0.0685 2.646e-4,0.0253 8.1e-5,0.0505 5.43e-5,0.0758 -1.4e-4,0.0246 1.561e-4,0.0493 1.669e-4,0.0739 6.35e-4,0.0224 -0.00749,0.0437 -0.010671,0.0657 -0.00528,0.0193 -0.012486,0.0383 -0.019336,0.0573 -0.00562,0.021 -0.016185,0.0394 -0.026524,0.0583 -0.00843,0.021 -0.018492,0.0409 -0.029555,0.0606 -0.014277,0.0182 -0.025024,0.0384 -0.036974,0.0581 -0.013351,0.0219 -0.032374,0.0388 -0.047565,0.0592 -0.016563,0.0221 -0.033371,0.0441 -0.051328,0.0651 -0.020468,0.0193 -0.038334,0.0412 -0.059329,0.06 -0.019651,0.0211 -0.039982,0.0415 -0.059369,0.0628 -0.020323,0.0226 -0.043167,0.0426 -0.06453,0.0641 -0.019344,0.0199 -0.038708,0.0397 -0.058798,0.0588 -0.016372,0.015 -0.031812,0.0308 -0.045553,0.0482 -0.015653,0.019 -0.030111,0.0389 -0.045302,0.0584 -0.016648,0.0216 -0.036479,0.0399 -0.055134,0.0596 -0.022156,0.0242 -0.042329,0.0499 -0.061257,0.0767 -0.021974,0.0281 -0.041213,0.0583 -0.060678,0.0882 -0.017889,0.0288 -0.035792,0.0576 -0.053232,0.0867 -0.014004,0.0232 -0.024871,0.048 -0.036524,0.0724 -0.00941,0.0233 -0.015198,0.048 -0.025612,0.0709 -0.00962,0.0231 -0.012523,0.0481 -0.019328,0.0722 -0.00343,0.0223 -0.00912,0.0442 -0.013258,0.0663 -0.00491,0.0236 -0.00725,0.047 -0.00729,0.0711 4.234e-4,0.0281 0.00101,0.0563 0.00132,0.0845 3.44e-4,0.0262 1.331e-4,0.0524 4.234e-4,0.0786 1.06e-5,0.0199 3.439e-4,0.0398 1.362e-4,0.0596 -0.00196,0.0214 0.00605,0.0413 0.010745,0.0618 0.00193,0.0216 0.00671,0.0428 0.014179,0.0632 0.00899,0.0269 0.021034,0.0526 0.034865,0.0774 0.012705,0.0301 0.035867,0.0534 0.052067,0.0811 0.018399,0.0258 0.039964,0.0489 0.057921,0.075 0.014282,0.0288 0.037888,0.0507 0.057059,0.076 0.022482,0.0218 0.040409,0.0474 0.060562,0.0712 0.019283,0.0252 0.038777,0.0499 0.053577,0.0781 0.01638,0.0223 0.03032,0.046 0.045904,0.0688 0.010956,0.0164 0.024897,0.0316 0.033409,0.0495 0.011205,0.0237 -1.072e-4,0.006 0.011364,0.0226 0.0086,0.0217 0.020611,0.0418 0.026557,0.0645 0.00822,0.0208 0.018632,0.0405 0.026665,0.0613 0.010414,0.0214 0.015261,0.0448 0.021971,0.0676 0.00694,0.0263 0.016335,0.052 0.023953,0.0783 0.00723,0.0271 0.017034,0.0535 0.026337,0.08 0.00649,0.0277 0.013335,0.0555 0.017989,0.0836 0.00564,0.032 0.00757,0.064 0.00746,0.0964 -4.498e-4,0.0293 -8.202e-4,0.0585 -0.00132,0.0878 0.00122,0.0303 -0.00116,0.0602 -0.00557,0.0902 -0.00732,0.0237 -0.00721,0.0483 -0.00919,0.0728 -0.00378,0.019 -0.00931,0.0373 -0.012785,0.0564 -0.00399,0.0172 -0.01034,0.0335 -0.016192,0.0501 -0.00804,0.0178 -0.015523,0.0359 -0.02435,0.0534 -0.00843,0.018 -0.016547,0.0361 -0.025228,0.054 -0.00919,0.0204 -0.019873,0.0401 -0.029265,0.0605 -0.00385,0.0202 -0.015063,0.0376 -0.020706,0.0571 -0.00399,0.009 -0.00855,0.0175 -0.015095,0.0245 8.467e-4,0.0125 -0.00945,0.0194 -0.012637,0.0304 -0.00752,0.0115 -0.011766,0.024 -0.019463,0.0353 -0.00615,0.008 -0.00849,0.0175 -0.012946,0.0262 4.762e-4,0.007 -0.0081,0.005 -0.00914,0.007 0.00114,0.008 -0.00482,0.0175 -0.010197,0.0248 -0.00336,0.005 -0.00468,0.0149 -0.0087,0.0201 -0.00941,0.0123 5.028e-4,-0.009 -0.00532,0.005 -0.00279,0.0129 -0.00807,0.0246 -0.014052,0.0362 -0.00516,0.0111 -0.01,0.0218 -0.015245,0.0328 -0.00545,0.008 -0.00923,0.0175 -0.011909,0.0268 -0.00164,0.003 0.00159,0.008 -0.00251,2.3e-4 -0.057229,0.0355 -0.1144577,0.071 -0.1716865,0.10644 -0.00374,7e-5 -0.00708,-9.3e-4 -0.010758,-5.3e-4 0,0 0.161,-0.11478 0.161,-0.11478 v 0 c 0.00375,9e-4 0.00753,0.001 0.011311,0.002 -0.040526,0.0275 -0.1522074,0.17309 -0.1641965,0.0947 -3.968e-4,-0.0131 0.00604,-0.0233 0.00801,-0.0359 0.00828,-0.009 0.00294,-0.006 0.00754,-0.0148 8.731e-4,-0.002 0.0037,-10e-4 0.00457,-0.003 0.012338,-0.0228 -0.00658,0.002 0.00473,-0.0121 0.0014,-0.004 0.00172,-0.008 0.00417,-0.0115 0.00111,-0.001 0.00363,-0.002 0.0045,-0.003 0.00269,-0.005 0.00235,-0.0132 0.00653,-0.018 6.614e-4,-0.005 -0.00138,-0.0105 8.202e-4,-0.015 6.879e-4,-0.001 0.00335,5.2e-4 0.00471,-2.7e-4 0.00524,-0.003 -3.704e-4,-0.0128 0.00736,-0.0121 0.00156,-0.007 0.00617,-0.0104 0.00795,-0.0159 6.615e-4,-0.002 -9.26e-4,-0.005 7.673e-4,-0.006 0.00122,-9.7e-4 0.00249,0.002 0.00373,0.003 -6.615e-4,-0.008 -0.00486,-0.0149 0.00424,-0.0174 0.00837,-0.006 0.011216,-0.0148 0.01452,-0.0246 0.00233,-0.004 0.00991,-0.0109 0.011266,-0.0151 0.00106,-0.003 -3.175e-4,-0.007 0.00106,-0.0103 0.00153,-0.003 0.00949,-0.002 0.00738,-0.009 0.010136,-0.01 -0.00498,0.006 0.00396,-0.013 6.615e-4,-10e-4 0.00377,1e-5 0.00461,-10e-4 0.00468,-0.008 -0.0019,-0.007 0.00709,-0.009 -0.00132,-0.0118 0.0045,-0.022 0.012769,-0.0304 0.00786,-0.0103 0.00101,3.7e-4 0.00586,-0.0156 0.00427,-0.014 0.017182,-0.0244 0.016436,-0.0402 0.00619,-0.0216 0.017661,-0.0413 0.028693,-0.0608 0.00621,-0.0196 0.017931,-0.0366 0.024495,-0.056 0.00317,-0.006 0.00718,-0.0111 0.00963,-0.0172 0.00135,-0.003 0.0014,-0.007 0.00296,-0.0106 0.00384,-0.008 0.010777,-0.0152 0.01175,-0.0249 0.00886,-0.0129 0.00439,-0.0148 0.00876,-0.026 7.673e-4,-0.002 0.00362,-0.003 0.00453,-0.004 0.00233,-0.005 6.615e-4,-0.0112 0.00484,-0.0155 0.00515,-0.0184 0.00581,-0.0375 0.013327,-0.0553 0.00645,-0.0237 -8.731e-4,-0.0501 0.010036,-0.073 0.00461,-0.0292 0.00871,-0.058 0.00688,-0.0877 1.75e-5,-0.0293 7.408e-4,-0.0586 0.0014,-0.0878 4.762e-4,-0.0314 -7.94e-5,-0.0625 -0.00612,-0.0934 -0.00421,-0.0272 -0.011316,-0.0537 -0.016579,-0.0807 -0.00876,-0.027 -0.019881,-0.0534 -0.026494,-0.081 -0.00722,-0.0263 -0.017822,-0.0517 -0.0245,-0.078 -0.00411,-0.0153 -0.00148,-0.007 -0.00816,-0.0234 -0.00428,-0.0141 -0.00327,-0.0299 -0.012883,-0.0425 -0.0087,-0.0216 -0.018928,-0.0424 -0.028128,-0.0637 -0.00431,-0.0209 -0.016534,-0.0384 -0.023154,-0.0587 -0.014745,-0.0238 -0.024231,-0.0509 -0.044112,-0.0718 -0.016166,-0.0234 -0.030799,-0.0477 -0.047113,-0.071 -0.013616,-0.0271 -0.033242,-0.0502 -0.050991,-0.0746 -0.020246,-0.0242 -0.039713,-0.0491 -0.061581,-0.0719 -0.018867,-0.0258 -0.04303,-0.0476 -0.057273,-0.0767 -0.018375,-0.0264 -0.040405,-0.0498 -0.058487,-0.0764 -0.00849,-0.0146 -0.019389,-0.0263 -0.028923,-0.0402 -0.014451,-0.021 -0.0038,-0.006 -0.015206,-0.0269 -0.00271,-0.005 -0.00585,-0.009 -0.00878,-0.0142 -0.013459,-0.0257 -0.026892,-0.0517 -0.03604,-0.0793 -0.00899,-0.0209 -0.014833,-0.0436 -0.016142,-0.0662 -0.00353,-0.0217 -0.014571,-0.0424 -0.012764,-0.0651 -1.99e-4,-0.0199 1.479e-4,-0.0399 1.476e-4,-0.0598 2.646e-4,-0.0262 4.63e-5,-0.0524 -3.54e-5,-0.0786 -2.08e-4,-0.0282 -5.821e-4,-0.0563 -0.0013,-0.0845 -5.556e-4,-0.0252 -6.879e-4,-0.0496 0.00556,-0.0741 0.00334,-0.0228 0.0096,-0.0448 0.012814,-0.0676 0.00602,-0.0306 -0.00124,0.002 0.00754,-0.0258 0.00526,-0.0165 0.00334,-0.0343 0.00954,-0.0506 0.012412,-0.0216 0.019037,-0.0458 0.026596,-0.0693 0.00868,-0.0264 0.024088,-0.0504 0.035658,-0.0757 0.018164,-0.029 0.035093,-0.0582 0.05357,-0.087 0.018632,-0.0308 0.038959,-0.0605 0.059624,-0.0899 0.024884,-0.0289 -0.00217,0.004 0.01977,-0.0285 0.011925,-0.0178 0.02862,-0.0318 0.040418,-0.0496 0.00901,-0.01 0.017928,-0.0224 0.028248,-0.0309 0.00312,-0.003 0.00756,-0.003 0.010427,-0.006 0.00651,-0.006 0.00795,-0.0171 0.016319,-0.0222 0.017854,-0.0167 0.027124,-0.0401 0.046258,-0.0555 0.011208,-0.0201 0.027224,-0.0368 0.044028,-0.0524 0.020262,-0.0193 0.040448,-0.0383 0.059311,-0.0587 0.00713,-0.007 0.013002,-0.0151 0.020302,-0.0218 0.00339,-0.003 0.00778,-0.005 0.011343,-0.008 0.012353,-0.0101 0.02055,-0.0239 0.032992,-0.0339 0.020548,-0.0201 0.039952,-0.0419 0.058819,-0.0636 0.033196,-0.033 -0.01275,0.0117 0.020484,-0.0177 0.014322,-0.0127 0.022767,-0.031 0.039801,-0.0408 0.018701,-0.02 0.034077,-0.0421 0.051772,-0.0629 0.00709,-0.0104 0.013467,-0.0235 0.02322,-0.0318 0.00292,-0.002 0.00721,-0.003 0.00983,-0.006 0.00594,-0.006 0.00659,-0.0166 0.014174,-0.0218 0.016005,-0.0169 0.020622,-0.0406 0.037491,-0.057 0.013581,-0.0174 0.021921,-0.037 0.030448,-0.0574 0.00707,-0.0201 0.022299,-0.0352 0.027506,-0.0564 0.00273,-0.01 0.00734,-0.0185 0.010401,-0.028 0.00303,-0.009 0.00114,-0.0199 0.010657,-0.026 0.0013,-0.0144 0.00254,-0.0294 0.00748,-0.0431 0.00116,-0.003 0.00357,-0.006 0.00425,-0.009 7.673e-4,-0.004 -1.17e-5,-0.008 -1.75e-5,-0.0113 1.11e-5,-0.0247 3.175e-4,-0.0494 1.67e-4,-0.0741 -2.7e-5,-0.0253 -2.186e-4,-0.0506 5.53e-5,-0.0759 -2.49e-4,-0.0228 -4.498e-4,-0.0456 -8.21e-5,-0.0684 -3.36e-5,-0.0235 -8.25e-5,-0.047 -2.458e-4,-0.0704 -1.092e-4,-0.0175 -4.92e-5,-0.0351 -5.556e-4,-0.0526 -3.175e-4,-0.0155 -0.00116,-0.0309 -0.00167,-0.0463 -6.48e-5,-0.0158 0.00417,-0.031 0.00827,-0.0461 0.00366,-0.0154 0.00977,-0.0287 0.00693,-0.0451 3.969e-4,-0.0158 -2.233e-4,-0.0315 2.31e-4,-0.0473 -6.59e-5,-0.0198 5.71e-5,-0.0396 9.81e-5,-0.0594 -1.19e-4,-0.0169 -3.968e-4,-0.0339 -3.175e-4,-0.0508 -8.09e-5,-0.0133 -2.6e-6,-0.0265 5.1e-6,-0.0398 -7.78e-5,-0.0133 7.9e-6,-0.0266 2.1e-6,-0.04 -1.101e-4,-0.0143 2.098e-4,-0.0285 4.47e-5,-0.0428 -2.072e-4,-0.0186 -1.251e-4,-0.0372 -7.408e-4,-0.0557 -5.821e-4,-0.0301 -0.00254,-0.0606 0.00101,-0.0906 0,0 0.1749062,-0.0891 0.1749062,-0.0891 z')
  70. path#path907(d='m 6.8922347,288.17908 c 0.00365,0.0299 0.00273,0.0601 0.00148,0.0901 -5.556e-4,0.0186 -0.00146,0.0372 -0.00159,0.0558 -4.07e-5,0.0143 -3.439e-4,0.0286 -2.307e-4,0.0429 1.64e-5,0.0133 -5.95e-5,0.0267 2.25e-5,0.04 -4e-6,0.0133 -8.12e-5,0.0265 -5e-7,0.0398 -8.15e-5,0.017 1.992e-4,0.0341 3.175e-4,0.0512 -4.18e-5,0.0198 -1.641e-4,0.0395 -9.85e-5,0.0593 -4.498e-4,0.0157 1.77e-4,0.0314 -2.309e-4,0.047 -8.732e-4,0.0171 3.968e-4,0.0333 0.00504,0.0498 0.00337,0.0142 0.00773,0.0282 0.00977,0.0426 5.557e-4,0.0149 -3.175e-4,0.0298 -8.995e-4,0.0447 -3.705e-4,0.0178 -4.763e-4,0.0355 -4.498e-4,0.0533 1.079e-4,0.0236 1.809e-4,0.0472 2.225e-4,0.0707 -3.704e-4,0.0228 -1.519e-4,0.0457 9.63e-5,0.0685 -2.646e-4,0.0253 -8.1e-5,0.0505 -5.43e-5,0.0758 1.4e-4,0.0246 -1.561e-4,0.0493 -1.669e-4,0.0739 -6.35e-4,0.0224 0.00749,0.0437 0.010671,0.0657 0.00528,0.0193 0.012486,0.0383 0.019336,0.0573 0.00562,0.021 0.016185,0.0394 0.026524,0.0583 0.00843,0.021 0.018492,0.0409 0.029555,0.0606 0.014277,0.0182 0.025024,0.0384 0.036974,0.0581 0.013351,0.0219 0.032374,0.0388 0.047565,0.0592 0.016563,0.0221 0.033371,0.0441 0.051328,0.0651 0.020468,0.0193 0.038334,0.0412 0.059329,0.06 0.019651,0.0211 0.039982,0.0415 0.059369,0.0628 0.020323,0.0226 0.043167,0.0426 0.06453,0.0641 0.019344,0.0199 0.038708,0.0397 0.058798,0.0588 0.016372,0.015 0.031812,0.0308 0.045553,0.0482 0.015653,0.019 0.030111,0.0389 0.045302,0.0584 0.016648,0.0216 0.036479,0.0399 0.055134,0.0596 0.022156,0.0242 0.042329,0.0499 0.061257,0.0767 0.021974,0.0281 0.041213,0.0583 0.060678,0.0882 0.017889,0.0288 0.035792,0.0576 0.053232,0.0867 0.014004,0.0232 0.024871,0.048 0.036524,0.0724 0.00941,0.0233 0.015198,0.048 0.025612,0.0709 0.00962,0.0231 0.012523,0.0481 0.019328,0.0722 0.00343,0.0223 0.00912,0.0442 0.013258,0.0663 0.00491,0.0236 0.00725,0.047 0.00729,0.0711 -4.234e-4,0.0281 -0.00101,0.0563 -0.00132,0.0845 -3.44e-4,0.0262 -1.331e-4,0.0524 -4.234e-4,0.0786 -1.06e-5,0.0199 -3.439e-4,0.0398 -1.362e-4,0.0596 0.00196,0.0214 -0.00605,0.0413 -0.010745,0.0618 -0.00193,0.0216 -0.00671,0.0428 -0.014179,0.0632 -0.00899,0.0269 -0.021034,0.0526 -0.034865,0.0774 -0.012705,0.0301 -0.035867,0.0534 -0.052067,0.0811 -0.018399,0.0258 -0.039964,0.0489 -0.057921,0.075 -0.014282,0.0288 -0.037888,0.0507 -0.057059,0.076 -0.022482,0.0218 -0.040409,0.0474 -0.060562,0.0712 -0.019283,0.0252 -0.038777,0.0499 -0.053577,0.0781 -0.01638,0.0223 -0.03032,0.046 -0.045904,0.0688 -0.010956,0.0164 -0.024897,0.0316 -0.033409,0.0495 -0.011205,0.0237 1.072e-4,0.006 -0.011364,0.0226 -0.0086,0.0217 -0.020611,0.0418 -0.026557,0.0645 -0.00822,0.0208 -0.018632,0.0405 -0.026665,0.0613 -0.010414,0.0214 -0.015261,0.0448 -0.021971,0.0676 -0.00694,0.0263 -0.016335,0.052 -0.023953,0.0783 -0.00723,0.0271 -0.017034,0.0535 -0.026337,0.08 -0.00649,0.0277 -0.013335,0.0555 -0.017989,0.0836 -0.00564,0.032 -0.00757,0.064 -0.00746,0.0964 4.498e-4,0.0293 8.202e-4,0.0585 0.00132,0.0878 -0.00122,0.0303 0.00116,0.0602 0.00557,0.0902 0.00732,0.0237 0.00721,0.0483 0.00919,0.0728 0.00378,0.019 0.00931,0.0373 0.012785,0.0564 0.00399,0.0172 0.01034,0.0335 0.016192,0.0501 0.00804,0.0178 0.015523,0.0359 0.02435,0.0534 0.00843,0.018 0.016547,0.0361 0.025228,0.054 0.00919,0.0204 0.019873,0.0401 0.029265,0.0605 0.00385,0.0202 0.015063,0.0376 0.020706,0.0571 0.00399,0.009 0.00855,0.0175 0.015095,0.0245 -8.467e-4,0.0125 0.00945,0.0194 0.012637,0.0304 0.00752,0.0115 0.011766,0.024 0.019463,0.0353 0.00615,0.008 0.00849,0.0175 0.012946,0.0262 -4.762e-4,0.007 0.0081,0.005 0.00914,0.007 -0.00114,0.008 0.00482,0.0175 0.010197,0.0248 0.00336,0.005 0.00468,0.0149 0.0087,0.0201 0.00941,0.0123 -5.028e-4,-0.009 0.00532,0.005 0.00279,0.0129 0.00807,0.0246 0.014052,0.0362 0.00516,0.0111 0.01,0.0218 0.015245,0.0328 0.00545,0.008 0.00923,0.0175 0.011909,0.0268 0.00164,0.003 -0.00159,0.008 0.00251,2.3e-4 0.057229,0.0355 0.1144577,0.071 0.1716865,0.10644 0.00374,7e-5 0.00708,-9.3e-4 0.010758,-5.3e-4 0,0 -0.161,-0.11478 -0.161,-0.11478 v 0 c -0.00375,9e-4 -0.00753,0.001 -0.011311,0.002 0.040526,0.0275 0.1522074,0.17309 0.1641965,0.0947 3.968e-4,-0.0131 -0.00604,-0.0233 -0.00801,-0.0359 -0.00828,-0.009 -0.00294,-0.006 -0.00754,-0.0148 -8.731e-4,-0.002 -0.0037,-10e-4 -0.00457,-0.003 -0.012338,-0.0228 0.00658,0.002 -0.00473,-0.0121 -0.0014,-0.004 -0.00172,-0.008 -0.00417,-0.0115 -0.00111,-0.001 -0.00363,-0.002 -0.0045,-0.003 -0.00269,-0.005 -0.00235,-0.0132 -0.00653,-0.018 -6.614e-4,-0.005 0.00138,-0.0105 -8.202e-4,-0.015 -6.879e-4,-0.001 -0.00335,5.2e-4 -0.00471,-2.7e-4 -0.00524,-0.003 3.704e-4,-0.0128 -0.00736,-0.0121 -0.00156,-0.007 -0.00617,-0.0104 -0.00795,-0.0159 -6.615e-4,-0.002 9.26e-4,-0.005 -7.673e-4,-0.006 -0.00122,-9.7e-4 -0.00249,0.002 -0.00373,0.003 6.615e-4,-0.008 0.00486,-0.0149 -0.00424,-0.0174 -0.00837,-0.006 -0.011216,-0.0148 -0.01452,-0.0246 -0.00233,-0.004 -0.00991,-0.0109 -0.011266,-0.0151 -0.00106,-0.003 3.175e-4,-0.007 -0.00106,-0.0103 -0.00153,-0.003 -0.00949,-0.002 -0.00738,-0.009 -0.010136,-0.01 0.00498,0.006 -0.00396,-0.013 -6.615e-4,-10e-4 -0.00377,1e-5 -0.00461,-10e-4 -0.00468,-0.008 0.0019,-0.007 -0.00709,-0.009 0.00132,-0.0118 -0.0045,-0.022 -0.012769,-0.0304 -0.00786,-0.0103 -0.00101,3.7e-4 -0.00586,-0.0156 -0.00427,-0.014 -0.017182,-0.0244 -0.016436,-0.0402 -0.00619,-0.0216 -0.017661,-0.0413 -0.028693,-0.0608 -0.00621,-0.0196 -0.017931,-0.0366 -0.024495,-0.056 -0.00317,-0.006 -0.00718,-0.0111 -0.00963,-0.0172 -0.00135,-0.003 -0.0014,-0.007 -0.00296,-0.0106 -0.00384,-0.008 -0.010777,-0.0152 -0.01175,-0.0249 -0.00886,-0.0129 -0.00439,-0.0148 -0.00876,-0.026 -7.673e-4,-0.002 -0.00362,-0.003 -0.00453,-0.004 -0.00233,-0.005 -6.615e-4,-0.0112 -0.00484,-0.0155 -0.00515,-0.0184 -0.00581,-0.0375 -0.013327,-0.0553 -0.00645,-0.0237 8.731e-4,-0.0501 -0.010036,-0.073 -0.00461,-0.0292 -0.00871,-0.058 -0.00688,-0.0877 -1.75e-5,-0.0293 -7.408e-4,-0.0586 -0.0014,-0.0878 -4.762e-4,-0.0314 7.94e-5,-0.0625 0.00612,-0.0934 0.00421,-0.0272 0.011316,-0.0537 0.016579,-0.0807 0.00876,-0.027 0.019881,-0.0534 0.026494,-0.081 0.00722,-0.0263 0.017822,-0.0517 0.0245,-0.078 0.00411,-0.0153 0.00148,-0.007 0.00816,-0.0234 0.00428,-0.0141 0.00327,-0.0299 0.012883,-0.0425 0.0087,-0.0216 0.018928,-0.0424 0.028128,-0.0637 0.00431,-0.0209 0.016534,-0.0384 0.023154,-0.0587 0.014745,-0.0238 0.024231,-0.0509 0.044112,-0.0718 0.016166,-0.0234 0.030799,-0.0477 0.047113,-0.071 0.013616,-0.0271 0.033242,-0.0502 0.050991,-0.0746 0.020246,-0.0242 0.039713,-0.0491 0.061581,-0.0719 0.018867,-0.0258 0.04303,-0.0476 0.057273,-0.0767 0.018375,-0.0264 0.040405,-0.0498 0.058487,-0.0764 0.00849,-0.0146 0.019389,-0.0263 0.028923,-0.0402 0.014451,-0.021 0.0038,-0.006 0.015206,-0.0269 0.00271,-0.005 0.00585,-0.009 0.00878,-0.0142 0.013459,-0.0257 0.026892,-0.0517 0.03604,-0.0793 0.00899,-0.0209 0.014833,-0.0436 0.016142,-0.0662 0.00353,-0.0217 0.014571,-0.0424 0.012764,-0.0651 1.99e-4,-0.0199 -1.479e-4,-0.0399 -1.476e-4,-0.0598 -2.646e-4,-0.0262 -4.63e-5,-0.0524 3.54e-5,-0.0786 2.08e-4,-0.0282 5.821e-4,-0.0563 0.0013,-0.0845 5.556e-4,-0.0252 6.879e-4,-0.0496 -0.00556,-0.0741 -0.00334,-0.0228 -0.0096,-0.0448 -0.012814,-0.0676 -0.00602,-0.0306 0.00124,0.002 -0.00754,-0.0258 -0.00526,-0.0165 -0.00334,-0.0343 -0.00954,-0.0506 -0.012412,-0.0216 -0.019037,-0.0458 -0.026596,-0.0693 -0.00868,-0.0264 -0.024088,-0.0504 -0.035658,-0.0757 -0.018164,-0.029 -0.035093,-0.0582 -0.05357,-0.087 -0.018632,-0.0308 -0.038959,-0.0605 -0.059624,-0.0899 -0.024884,-0.0289 0.00217,0.004 -0.01977,-0.0285 -0.011925,-0.0178 -0.02862,-0.0318 -0.040418,-0.0496 -0.00901,-0.01 -0.017928,-0.0224 -0.028248,-0.0309 -0.00312,-0.003 -0.00756,-0.003 -0.010427,-0.006 -0.00651,-0.006 -0.00795,-0.0171 -0.016319,-0.0222 -0.017854,-0.0167 -0.027124,-0.0401 -0.046258,-0.0555 -0.011208,-0.0201 -0.027224,-0.0368 -0.044028,-0.0524 -0.020262,-0.0193 -0.040448,-0.0383 -0.059311,-0.0587 -0.00713,-0.007 -0.013002,-0.0151 -0.020302,-0.0218 -0.00339,-0.003 -0.00778,-0.005 -0.011343,-0.008 -0.012353,-0.0101 -0.02055,-0.0239 -0.032992,-0.0339 -0.020548,-0.0201 -0.039952,-0.0419 -0.058819,-0.0636 -0.033196,-0.033 0.01275,0.0117 -0.020484,-0.0177 -0.014322,-0.0127 -0.022767,-0.031 -0.039801,-0.0408 -0.018701,-0.02 -0.034077,-0.0421 -0.051772,-0.0629 -0.00709,-0.0104 -0.013467,-0.0235 -0.02322,-0.0318 -0.00292,-0.002 -0.00721,-0.003 -0.00983,-0.006 -0.00594,-0.006 -0.00659,-0.0166 -0.014174,-0.0218 -0.016005,-0.0169 -0.020622,-0.0406 -0.037491,-0.057 -0.013581,-0.0174 -0.021921,-0.037 -0.030448,-0.0574 -0.00707,-0.0201 -0.022299,-0.0352 -0.027506,-0.0564 -0.00273,-0.01 -0.00734,-0.0185 -0.010401,-0.028 -0.00303,-0.009 -0.00114,-0.0199 -0.010657,-0.026 -0.0013,-0.0144 -0.00254,-0.0294 -0.00748,-0.0431 -0.00116,-0.003 -0.00357,-0.006 -0.00425,-0.009 -7.673e-4,-0.004 1.17e-5,-0.008 1.75e-5,-0.0113 -1.11e-5,-0.0247 -3.175e-4,-0.0494 -1.67e-4,-0.0741 2.7e-5,-0.0253 2.186e-4,-0.0506 -5.53e-5,-0.0759 2.49e-4,-0.0228 4.498e-4,-0.0456 8.21e-5,-0.0684 3.36e-5,-0.0235 8.25e-5,-0.047 2.458e-4,-0.0704 1.092e-4,-0.0175 4.92e-5,-0.0351 5.556e-4,-0.0526 3.175e-4,-0.0155 0.00116,-0.0309 0.00167,-0.0463 6.48e-5,-0.0158 -0.00417,-0.031 -0.00827,-0.0461 -0.00366,-0.0154 -0.00977,-0.0287 -0.00693,-0.0451 -3.969e-4,-0.0158 2.233e-4,-0.0315 -2.31e-4,-0.0473 6.59e-5,-0.0198 -5.71e-5,-0.0396 -9.81e-5,-0.0594 1.19e-4,-0.0169 3.968e-4,-0.0339 3.175e-4,-0.0508 8.09e-5,-0.0133 2.6e-6,-0.0265 -5.1e-6,-0.0398 7.78e-5,-0.0133 -7.9e-6,-0.0266 -2.1e-6,-0.04 1.101e-4,-0.0143 -2.098e-4,-0.0285 -4.47e-5,-0.0428 2.072e-4,-0.0186 1.251e-4,-0.0372 7.408e-4,-0.0557 5.821e-4,-0.0301 0.00254,-0.0606 -0.00101,-0.0906 0,0 -0.1749062,-0.0891 -0.1749062,-0.0891 z' style='fill:#a05a2c;stroke:none;stroke-width:0.02645833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1')
  71.  
  72. .info-screen.result
  73. .result__content.info-screen__content
  74. h2.caught You caught &nbsp;
  75. h2.score You scored &nbsp;
  76. button(type='reset') Try again?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement