mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
Merge branch 'master' into patch-1
This commit is contained in:
commit
0a58c6d88d
7 changed files with 265 additions and 26 deletions
210
_releases/v0.13.2.md
Normal file
210
_releases/v0.13.2.md
Normal file
|
@ -0,0 +1,210 @@
|
|||
---
|
||||
# This file is licensed under the MIT License (MIT) available on
|
||||
# http://opensource.org/licenses/MIT.
|
||||
# Text originally from Bitcoin Core project
|
||||
# Metadata and small formatting changes from Bitcoin.org project
|
||||
|
||||
## Required value below populates the %v variable (note: % needs to be escaped in YAML if it starts a value)
|
||||
required_version: 0.13.2
|
||||
## Required title.
|
||||
title: Bitcoin Core version 0.13.2 released
|
||||
## Optional release date. May be filled in hours/days after a release
|
||||
optional_date: 2017-01-03
|
||||
## Optional magnet link. To get it, open the torrent in a good BitTorrent client
|
||||
## and View Details, or install the transmission-cli Debian/Ubuntu package
|
||||
## and run: transmission-show -m <torrent file>
|
||||
#
|
||||
## Link should be enclosed in quotes and start with: "magnet:?
|
||||
optional_magnetlink: "magnet:?xt=urn:btih:746697d03db3ff531158b1133bab5d1e4cef4e5a&dn=bitcoin-core-0.13.2&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.publicbt.com%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.ccc.de%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969&ws=https%3A%2F%2Fbitcoin.org%2Fbin%2F"
|
||||
|
||||
## The --- below ends the YAML header. After that, paste the release notes.
|
||||
## Warning: this site's Markdown parser commonly requires you make two
|
||||
## changes to the release notes from the Bitcoin Core source tree:
|
||||
##
|
||||
## 1. Make sure both ordered and unordered lists are preceeded by an empty
|
||||
## (whitespace only) line, like the empty line before this list item.
|
||||
##
|
||||
## 2. Place URLs inside angle brackets, like <http://bitcoin.org/bin>
|
||||
|
||||
---
|
||||
{% githubify https://github.com/bitcoin/bitcoin %}
|
||||
Bitcoin Core version 0.13.2 is now available from:
|
||||
|
||||
<https://bitcoin.org/bin/bitcoin-core-0.13.2/>
|
||||
|
||||
This is a new minor version release, including various bugfixes and
|
||||
performance improvements, as well as updated translations.
|
||||
|
||||
Please report bugs using the issue tracker at github:
|
||||
|
||||
<https://github.com/bitcoin/bitcoin/issues>
|
||||
|
||||
To receive security and update notifications, please subscribe to:
|
||||
|
||||
<https://bitcoincore.org/en/list/announcements/join/>
|
||||
|
||||
Compatibility
|
||||
==============
|
||||
|
||||
Microsoft ended support for Windows XP on [April 8th, 2014](https://www.microsoft.com/en-us/WindowsForBusiness/end-of-xp-support),
|
||||
an OS initially released in 2001. This means that not even critical security
|
||||
updates will be released anymore. Without security updates, using a bitcoin
|
||||
wallet on a XP machine is irresponsible at least.
|
||||
|
||||
In addition to that, with 0.12.x there have been varied reports of Bitcoin Core
|
||||
randomly crashing on Windows XP. It is [not clear](https://github.com/bitcoin/bitcoin/issues/7681#issuecomment-217439891)
|
||||
what the source of these crashes is, but it is likely that upstream
|
||||
libraries such as Qt are no longer being tested on XP.
|
||||
|
||||
We do not have time nor resources to provide support for an OS that is
|
||||
end-of-life. From 0.13.0 on, Windows XP is no longer supported. Users are
|
||||
suggested to upgrade to a newer version of Windows, or install an alternative OS
|
||||
that is supported.
|
||||
|
||||
No attempt is made to prevent installing or running the software on Windows XP,
|
||||
you can still do so at your own risk, but do not expect it to work: do not
|
||||
report issues about Windows XP to the issue tracker.
|
||||
|
||||
From 0.13.1 onwards OS X 10.7 is no longer supported. 0.13.0 was intended to work on 10.7+,
|
||||
but severe issues with the libc++ version on 10.7.x keep it from running reliably.
|
||||
0.13.1 now requires 10.8+, and will communicate that to 10.7 users, rather than crashing unexpectedly.
|
||||
|
||||
Notable changes
|
||||
===============
|
||||
|
||||
Change to wallet handling of mempool rejection
|
||||
-----------------------------------------------
|
||||
|
||||
When a newly created transaction failed to enter the mempool due to
|
||||
the limits on chains of unconfirmed transactions the sending RPC
|
||||
calls would return an error. The transaction would still be queued
|
||||
in the wallet and, once some of the parent transactions were
|
||||
confirmed, broadcast after the software was restarted.
|
||||
|
||||
This behavior has been changed to return success and to reattempt
|
||||
mempool insertion at the same time transaction rebroadcast is
|
||||
attempted, avoiding a need for a restart.
|
||||
|
||||
Transactions in the wallet which cannot be accepted into the mempool
|
||||
can be abandoned with the previously existing abandontransaction RPC
|
||||
(or in the GUI via a context menu on the transaction).
|
||||
|
||||
|
||||
0.13.2 Change log
|
||||
=================
|
||||
|
||||
Detailed release notes follow. This overview includes changes that affect
|
||||
behavior, not code moves, refactors and string updates. For convenience in locating
|
||||
the code changes and accompanying discussion, both the pull request and
|
||||
git merge commit are mentioned.
|
||||
|
||||
### Consensus
|
||||
- #9293 `e591c10` [0.13 Backport #9053] IBD using chainwork instead of height and not using header timestamp (gmaxwell)
|
||||
- #9053 `5b93eee` IBD using chainwork instead of height and not using header timestamps (gmaxwell)
|
||||
|
||||
### RPC and other APIs
|
||||
- #8845 `1d048b9` Don't return the address of a P2SH of a P2SH (jnewbery)
|
||||
- #9041 `87fbced` keypoololdest denote Unix epoch, not GMT (s-matthew-english)
|
||||
- #9122 `f82c81b` fix getnettotals RPC description about timemillis (visvirial)
|
||||
- #9042 `5bcb05d` [rpc] ParseHash: Fail when length is not 64 (MarcoFalke)
|
||||
- #9194 `f26dab7` Add option to return non-segwit serialization via rpc (instagibbs)
|
||||
- #9347 `b711390` [0.13.2] wallet/rpc backports (MarcoFalke)
|
||||
- #9292 `c365556` Complain when unknown rpcserialversion is specified (sipa)
|
||||
- #9322 `49a612f` [qa] Don't set unknown rpcserialversion (MarcoFalke)
|
||||
|
||||
### Block and transaction handling
|
||||
- #8357 `ce0d817` [mempool] Fix relaypriority calculation error (maiiz)
|
||||
- #9267 `0a4aa87` [0.13 backport #9239] Disable fee estimates for a confirm target of 1 block (morcos)
|
||||
- #9196 `0c09d9f` Send tip change notification from invalidateblock (ryanofsky)
|
||||
|
||||
### P2P protocol and network code
|
||||
- #8995 `9ef3875` Add missing cs_main lock to ::GETBLOCKTXN processing (TheBlueMatt)
|
||||
- #9234 `94531b5` torcontrol: Explicitly request RSA1024 private key (laanwj)
|
||||
- #8637 `2cad5db` Compact Block Tweaks (rebase of #8235) (sipa)
|
||||
- #9058 `286e548` Fixes for p2p-compactblocks.py test timeouts on travis (#8842) (ryanofsky)
|
||||
- #8865 `4c71fc4` Decouple peer-processing-logic from block-connection-logic (TheBlueMatt)
|
||||
- #9117 `6fe3981` net: don't send feefilter messages before the version handshake is complete (theuni)
|
||||
- #9188 `ca1fd75` Make orphan parent fetching ask for witnesses (gmaxwell)
|
||||
- #9052 `3a3bcbf` Use RelevantServices instead of node_network in AttemptToEvict (gmaxwell)
|
||||
- #9048 `9460771` [0.13 backport #9026] Fix handling of invalid compact blocks (sdaftuar)
|
||||
- #9357 `03b6f62` [0.13 backport #9352] Attempt reconstruction from all compact block announcements (sdaftuar)
|
||||
- #9189 `b96a8f7` Always add default_witness_commitment with GBT client support (sipa)
|
||||
- #9253 `28d0f22` Fix calculation of number of bound sockets to use (TheBlueMatt)
|
||||
- #9199 `da5a16b` Always drop the least preferred HB peer when adding a new one (gmaxwell)
|
||||
|
||||
### Build system
|
||||
- #9169 `d1b4da9` build: fix qt5.7 build under macOS (theuni)
|
||||
- #9326 `a0f7ece` Update for OpenSSL 1.1 API (gmaxwell)
|
||||
- #9224 `396c405` Prevent FD_SETSIZE error building on OpenBSD (ivdsangen)
|
||||
|
||||
### GUI
|
||||
- #8972 `6f86b53` Make warnings label selectable (jonasschnelli) (MarcoFalke)
|
||||
- #9185 `6d70a73` Fix coincontrol sort issue (jonasschnelli)
|
||||
- #9094 `5f3a12c` Use correct conversion function for boost::path datadir (laanwj)
|
||||
- #8908 `4a974b2` Update bitcoin-qt.desktop (s-matthew-english)
|
||||
- #9190 `dc46b10` Plug many memory leaks (laanwj)
|
||||
|
||||
### Wallet
|
||||
- #9290 `35174a0` Make RelayWalletTransaction attempt to AcceptToMemoryPool (gmaxwell)
|
||||
- #9295 `43bcfca` Bugfix: Fundrawtransaction: don't terminate when keypool is empty (jonasschnelli)
|
||||
- #9302 `f5d606e` Return txid even if ATMP fails for new transaction (sipa)
|
||||
- #9262 `fe39f26` Prefer coins that have fewer ancestors, sanity check txn before ATMP (instagibbs)
|
||||
|
||||
### Tests and QA
|
||||
- #9159 `eca9b46` Wait for specific block announcement in p2p-compactblocks (ryanofsky)
|
||||
- #9186 `dccdc3a` Fix use-after-free in scheduler tests (laanwj)
|
||||
- #9168 `3107280` Add assert_raises_message to check specific error message (mrbandrews)
|
||||
- #9191 `29435db` 0.13.2 Backports (MarcoFalke)
|
||||
- #9077 `1d4c884` Increase wallet-dump RPC timeout (ryanofsky)
|
||||
- #9098 `ecd7db5` Handle zombies and cluttered tmpdirs (MarcoFalke)
|
||||
- #8927 `387ec9d` Add script tests for FindAndDelete in pre-segwit and segwit scripts (jl2012)
|
||||
- #9200 `eebc699` bench: Fix subtle counting issue when rescaling iteration count (laanwj)
|
||||
|
||||
### Miscellaneous
|
||||
- #8838 `094848b` Calculate size and weight of block correctly in CreateNewBlock() (jnewbery)
|
||||
- #8920 `40169dc` Set minimum required Boost to 1.47.0 (fanquake)
|
||||
- #9251 `a710a43` Improvement of documentation of command line parameter 'whitelist' (wodry)
|
||||
- #8932 `106da69` Allow bitcoin-tx to create v2 transactions (btcdrak)
|
||||
- #8929 `12428b4` add software-properties-common (sigwo)
|
||||
- #9120 `08d1c90` bug: Missed one "return false" in recent refactoring in #9067 (UdjinM6)
|
||||
- #9067 `f85ee01` Fix exit codes (UdjinM6)
|
||||
- #9340 `fb987b3` [0.13] Update secp256k1 subtree (MarcoFalke)
|
||||
- #9229 `b172377` Remove calls to getaddrinfo_a (TheBlueMatt)
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Thanks to everyone who directly contributed to this release:
|
||||
|
||||
- Alex Morcos
|
||||
- BtcDrak
|
||||
- Cory Fields
|
||||
- fanquake
|
||||
- Gregory Maxwell
|
||||
- Gregory Sanders
|
||||
- instagibbs
|
||||
- Ivo van der Sangen
|
||||
- jnewbery
|
||||
- Johnson Lau
|
||||
- Jonas Schnelli
|
||||
- Luke Dashjr
|
||||
- maiiz
|
||||
- MarcoFalke
|
||||
- Masahiko Hyuga
|
||||
- Matt Corallo
|
||||
- matthias
|
||||
- mrbandrews
|
||||
- Pavel Janík
|
||||
- Pieter Wuille
|
||||
- randy-waterhouse
|
||||
- Russell Yanofsky
|
||||
- S. Matthew English
|
||||
- Steven
|
||||
- Suhas Daftuar
|
||||
- UdjinM6
|
||||
- Wladimir J. van der Laan
|
||||
- wodry
|
||||
|
||||
As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/).
|
||||
|
||||
{% endgithubify %}
|
|
@ -74,15 +74,15 @@ id: community
|
|||
<a href="https://bitcoin.asn.au/">Bitcoin Australia</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h3 id="austria"><img src="/img/flags/AT.png" alt="Austrian flag">Austria</h3>
|
||||
<p>
|
||||
<a href="http://bitcoin-austria.at/">Bitcoin Austria</a>
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h3 id="belgium"><img src="/img/flags/BE.png" alt="Belgian flag">Belgium</h3>
|
||||
<p>
|
||||
<a href="http://www.bitcoinassociation.be/">Belgian Bitcoin Association</a>
|
||||
|
@ -95,14 +95,14 @@ id: community
|
|||
<a href="http://www.bitcoinalliance.ca/">Bitcoin Alliance of Canada</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h3 id="denmark"><img src="/img/flags/DK.png" alt="Danish flag">Denmark</h3>
|
||||
<p>
|
||||
<a href="http://www.danskbitcoinforening.dk/">Dansk Bitcoinforening</a><br>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h3 id="france"><img src="/img/flags/FR.png" alt="French flag">France</h3>
|
||||
<p>
|
||||
|
@ -115,14 +115,14 @@ id: community
|
|||
<a href="http://www.bundesverband-bitcoin.de/">Bundesverband Bitcoin e.V.</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h3 id="india"><img src="/img/flags/IN.png" alt="Indian flag">India</h3>
|
||||
<p>
|
||||
<a href="http://www.bitcoinalliance.in/">Bitcoin Alliance of India</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h3 id="ireland"><img src="/img/flags/IE.png" alt="Irish flag">Ireland</h3>
|
||||
<p>
|
||||
|
@ -135,14 +135,14 @@ id: community
|
|||
<a href="http://www.bitcoin.org.il/">איגוד הביטקוין הישראלי</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h3 id="italy"><img src="/img/flags/IT.png" alt="Italian flag">Italy</h3>
|
||||
<p>
|
||||
<a href="https://www.bitcoin-italia.org/">Bitcoin Foundation Italia</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h3 id="netherlands"><img src="/img/flags/NL.png" alt="Dutch flag">Netherlands</h3>
|
||||
<p>
|
||||
|
@ -150,8 +150,6 @@ id: community
|
|||
<a href="https://bitcoinembassy.nl/">Bitcoin Embassy Amsterdam</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h3 id="philippines"><img src="/img/flags/PH.png" alt="Philippine flag">Philippines</h3>
|
||||
<p>
|
||||
|
@ -164,14 +162,14 @@ id: community
|
|||
<a href="http://www.bitcoin.org.pl/">Polish Bitcoin Association</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h3 id="romania"><img src="/img/flags/RO.png" alt="Romanian flag">Romania</h3>
|
||||
<p>
|
||||
<a href="http://fundatiabitcoin.ro/">Fundatia Bitcoin Romania</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h3 id="russia"><img src="/img/flags/RU.png" alt="Russian flag">Russia</h3>
|
||||
<p>
|
||||
|
@ -184,14 +182,14 @@ id: community
|
|||
<a href="http://www.bitcoinua.org/">Bitcoin Foundation Ukraine</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h3 id="slovenia"><img src="/img/flags/SI.png" alt="Slovenian flag">Slovenia</h3>
|
||||
<p>
|
||||
<a href="http://bitcoin.si/">Bitcoin Društvo Slovenije</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h3 id="sweden"><img src="/img/flags/SE.png" alt="Swedish flag">Sweden</h3>
|
||||
<p>
|
||||
|
|
|
@ -10,11 +10,16 @@ id: resources
|
|||
|
||||
<div class="resources">
|
||||
<div>
|
||||
<div>
|
||||
<h2 id="useful"><img src="/img/icons/ico_simple.svg" class="titleicon" alt="Icon">{% translate useful %}</h2>
|
||||
<div>
|
||||
<h2 id="learn"><img src="/img/icons/ico_solve.svg" class="titleicon" alt="Icon">{% translate learn %}</h2>
|
||||
<p>{% translate linkwiki %}</p>
|
||||
{% if page.lang == 'fr' %}<p><a href="https://openclassrooms.com/courses/comprendre-le-bitcoin-et-la-blockchain">OpenClassrooms</a></p>{% endif %}
|
||||
<p><a href="https://www.khanacademy.org/economics-finance-domain/core-finance/money-and-banking/bitcoin/v/bitcoin-what-is-it">Khan Academy</a></p>
|
||||
<p><a href="http://letstalkbitcoin.com/">Let's Talk Bitcoin</a></p>
|
||||
<p><a href="http://www.bitcoin.kn/">Bitcoin Knowledge Podcast</a></p>
|
||||
<p><a href="https://www.weusecoins.com/">WeUseCoins.com</a></p>
|
||||
<p><a href="http://www.bitcoinmining.com/">BitcoinMining.com</a></p>
|
||||
<p><a href="http://www.iamsatoshi.com/category/video-archive/">IamSatoshi</a></p>
|
||||
</div><div>
|
||||
<h2 id="directories"><img src="/img/icons/ico_invoice.svg" class="titleicon" alt="Icon">{% translate directories %}</h2>
|
||||
<p><a href="/{{ page.lang }}/{% translate choose-your-wallet url %}">{% translate linkwallets %}</a> - bitcoin.org</p>
|
||||
|
@ -54,12 +59,10 @@ id: resources
|
|||
<p><a href="http://iamsatoshi.com/">Ulterior States</a></p>
|
||||
<p><a href="https://www.youtube.com/watch?v=6pWblf8COH4">The Bitcoin Phenomenon</a></p>
|
||||
</div><div>
|
||||
<h2 id="learn"><img src="/img/icons/ico_solve.svg" class="titleicon" alt="Icon">{% translate learn %}</h2>
|
||||
{% if page.lang == 'fr' %}<p><a href="https://openclassrooms.com/courses/comprendre-le-bitcoin-et-la-blockchain">OpenClassrooms</a></p>{% endif %}
|
||||
<p><a href="http://letstalkbitcoin.com/">Let's Talk Bitcoin</a></p>
|
||||
<p><a href="http://www.bitcoin.kn/">Bitcoin Knowledge Podcast</a></p>
|
||||
<p><a href="https://www.khanacademy.org/economics-finance-domain/core-finance/money-and-banking/bitcoin/v/bitcoin-what-is-it">Khan Academy</a></p>
|
||||
<p><a href="http://www.iamsatoshi.com/category/video-archive/">IamSatoshi</a></p>
|
||||
<h2 id="vouchers"><img src="/img/icons/ico_voucher.svg" class="titleicon" alt="Icon">{% translate vouchers %}</h2>
|
||||
<p><a href="https://foldapp.com/">Fold</a></p>
|
||||
<p><a href="https://gyft.com/bitcoin/">Gyft</a></p>
|
||||
<p><a href="https://opendime.com/">Opendime</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -690,7 +690,6 @@ en:
|
|||
title: "Resources - Bitcoin"
|
||||
pagetitle: "Bitcoin resources"
|
||||
pagedesc: "Find useful websites and resources about Bitcoin."
|
||||
useful: "Useful places"
|
||||
linkwiki: "<a href=\"https://en.bitcoin.it/\">Bitcoin Wiki</a>"
|
||||
linkcointelegraph: "<a href=\"http://cointelegraph.com/\">CoinTelegraph</a>"
|
||||
directories: "Directories"
|
||||
|
@ -703,6 +702,7 @@ en:
|
|||
news: "News"
|
||||
documentaries: "Documentaries"
|
||||
learn: "Learning resources"
|
||||
vouchers: "Vouchers"
|
||||
secure-your-wallet:
|
||||
title: "Securing your wallet - Bitcoin"
|
||||
pagetitle: "Securing your wallet"
|
||||
|
|
|
@ -1287,6 +1287,26 @@ If you have any questions about configuring Bitcoin Core, please stop by
|
|||
one of our [forums](/en/bitcoin-core/help#forums) or [live
|
||||
chatrooms](/en/bitcoin-core/help#live).
|
||||
|
||||
### Reduce Storage
|
||||
|
||||
It is possible to configure your node to to run in pruned mode in order to
|
||||
reduce storage requirements. This can reduce the disk usage from over 100GB to
|
||||
around 2GB.
|
||||
|
||||
Running a node in pruned mode is incompatible with `-txindex` and `-rescan`. It
|
||||
also disables the RPC `importwallet`. Two RPCs that are available and
|
||||
potentially helpful, however, are `importprunedfunds` and `removeprunedfunds`.
|
||||
|
||||
To enable block pruning set `prune=N` on the command line or in `bitcoin.conf`,
|
||||
where `N` is the number of MiB to allot for raw block and undo data.
|
||||
|
||||
A value of `0` disables pruning. The minimal value above `0` is `550`. Your
|
||||
wallet is as secure with high values as it is with low ones. Higher values
|
||||
merely ensure that your node will not shut down upon blockchain reorganizations
|
||||
of more than 2 days - which are unlikely to happen in practice. In future
|
||||
releases, a higher value may also help the network as a whole because stored
|
||||
blocks could be served to other nodes.
|
||||
|
||||
### Reduce Traffic
|
||||
|
||||
Some node operators need to deal with bandwith caps imposed by their ISPs.
|
||||
|
|
BIN
img/icons/ico_voucher.png
Normal file
BIN
img/icons/ico_voucher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 680 B |
8
img/icons/ico_voucher.svg
Normal file
8
img/icons/ico_voucher.svg
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32">
|
||||
<g>
|
||||
<path d="M18.888 7.486l-7.189 3.617-9.064 11.967 10.225 7.457 8.886-12.413.893-8.261z" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M20.529 11.243a1.457 1.457 0 1 1-2.914 0 1.457 1.457 0 1 1 2.914 0z" transform="matrix(1.315 0 0 1.315 -5.659 -4.179)" opacity=".99" fill="#fff"/>
|
||||
<path d="M19.812 9.938s1.694-3.01 2.925-4.185c1.344-1.281 2.709.216 5.262-1.786" stroke="#000" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 616 B |
Loading…
Add table
Add a link
Reference in a new issue