svg柱状图图表动画展示效果代码
代码语言:html
所属分类:图表
代码描述:svg柱状图图表动画展示效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> #Master_2 { transform: translateX(100%); -webkit-animation: moveMenu 2000ms ease-out both; animation: moveMenu 2000ms ease-out both; -webkit-animation-delay: 2000ms; animation-delay: 2000ms; } .firstGraph *, .secGraph *, .thirdGraph * { transform-box: fill-box; transform-origin: center bottom; -webkit-animation: growAnim 300ms ease-out both; animation: growAnim 300ms ease-out both; } .firstGraph .sec { -webkit-animation-delay: 100ms; animation-delay: 100ms; } .firstGraph .third { -webkit-animation-delay: 200ms; animation-delay: 200ms; } .secGraph .first { -webkit-animation-delay: 300ms; animation-delay: 300ms; } .secGraph .sec { -webkit-animation-delay: 400ms; animation-delay: 400ms; } .secGraph .third { -webkit-animation-delay: 500ms; animation-delay: 500ms; } .thirdGraph .first { -webkit-animation-delay: 600ms; animation-delay: 600ms; } .thirdGraph .sec { -webkit-animation-delay: 700ms; animation-delay: 700ms; } .thirdGraph .third { -webkit-animation-delay: 800ms; animation-delay: 800ms; } #text_7, #text_8, #text_9 { -webkit-animation: textFade 300ms ease-out both; animation: textFade 300ms ease-out both; -webkit-animation-delay: 200ms; animation-delay: 200ms; } #text_8 { -webkit-animation-delay: 500ms; animation-delay: 500ms; } #text_9 { -webkit-animation-delay: 800ms; animation-delay: 800ms; } #cursor { transform-box: fill-box; transform-origin: center; -webkit-animation: cursorAnim 2000ms linear both; animation: cursorAnim 2000ms linear both; -webkit-animation-delay: 900ms; animation-delay: 900ms; } #Main_2 { transform-box: fill-box; transform-origin: center; -webkit-clip-path: polygon(0 0, 80% 0, 80% 100%, 0% 100%); clip-path: polygon(0 0, 80% 0, 80% 100%, 0% 100%); -webkit-animation: showUp 300ms linear both; animation: showUp 300ms linear both; -webkit-animation-delay: 3200ms; animation-delay: 3200ms; } .newFirst, .newSec, .newThird { transform-box: fill-box; transform-origin: center bottom; -webkit-animation: growAnim 300ms ease-out both; animation: growAnim 300ms ease-out both; -webkit-animation-delay: 3500ms; animation-delay: 3500ms; } .textFirst, .textSec, .textThird { -webkit-animation: textFade 300ms ease-out both; animation: textFade 300ms ease-out both; -webkit-animation-delay: 3800ms; animation-delay: 3800ms; } .newSec { -webkit-animation-delay: 3700ms; animation-delay: 3700ms; } .newThird { -webkit-animation-delay: 3900ms; animation-delay: 3900ms; } .textSec { -webkit-animation-delay: 4000ms; animation-delay: 4000ms; } .textThird { -webkit-animation-delay: 4200ms; animation-delay: 4200ms; } @-webkit-keyframes moveMenu { 0% { transform: translateX(100%); } 30% { transform: translateX(0); } 50% { transform: translateX(0); } 80% { transform: translateX(100%); } 100% { transform: translateX(100%); } } @keyframes moveMenu { 0% { transform: translateX(100%); } 30% { transform: translateX(0); } 50% { transform: translateX(0); } 80% { transform: translateX(100%); } 100% { transform: translateX(100%); } } @-webkit-keyframes growAnim { 0% { transform: scale(1, 0); } 100% { transform: scale(1, 1); } } @keyframes growAnim { 0% { transform: scale(1, 0); } 100% { transform: scale(1, 1); } } @-webkit-keyframes textFade { 0% { transform: translateY(5%); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } } @keyframes textFade { 0% { transform: translateY(5%); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } } @-webkit-keyframes cursorAnim { 0% { transform: translate(-500%, 0) scale(1); opacity: 0; } 15% { transform: translate(-250%, 0) scale(1); opacity: 1; } 30% { transform: translate(0, 0) scale(1); opacity: 1; } 40% { transform: translate(0, 0) scale(1); opacity: 1; } 45% { transform: translate(0, 0) scale(0.8); opacity: 1; } 50% { transform: translate(0, 0) scale(1); opacity: 1; } 60% { transform: translate(0, 0) scale(1); opacity: 1; } 80% { transform: translate(-600%, 200%) scale(1); opacity: 1; } 90% { transform: translate(-600%, 200%) scale(1); opacity: 1; } 95% { transform: translate(-600%, 200%) scale(0.8); opacity: 1; } 100% { transform: translate(-600%, 200%) scale(1); opacity: 0; } } @keyframes cursorAnim { 0% { transform: translate(-500%, 0) scale(1); opacity: 0; } 15% { transform: translate(-250%, 0) scale(1); opacity: 1; } 30% { transform: translate(0, 0) scale(1); opacity: 1; } 40% { transform: translate(0, 0) scale(1); opacity: 1; } 45% { transform: translate(0, 0) scale(0.8); opacity: 1; } 50% { transform: translate(0, 0) scale(1); opacity: 1; } 60% { transform: translate(0, 0) scale(1); opacity: 1; } 80% { transform: translate(-600%, 200%) scale(1); opacity: 1; } 90% { transform: translate(-600%, 200%) scale(1); opacity: 1; } 95% { transform: translate(-600%, 200%) scale(0.8); opacity: 1; } 100% { transform: translate(-600%, 200%) scale(1); opacity: 0; } } @-webkit-keyframes showUp { 0% { transform: scale(0); } 100% { transform: scale(1); } } @keyframes showUp { 0% { transform: scale(0); } 100% { transform: scale(1); } } body { overflow: hidden; } svg { position: absolute; inset: 0; } #playCheck { position: absolute; z-index: 9; width: 100%; height: 100%; top: 0; left: 0; opacity: 0; } #playCheck:checked ~ svg * { -webkit-animation-name: none !important; animation-name: none !important; display: none; } .clickText { position: absolute; z-index: 10; width: 100vw; height: 100vh; opacity: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; font-family: sans-serif; font-size: 1.2em; color: gray; transition: opacity 300ms linear 0ms; } #playCheck:checked ~ .clickText { opacity: 1; } </style> </head> <body > <input type="checkbox" id="playCheck" /> <div class="clickText">Click again to replay</div> <svg width="100vw" height="100vh" viewBox="0 0 664 566" fill="none" xmlns="http://www.w3.org/2000/svg"> <g id="Frame 2152"> <g id="Images - Product"> <g id="Frame 2149"> <g id="Main" filter="url(#filter0_dddd_5074_68376)"> <g clip-path="url(#clip0_5074_68376)"> <rect x="80" y="80" width="504" height="406" rx="13.9848" fill="white" /> <g id="Frame 2017" clip-path="url(#clip1_5074_68376)"> <g id="graph"> <path id="Vector" d="M157.012 400H669.947" stroke="#E9E9E9" stroke-width="0.473416" stroke-miterlimit="10" stroke-linecap="square" stroke-dasharray="0.47 0.47 0.47 0.47 0.47 0.47" /> <path id="Vector_2" d="M157.012 298H669.947" stroke="#E9E9E9" stroke-width="0.473416" stroke-miterlimit="10" stroke-linecap="square" stroke-dasharray="0.47 0.47 0.47 0.47 0.47 0.47" /> <path id="Vector_3" d="M157.012 361H669.947" stroke="#E9E9E9" stroke-width="0.473416" stroke-miterlimit="10" stroke-linecap="square" stroke-dasharray="0.47 0.47 0.47 0.47 0.47 0.47" /> <path id="Vector_4" d="M157.012 233.797H669.947" stroke="#E9E9E9" stroke-width="0.473416" stroke-miterlimit="10" stroke-linecap="square" stroke-dasharray="0.47 0.47 0.47 0.47 0.47 0.47" /> <g id="Dates"> <path id="text" d="M211.983 411.455H211.203V416.607H211.139L207.56 411.455H206.793V418H207.585V412.861H207.649L211.216 418H211.983V411.455ZM219.092 414.727C219.092 412.656 217.877 411.365 216.203 411.365C214.528 411.365 213.313 412.656 213.313 414.727C213.313 416.798 214.528 418.089 216.203 418.089C217.877 418.089 219.092 416.798 219.092 414.727ZM218.325 414.727C218.325 416.428 217.391 417.348 216.203 417.348C215.014 417.348 214.08 416.428 214.08 414.727C214.08 413.027 215.014 412.107 216.203 412.107C217.391 412.107 218.325 413.027 218.325 414.727ZM220.385 411.455H219.554L221.958 418H222.776L225.179 411.455H224.348L222.405 416.964H222.328L220.385 411.455Z" fill="#898989" /> <path id="text_2" d="M320.812 418C322.807 418 323.932 416.76 323.932 414.714C323.932 412.682 322.807 411.455 320.902 411.455H318.793V418H320.812ZM319.585 417.297V412.158H320.851C322.385 412.158 323.165 413.129 323.165 414.714C323.165 416.312 322.385 417.297 320.761 417.297H319.585ZM325.261 418H329.263V417.297H326.054V415.072H329.007V414.369H326.054V412.158H329.212V411.455H325.261V418ZM335.907 413.5C335.664 412.158 334.591 411.365 333.274 411.365C331.599 411.365 330.385 412.656 330.385 414.727C330.385 416.798 331.599 418.089 333.274 418.089C334.591 418.089 335.664 417.297 335.907 415.955H335.115C334.923 416.862 334.143 417.348 333.274 417.348C332.085 417.348 331.152 416.428 331.152 414.727C331.152 413.027 332.085 412.107 333.274 412.107C334.143 412.107 334.923 412.592 335.115 413.5H335.907Z" fill="#898989" /> <path id="text_3" d="M432.298 411.455V416.134C432.298 416.949 431.908 417.386 431.224 417.386C430.601 417.386 430.151 417.022 430.151 416.466H429.371C429.371 417.473 430.151 418.089 431.224 418.089C432.362 418.089 433.091 417.39 433.091 416.134V411.455H432.298ZM434.948 418L435.606 416.146H438.252L438.911 418H439.742L437.338 411.455H436.52L434.117 418H434.948ZM435.855 415.443L436.904 412.49H436.955L438.003 415.443H435.855ZM445.952 411.455H445.172V416.607H445.108L441.528 411.455H440.761V418H441.554V412.861H441.618L445.185 418H445.952V411.455ZM450.235 414.727C450.235 416.338 450.67 417.68 451.45 418.818H452.114C451.501 417.974 451.015 416.249 451.015 414.727C451.015 413.206 451.501 411.48 452.114 410.636H451.45C450.67 411.774 450.235 413.116 450.235 414.727ZM453.33 418H454.122V415.072H456.96V414.369H454.122V412.158H457.254V411.455H453.33V418ZM460.144 418.102C461.473 418.102 462.368 417.092 462.368 415.571C462.368 414.037 461.473 413.027 460.144 413.027C458.814 413.027 457.919 414.037 457.919 415.571C457.919 417.092 458.814 418.102 460.144 418.102ZM460.144 417.425C459.134 417.425 458.673 416.555 458.673 415.571C458.673 414.587 459.134 413.705 460.144 413.705C461.154 413.705 461.614 414.587 461.614 415.571C461.614 416.555 461.154 417.425 460.144 417.425ZM463.519 418H464.274V414.893C464.274 414.229 464.798 413.743 465.514 413.743C465.715 413.743 465.923 413.781 465.974 413.794V413.027C465.888 413.021 465.69 413.014 465.578 413.014C464.99 413.014 464.478 413.347 464.299 413.832H464.248V413.091H463.519V418ZM468.777 418.102C469.774 418.102 470.503 417.604 470.733 416.862L470.004 416.658C469.812 417.169 469.368 417.425 468.777 417.425C467.892 417.425 467.281 416.853 467.246 415.801H470.81V415.482C470.81 413.653 469.723 413.027 468.7 413.027C467.371 413.027 466.489 414.075 466.489 415.584C466.489 417.092 467.358 418.102 468.777 418.102ZM467.246 415.149C467.297 414.385 467.837 413.705 468.7 413.705C469.518 413.705 470.043 414.318 470.043 415.149H467.246ZM473.951 418.102C475.038 418.102 475.754 417.438 475.882 416.568H475.127C474.987 417.105 474.539 417.425 473.951 417.425C473.056 417.425 472.481 416.683 472.481 415.545C472.481 414.433 473.069 413.705 473.951 413.705C474.616 413.705 475.012 414.114 475.127 414.561H475.882C475.754 413.641 474.974 413.027 473.938 413.027C472.609 413.027 471.727 414.075 471.727 415.571C471.727 417.041 472.571 418.102 473.951 418.102ZM478.429 418.115C479.285 418.115 479.733 417.655 479.886 417.335H479.925V418H480.679V414.766C480.679 413.206 479.49 413.027 478.864 413.027C478.122 413.027 477.278 413.283 476.895 414.178L477.611 414.433C477.777 414.075 478.17 413.692 478.889 413.692C479.583 413.692 479.925 414.059 479.925 414.689V414.714C479.925 415.079 479.554 415.047 478.659 415.162C477.748 415.28 476.754 415.482 476.754 416.607C476.754 417.565 477.496 418.115 478.429 418.115ZM478.544 417.438C477.943 417.438 477.508 417.169 477.508 416.645C477.508 416.07 478.033 415.891 478.621 415.814C478.94 415.776 479.797 415.686 479.925 415.533V416.223C479.925 416.837 479.439 417.438 478.544 417.438ZM485.533 414.19C485.296 413.494 484.766 413.027 483.794 413.027C482.759 413.027 481.992 413.615 481.992 414.446C481.992 415.124 482.394 415.577 483.296 415.788L484.114 415.98C484.609 416.095 484.843 416.332 484.843 416.67C484.843 417.092 484.395 417.438 483.692 417.438C483.075 417.438 482.688 417.172 482.554 416.645L481.838 416.824C482.014 417.658 482.701 418.102 483.705 418.102C484.846 418.102 485.622 417.479 485.622 416.632C485.622 415.948 485.194 415.517 484.318 415.303L483.59 415.124C483.008 414.98 482.746 414.785 482.746 414.408C482.746 413.986 483.193 413.679 483.794 413.679C484.453 413.679 484.724 414.043 484.855 414.382L485.533 414.19ZM488.893 413.091H487.844V411.915H487.09V413.091H486.349V413.73H487.09V416.798C487.09 417.655 487.78 418.064 488.42 418.064C488.701 418.064 488.88 418.013 488.982 417.974L488.829 417.297C488.765 417.31 488.663 417.335 488.496 417.335C488.164 417.335 487.844 417.233 487.844 416.594V413.73H488.893V413.091ZM491.638 415.239C491.638 413.628 491.203 412.286 490.424 411.148H489.759C490.372 411.991 490.858 413.717 490.858 415.239C490.858 416.76 490.372 418.486 489.759 419.33H490.424C491.203 418.192 491.638 416.849 491.638 415.239Z" fill="#898989" /> </g> </g> </g> <path id="Vector_5" opacity="0.16" d="M551 131L108 131" stroke="#0A2144" stroke-miterlimit="10" stroke-linecap="square" /> <path id="text_4" d="M124.316 236.727H124.782V236.094C125.976 236.011 126.646 235.307 126.646 234.42C126.646 233.33 125.612 232.977 125.01 232.818L124.782 232.756V230.736C125.385 230.795 125.822 231.119 125.885 231.636H126.566C126.538 230.807 125.811 230.176 124.782 230.108V229.455H124.316V230.116C123.342 230.216 122.612 230.835 122.612 231.727C122.612 232.511 123.18 232.977 124.089 233.239L124.316 233.304V235.455C123.72 235.392 123.231 235.085 123.18 234.5H122.453C122.518 235.395 123.2 236.02 124.316 236.094V236.727ZM124.782 235.455V233.438L124.805 233.443C125.419 233.614 125.964 233.83 125.964 234.409C125.964 234.98 125.47 235.378 124.782 235.455ZM124.316 232.631C123.885 232.509 123.294 232.27 123.294 231.693C123.294 231.202 123.691 230.827 124.316 230.744V232.631ZM129.52 236.08C130.628 236.08 131.441 235.261 131.441 234.148C131.441 233.02 130.657 232.193 129.588 232.193C129.196 232.193 128.816 232.332 128.577 232.523H128.543L128.748 230.807H131.179V230.182H128.157L127.804 233.045L128.463 233.125C128.705 232.952 129.117 232.827 129.475 232.83C130.216 232.835 130.759 233.398 130.759 234.159C130.759 234.906 130.236 235.455 129.52 235.455C128.924 235.455 128.449 235.071 128.395 234.545H127.713C127.756 235.432 128.52 236.08 129.52 236.08ZM134.467 236.08C135.751 236.08 136.49 234.991 136.49 233.091C136.49 231.205 135.74 230.102 134.467 230.102C133.194 230.102 132.444 231.205 132.444 233.091C132.444 234.991 133.183 236.08 134.467 236.08ZM134.467 235.455C133.62 235.455 133.126 234.605 133.126 233.091C133.126 231.58 133.626 230.716 134.467 230.716C135.308 230.716 135.808 231.58 135.808 233.091C135.808 234.605 135.314 235.455 134.467 235.455ZM139.467 236.08C140.751 236.08 141.49 234.991 141.49 233.091C141.49 231.205 140.74 230.102 139.467 230.102C138.194 230.102 137.444 231.205 137.444 233.091C137.444 234.991 138.183 236.08 139.467 236.08ZM139.467 235.455C138.62 235.455 138.126 234.605 138.126 233.091C138.126 231.58 138.626 230.716 139.467 230.716C140.308 230.716 140.808 231.58 140.808 233.091C140.808 234.605 140.314 235.455 139.467 235.455ZM142.672 236H143.376V234.114L144.103 233.295L146.126 236H146.978L144.535 232.807L146.978 230.182H146.058L143.444 233.068H143.376V230.182H142.672V236Z" fill="#353D46" /> <path id="text_5" d="M122.886 301.727H123.352V301.094C124.545 301.011 125.215 300.307 125.215 299.42C125.215 298.33 124.181 297.977 123.579 297.818L123.352 297.756V295.736C123.954 295.795 124.391 296.119 124.454 296.636H125.136C125.107 295.807 124.38 295.176 123.352 295.108V294.455H122.886V295.116C121.911 295.216 121.181 295.835 121.181 296.727C121.181 297.511 121.749 297.977 122.658 298.239L122.886 298.304V300.455C122.289 300.392 121.8 300.085 121.749 299.5H121.022C121.087 300.395 121.769 301.02 122.886 301.094V301.727ZM123.352 300.455V298.438L123.374 298.443C123.988 298.614 124.533 298.83 124.533 299.409C124.533 299.98 124.039 300.378 123.352 300.455ZM122.886 297.631C122.454 297.509 121.863 297.27 121.863 296.693C121.863 296.202 122.261 295.827 122.886 295.744V297.631ZM128.237 301.08C129.365 301.08 130.203 300.372 130.203 299.42C130.203 298.682 129.766 298.145 129.033 298.023V297.977C129.621 297.798 129.987 297.315 129.987 296.659C129.987 295.835 129.337 295.102 128.26 295.102C127.254 295.102 126.419 295.722 126.385 296.636H127.067C127.092 296.057 127.643 295.716 128.249 295.716C128.891 295.716 129.305 296.105 129.305 296.693C129.305 297.307 128.825 297.705 128.135 297.705H127.669V298.33H128.135C129.018 298.33 129.51 298.778 129.51 299.42C129.51 300.037 128.973 300.455 128.226 300.455C127.553 300.455 127.018 300.108 126.976 299.545H126.26C126.303 300.46 127.109 301.08 128.237 301.08ZM133.263 301.08C134.547 301.08 135.286 299.991 135.286 298.091C135.286 296.205 134.536 295.102 133.263 295.102C131.99 295.102 131.24 296.205 131.24 298.091C131.24 299.991 131.979 301.08 133.263 301.08ZM133.263 300.455C132.416 300.455 131.922 299.605 131.922 298.091C131.922 296.58 132.422 295.716 133.263 295.716C134.104 295.716 134.604 296.58 134.604 298.091C134.604 299.605 134.109 300.455 133.263 300.455ZM138.263 301.08C139.547 301.08 140.286 299.991 140.286 298.091C140.286 296.205 139.536 295.102 138.263 295.102C136.99 295.102 136.24 296.205 136.24 298.091C136.24 299.991 136.979 301.08 138.263 301.08ZM138.263 300.455C137.416 300.455 136.922 299.605 136.922 298.091C136.922 296.58 137.422 295.716 138.263 295.716C139.104 295.716 139.604 296.58 139.604 298.091C139.604 299.605 139.109 300.455 138.263 300.455ZM141.467 301H142.172V299.114L142.899 298.295L144.922 301H145.774L143.331 297.807L145.774 295.182H144.854L142.24 298.068H142.172V295.182H141.467V301Z" fill="#353D46" /> <path id="text_6" d="M123.279 365.727H123.745V365.094C124.938 365.011 125.609 364.307 125.609 363.42C125.609 362.33 124.575 361.977 123.972 361.818L123.745 361.756V359.736C124.347 359.795 124.785 360.119 124.847 360.636H125.529C125.501 359.807 124.773 359.176 123.745 359.108V358.455H123.279V359.116C122.305 359.216 121.575 359.835 121.575 360.727C121.575 361.511 122.143 361.977 123.052 362.239L123.279 362.304V364.455C122.683 364.392 122.194 364.085 122.143 363.5H121.415C121.481 364.395 122.163 365.02 123.279 365.094V365.727ZM123.745 364.455V362.438L123.768 362.443C124.381 362.614 124.927 362.83 124.927 363.409C124.927 363.98 124.433 364.378 123.745 364.455ZM123.279 361.631C122.847 361.509 122.256 361.27 122.256 360.693C122.256 360.202 122.654 359.827 123.279 359.744V361.631ZM128.71 359.182H128.006L126.551 360.148V360.864L127.972 359.92H128.006V365H128.71V359.182ZM132.281 365.08C133.565 365.08 134.304 363.991 134.304 362.091C134.304 360.205 133.554 359.102 132.281 359.102C131.009 359.102 130.259 360.205 130.259 362.091C130.259 363.991 130.997 365.08 132.281 365.08ZM132.281 364.455C131.435 364.455 130.94 363.605 130.94 362.091C130.94 360.58 131.44 359.716 132.281 359.716C133.122 359.716 133.622 360.58 133.622 362.091C133.622 363.605 133.128 364.455 132.281 364.455ZM137.281 365.08C138.565 365.08 139.304 363.991 139.304 362.091C139.304 360.205 138.554 359.102 137.281 359.102C136.009 359.102 135.259 360.205 135.259 362.091C135.259 363.991 135.997 365.08 137.281 365.08ZM137.281 364.455C136.435 364.455 135.94 363.605 135.94 362.091C135.94 360.58 136.44 359.716 137.281 359.716C138.122 359.716 138.622 360.58 138.622 362.091C138.622 363.605 138.128 364.455 137.281 364.455ZM140.486 365H141.19V363.114L141.918 362.295L143.94 365H144.793L142.349 361.807L144.793 359.182H143.872L141.259 362.068H141.19V359.182H140.486V365Z" fill="#353D46" /> <g id="Master"> <g id="buttom row"> <g id="Legend"> <circle id="color" cx="171" cy="446" r="2.5" stroke="#8C0DAF" stroke-width="5" /> <path id="Text" opacity="0.78" d="M182.879 450H187.941V448.961H184.086V446.512H187.633V445.477H184.086V443.039H187.895V442H182.879V450ZM190.581 446.437C190.581 445.48 191.167 444.934 191.979 444.934C192.772 444.934 193.253 445.453 193.253 446.324V450H194.421V446.184C194.421 444.699 193.604 443.922 192.378 443.922C191.476 443.922 190.886 444.34 190.608 444.977H190.534V444H189.413V450H190.581V446.437ZM198.503 452.375C200.03 452.375 201.21 451.676 201.21 450.133V444H200.065V444.973H199.979C199.772 444.602 199.358 443.922 198.241 443.922C196.792 443.922 195.726 445.066 195.726 446.977C195.726 448.891 196.815 449.91 198.233 449.91C199.335 449.91 199.761 449.289 199.972 448.906H200.046V450.086C200.046 451.027 199.401 451.434 198.515 451.434C197.542 451.434 197.163 450.945 196.956 450.602L195.952 451.016C196.269 451.75 197.069 452.375 198.503 452.375ZM198.491 448.941C197.448 448.941 196.905 448.141 196.905 446.961C196.905 445.809 197.437 444.914 198.491 444.914C199.511 444.914 200.058 445.746 200.058 446.961C200.058 448.199 199.499 448.941 198.491 448.941ZM202.776 450H203.944V444H202.776V450ZM203.366 443.074C203.769 443.074 204.104 442.762 204.104 442.379C204.104 441.996 203.769 441.68 203.366 441.68C202.96 441.68 202.628 441.996 202.628 442.379C202.628 442.762 202.96 443.074 203.366 443.074ZM206.684 446.437C206.684 445.48 207.27 444.934 208.082 444.934C208.875 444.934 209.355 445.453 209.355 446.324V450H210.523V446.184C210.523 444.699 209.707 443.922 208.48 443.922C207.578 443.922 206.988 444.34 206.711 444.977H206.637V444H205.516V450H206.684V446.437ZM214.676 450.121C215.984 450.121 216.91 449.477 217.176 448.5L216.07 448.301C215.859 448.867 215.352 449.156 214.687 449.156C213.688 449.156 213.016 448.508 212.984 447.352H217.25V446.937C217.25 444.77 215.953 443.922 214.594 443.922C212.922 443.922 211.82 445.195 211.82 447.039C211.82 448.902 212.906 450.121 214.676 450.121ZM212.988 446.477C213.035 445.625 213.652 444.887 214.602 444.887C215.508 444.887 216.102 445.559 216.105 446.477H212.988ZM221.132 450.121C222.44 450.121 223.366 449.477 223.632 448.5L222.526 448.301C222.315 448.867 221.808 449.156 221.144 449.156C220.144 449.156 219.472 448.508 219.44 447.352H223.706V446.937C223.706 444.77 222.409 443.922 221.05 443.922C219.378 443.922 218.276 445.195 218.276 447.039C218.276 448.902 219.362 450.121 221.132 450.121ZM219.444 446.477C219.491 445.625 220.108 444.887 221.058 444.887C221.964 444.887 222.558 445.559 222.562 446.477H219.444ZM225.002 450H226.17V446.336C226.17 445.551 226.775 444.984 227.604 444.984C227.846 444.984 228.119 445.027 228.213 445.055V443.937C228.096 443.922 227.865 443.91 227.717 443.91C227.014 443.91 226.412 444.309 226.193 444.953H226.131V444H225.002V450ZM229.224 450H230.392V444H229.224V450ZM229.813 443.074C230.216 443.074 230.552 442.762 230.552 442.379C230.552 441.996 230.216 441.68 229.813 441.68C229.407 441.68 229.075 441.996 229.075 442.379C229.075 442.762 229.407 443.074 229.813 443.074ZM233.131 446.437C233.131 445.48 233.717 444.934 234.529 444.934C235.322 444.934 235.803 445.453 235.803 446.324V450H236.971V446.184C236.971 444.699 236.154 443.922 234.928 443.922C234.025 443.922 233.436 444.34 233.158 444.977H233.084V444H231.963V450H233.131V446.437ZM241.053 452.375C242.58 452.375 243.76 451.676 243.76 450.133V444H242.615V444.973H242.529C242.322 444.602 241.908 443.922 240.791 443.922C239.342 443.922 238.275 445.066 238.275 446.977C238.275 448.891 239.365 449.91 240.783 449.91C241.885 449.91 242.311 449.289 242.521 448.906H242.596V450.086C242.596 451.027 241.951 451.434 241.064 451.434C240.092 451.434 239.713 450.945 239.506 450.602L238.502 451.016C238.818 451.75 239.619 452.375 241.053 452.375ZM241.041 448.941C239.998 448.941 239.455 448.141 239.455 446.961C239.455 445.809 239.986 444.914 241.041 444.914C242.061 444.914 242.607 445.746 242.607 446.961C242.607 448.199 242.049 448.941 241.041 448.941Z" fill="#353D46" /> </g> <g id="Legend_2"> <circle id="color_2" cx="274.5" cy="446" r="2.5" stroke="#2671FF" stroke-width="5" /> <path id="Text_2" opacity="0.78" d="M286.379 450H287.586V447.188H289.227C291.082 447.188 292 446.066 292 444.59C292 443.117 291.09 442 289.23 442H286.379V450ZM287.586 446.164V443.035H289.102C290.297 443.035 290.785 443.684 290.785 444.59C290.785 445.496 290.297 446.164 289.117 446.164H287.586ZM293.321 450H294.489V446.336C294.489 445.551 295.095 444.984 295.923 444.984C296.165 444.984 296.438 445.027 296.532 445.055V443.937C296.415 443.922 296.185 443.91 296.036 443.91C295.333 443.91 294.731 444.309 294.513 444.953H294.45V444H293.321V450ZM299.855 450.121C301.547 450.121 302.652 448.883 302.652 447.027C302.652 445.16 301.547 443.922 299.855 443.922C298.164 443.922 297.059 445.16 297.059 447.027C297.059 448.883 298.164 450.121 299.855 450.121ZM299.859 449.141C298.754 449.141 298.238 448.176 298.238 447.023C298.238 445.875 298.754 444.898 299.859 444.898C300.957 444.898 301.473 445.875 301.473 447.023C301.473 448.176 300.957 449.141 299.859 449.141ZM306.202 450.117C307.296 450.117 307.726 449.449 307.937 449.066H308.034V450H309.175V442H308.007V444.973H307.937C307.726 444.602 307.327 443.922 306.21 443.922C304.761 443.922 303.694 445.066 303.694 447.012C303.694 448.953 304.745 450.117 306.202 450.117ZM306.46 449.121C305.417 449.121 304.874 448.203 304.874 447C304.874 445.809 305.405 444.914 306.46 444.914C307.479 444.914 308.026 445.746 308.026 447C308.026 448.262 307.468 449.121 306.46 449.121ZM314.643 447.512C314.646 448.531 313.889 449.016 313.232 449.016C312.51 449.016 312.01 448.492 312.01 447.676V444H310.842V447.816C310.842 449.305 311.658 450.078 312.811 450.078C313.713 450.078 314.326 449.602 314.604 448.961H314.666V450H315.814V444H314.643V447.512ZM319.911 450.121C321.329 450.121 322.247 449.27 322.376 448.102H321.239C321.091 448.75 320.587 449.133 319.919 449.133C318.931 449.133 318.294 448.309 318.294 447C318.294 445.715 318.942 444.906 319.919 444.906C320.661 444.906 321.114 445.375 321.239 445.937H322.376C322.251 444.727 321.263 443.922 319.899 443.922C318.208 443.922 317.114 445.195 317.114 447.027C317.114 448.836 318.169 450.121 319.911 450.121ZM326.426 444H325.195V442.562H324.027V444H323.148V444.937H324.027V448.48C324.023 449.57 324.855 450.098 325.777 450.078C326.148 450.074 326.398 450.004 326.535 449.953L326.324 448.988C326.246 449.004 326.102 449.039 325.914 449.039C325.535 449.039 325.195 448.914 325.195 448.238V444.937H326.426V444Z" fill="#353D46" /> </g> <g id="Legend_3"> <circle id="color_3" cx="356.5" cy="446" r="2.5" stroke="#C9DBFF" stroke-width="5" /> <path id="Text_3" opacity="0.78" d="M368.379 442V450H369.527V444.207H369.602L371.961 449.988H372.914L375.273 444.211H375.348V450H376.496V442H375.031L372.484 448.219H372.391L369.844 442H368.379ZM379.903 450.133C380.896 450.133 381.454 449.629 381.677 449.18H381.724V450H382.864V446.016C382.864 444.27 381.489 443.922 380.536 443.922C379.45 443.922 378.45 444.359 378.06 445.453L379.157 445.703C379.329 445.277 379.767 444.867 380.552 444.867C381.306 444.867 381.692 445.262 381.692 445.941V445.969C381.692 446.395 381.255 446.387 380.177 446.512C379.04 446.645 377.876 446.941 377.876 448.305C377.876 449.484 378.763 450.133 379.903 450.133ZM380.157 449.195C379.497 449.195 379.021 448.898 379.021 448.32C379.021 447.695 379.575 447.473 380.251 447.383C380.63 447.332 381.528 447.23 381.696 447.062V447.836C381.696 448.547 381.13 449.195 380.157 449.195ZM384.42 450H385.588V446.336C385.588 445.551 386.193 444.984 387.021 444.984C387.264 444.984 387.537 445.027 387.631 445.055V443.937C387.514 443.922 387.283 443.91 387.135 443.91C386.432 443.91 385.83 444.309 385.611 444.953H385.549V444H384.42V450ZM388.642 450H389.81V447.871L390.392 447.289L392.431 450H393.864L391.271 446.574L393.7 444H392.302L389.911 446.539H389.81V442H388.642V450ZM397.104 450.121C398.412 450.121 399.338 449.477 399.604 448.5L398.498 448.301C398.287 448.867 397.779 449.156 397.115 449.156C396.115 449.156 395.443 448.508 395.412 447.352H399.678V446.937C399.678 444.77 398.381 443.922 397.021 443.922C395.35 443.922 394.248 445.195 394.248 447.039C394.248 448.902 395.334 450.121 397.104 450.121ZM395.416 446.477C395.463 445.625 396.08 444.887 397.029 444.887C397.936 444.887 398.529 445.559 398.533 446.477H395.416ZM403.774 444H402.544V442.562H401.376V444H400.497V444.937H401.376V448.48C401.372 449.57 402.204 450.098 403.126 450.078C403.497 450.074 403.747 450.004 403.884 449.953L403.673 448.988C403.595 449.004 403.45 449.039 403.263 449.039C402.884 449.039 402.544 448.914 402.544 448.238V444.937H403.774V444ZM405.066 450H406.234V444H405.066V450ZM405.656 443.074C406.059 443.074 406.395 442.762 406.395 442.379C406.395 441.996 406.059 441.68 405.656 441.68C405.25 441.68 404.918 441.996 404.918 442.379C404.918 442.762 405.25 443.074 405.656 443.074ZM408.974 446.437C408.974 445.48 409.56 444.934 410.372 444.934C411.165 444.934 411.646 445.453 411.646 446.324V450H412.813V446.184C412.813 444.699 411.997 443.922 410.771 443.922C409.868 443.922 409.278 444.34 409.001 444.977H408.927V444H407.806V450H408.974V446.437ZM416.896 452.375C418.423 452.375 419.603 451.676 419.603 450.133V444H418.458V444.973H418.372C418.165 444.602 417.751 443.922 416.634 443.922C415.185 443.922 414.118 445.066 414.118 446.977C414.118 448.891 415.208 449.91 416.626 449.91C417.728 449.91 418.153 449.289 418.364 448.906H418.438V450.086C418.438 451.027 417.794 451.434 416.907 451.434C415.935 451.434 415.556 450.945 415.349 450.602L414.345 451.016C414.661 451.75 415.462 452.375 416.896 452.375ZM416.884 448.941C415.841 448.941 415.298 448.141 415.298 446.961C415.298 445.809 415.829 444.914 416.884 444.914C417.903 444.914 418.45 445.746 418.45 446.961C418.45 448.199 417.892 448.941 416.884 448.941ZM424.42 446.68C424.42 448.641 424.943 450.273 425.936 451.664H427.006C426.236 450.633 425.631 448.539 425.631 446.68C425.631 444.824 426.236 442.73 427.006 441.699H425.936C424.943 443.09 424.42 444.723 424.42 446.68ZM431.038 444H429.808V442.562H428.64V444H427.761V444.937H428.64V448.48C428.636 449.57 429.468 450.098 430.39 450.078C430.761 450.074 431.011 450.004 431.147 449.953L430.937 448.988C430.858 449.004 430.714 449.039 430.526 449.039C430.147 449.039 429.808 448.914 429.808 448.238V444.937H431.038V444ZM432.33 450H433.498V446.336C433.498 445.551 434.104 444.984 434.932 444.984C435.174 444.984 435.447 445.027 435.541 445.055V443.937C435.424 443.922 435.193 443.91 435.045 443.91C434.342 443.91 433.74 444.309 433.521 444.953H433.459V444H432.33V450ZM436.552 450H437.72V444H436.552V450ZM437.142 443.074C437.544 443.074 437.88 442.762 437.88 442.379C437.88 441.996 437.544 441.68 437.142 441.68C436.735 441.68 436.403 441.996 436.403 442.379C436.403 442.762 436.735 443.074 437.142 443.074ZM441.037 450.133C442.029 450.133 442.588 449.629 442.811 449.18H442.857V450H443.998V446.016C443.998 444.27 442.623 443.922 441.67 443.922C440.584 443.922 439.584 444.359 439.193 445.453L440.291 445.703C440.463 445.277 440.9 444.867 441.686 444.867C442.439 444.867 442.826 445.262 442.826 445.941V445.969C442.826 446.395 442.389 446.387 441.311 446.512C440.174 446.645 439.01 446.941 439.01 448.305C439.01 449.484 439.896 450.133 441.037 450.133ZM441.291 449.195C440.631 449.195 440.154 448.898 440.154 448.32C440.154 447.695 440.709 447.473 441.385 447.383C441.764 447.332 442.662 447.23 442.83 447.062V447.836C442.83 448.547 442.264 449.195 441.291 449.195ZM446.722 442H445.554V450H446.722V442ZM450.539 446.684C450.539 444.723 450.016 443.09 449.023 441.699H447.953C448.723 442.73 449.328 444.824 449.328 446.684C449.328 448.539 448.723 450.633 447.953 451.664H449.023C450.016 450.273 450.539 448.641 450.539 446.684Z" fill="#353D46" /> </g> </g> </g> <g id="Frame 2108"> <g clip-path="url(#clip2_5074_68376)" class="firstGraph"> <rect id="Rectangle 2338" class="first" x="165" y="259" width="114" height="141" fill="#8947CD" /> <rect id="Rectangle 2337" class="sec" x="165" y="306" width="114" height="94" fill="#2671FF" /> <rect id="Rectangle 2325" class="third" x="165" y="353.051" width="114" height="47.0246" fill="#C9DBFF" /> </g> </g> <g id="Frame 2117"> <g clip-path="url(#clip3_5074_68376)" class="secGraph"> <rect id="Rectangle 2341" class="first" x="287" y="247" width="114" height="153" fill="#8947CD" /> <rect id="Rectangle 2340" class="sec" x="287" y="315" width="114" height="85" fill="#2671FF" /> <rect id="Rectangle 2339" class="third" x="287" y="364.482" width="114" height="35.2789" fill="#C9DBFF" /> </g> </g> <g id="Frame 2113"> <g clip-path="url(#clip4_5074_68376)" class="thirdGraph"> <rect id="Rectangle 2344" class="first" x="409" y="239" width="114" height="161" fill="#8947CD" /> <rect id="Rectangle 2343" class="sec" x="409" y="332" width="114" height="68" fill="#2671FF" /> <rect id="Rectangle 2342" class="third" x="409" y="378.834" width="114" height="21.1673" fill="#C9DBFF" /> </g> </g> <path id="text_7" d="M179.074 285.455H180.006V284.188C182.392 284.023 183.733 282.614 183.733 280.841C183.733 278.659 181.665 277.955 180.46 277.636L180.006 277.511V273.472C181.21 273.591 182.085 274.239 182.21 275.273H183.574C183.517 273.614 182.062 272.352 180.006 272.216V270.909H179.074V272.233C177.125 272.432 175.665 273.67 175.665 275.455C175.665 277.023 176.801 277.955 178.619 278.477L179.074 278.608V282.909C177.881 282.784 176.903 282.17 176.801 281H175.347C175.477 282.79 176.841 284.04 179.074 284.188V285.455ZM180.006 282.909V278.875L180.051 278.886C181.278 279.227 182.369 279.659 182.369 280.818C182.369 281.96 181.381 282.756 180.006 282.909ZM179.074 277.261C178.21 277.017 177.028 276.54 177.028 275.386C177.028 274.403 177.824 273.653 179.074 273.489V277.261ZM185.572 281.614H191.05V284H192.391V281.614H193.982V280.364H192.391V272.364H190.686L185.572 280.455V281.614ZM191.05 280.364H187.095V280.273L190.959 274.159H191.05V280.364ZM199.906 284.159C202.474 284.159 203.952 281.983 203.952 278.182C203.952 274.409 202.452 272.205 199.906 272.205C197.361 272.205 195.861 274.409 195.861 278.182C195.861 281.983 197.338 284.159 199.906 284.159ZM199.906 282.909C198.213 282.909 197.224 281.21 197.224 278.182C197.224 275.159 198.224 273.432 199.906 273.432C201.588 273.432 202.588 275.159 202.588 278.182C202.588 281.21 201.599 282.909 199.906 282.909ZM209.974 284.159C212.327 284.188 213.861 282.415 213.861 280.25C213.861 278 212.196 276.386 210.202 276.386C209.003 276.386 207.974 276.972 207.338 277.932H207.247C207.253 275.097 208.355 273.455 210.156 273.455C211.384 273.455 212.122 274.227 212.384 275.273H213.77C213.486 273.466 212.111 272.205 210.156 272.205C207.537 272.205 205.929 274.523 205.929 278.636C205.929 282.938 208.065 284.136 209.974 284.159ZM209.974 282.909C208.514 282.909 207.446 281.665 207.452 280.273C207.457 278.881 208.577 277.636 210.02 277.636C211.446 277.636 212.497 278.807 212.497 280.25C212.497 281.727 211.401 282.909 209.974 282.909ZM217.571 282.409H216.116L216.048 283.045C215.884 284.585 215.56 286.119 215.412 286.841H216.435C216.707 286.068 217.287 284.318 217.48 283.023L217.571 282.409ZM223.435 284.159C225.651 284.159 227.276 282.523 227.276 280.295C227.276 278.04 225.707 276.386 223.571 276.386C222.787 276.386 222.026 276.665 221.548 277.045H221.48L221.889 273.614H226.753V272.364H220.707L220.003 278.091L221.321 278.25C221.804 277.903 222.628 277.653 223.344 277.659C224.827 277.67 225.912 278.795 225.912 280.318C225.912 281.812 224.866 282.909 223.435 282.909C222.241 282.909 221.293 282.142 221.185 281.091H219.821C219.906 282.864 221.435 284.159 223.435 284.159ZM233.464 284.159C235.72 284.159 237.396 282.744 237.396 280.841C237.396 279.364 236.521 278.29 235.055 278.045V277.955C236.232 277.597 236.964 276.631 236.964 275.318C236.964 273.67 235.663 272.205 233.51 272.205C231.499 272.205 229.828 273.443 229.76 275.273H231.124C231.175 274.114 232.277 273.432 233.487 273.432C234.771 273.432 235.601 274.21 235.601 275.386C235.601 276.614 234.641 277.409 233.26 277.409H232.328V278.659H233.26C235.027 278.659 236.01 279.557 236.01 280.841C236.01 282.074 234.936 282.909 233.442 282.909C232.095 282.909 231.027 282.216 230.942 281.091H229.51C229.595 282.92 231.209 284.159 233.464 284.159ZM240.084 284H241.561L246.743 273.682V272.364H239.288V273.614H245.288V273.705L240.084 284ZM247.861 284.091C248.423 284.091 248.884 283.631 248.884 283.068C248.884 282.506 248.423 282.045 247.861 282.045C247.298 282.045 246.838 282.506 246.838 283.068C246.838 283.631 247.298 284.091 247.861 284.091ZM254.635 284.159C256.959 284.159 258.578 282.801 258.589 280.909C258.578 279.438 257.595 278.188 256.339 277.955V277.886C257.43 277.602 258.146 276.534 258.158 275.295C258.146 273.523 256.658 272.205 254.635 272.205C252.589 272.205 251.101 273.523 251.112 275.295C251.101 276.534 251.817 277.602 252.93 277.886V277.955C251.652 278.188 250.669 279.438 250.68 280.909C250.669 282.801 252.288 284.159 254.635 284.159ZM254.635 282.909C253.038 282.909 252.055 282.091 252.067 280.841C252.055 279.528 253.141 278.591 254.635 278.591C256.107 278.591 257.192 279.528 257.203 280.841C257.192 282.091 256.209 282.909 254.635 282.909ZM254.635 277.386C253.362 277.386 252.464 276.591 252.476 275.386C252.464 274.205 253.328 273.432 254.635 273.432C255.919 273.432 256.783 274.205 256.794 275.386C256.783 276.591 255.885 277.386 254.635 277.386ZM264.562 284.159C267.131 284.159 268.608 281.983 268.608 278.182C268.608 274.409 267.108 272.205 264.562 272.205C262.017 272.205 260.517 274.409 260.517 278.182C260.517 281.983 261.994 284.159 264.562 284.159ZM264.562 282.909C262.869 282.909 261.881 281.21 261.881 278.182C261.881 275.159 262.881 273.432 264.562 273.432C266.244 273.432 267.244 275.159 267.244 278.182C267.244 281.21 266.256 282.909 264.562 282.909Z" fill="white" /> <path id="text_8" d="M301.043 273.455H301.974V272.188C304.361 272.023 305.702 270.614 305.702 268.841C305.702 266.659 303.634 265.955 302.429 265.636L301.974 265.511V261.472C303.179 261.591 304.054 262.239 304.179 263.273H305.543C305.486 261.614 304.031 260.352 301.974 260.216V258.909H301.043V260.233C299.094 260.432 297.634 261.67 297.634 263.455C297.634 265.023 298.77 265.955 300.588 266.477L301.043 266.608V270.909C299.849 270.784 298.872 270.17 298.77 269H297.315C297.446 270.79 298.81 272.04 301.043 272.188V273.455ZM301.974 270.909V266.875L302.02 266.886C303.247 267.227 304.338 267.659 304.338 268.818C304.338 269.96 303.349 270.756 301.974 270.909ZM301.043 265.261C300.179 265.017 298.997 264.54 298.997 263.386C298.997 262.403 299.793 261.653 301.043 261.489V265.261ZM307.541 269.614H313.018V272H314.359V269.614H315.95V268.364H314.359V260.364H312.655L307.541 268.455V269.614ZM313.018 268.364H309.064V268.273L312.928 262.159H313.018V268.364ZM322.011 272.159C324.267 272.159 325.943 270.744 325.943 268.841C325.943 267.364 325.068 266.29 323.602 266.045V265.955C324.778 265.597 325.511 264.631 325.511 263.318C325.511 261.67 324.21 260.205 322.057 260.205C320.045 260.205 318.375 261.443 318.307 263.273H319.67C319.722 262.114 320.824 261.432 322.034 261.432C323.318 261.432 324.148 262.21 324.148 263.386C324.148 264.614 323.188 265.409 321.807 265.409H320.875V266.659H321.807C323.574 266.659 324.557 267.557 324.557 268.841C324.557 270.074 323.483 270.909 321.989 270.909C320.642 270.909 319.574 270.216 319.489 269.091H318.057C318.142 270.92 319.756 272.159 322.011 272.159ZM331.903 272.159C334.119 272.159 335.744 270.523 335.744 268.295C335.744 266.04 334.176 264.386 332.04 264.386C331.256 264.386 330.494 264.665 330.017 265.045H329.949L330.358 261.614H335.222V260.364H329.176L328.472 266.091L329.79 266.25C330.273 265.903 331.097 265.653 331.812 265.659C333.295 265.67 334.381 266.795 334.381 268.318C334.381 269.812 333.335 270.909 331.903 270.909C330.71 270.909 329.761 270.142 329.653 269.091H328.29C328.375 270.864 329.903 272.159 331.903 272.159ZM339.587 270.409H338.132L338.064 271.045C337.899 272.585 337.575 274.119 337.428 274.841H338.45C338.723 274.068 339.303 272.318 339.496 271.023L339.587 270.409ZM342.178 272H343.655L348.837 261.682V260.364H341.382V261.614H347.382V261.705L342.178 272ZM354.621 272.159C356.876 272.159 358.553 270.744 358.553 268.841C358.553 267.364 357.678 266.29 356.212 266.045V265.955C357.388 265.597 358.121 264.631 358.121 263.318C358.121 261.67 356.82 260.205 354.666 260.205C352.655 260.205 350.984 261.443 350.916 263.273H352.28C352.331 262.114 353.433 261.432 354.643 261.432C355.928 261.432 356.757 262.21 356.757 263.386C356.757 264.614 355.797 265.409 354.416 265.409H353.484V266.659H354.416C356.183 266.659 357.166 267.557 357.166 268.841C357.166 270.074 356.092 270.909 354.598 270.909C353.251 270.909 352.183 270.216 352.098 269.091H350.666C350.751 270.92 352.365 272.159 354.621 272.159ZM364.967 260.364H363.558L360.649 262.295V263.727L363.49 261.841H363.558V272H364.967V260.364ZM368.626 272.091C369.189 272.091 369.649 271.631 369.649 271.068C369.649 270.506 369.189 270.045 368.626 270.045C368.064 270.045 367.604 270.506 367.604 271.068C367.604 271.631 368.064 272.091 368.626 272.091ZM375.401 272.159C377.724 272.159 379.344 270.801 379.355 268.909C379.344 267.438 378.361 266.188 377.105 265.955V265.886C378.196 265.602 378.912 264.534 378.923 263.295C378.912 261.523 377.423 260.205 375.401 260.205C373.355 260.205 371.866 261.523 371.878 263.295C371.866 264.534 372.582 265.602 373.696 265.886V265.955C372.418 266.188 371.435 267.438 371.446 268.909C371.435 270.801 373.054 272.159 375.401 272.159ZM375.401 270.909C373.804 270.909 372.821 270.091 372.832 268.841C372.821 267.528 373.906 266.591 375.401 266.591C376.872 266.591 377.957 267.528 377.969 268.841C377.957 270.091 376.974 270.909 375.401 270.909ZM375.401 265.386C374.128 265.386 373.23 264.591 373.241 263.386C373.23 262.205 374.094 261.432 375.401 261.432C376.685 261.432 377.548 262.205 377.56 263.386C377.548 264.591 376.651 265.386 375.401 265.386ZM381.26 269.614H386.737V272H388.078V269.614H389.669V268.364H388.078V260.364H386.374L381.26 268.455V269.614ZM386.737 268.364H382.783V268.273L386.646 262.159H386.737V268.364Z" fill="white" /> <path id="text_9" d="M422.941 265.455H423.873V264.188C426.259 264.023 427.6 262.614 427.6 260.841C427.6 258.659 425.532 257.955 424.327 257.636L423.873 257.511V253.472C425.077 253.591 425.952 254.239 426.077 255.273H427.441C427.384 253.614 425.93 252.352 423.873 252.216V250.909H422.941V252.233C420.992 252.432 419.532 253.67 419.532 255.455C419.532 257.023 420.668 257.955 422.487 258.477L422.941 258.608V262.909C421.748 262.784 420.771 262.17 420.668 261H419.214C419.344 262.79 420.708 264.04 422.941 264.188V265.455ZM423.873 262.909V258.875L423.918 258.886C425.146 259.227 426.237 259.659 426.237 260.818C426.237 261.96 425.248 262.756 423.873 262.909ZM422.941 257.261C422.077 257.017 420.896 256.54 420.896 255.386C420.896 254.403 421.691 253.653 422.941 253.489V257.261ZM429.44 261.614H434.917V264H436.258V261.614H437.849V260.364H436.258V252.364H434.553L429.44 260.455V261.614ZM434.917 260.364H430.962V260.273L434.826 254.159H434.917V260.364ZM443.842 264.159C446.194 264.188 447.728 262.415 447.728 260.25C447.728 258 446.063 256.386 444.069 256.386C442.87 256.386 441.842 256.972 441.205 257.932H441.114C441.12 255.097 442.222 253.455 444.023 253.455C445.251 253.455 445.989 254.227 446.251 255.273H447.637C447.353 253.466 445.978 252.205 444.023 252.205C441.404 252.205 439.796 254.523 439.796 258.636C439.796 262.938 441.933 264.136 443.842 264.159ZM443.842 262.909C442.381 262.909 441.313 261.665 441.319 260.273C441.325 258.881 442.444 257.636 443.887 257.636C445.313 257.636 446.364 258.807 446.364 260.25C446.364 261.727 445.268 262.909 443.842 262.909ZM450.326 264H451.803L456.985 253.682V252.364H449.531V253.614H455.531V253.705L450.326 264ZM459.126 262.409H457.671L457.603 263.045C457.438 264.585 457.114 266.119 456.967 266.841H457.989C458.262 266.068 458.842 264.318 459.035 263.023L459.126 262.409ZM464.977 264.159C467.545 264.159 469.022 261.983 469.022 258.182C469.022 254.409 467.522 252.205 464.977 252.205C462.431 252.205 460.931 254.409 460.931 258.182C460.931 261.983 462.408 264.159 464.977 264.159ZM464.977 262.909C463.283 262.909 462.295 261.21 462.295 258.182C462.295 255.159 463.295 253.432 464.977 253.432C466.658 253.432 467.658 255.159 467.658 258.182C467.658 261.21 466.67 262.909 464.977 262.909ZM471.181 264H478.522V262.75H473.113V262.659L475.727 259.864C477.727 257.722 478.317 256.722 478.317 255.432C478.317 253.636 476.863 252.205 474.817 252.205C472.778 252.205 471.227 253.591 471.227 255.636H472.567C472.567 254.312 473.425 253.432 474.772 253.432C476.033 253.432 476.999 254.205 476.999 255.432C476.999 256.506 476.369 257.301 475.022 258.773L471.181 262.977V264ZM480.869 264H488.21V262.75H482.8V262.659L485.414 259.864C487.414 257.722 488.005 256.722 488.005 255.432C488.005 253.636 486.55 252.205 484.505 252.205C482.465 252.205 480.914 253.591 480.914 255.636H482.255C482.255 254.312 483.113 253.432 484.46 253.432C485.721 253.432 486.687 254.205 486.687 255.432C486.687 256.506 486.056 257.301 484.71 258.773L480.869 262.977V264ZM491.556 264.091C492.119 264.091 492.579 263.631 492.579 263.068C492.579 262.506 492.119 262.045 491.556 262.045C490.994 262.045 490.533 262.506 490.533 263.068C490.533 263.631 490.994 264.091 491.556 264.091ZM498.457 264.159C500.712 264.159 502.388 262.744 502.388 260.841C502.388 259.364 501.513 258.29 500.048 258.045V257.955C501.224 257.597 501.957 256.631 501.957 255.318C501.957 253.67 500.656 252.205 498.502 252.205C496.491 252.205 494.82 253.443 494.752 255.273H496.116C496.167 254.114 497.269 253.432 498.479 253.432C499.763 253.432 500.593 254.21 500.593 255.386C500.593 256.614 499.633 257.409 498.252 257.409H497.32V258.659H498.252C500.019 258.659 501.002 259.557 501.002 260.841C501.002 262.074 499.928 262.909 498.434 262.909C497.087 262.909 496.019 262.216 495.934 261.091H494.502C494.587 262.92 496.201 264.159 498.457 264.159ZM508.644 264.159C510.9 264.159 512.576 262.744 512.576 260.841C512.576 259.364 511.701 258.29 510.235 258.045V257.955C511.411 257.597 512.144 256.631 512.144 255.318C512.144 253.67 510.843 252.205 508.69 252.205C506.678 252.205 505.008 253.443 504.94 255.273H506.303C506.354 254.114 507.457 253.432 508.667 253.432C509.951 253.432 510.781 254.21 510.781 255.386C510.781 256.614 509.82 257.409 508.44 257.409H507.508V258.659H508.44C510.207 258.659 511.19 259.557 511.19 260.841C511.19 262.074 510.116 262.909 508.621 262.909C507.275 262.909 506.207 262.216 506.121 261.091H504.69C504.775 262.92 506.388 264.159 508.644 264.159Z" fill="white" /> <g id="Frame 2024"> <path id="text_10" d="M118.432 196.273H120.528V193.422C125.898 193.051 128.915 189.881 128.915 185.892C128.915 180.983 124.261 179.398 121.551 178.682L120.528 178.401V169.311C123.239 169.58 125.207 171.037 125.489 173.364H128.557C128.429 169.631 125.156 166.793 120.528 166.486V163.545H118.432V166.524C114.047 166.972 110.761 169.759 110.761 173.773C110.761 177.301 113.318 179.398 117.409 180.574L118.432 180.868V190.545C115.747 190.264 113.548 188.884 113.318 186.25H110.045C110.339 190.277 113.408 193.089 118.432 193.422V196.273ZM120.528 190.545V181.469L120.631 181.494C123.392 182.261 125.847 183.233 125.847 185.841C125.847 188.411 123.622 190.2 120.528 190.545ZM118.432 177.838C116.489 177.288 113.83 176.214 113.83 173.619C113.83 171.408 115.619 169.72 118.432 169.349V177.838ZM133.054 187.631H145.377V193H148.395V187.631H151.974V184.818H148.395V166.818H144.559L133.054 185.023V187.631ZM145.377 184.818H136.48V184.614L145.173 170.858H145.377V184.818ZM165.458 193.358C170.751 193.422 174.202 189.433 174.202 184.562C174.202 179.5 170.457 175.869 165.969 175.869C163.272 175.869 160.958 177.186 159.526 179.347H159.322C159.335 172.967 161.815 169.273 165.867 169.273C168.629 169.273 170.29 171.011 170.879 173.364H173.998C173.359 169.298 170.265 166.46 165.867 166.46C159.974 166.46 156.356 171.676 156.356 180.932C156.356 190.609 161.163 193.307 165.458 193.358ZM165.458 190.545C162.173 190.545 159.769 187.746 159.782 184.614C159.795 181.482 162.313 178.682 165.56 178.682C168.769 178.682 171.134 181.315 171.134 184.562C171.134 187.886 168.667 190.545 165.458 190.545ZM180.048 193H183.372L195.031 169.784V166.818H178.258V169.631H191.758V169.835L180.048 193ZM199.847 189.42H196.575L196.421 190.852C196.05 194.317 195.322 197.768 194.989 199.392H197.29C197.904 197.653 199.208 193.716 199.643 190.801L199.847 189.42ZM213.012 193.358C218.79 193.358 222.114 188.462 222.114 179.909C222.114 171.42 218.739 166.46 213.012 166.46C207.284 166.46 203.909 171.42 203.909 179.909C203.909 188.462 207.233 193.358 213.012 193.358ZM213.012 190.545C209.202 190.545 206.978 186.723 206.978 179.909C206.978 173.108 209.228 169.222 213.012 169.222C216.796 169.222 219.046 173.108 219.046 179.909C219.046 186.723 216.821 190.545 213.012 190.545ZM226.972 193H243.489V190.188H231.319V189.983L237.199 183.693C241.699 178.874 243.029 176.624 243.029 173.722C243.029 169.682 239.756 166.46 235.154 166.46C230.564 166.46 227.074 169.58 227.074 174.182H230.091C230.091 171.203 232.022 169.222 235.051 169.222C237.89 169.222 240.063 170.96 240.063 173.722C240.063 176.138 238.644 177.928 235.614 181.239L226.972 190.699V193ZM248.769 193H265.286V190.188H253.115V189.983L258.996 183.693C263.496 178.874 264.826 176.624 264.826 173.722C264.826 169.682 261.553 166.46 256.951 166.46C252.361 166.46 248.871 169.58 248.871 174.182H251.888C251.888 171.203 253.819 169.222 256.848 169.222C259.686 169.222 261.86 170.96 261.86 173.722C261.86 176.138 260.441 177.928 257.411 181.239L248.769 190.699V193ZM272.816 193.205C274.081 193.205 275.117 192.169 275.117 190.903C275.117 189.638 274.081 188.602 272.816 188.602C271.55 188.602 270.515 189.638 270.515 190.903C270.515 192.169 271.55 193.205 272.816 193.205ZM288.342 193.358C293.417 193.358 297.189 190.175 297.189 185.892C297.189 182.568 295.22 180.152 291.922 179.602V179.398C294.568 178.592 296.217 176.419 296.217 173.466C296.217 169.759 293.289 166.46 288.444 166.46C283.919 166.46 280.16 169.247 280.007 173.364H283.075C283.19 170.756 285.67 169.222 288.393 169.222C291.282 169.222 293.149 170.973 293.149 173.619C293.149 176.381 290.988 178.17 287.882 178.17H285.785V180.983H287.882C291.858 180.983 294.069 183.003 294.069 185.892C294.069 188.666 291.653 190.545 288.291 190.545C285.261 190.545 282.858 188.986 282.666 186.455H279.444C279.636 190.571 283.267 193.358 288.342 193.358ZM311.264 193.358C316.339 193.358 320.11 190.175 320.11 185.892C320.11 182.568 318.142 180.152 314.843 179.602V179.398C317.49 178.592 319.139 176.419 319.139 173.466C319.139 169.759 316.211 166.46 311.366 166.46C306.841 166.46 303.082 169.247 302.929 173.364H305.997C306.112 170.756 308.592 169.222 311.315 169.222C314.204 169.222 316.071 170.973 316.071 173.619C316.071 176.381 313.91 178.17 310.804 178.17H308.707V180.983H310.804C314.779 180.983 316.991 183.003 316.991 185.892C316.991 188.666 314.575 190.545 311.213 190.545C308.183 190.545 305.779 188.986 305.588 186.455H302.366C302.558 190.571 306.189 193.358 311.264 193.358Z" fill="#353D46" /> <g id="Frame 2025"> <g id="Frame 2023"> <path id="text_11" d="M386.992 183.29H388.33V180.595H391.024V179.258H388.33V176.568H386.992V179.258H384.303V180.595H386.992V183.29ZM396.371 186.273H397.306L397.311 185.154C399.414 185 400.617 183.797 400.617 182.186C400.617 180.352 398.981 179.641 397.689 179.322L397.326 179.228L397.336 176.036C398.265 176.161 398.902 176.678 398.996 177.493H400.478C400.438 175.977 399.185 174.843 397.341 174.694L397.346 173.545H396.411L396.406 174.704C394.621 174.883 393.314 175.996 393.314 177.602C393.314 179.019 394.328 179.849 395.963 180.292L396.391 180.406L396.381 183.792C395.412 183.673 394.661 183.146 394.581 182.186H393.04C393.135 183.901 394.373 185.005 396.376 185.154L396.371 186.273ZM397.316 183.792L397.326 180.665C398.335 180.943 399.096 181.311 399.096 182.171C399.096 183.041 398.37 183.653 397.316 183.792ZM396.396 178.979C395.655 178.761 394.84 178.368 394.845 177.513C394.845 176.767 395.436 176.185 396.401 176.041L396.396 178.979ZM405.858 185.139C407.936 185.139 409.463 183.896 409.458 182.206C409.463 180.918 408.682 179.994 407.33 179.785V179.705C408.394 179.432 409.085 178.597 409.08 177.453C409.085 175.957 407.857 174.679 405.898 174.679C404.029 174.679 402.527 175.808 402.477 177.463H403.964C403.999 176.528 404.879 175.962 405.878 175.962C406.917 175.962 407.598 176.593 407.593 177.533C407.598 178.517 406.808 179.163 405.679 179.163H404.819V180.416H405.679C407.091 180.416 407.906 181.132 407.906 182.156C407.906 183.146 407.046 183.817 405.848 183.817C404.744 183.817 403.884 183.25 403.825 182.345H402.264C402.328 184.006 403.8 185.139 405.858 185.139ZM415.2 174.818H413.703L411.163 176.479V177.95L413.599 176.359H413.659V185H415.2V174.818ZM419.334 183.608H417.902L417.852 184.165C417.738 185.512 417.42 186.869 417.285 187.486H418.339C418.578 186.835 419.105 185.343 419.259 184.15L419.334 183.608ZM421.413 185H428.115V183.683H423.531V183.608L425.554 181.49C427.419 179.606 427.951 178.706 427.951 177.567C427.951 175.932 426.618 174.679 424.699 174.679C422.795 174.679 421.403 175.912 421.403 177.771H422.87C422.865 176.678 423.571 175.962 424.669 175.962C425.703 175.962 426.489 176.598 426.489 177.612C426.489 178.512 425.952 179.158 424.858 180.317L421.413 183.886V185ZM433.385 174.679C431.247 174.659 429.85 176.195 429.85 178.124C429.855 180.068 431.262 181.47 433.027 181.47C434.105 181.47 435.03 180.943 435.552 180.088H435.632C435.627 182.43 434.747 183.797 433.255 183.797C432.281 183.797 431.654 183.2 431.456 182.33H429.939C430.163 183.976 431.436 185.139 433.255 185.139C435.622 185.139 437.103 183.106 437.103 179.541C437.098 175.822 435.199 174.694 433.385 174.679ZM433.39 175.972C434.568 175.972 435.438 176.971 435.438 178.089C435.443 179.223 434.523 180.217 433.36 180.217C432.191 180.217 431.346 179.283 431.341 178.104C431.341 176.921 432.221 175.972 433.39 175.972ZM442.444 185.169C444.796 185.169 446.173 183.25 446.173 179.914C446.173 176.603 444.776 174.679 442.444 174.679C440.107 174.679 438.715 176.598 438.71 179.914C438.71 183.245 440.088 185.164 442.444 185.169ZM442.444 183.842C441.067 183.842 440.237 182.46 440.237 179.914C440.242 177.379 441.072 175.982 442.444 175.982C443.811 175.982 444.646 177.379 444.646 179.914C444.646 182.46 443.816 183.842 442.444 183.842ZM448.553 185.094C449.095 185.094 449.547 184.652 449.547 184.1C449.547 183.558 449.095 183.111 448.553 183.111C448.006 183.111 447.559 183.558 447.559 184.1C447.559 184.652 448.006 185.094 448.553 185.094ZM454.715 185.139C456.763 185.139 458.225 183.692 458.22 181.709C458.225 179.74 456.853 178.308 454.999 178.308C454.243 178.308 453.542 178.597 453.144 178.984H453.085L453.408 176.136H457.728V174.818H452.13L451.558 179.949L452.965 180.158C453.348 179.815 454.034 179.581 454.651 179.581C455.859 179.591 456.734 180.496 456.734 181.739C456.734 182.962 455.884 183.847 454.715 183.847C453.731 183.847 452.95 183.22 452.871 182.345H451.379C451.439 183.966 452.846 185.139 454.715 185.139ZM463.581 185.169C465.932 185.169 467.309 183.25 467.309 179.914C467.309 176.603 465.912 174.679 463.581 174.679C461.244 174.679 459.852 176.598 459.847 179.914C459.847 183.245 461.224 185.164 463.581 185.169ZM463.581 183.842C462.204 183.842 461.373 182.46 461.373 179.914C461.378 177.379 462.209 175.982 463.581 175.982C464.948 175.982 465.783 177.379 465.783 179.914C465.783 182.46 464.953 183.842 463.581 183.842ZM473.231 179.909C473.231 182.405 473.897 184.483 475.16 186.253H476.522C475.542 184.94 474.772 182.276 474.772 179.909C474.772 177.548 475.542 174.883 476.522 173.57H475.16C473.897 175.34 473.231 177.418 473.231 179.909ZM481.624 185.139C483.752 185.159 485.164 183.628 485.159 181.674C485.164 179.725 483.747 178.328 481.982 178.328C480.908 178.328 479.978 178.845 479.456 179.705H479.382C479.387 177.393 480.262 176.021 481.753 176.021C482.733 176.021 483.349 176.618 483.558 177.463H485.074C484.841 175.852 483.573 174.679 481.753 174.679C479.387 174.679 477.91 176.712 477.91 180.252C477.905 184.001 479.814 185.124 481.624 185.139ZM481.619 183.847C480.436 183.847 479.571 182.852 479.571 181.709C479.576 180.57 480.48 179.576 481.654 179.576C482.817 179.576 483.672 180.516 483.667 181.694C483.672 182.897 482.782 183.847 481.619 183.847ZM487.518 185.094C488.06 185.094 488.512 184.652 488.512 184.1C488.512 183.558 488.06 183.111 487.518 183.111C486.971 183.111 486.523 183.558 486.523 184.1C486.523 184.652 486.971 185.094 487.518 185.094ZM490.567 185H492.172L496.602 176.18V174.818H489.871V176.136H495.011V176.21L490.567 185ZM503.646 183.091C503.651 184.239 504.371 185.209 505.719 185.209C507.051 185.209 507.782 184.239 507.782 183.091V182.554C507.782 181.401 507.071 180.436 505.719 180.436C504.391 180.436 503.651 181.406 503.646 182.554V183.091ZM498.525 177.264C498.525 178.413 499.251 179.382 500.598 179.382C501.925 179.382 502.661 178.418 502.656 177.264V176.727C502.661 175.574 501.945 174.609 500.598 174.609C499.276 174.609 498.525 175.574 498.525 176.727V177.264ZM498.942 185H500.131L507.131 174.818H505.942L498.942 185ZM504.804 182.554C504.809 181.982 505.058 181.43 505.719 181.43C506.405 181.43 506.619 181.982 506.619 182.554V183.091C506.619 183.663 506.385 184.214 505.719 184.214C505.043 184.214 504.809 183.658 504.804 183.091V182.554ZM499.688 176.727C499.688 176.161 499.937 175.604 500.598 175.604C501.284 175.604 501.498 176.156 501.498 176.727V177.264C501.498 177.836 501.264 178.388 500.598 178.388C499.922 178.388 499.688 177.836 499.688 177.264V176.727ZM512.803 179.914C512.803 177.418 512.137 175.34 510.874 173.57H509.512C510.491 174.883 511.262 177.548 511.262 179.914C511.262 182.276 510.491 184.94 509.512 186.253H510.874C512.137 184.483 512.803 182.405 512.803 179.914Z" fill="#606367" fill-opacity="0.9" /> </g> </g> </g> <g id="Frame 2027"> <g id="Title dropdown"> <path id="text_12" d="M122.304 110.724C121.949 107.244 119.357 105.256 115.841 105.256C111.963 105.256 108.945 107.919 108.945 112.727C108.945 117.514 111.892 120.199 115.841 120.199C119.832 120.199 122.041 117.486 122.304 114.908L118.753 114.886C118.504 116.286 117.453 117.116 115.912 117.116C113.838 117.116 112.531 115.618 112.531 112.727C112.531 109.95 113.81 108.338 115.933 108.338C117.531 108.338 118.575 109.268 118.753 110.724H122.304ZM126.989 105.455H123.516V120H126.989V105.455ZM133.492 120.206C136.922 120.206 139.003 117.94 139.003 114.581C139.003 111.214 136.922 108.949 133.492 108.949C130.061 108.949 127.98 111.214 127.98 114.581C127.98 117.94 130.061 120.206 133.492 120.206ZM133.513 117.585C132.227 117.585 131.517 116.364 131.517 114.56C131.517 112.749 132.227 111.52 133.513 111.52C134.756 111.52 135.466 112.749 135.466 114.56C135.466 116.364 134.756 117.585 133.513 117.585ZM147.02 115.291C147.02 116.562 146.211 117.273 145.181 117.273C144.116 117.273 143.462 116.548 143.455 115.362V109.091H139.982V116.044C139.989 118.509 141.488 120.142 143.732 120.142C145.366 120.142 146.58 119.304 147.063 117.969H147.177V120H150.486V109.091H147.02V115.291ZM155.881 120.156C157.529 120.156 158.509 119.24 158.95 118.232H159.056V120H162.494V105.455H159.021V110.959H158.95C158.538 109.957 157.586 108.949 155.867 108.949C153.587 108.949 151.521 110.703 151.521 114.553C151.521 118.267 153.474 120.156 155.881 120.156ZM157.089 117.45C155.803 117.45 155.086 116.307 155.086 114.545C155.086 112.791 155.796 111.662 157.089 111.662C158.36 111.662 159.099 112.763 159.099 114.545C159.099 116.314 158.353 117.45 157.089 117.45ZM172.479 120.206C175.547 120.206 177.451 118.423 177.543 115.724H174.297C174.169 116.882 173.473 117.514 172.522 117.514C171.3 117.514 170.505 116.484 170.505 114.545C170.505 112.621 171.307 111.591 172.522 111.591C173.516 111.591 174.162 112.266 174.297 113.381H177.543C177.465 110.696 175.505 108.949 172.472 108.949C169.042 108.949 166.968 111.236 166.968 114.581C166.968 117.912 169.027 120.206 172.479 120.206ZM183.613 120.206C187.043 120.206 189.124 117.94 189.124 114.581C189.124 111.214 187.043 108.949 183.613 108.949C180.182 108.949 178.101 111.214 178.101 114.581C178.101 117.94 180.182 120.206 183.613 120.206ZM183.634 117.585C182.349 117.585 181.638 116.364 181.638 114.56C181.638 112.749 182.349 111.52 183.634 111.52C184.877 111.52 185.587 112.749 185.587 114.56C185.587 116.364 184.877 117.585 183.634 117.585ZM199.627 112.422C199.443 110.263 197.674 108.949 194.72 108.949C191.765 108.949 189.883 110.234 189.897 112.422C189.883 114.098 190.955 115.178 193.136 115.582L195.039 115.945C195.941 116.122 196.353 116.406 196.367 116.889C196.353 117.436 195.742 117.798 194.855 117.798C193.867 117.798 193.2 117.372 193.051 116.577L189.62 116.662C189.869 118.821 191.723 120.206 194.84 120.206C197.759 120.206 199.883 118.75 199.897 116.506C199.883 114.915 198.832 113.97 196.659 113.551L194.556 113.153C193.633 112.969 193.335 112.642 193.342 112.223C193.335 111.669 193.981 111.328 194.784 111.328C195.7 111.328 196.339 111.818 196.438 112.507L199.627 112.422ZM206.965 109.091H204.997V106.477H201.524V109.091H200.083V111.648H201.524V116.953C201.503 119.162 202.938 120.27 205.388 120.156C206.226 120.114 206.83 119.943 207.164 119.844L206.638 117.337C206.489 117.372 206.141 117.443 205.878 117.443C205.317 117.443 204.997 117.216 204.997 116.57V111.648H206.965V109.091ZM218.167 104.773H215.205L210.517 122.188H213.479L218.167 104.773ZM222.158 120H225.595V118.232H225.702C226.142 119.24 227.122 120.156 228.77 120.156C231.185 120.156 233.131 118.267 233.131 114.553C233.131 110.703 231.071 108.949 228.791 108.949C227.066 108.949 226.121 109.957 225.702 110.959H225.631V105.455H222.158V120ZM225.56 114.545C225.56 112.763 226.299 111.662 227.57 111.662C228.855 111.662 229.566 112.791 229.566 114.545C229.566 116.307 228.855 117.45 227.57 117.45C226.299 117.45 225.56 116.314 225.56 114.545ZM241.189 115.291C241.189 116.562 240.38 117.273 239.35 117.273C238.284 117.273 237.631 116.548 237.624 115.362V109.091H234.151V116.044C234.158 118.509 235.657 120.142 237.901 120.142C239.534 120.142 240.749 119.304 241.232 117.969H241.345V120H244.655V109.091H241.189V115.291ZM255.59 112.422C255.405 110.263 253.637 108.949 250.682 108.949C247.728 108.949 245.846 110.234 245.86 112.422C245.846 114.098 246.918 115.178 249.098 115.582L251.002 115.945C251.904 116.122 252.316 116.406 252.33 116.889C252.316 117.436 251.705 117.798 250.817 117.798C249.83 117.798 249.162 117.372 249.013 116.577L245.583 116.662C245.831 118.821 247.685 120.206 250.803 120.206C253.722 120.206 255.846 118.75 255.86 116.506C255.846 114.915 254.794 113.97 252.621 113.551L250.519 113.153C249.596 112.969 249.297 112.642 249.304 112.223C249.297 111.669 249.944 111.328 250.746 111.328C251.662 111.328 252.301 111.818 252.401 112.507L255.59 112.422ZM256.77 120H260.243V109.091H256.77V120ZM258.51 107.82C259.497 107.82 260.292 107.074 260.292 106.158C260.292 105.241 259.497 104.503 258.51 104.503C257.53 104.503 256.727 105.241 256.727 106.158C256.727 107.074 257.53 107.82 258.51 107.82ZM265.126 113.778C265.133 112.536 265.858 111.797 266.959 111.797C268.059 111.797 268.713 112.521 268.706 113.729V120H272.179V113.047C272.186 110.589 270.687 108.949 268.393 108.949C266.781 108.949 265.559 109.766 265.076 111.094H264.956V109.091H261.653V120H265.126V113.778ZM278.628 120.206C281.491 120.206 283.373 118.821 283.77 116.676L280.582 116.584C280.312 117.308 279.601 117.699 278.692 117.699C277.357 117.699 276.533 116.811 276.533 115.476V115.384H283.806V114.517C283.806 110.923 281.618 108.949 278.522 108.949C275.226 108.949 273.11 111.207 273.11 114.588C273.11 118.082 275.198 120.206 278.628 120.206ZM276.533 113.366C276.583 112.28 277.442 111.456 278.593 111.456C279.736 111.456 280.56 112.251 280.574 113.366H276.533ZM294.304 112.422C294.119 110.263 292.351 108.949 289.396 108.949C286.442 108.949 284.56 110.234 284.574 112.422C284.56 114.098 285.632 115.178 287.812 115.582L289.716 115.945C290.618 116.122 291.03 116.406 291.044 116.889C291.03 117.436 290.419 117.798 289.531 117.798C288.544 117.798 287.876 117.372 287.727 116.577L284.297 116.662C284.545 118.821 286.399 120.206 289.517 120.206C292.436 120.206 294.56 118.75 294.574 116.506C294.56 114.915 293.508 113.97 291.335 113.551L289.233 113.153C288.31 112.969 288.011 112.642 288.018 112.223C288.011 111.669 288.658 111.328 289.46 111.328C290.376 111.328 291.016 111.818 291.115 112.507L294.304 112.422ZM306.019 115.291C306.019 116.562 305.209 117.273 304.179 117.273C303.114 117.273 302.461 116.548 302.454 115.362V109.091H298.981V116.044C298.988 118.509 300.486 120.142 302.731 120.142C304.364 120.142 305.579 119.304 306.062 117.969H306.175V120H309.485V109.091H306.019V115.291ZM314.368 113.778C314.375 112.536 315.1 111.797 316.201 111.797C317.302 111.797 317.955 112.521 317.948 113.729V120H321.421V113.047C321.428 110.589 319.929 108.949 317.635 108.949C316.023 108.949 314.802 109.766 314.319 111.094H314.198V109.091H310.895V120H314.368V113.778ZM322.771 120H326.244V109.091H322.771V120ZM324.511 107.82C325.498 107.82 326.294 107.074 326.294 106.158C326.294 105.241 325.498 104.503 324.511 104.503C323.531 104.503 322.729 105.241 322.729 106.158C322.729 107.074 323.531 107.82 324.511 107.82ZM333.812 109.091H331.845V106.477H328.372V109.091H326.93V111.648H328.372V116.953C328.351 119.162 329.785 120.27 332.236 120.156C333.074 120.114 333.677 119.943 334.011 119.844L333.486 117.337C333.337 117.372 332.989 117.443 332.726 117.443C332.165 117.443 331.845 117.216 331.845 116.57V111.648H333.812V109.091Z" fill="#0A2144" /> </g> <g id="Frame 2026"> <rect id="Rectangle 2374" x="538" y="110.5" width="10" height="1" rx="0.5" fill="#353D46" /> <rect id="Rectangle 2375" x="540" y="113" width="6" height="1" rx="0.5" fill="#353D46" /> <rect id="Rectangle 2376" x="542" y="115.5" width="2" height="1" rx="0.5" fill="#353D46" /> </g> </g> <g id="Frame 2028"> <g clip-path="url(#clip5_5074_68376)"> <line id="Line 281" x1="554.061" y1="390.061" x2="380.061" y2="564.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 282" x1="554.061" y1="382.061" x2="380.061" y2="556.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 283" x1="554.061" y1="374.061" x2="380.061" y2="548.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 284" x1="554.061" y1="366.061" x2="380.061" y2="540.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 285" x1="554.061" y1="358.061" x2="380.061" y2="532.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 286" x1="554.061" y1="350.061" x2="380.061" y2="524.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 287" x1="554.061" y1="342.061" x2="380.061" y2="516.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 288" x1="554.061" y1="334.061" x2="380.061" y2="508.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 289" x1="554.061" y1="326.061" x2="380.061" y2="500.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 290" x1="554.061" y1="318.061" x2="380.061" y2="492.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 291" x1="554.061" y1="310.061" x2="380.061" y2="484.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 292" x1="554.061" y1="302.061" x2="380.061" y2="476.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 293" x1="554.061" y1="294.061" x2="380.061" y2="468.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 294" x1="554.061" y1="286.061" x2="380.061" y2="460.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 295" x1="554.061" y1="278.061" x2="380.061" y2="452.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 296" x1="554.061" y1="270.061" x2="380.061" y2="444.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 297" x1="554.061" y1="262.061" x2="380.061" y2="436.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 298" x1="554.061" y1="254.061" x2="380.061" y2="428.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 299" x1="554.061" y1="246.061" x2="380.061" y2="420.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 300" x1="554.061" y1="238.061" x2="380.061" y2="412.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 301" x1="554.061" y1="230.061" x2="380.061" y2="404.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 302" x1="554.061" y1="222.061" x2="380.061" y2="396.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 303" x1="554.061" y1="214.061" x2="380.061" y2="388.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 304" x1="554.061" y1="206.061" x2="380.061" y2="380.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 305" x1="554.061" y1="198.061" x2="380.061" y2="372.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 306" x1="554.061" y1="190.061" x2="380.061" y2="364.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 307" x1="554.061" y1="182.061" x2="380.061" y2="356.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 308" x1="554.061" y1="174.061" x2="380.061" y2="348.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 309" x1="554.061" y1="166.061" x2="380.061" y2="340.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 310" x1="554.061" y1="158.061" x2="380.061" y2="332.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 311" x1="554.061" y1="150.061" x2="380.061" y2="324.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 312" x1="554.061" y1="142.061" x2="380.061" y2="316.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 313" x1="554.061" y1="134.061" x2="380.061" y2="308.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 314" x1="554.061" y1="126.061" x2="380.061" y2="300.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 315" x1="554.061" y1="118.061" x2="380.061" y2="292.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 316" x1="554.061" y1="110.061" x2="380.061" y2="284.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 317" x1="554.061" y1="102.061" x2="380.061" y2="276.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 318" x1="554.061" y1="94.0607" x2="380.061" y2="268.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 319" x1="554.061" y1="86.0607" x2="380.061" y2="260.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> <line id="Line 320" x1="554.061" y1="78.0607" x2="380.061" y2="252.061" stroke="white" stroke-opacity="0.4" stroke-width="3" /> </g> </g> <g id="Master_2" filter="url(#filter1_ddd_5074_68376)"> <rect x="384" y="81" width="201" height="404" rx="10" fill="white" /> <g id="Title"> <g id="IC_Filter" clip-path="url(#clip6_5074_68376)"> <g id="Group"> <path id="Vector_6" d="M414 122.5C416.122 122.5 418.157 121.657 419.657 120.157C421.157 118.657 422 116.622 422 114.5C422 112.378 421.157 110.343 419.657 108.843C418.157 107.343 416.122 106.5 414 106.5C411.878 106.5 409.843 107.343 408.343 108.843C406.843 110.343 406 112.378 406 114.5C406 116.622 406.843 118.657 408.343 120.157C409.843 121.657 411.878 122.5 414 122.5ZM409.5 112.167H418.5C418.633 112.167 418.76 112.219 418.854 112.313C418.947 112.407 419 112.534 419 112.667C419 112.799 418.947 112.926 418.854 113.02C418.76 113.114 418.633 113.167 418.5 113.167H409.5C409.367 113.167 409.24 113.114 409.146 113.02C409.053 112.926 409 112.799 409 112.667C409 112.534 409.053 112.........完整代码请登录后点击上方下载按钮下载查看
网友评论0