Skip to content
Snippets Groups Projects
Commit 0daaaee6 authored by Fernando K's avatar Fernando K
Browse files

Arruma balões

parent 109616b3
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg:svg
version="1.1"
id="balloon"
width="29.999998"
height="39.999996"
viewBox="0 0 29.999998 39.999999"
sodipodi:docname="balloon.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:svg="http://www.w3.org/2000/svg">
<svg:defs
id="defs874" />
<sodipodi:namedview
id="namedview872"
pagecolor="#505050"
bordercolor="#ffffff"
borderopacity="1"
inkscape:pageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="1"
showgrid="false"
inkscape:zoom="4.9186512"
inkscape:cx="24.60024"
inkscape:cy="44.626055"
inkscape:window-width="1920"
inkscape:window-height="1012"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
inkscape:showpageshadow="2"
inkscape:deskcolor="#505050" />
<svg:g
inkscape:groupmode="layer"
id="layer1"
inkscape:label="Image 1"
style="display:inline"
transform="translate(30.979957,5.207267)">
<svg:path
style="fill:currentColor;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -29.919637,15.847037 c -1.275765,-4.960284 -1.059588,-16.76613609 8.395563,-19.6674503 9.455142,-2.9013145 15.7609761,1.762701 18.7308504,6.7618205 2.96988324,4.999119 0.5345054,13.7336418 -3.739728,18.0854108 -4.2742364,4.351773 -9.3484174,6.044046 -11.8021434,6.437009 0,0 -0.51726,1.041029 -1.594333,0.96905 0.320106,2.622532 0.0534,1.538237 0.557868,3.195666 -1.101138,0.15878 -0.943229,0.0661 -2.121607,0.03649 -0.457696,1.844678 -1.543352,2.822692 -2.920588,2.597697 -1.377238,-0.225014 -1.759219,-1.071281 -2.091859,-1.966945 -0.332638,-0.895664 -0.263681,-2.254951 -1.406782,-2.46445 -1.143106,-0.209476 -1.458071,1.501213 -2.025272,1.312815 -0.332546,-0.13543 -0.689285,-0.467192 -0.228005,-1.039427 0.461243,-0.572236 1.457956,-1.467951 2.332039,-1.341026 0.874083,0.126931 1.355462,0.625786 1.798958,1.501522 0.443485,0.875738 0.29054,2.194507 1.295268,2.612614 1.004756,0.418116 2.055227,0.383094 2.117569,-1.360056 l -1.059957,-0.429295 c 0,0 1.654275,-2.189494 1.959115,-3.034982 -0.727031,-0.55079 -0.759458,-1.319123 -0.759458,-1.319123 0,0 -6.161685,-5.927087 -7.437461,-10.887378 z"
id="path993"
sodipodi:nodetypes="zzzzcccczzzczzzzccccz" />
</svg:g>
<script>{
document.currentScript.dataset.injected = true;
const o = JSON.parse(decodeURIComponent(escape(atob('eyJ1c2VyQWdlbnQiOiJNb3ppbGxhLzUuMCAoWDExOyBMaW51eCB4ODZfNjQ7IHJ2OjEyOC4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzEyOC4wIiwiYXBwVmVyc2lvbiI6IjUuMCAoWDExKSIsInBsYXRmb3JtIjoiTGludXgiLCJ2ZW5kb3IiOiIiLCJwcm9kdWN0IjoiR2Vja28iLCJ1c2VyQWdlbnREYXRhIjoiW2RlbGV0ZV0iLCJvc2NwdSI6IkxpbnV4IHg4Nl82NCIsInByb2R1Y3RTdWIiOiIyMDEwMDEwMSIsImJ1aWxkSUQiOiIyMDE4MTAwMTAwMDAwMCJ9'))));
if (o.userAgentDataBuilder) {
const v = new class NavigatorUAData {
#p;
constructor({p, ua}) {
this.#p = p;
const version = p.browser.major;
const name = p.browser.name === 'Chrome' ? 'Google Chrome' : p.browser.name;
this.brands = [{
brand: name,
version
}, {
brand: 'Chromium',
version
}, {
brand: 'Not=A?Brand',
version: '24'
}];
this.mobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(ua);
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Sec-CH-UA-Platform
this.platform = 'Unknown';
if (p.os &amp;&amp; p.os.name) {
const name = p.os.name.toLowerCase();
if (name.includes('mac')) {
this.platform = 'macOS';
}
else if (name.includes('debian')) {
this.platform = 'Linux';
}
else {
this.platform = p.os.name;
}
}
}
toJSON() {
return {
brands: this.brands,
mobile: this.mobile,
platform: this.platform
};
}
getHighEntropyValues(hints) {
if (!hints || Array.isArray(hints) === false) {
return Promise.reject(Error(&quot;Failed to execute 'getHighEntropyValues' on 'NavigatorUAData'&quot;));
}
const r = this.toJSON();
if (hints.includes('architecture')) {
r.architecture = this.#p?.cpu?.architecture || 'x86';
}
if (hints.includes('bitness')) {
r.bitness = '64';
}
if (hints.includes('model')) {
r.model = '';
}
if (hints.includes('platformVersion')) {
r.platformVersion = this.#p?.os?.version || '10.0.0';
}
if (hints.includes('uaFullVersion')) {
r.uaFullVersion = this.brands[0].version;
}
if (hints.includes('fullVersionList')) {
r.fullVersionList = this.brands;
}
return Promise.resolve(r);
}
}(o.userAgentDataBuilder);
navigator.__defineGetter__('userAgentData', () =&gt; {
return v;
});
}
delete o.userAgentDataBuilder;
for (const key of Object.keys(o)) {
if (o[key] === '[delete]') {
delete Object.getPrototypeOf(window.navigator)[key];
}
else {
navigator.__defineGetter__(key, () =&gt; {
if (o[key] === 'empty') {
return '';
}
return o[key];
});
}
}
}</script>
</svg:svg>
This diff is collapsed.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="29.5pt"
viewBox="0 -10 30.80912 29.5"
width="30.749735pt"
version="1.1"
id="svg1"
sodipodi:docname="star.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<path
d="M 30.355353,1.2332253 C 30.158586,0.62457761 29.618738,0.19228551 28.980047,0.13472361 L 20.304403,-0.65303317 16.87382,-8.6826481 c -0.252953,-0.5884668 -0.829036,-0.9693883 -1.469103,-0.9693883 -0.640067,0 -1.21615,0.3809215 -1.469103,0.9707643 L 10.50503,-0.65303317 1.8280105,0.13472361 C 1.1904664,0.19366161 0.65199408,0.62457761 0.45408022,1.2332253 0.25616636,1.8418735 0.43894425,2.5094599 0.92123026,2.9302848 L 7.4789896,8.6814823 5.545259,17.199574 c -0.1414981,0.626307 0.1015942,1.273713 0.6212614,1.649359 0.2793272,0.201812 0.6061255,0.304553 0.9356767,0.304553 0.2841425,0 0.565992,-0.0766 0.8189454,-0.227956 l 7.4835745,-4.472669 7.480822,4.472669 c 0.547416,0.329322 1.237477,0.299279 1.755998,-0.0766 0.519896,-0.376793 0.762759,-1.024427 0.621262,-1.649359 L 23.329068,8.6814823 29.886827,2.9314314 c 0.482286,-0.4219715 0.66644,-1.0884113 0.468526,-1.6982061 z m 0,0"
fill="#ffc107"
id="balloon"
style="fill:currentColor;stroke:#000000;stroke-width:0.751448;stroke-dasharray:none" />
</svg>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment