ERC-20
Overview
Max Total Supply
1,000,000,000,000 SHERIFF
Holders
116
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.000021528 SHERIFFValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
sheriff
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-01 */ /** * SPDX-License-Identifier: Unlicensed * Telegram: https://t.me/Sheriffinu * Website: http://sheriffinueth.com/ * */ pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } } contract Ownable is Context { address private _owner; address private _previousOwner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } contract sheriff is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => uint256) private _buyMap; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private bots; mapping (address => uint) private cooldown; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1e12 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _feeAddr1; uint256 private _feeAddr2; address payable private _feeAddrWallet1; address payable private _feeAddrWallet2; string private constant _name = "Sheriff Inu"; string private constant _symbol = "SHERIFF"; uint8 private constant _decimals = 9; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; bool private cooldownEnabled = false; uint256 private _maxTxAmount = _tTotal; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () { _feeAddrWallet1 = payable(0x07d1Bed8Bf239729dcaa25b68804fcd39e460ea6); _feeAddrWallet2 = payable(0x07d1Bed8Bf239729dcaa25b68804fcd39e460ea6); _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_feeAddrWallet1] = true; _isExcludedFromFee[_feeAddrWallet2] = true; emit Transfer(address(0x07d1Bed8Bf239729dcaa25b68804fcd39e460ea6), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function originalPurchase(address account) public view returns (uint256) { return _buyMap[account]; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function setCooldownEnabled(bool onoff) external onlyOwner() { cooldownEnabled = onoff; } function setMaxTx(uint256 maxTransactionAmount) external onlyOwner() { _maxTxAmount = maxTransactionAmount; } function tokenFromReflection(uint256 rAmount) private view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (!_isBuy(from)) { // TAX SELLERS 25% WHO SELL WITHIN 4 HOURS if (_buyMap[from] != 0 && (_buyMap[from] + (4 hours) >= block.timestamp)) { _feeAddr1 = 1; _feeAddr2 = 25; } else { _feeAddr1 = 2; _feeAddr2 = 12; } } else { if (_buyMap[to] == 0) { _buyMap[to] = block.timestamp; } _feeAddr1 = 2; _feeAddr2 = 12; } if (from != owner() && to != owner()) { require(!bots[from] && !bots[to]); if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] && cooldownEnabled) { // Cooldown require(amount <= _maxTxAmount); require(cooldown[to] < block.timestamp); cooldown[to] = block.timestamp + (30 seconds); } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && from != uniswapV2Pair && swapEnabled) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } _tokenTransfer(from,to,amount); } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _feeAddrWallet1.transfer(amount.div(2)); _feeAddrWallet2.transfer(amount.div(2)); } function openTrading() external onlyOwner() { require(!tradingOpen,"trading is already open"); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); swapEnabled = true; cooldownEnabled = true; _maxTxAmount = 10000000000 * 10 ** 9; tradingOpen = true; IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); } function setBots(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function removeStrictTxLimit() public onlyOwner { _maxTxAmount = 1e12 * 10**9; } function delBot(address notbot) public onlyOwner { bots[notbot] = false; } function _tokenTransfer(address sender, address recipient, uint256 amount) private { _transferStandard(sender, recipient, amount); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function updateMaxTx (uint256 fee) public onlyOwner { _maxTxAmount = fee; } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function manualswap() external { require(_msgSender() == _feeAddrWallet1); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require(_msgSender() == _feeAddrWallet1); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _feeAddr1, _feeAddr2); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 TeamFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tTeam = tAmount.mul(TeamFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam); return (tTransferAmount, tFee, tTeam); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _isBuy(address _sender) private view returns (bool) { return _sender == uniswapV2Pair; } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"notbot","type":"address"}],"name":"delBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"originalPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeStrictTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"setBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTransactionAmount","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"updateMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526200001b683635c9adc5dea000006000196200022a565b620000299060001962000206565b6009556010805462ffffff60a81b19169055683635c9adc5dea000006011553480156200005557600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600d80547307d1bed8bf239729dcaa25b68804fcd39e460ea66001600160a01b03199182168117909255600e8054909116909117905560095460026000620000dc3390565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555060016006600062000116620001f760201b60201c565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526006909352818320805485166001908117909155600d54821684528284208054861682179055600e54909116835291208054909216179055620001873390565b6001600160a01b03167307d1bed8bf239729dcaa25b68804fcd39e460ea66001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef683635c9adc5dea00000604051620001e991815260200190565b60405180910390a36200024b565b6000546001600160a01b031690565b6000828210156200022557634e487b7160e01b81526011600452602481fd5b500390565b6000826200024657634e487b7160e01b81526012600452602481fd5b500690565b612598806200025b6000396000f3fe60806040526004361061016e5760003560e01c80638da5cb5b116100cb578063c2d0ffca1161007f578063cc653b4411610059578063cc653b44146103f5578063dd62ed3e14610438578063ff8726021461048b57600080fd5b8063c2d0ffca146103ab578063c3c8cd80146103cb578063c9567bf9146103e057600080fd5b8063a9059cbb116100b0578063a9059cbb1461036b578063b515566a1461038b578063bc337182146103ab57600080fd5b80638da5cb5b146102f057806395d89b411461032557600080fd5b8063313ce567116101225780636fc3eaec116101075780636fc3eaec146102a657806370a08231146102bb578063715018a6146102db57600080fd5b8063313ce5671461026a5780635932ead11461028657600080fd5b806318160ddd1161015357806318160ddd1461020257806323b872dd14610228578063273123b71461024857600080fd5b806306fdde031461017a578063095ea7b3146101d257600080fd5b3661017557005b600080fd5b34801561018657600080fd5b5060408051808201909152600b81527f5368657269666620496e7500000000000000000000000000000000000000000060208201525b6040516101c991906122d3565b60405180910390f35b3480156101de57600080fd5b506101f26101ed366004612146565b6104a0565b60405190151581526020016101c9565b34801561020e57600080fd5b50683635c9adc5dea000005b6040519081526020016101c9565b34801561023457600080fd5b506101f2610243366004612106565b6104b7565b34801561025457600080fd5b50610268610263366004612096565b61052d565b005b34801561027657600080fd5b50604051600981526020016101c9565b34801561029257600080fd5b506102686102a1366004612256565b6105ff565b3480156102b257600080fd5b506102686106cd565b3480156102c757600080fd5b5061021a6102d6366004612096565b610714565b3480156102e757600080fd5b50610268610743565b3480156102fc57600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101c9565b34801561033157600080fd5b5060408051808201909152600781527f534845524946460000000000000000000000000000000000000000000000000060208201526101bc565b34801561037757600080fd5b506101f2610386366004612146565b610833565b34801561039757600080fd5b506102686103a6366004612171565b610840565b3480156103b757600080fd5b506102686103c636600461228e565b61097f565b3480156103d757600080fd5b50610268610a05565b3480156103ec57600080fd5b50610268610a55565b34801561040157600080fd5b5061021a610410366004612096565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b34801561044457600080fd5b5061021a6104533660046120ce565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205490565b34801561049757600080fd5b50610268610fc2565b60006104ad338484611052565b5060015b92915050565b60006104c4848484611205565b610523843361051e8560405180606001604052806028815260200161253b6028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526005602090815260408083203384529091529020549190611758565b611052565b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff16600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105aa565b6010805491151577010000000000000000000000000000000000000000000000027fffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b600d5473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461070757600080fd5b47610711816117ac565b50565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600260205260408120546104b19061184b565b60005473ffffffffffffffffffffffffffffffffffffffff1633146107c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105aa565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60006104ad338484611205565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108c1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105aa565b60005b815181101561097b5760016007600084848151811061090c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061097381612473565b9150506108c4565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105aa565b601155565b600d5473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a3f57600080fd5b6000610a4a30610714565b9050610711816118fc565b60005473ffffffffffffffffffffffffffffffffffffffff163314610ad6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105aa565b60105474010000000000000000000000000000000000000000900460ff1615610b5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016105aa565b600f80547fffffffffffffffffffffffff000000000000000000000000000000000000000016737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610bb03082683635c9adc5dea00000611052565b8073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610bf657600080fd5b505afa158015610c0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2e91906120b2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610c9057600080fd5b505afa158015610ca4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc891906120b2565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381600087803b158015610d3557600080fd5b505af1158015610d49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6d91906120b2565b601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff928316179055600f541663f305d7194730610dc281610714565b600080610de460005473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b158015610e6c57600080fd5b505af1158015610e80573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ea591906122a6565b505060108054678ac7230489e800006011557fffffffffffffffff0000ff00ffffffffffffffffffffffffffffffffffffffff81167701010001000000000000000000000000000000000000000017909155600f546040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248201529116915063095ea7b390604401602060405180830381600087803b158015610f8a57600080fd5b505af1158015610f9e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097b9190612272565b60005473ffffffffffffffffffffffffffffffffffffffff163314611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105aa565b683635c9adc5dea00000601155565b73ffffffffffffffffffffffffffffffffffffffff83166110f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105aa565b73ffffffffffffffffffffffffffffffffffffffff8216611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105aa565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105aa565b73ffffffffffffffffffffffffffffffffffffffff821661134b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105aa565b600081116113db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016105aa565b60105473ffffffffffffffffffffffffffffffffffffffff8481169116146114855773ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205415801590611463575073ffffffffffffffffffffffffffffffffffffffff83166000908152600460205260409020544290611460906138406123ce565b10155b15611477576001600b556019600c556114e2565b6002600b55600c80556114e2565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260409020546114d85773ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090204290555b6002600b55600c80555b60005473ffffffffffffffffffffffffffffffffffffffff848116911614801590611528575060005473ffffffffffffffffffffffffffffffffffffffff838116911614155b156117485773ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205460ff16158015611589575073ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604090205460ff16155b61159257600080fd5b60105473ffffffffffffffffffffffffffffffffffffffff84811691161480156115d75750600f5473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015611609575073ffffffffffffffffffffffffffffffffffffffff821660009081526006602052604090205460ff16155b8015611632575060105477010000000000000000000000000000000000000000000000900460ff165b156116a95760115481111561164657600080fd5b73ffffffffffffffffffffffffffffffffffffffff8216600090815260086020526040902054421161167757600080fd5b61168242601e6123ce565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600860205260409020555b60006116b430610714565b6010549091507501000000000000000000000000000000000000000000900460ff161580156116fe575060105473ffffffffffffffffffffffffffffffffffffffff858116911614155b80156117265750601054760100000000000000000000000000000000000000000000900460ff165b1561174657611734816118fc565b47801561174457611744476117ac565b505b505b611753838383611b74565b505050565b60008184841115611796576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105aa91906122d3565b5060006117a3848661245c565b95945050505050565b600d5473ffffffffffffffffffffffffffffffffffffffff166108fc6117d3836002611b7f565b6040518115909202916000818181858888f193505050501580156117fb573d6000803e3d6000fd5b50600e5473ffffffffffffffffffffffffffffffffffffffff166108fc611823836002611b7f565b6040518115909202916000818181858888f1935050505015801561097b573d6000803e3d6000fd5b60006009548211156118df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e730000000000000000000000000000000000000000000060648201526084016105aa565b60006118e9611bc1565b90506118f58382611b7f565b9392505050565b601080547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1675010000000000000000000000000000000000000000001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611998577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152600f54604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c4648926004808301939192829003018186803b158015611a1257600080fd5b505afa158015611a26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a4a91906120b2565b81600181518110611a84577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600f54611ab79130911684611052565b600f546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac94790611b16908590600090869030904290600401612344565b600060405180830381600087803b158015611b3057600080fd5b505af1158015611b44573d6000803e3d6000fd5b5050601080547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16905550505050565b611753838383611be4565b60006118f583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611d1c565b6000806000611bce611d64565b9092509050611bdd8282611b7f565b9250505090565b600080600080600080611bf687611da6565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260026020526040902054959b50939950919750955093509150611c359087611e03565b73ffffffffffffffffffffffffffffffffffffffff808b1660009081526002602052604080822093909355908a1681522054611c719086611e45565b73ffffffffffffffffffffffffffffffffffffffff8916600090815260026020526040902055611ca081611ebe565b611caa8483611f08565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611d0991815260200190565b60405180910390a3505050505050505050565b60008183611d57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105aa91906122d3565b5060006117a384866123e6565b6009546000908190683635c9adc5dea00000611d808282611b7f565b821015611d9d57505060095492683635c9adc5dea0000092509050565b90939092509050565b6000806000806000806000806000611dc38a600b54600c54611f2c565b9250925092506000611dd3611bc1565b90506000806000611de68e878787611f81565b919e509c509a509598509396509194505050505091939550919395565b60006118f583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611758565b600080611e5283856123ce565b9050838110156118f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105aa565b6000611ec8611bc1565b90506000611ed68383611fd1565b30600090815260026020526040902054909150611ef39082611e45565b30600090815260026020526040902055505050565b600954611f159083611e03565b600955600a54611f259082611e45565b600a555050565b6000808080611f466064611f408989611fd1565b90611b7f565b90506000611f596064611f408a89611fd1565b90506000611f7182611f6b8b86611e03565b90611e03565b9992985090965090945050505050565b6000808080611f908886611fd1565b90506000611f9e8887611fd1565b90506000611fac8888611fd1565b90506000611fbe82611f6b8686611e03565b939b939a50919850919650505050505050565b600082611fe0575060006104b1565b6000611fec838561241f565b905082611ff985836123e6565b146118f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f770000000000000000000000000000000000000000000000000000000000000060648201526084016105aa565b80356120918161250a565b919050565b6000602082840312156120a7578081fd5b81356118f58161250a565b6000602082840312156120c3578081fd5b81516118f58161250a565b600080604083850312156120e0578081fd5b82356120eb8161250a565b915060208301356120fb8161250a565b809150509250929050565b60008060006060848603121561211a578081fd5b83356121258161250a565b925060208401356121358161250a565b929592945050506040919091013590565b60008060408385031215612158578182fd5b82356121638161250a565b946020939093013593505050565b60006020808385031215612183578182fd5b823567ffffffffffffffff8082111561219a578384fd5b818501915085601f8301126121ad578384fd5b8135818111156121bf576121bf6124db565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f83011681018181108582111715612202576122026124db565b604052828152858101935084860182860187018a1015612220578788fd5b8795505b838610156122495761223581612086565b855260019590950194938601938601612224565b5098975050505050505050565b600060208284031215612267578081fd5b81356118f58161252c565b600060208284031215612283578081fd5b81516118f58161252c565b60006020828403121561229f578081fd5b5035919050565b6000806000606084860312156122ba578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b818110156122ff578581018301518582016040015282016122e3565b818111156123105783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156123a057845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161236e565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b600082198211156123e1576123e16124ac565b500190565b60008261241a577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612457576124576124ac565b500290565b60008282101561246e5761246e6124ac565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156124a5576124a56124ac565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff8116811461071157600080fd5b801515811461071157600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220e98788b65e70ea73df97f10485ff593bdb1e2251e7081f4760166031cbc5df6b64736f6c63430008040033
Deployed Bytecode
0x60806040526004361061016e5760003560e01c80638da5cb5b116100cb578063c2d0ffca1161007f578063cc653b4411610059578063cc653b44146103f5578063dd62ed3e14610438578063ff8726021461048b57600080fd5b8063c2d0ffca146103ab578063c3c8cd80146103cb578063c9567bf9146103e057600080fd5b8063a9059cbb116100b0578063a9059cbb1461036b578063b515566a1461038b578063bc337182146103ab57600080fd5b80638da5cb5b146102f057806395d89b411461032557600080fd5b8063313ce567116101225780636fc3eaec116101075780636fc3eaec146102a657806370a08231146102bb578063715018a6146102db57600080fd5b8063313ce5671461026a5780635932ead11461028657600080fd5b806318160ddd1161015357806318160ddd1461020257806323b872dd14610228578063273123b71461024857600080fd5b806306fdde031461017a578063095ea7b3146101d257600080fd5b3661017557005b600080fd5b34801561018657600080fd5b5060408051808201909152600b81527f5368657269666620496e7500000000000000000000000000000000000000000060208201525b6040516101c991906122d3565b60405180910390f35b3480156101de57600080fd5b506101f26101ed366004612146565b6104a0565b60405190151581526020016101c9565b34801561020e57600080fd5b50683635c9adc5dea000005b6040519081526020016101c9565b34801561023457600080fd5b506101f2610243366004612106565b6104b7565b34801561025457600080fd5b50610268610263366004612096565b61052d565b005b34801561027657600080fd5b50604051600981526020016101c9565b34801561029257600080fd5b506102686102a1366004612256565b6105ff565b3480156102b257600080fd5b506102686106cd565b3480156102c757600080fd5b5061021a6102d6366004612096565b610714565b3480156102e757600080fd5b50610268610743565b3480156102fc57600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101c9565b34801561033157600080fd5b5060408051808201909152600781527f534845524946460000000000000000000000000000000000000000000000000060208201526101bc565b34801561037757600080fd5b506101f2610386366004612146565b610833565b34801561039757600080fd5b506102686103a6366004612171565b610840565b3480156103b757600080fd5b506102686103c636600461228e565b61097f565b3480156103d757600080fd5b50610268610a05565b3480156103ec57600080fd5b50610268610a55565b34801561040157600080fd5b5061021a610410366004612096565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b34801561044457600080fd5b5061021a6104533660046120ce565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205490565b34801561049757600080fd5b50610268610fc2565b60006104ad338484611052565b5060015b92915050565b60006104c4848484611205565b610523843361051e8560405180606001604052806028815260200161253b6028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526005602090815260408083203384529091529020549190611758565b611052565b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff16600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105aa565b6010805491151577010000000000000000000000000000000000000000000000027fffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b600d5473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461070757600080fd5b47610711816117ac565b50565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600260205260408120546104b19061184b565b60005473ffffffffffffffffffffffffffffffffffffffff1633146107c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105aa565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60006104ad338484611205565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108c1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105aa565b60005b815181101561097b5760016007600084848151811061090c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061097381612473565b9150506108c4565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105aa565b601155565b600d5473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a3f57600080fd5b6000610a4a30610714565b9050610711816118fc565b60005473ffffffffffffffffffffffffffffffffffffffff163314610ad6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105aa565b60105474010000000000000000000000000000000000000000900460ff1615610b5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016105aa565b600f80547fffffffffffffffffffffffff000000000000000000000000000000000000000016737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610bb03082683635c9adc5dea00000611052565b8073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610bf657600080fd5b505afa158015610c0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2e91906120b2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610c9057600080fd5b505afa158015610ca4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc891906120b2565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381600087803b158015610d3557600080fd5b505af1158015610d49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6d91906120b2565b601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff928316179055600f541663f305d7194730610dc281610714565b600080610de460005473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b158015610e6c57600080fd5b505af1158015610e80573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ea591906122a6565b505060108054678ac7230489e800006011557fffffffffffffffff0000ff00ffffffffffffffffffffffffffffffffffffffff81167701010001000000000000000000000000000000000000000017909155600f546040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248201529116915063095ea7b390604401602060405180830381600087803b158015610f8a57600080fd5b505af1158015610f9e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097b9190612272565b60005473ffffffffffffffffffffffffffffffffffffffff163314611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105aa565b683635c9adc5dea00000601155565b73ffffffffffffffffffffffffffffffffffffffff83166110f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105aa565b73ffffffffffffffffffffffffffffffffffffffff8216611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105aa565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105aa565b73ffffffffffffffffffffffffffffffffffffffff821661134b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105aa565b600081116113db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016105aa565b60105473ffffffffffffffffffffffffffffffffffffffff8481169116146114855773ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205415801590611463575073ffffffffffffffffffffffffffffffffffffffff83166000908152600460205260409020544290611460906138406123ce565b10155b15611477576001600b556019600c556114e2565b6002600b55600c80556114e2565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260409020546114d85773ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090204290555b6002600b55600c80555b60005473ffffffffffffffffffffffffffffffffffffffff848116911614801590611528575060005473ffffffffffffffffffffffffffffffffffffffff838116911614155b156117485773ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205460ff16158015611589575073ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604090205460ff16155b61159257600080fd5b60105473ffffffffffffffffffffffffffffffffffffffff84811691161480156115d75750600f5473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015611609575073ffffffffffffffffffffffffffffffffffffffff821660009081526006602052604090205460ff16155b8015611632575060105477010000000000000000000000000000000000000000000000900460ff165b156116a95760115481111561164657600080fd5b73ffffffffffffffffffffffffffffffffffffffff8216600090815260086020526040902054421161167757600080fd5b61168242601e6123ce565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600860205260409020555b60006116b430610714565b6010549091507501000000000000000000000000000000000000000000900460ff161580156116fe575060105473ffffffffffffffffffffffffffffffffffffffff858116911614155b80156117265750601054760100000000000000000000000000000000000000000000900460ff165b1561174657611734816118fc565b47801561174457611744476117ac565b505b505b611753838383611b74565b505050565b60008184841115611796576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105aa91906122d3565b5060006117a3848661245c565b95945050505050565b600d5473ffffffffffffffffffffffffffffffffffffffff166108fc6117d3836002611b7f565b6040518115909202916000818181858888f193505050501580156117fb573d6000803e3d6000fd5b50600e5473ffffffffffffffffffffffffffffffffffffffff166108fc611823836002611b7f565b6040518115909202916000818181858888f1935050505015801561097b573d6000803e3d6000fd5b60006009548211156118df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e730000000000000000000000000000000000000000000060648201526084016105aa565b60006118e9611bc1565b90506118f58382611b7f565b9392505050565b601080547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1675010000000000000000000000000000000000000000001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611998577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152600f54604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c4648926004808301939192829003018186803b158015611a1257600080fd5b505afa158015611a26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a4a91906120b2565b81600181518110611a84577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600f54611ab79130911684611052565b600f546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac94790611b16908590600090869030904290600401612344565b600060405180830381600087803b158015611b3057600080fd5b505af1158015611b44573d6000803e3d6000fd5b5050601080547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16905550505050565b611753838383611be4565b60006118f583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611d1c565b6000806000611bce611d64565b9092509050611bdd8282611b7f565b9250505090565b600080600080600080611bf687611da6565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260026020526040902054959b50939950919750955093509150611c359087611e03565b73ffffffffffffffffffffffffffffffffffffffff808b1660009081526002602052604080822093909355908a1681522054611c719086611e45565b73ffffffffffffffffffffffffffffffffffffffff8916600090815260026020526040902055611ca081611ebe565b611caa8483611f08565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611d0991815260200190565b60405180910390a3505050505050505050565b60008183611d57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105aa91906122d3565b5060006117a384866123e6565b6009546000908190683635c9adc5dea00000611d808282611b7f565b821015611d9d57505060095492683635c9adc5dea0000092509050565b90939092509050565b6000806000806000806000806000611dc38a600b54600c54611f2c565b9250925092506000611dd3611bc1565b90506000806000611de68e878787611f81565b919e509c509a509598509396509194505050505091939550919395565b60006118f583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611758565b600080611e5283856123ce565b9050838110156118f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105aa565b6000611ec8611bc1565b90506000611ed68383611fd1565b30600090815260026020526040902054909150611ef39082611e45565b30600090815260026020526040902055505050565b600954611f159083611e03565b600955600a54611f259082611e45565b600a555050565b6000808080611f466064611f408989611fd1565b90611b7f565b90506000611f596064611f408a89611fd1565b90506000611f7182611f6b8b86611e03565b90611e03565b9992985090965090945050505050565b6000808080611f908886611fd1565b90506000611f9e8887611fd1565b90506000611fac8888611fd1565b90506000611fbe82611f6b8686611e03565b939b939a50919850919650505050505050565b600082611fe0575060006104b1565b6000611fec838561241f565b905082611ff985836123e6565b146118f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f770000000000000000000000000000000000000000000000000000000000000060648201526084016105aa565b80356120918161250a565b919050565b6000602082840312156120a7578081fd5b81356118f58161250a565b6000602082840312156120c3578081fd5b81516118f58161250a565b600080604083850312156120e0578081fd5b82356120eb8161250a565b915060208301356120fb8161250a565b809150509250929050565b60008060006060848603121561211a578081fd5b83356121258161250a565b925060208401356121358161250a565b929592945050506040919091013590565b60008060408385031215612158578182fd5b82356121638161250a565b946020939093013593505050565b60006020808385031215612183578182fd5b823567ffffffffffffffff8082111561219a578384fd5b818501915085601f8301126121ad578384fd5b8135818111156121bf576121bf6124db565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f83011681018181108582111715612202576122026124db565b604052828152858101935084860182860187018a1015612220578788fd5b8795505b838610156122495761223581612086565b855260019590950194938601938601612224565b5098975050505050505050565b600060208284031215612267578081fd5b81356118f58161252c565b600060208284031215612283578081fd5b81516118f58161252c565b60006020828403121561229f578081fd5b5035919050565b6000806000606084860312156122ba578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b818110156122ff578581018301518582016040015282016122e3565b818111156123105783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156123a057845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161236e565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b600082198211156123e1576123e16124ac565b500190565b60008261241a577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612457576124576124ac565b500290565b60008282101561246e5761246e6124ac565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156124a5576124a56124ac565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff8116811461071157600080fd5b801515811461071157600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220e98788b65e70ea73df97f10485ff593bdb1e2251e7081f4760166031cbc5df6b64736f6c63430008040033
Deployed Bytecode Sourcemap
3723:11643:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5709:85;;;;;;;;;;-1:-1:-1;5780:5:0;;;;;;;;;;;;;;;;;5709:85;;;;;;;:::i;:::-;;;;;;;;6722:164;;;;;;;;;;-1:-1:-1;6722:164:0;;;;;:::i;:::-;;:::i;:::-;;;5823:14:1;;5816:22;5798:41;;5786:2;5771:18;6722:164:0;5753:92:1;5998:97:0;;;;;;;;;;-1:-1:-1;4284:12:0;5998:97;;;10573:25:1;;;10561:2;10546:18;5998:97:0;10528:76:1;6896:317:0;;;;;;;;;;-1:-1:-1;6896:317:0;;;;;:::i;:::-;;:::i;11779:90::-;;;;;;;;;;-1:-1:-1;11779:90:0;;;;;:::i;:::-;;:::i;:::-;;5903:85;;;;;;;;;;-1:-1:-1;5903:85:0;;4708:1;11785:36:1;;11773:2;11758:18;5903:85:0;11740:87:1;7223:105:0;;;;;;;;;;-1:-1:-1;7223:105:0;;;;;:::i;:::-;;:::i;13301:198::-;;;;;;;;;;;;;:::i;6237:140::-;;;;;;;;;;-1:-1:-1;6237:140:0;;;;;:::i;:::-;;:::i;2771:151::-;;;;;;;;;;;;;:::i;2548:81::-;;;;;;;;;;-1:-1:-1;2586:7:0;2614:6;2548:81;;2614:6;;;;4304:74:1;;4292:2;4277:18;2548:81:0;4259:125:1;5804:89:0;;;;;;;;;;-1:-1:-1;5877:7:0;;;;;;;;;;;;;;;;;5804:89;;6387:170;;;;;;;;;;-1:-1:-1;6387:170:0;;;;;:::i;:::-;;:::i;11487:168::-;;;;;;;;;;-1:-1:-1;11487:168:0;;;;;:::i;:::-;;:::i;7342:125::-;;;;;;;;;;-1:-1:-1;7342:125:0;;;;;:::i;:::-;;:::i;13088:199::-;;;;;;;;;;;;;:::i;10643:830::-;;;;;;;;;;;;;:::i;6109:118::-;;;;;;;;;;-1:-1:-1;6109:118:0;;;;;:::i;:::-;6202:16;;6174:7;6202:16;;;:7;:16;;;;;;;6109:118;6567:145;;;;;;;;;;-1:-1:-1;6567:145:0;;;;;:::i;:::-;6676:18;;;;6648:7;6676:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6567:145;11669:96;;;;;;;;;;;;;:::i;6722:164::-;6797:4;6815:39;282:10;6838:7;6847:6;6815:8;:39::i;:::-;-1:-1:-1;6873:4:0;6722:164;;;;;:::o;6896:317::-;6994:4;7012:36;7022:6;7030:9;7041:6;7012:9;:36::i;:::-;7060:121;7069:6;282:10;7091:89;7129:6;7091:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;;;282:10;7091:33;;;;;;;;;;:37;:89::i;:::-;7060:8;:121::i;:::-;-1:-1:-1;7200:4:0;6896:317;;;;;:::o;11779:90::-;2680:6;;:22;:6;282:10;2680:22;2672:67;;;;;;;8695:2:1;2672:67:0;;;8677:21:1;;;8714:18;;;8707:30;8773:34;8753:18;;;8746:62;8825:18;;2672:67:0;;;;;;;;;11840:12:::1;;11855:5;11840:12:::0;;;:4:::1;:12;::::0;;;;:20;;;::::1;::::0;;11779:90::o;7223:105::-;2680:6;;:22;:6;282:10;2680:22;2672:67;;;;;;;8695:2:1;2672:67:0;;;8677:21:1;;;8714:18;;;8707:30;8773:34;8753:18;;;8746:62;8825:18;;2672:67:0;8667:182:1;2672:67:0;7296:15:::1;:23:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;7223:105::o;13301:198::-;13368:15;;;;282:10;13352:31;;;13344:40;;;;;;13425:21;13458:32;13425:21;13458:12;:32::i;:::-;13301:198;:::o;6237:140::-;6351:16;;;6303:7;6351:16;;;:7;:16;;;;;;6331:37;;:19;:37::i;2771:151::-;2680:6;;:22;:6;282:10;2680:22;2672:67;;;;;;;8695:2:1;2672:67:0;;;8677:21:1;;;8714:18;;;8707:30;8773:34;8753:18;;;8746:62;8825:18;;2672:67:0;8667:182:1;2672:67:0;2879:1:::1;2863:6:::0;;2842:40:::1;::::0;::::1;2863:6:::0;;::::1;::::0;2842:40:::1;::::0;2879:1;;2842:40:::1;2911:1;2894:19:::0;;;::::1;::::0;;2771:151::o;6387:170::-;6465:4;6483:42;282:10;6507:9;6518:6;6483:9;:42::i;11487:168::-;2680:6;;:22;:6;282:10;2680:22;2672:67;;;;;;;8695:2:1;2672:67:0;;;8677:21:1;;;8714:18;;;8707:30;8773:34;8753:18;;;8746:62;8825:18;;2672:67:0;8667:182:1;2672:67:0;11562:6:::1;11557:90;11578:5;:12;11574:1;:16;11557:90;;;11630:4;11613;:14;11618:5;11624:1;11618:8;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;;;;;11613:14:::1;;::::0;;;::::1;::::0;;;;;;-1:-1:-1;11613:14:0;:21;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;11592:3;::::1;::::0;::::1;:::i;:::-;;;;11557:90;;;;11487:168:::0;:::o;7342:125::-;2680:6;;:22;:6;282:10;2680:22;2672:67;;;;;;;8695:2:1;2672:67:0;;;8677:21:1;;;8714:18;;;8707:30;8773:34;8753:18;;;8746:62;8825:18;;2672:67:0;8667:182:1;2672:67:0;7423:12:::1;:35:::0;7342:125::o;13088:199::-;13155:15;;;;282:10;13139:31;;;13131:40;;;;;;13183:23;13209:24;13227:4;13209:9;:24::i;:::-;13183:50;;13245:33;13262:15;13245:16;:33::i;10643:830::-;2680:6;;:22;:6;282:10;2680:22;2672:67;;;;;;;8695:2:1;2672:67:0;;;8677:21:1;;;8714:18;;;8707:30;8773:34;8753:18;;;8746:62;8825:18;;2672:67:0;8667:182:1;2672:67:0;10708:11:::1;::::0;;;::::1;;;10707:12;10699:47;;;::::0;::::1;::::0;;10277:2:1;10699:47:0::1;::::0;::::1;10259:21:1::0;10316:2;10296:18;;;10289:30;10355:25;10335:18;;;10328:53;10398:18;;10699:47:0::1;10249:173:1::0;10699:47:0::1;10870:15;:34:::0;;;::::1;10815:42;10870:34:::0;;::::1;::::0;;;10916:58:::1;10933:4;10815:42:::0;4284:12:::1;10916:8;:58::i;:::-;11020:16;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11002:56;;;11067:4;11074:16;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11002:96;::::0;;::::1;::::0;;;;;;4573:42:1;4642:15;;;11002:96:0::1;::::0;::::1;4624:34:1::0;4694:15;;4674:18;;;4667:43;4536:18;;11002:96:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10986:13;:112:::0;;;::::1;;::::0;;::::1;;::::0;;11110:15:::1;::::0;::::1;:31;11149:21;11180:4;11186:24;11180:4:::0;11186:9:::1;:24::i;:::-;11211:1;11213::::0;11215:7:::1;2586::::0;2614:6;;;;2548:81;11215:7:::1;11110:129;::::0;::::1;::::0;;;;;;;5336:42:1;5405:15;;;11110:129:0::1;::::0;::::1;5387:34:1::0;5437:18;;;5430:34;;;;5480:18;;;5473:34;;;;5523:18;;;5516:34;5587:15;;;5566:19;;;5559:44;11223:15:0::1;5619:19:1::0;;;5612:35;5298:19;;11110:129:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;11251:11:0::1;:18:::0;;11330:21:::1;11315:12;:36:::0;11363:18;;;;;;;;11431:15:::1;::::0;11393:71:::1;::::0;;;;11400:13:::1;11431:15:::0;;::::1;11393:71;::::0;::::1;4895:74:1::0;-1:-1:-1;4985:18:1;;;4978:34;11400:13:0;;;-1:-1:-1;11393:29:0::1;::::0;4868:18:1;;11393:71:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;11669:96::-:0;2680:6;;:22;:6;282:10;2680:22;2672:67;;;;;;;8695:2:1;2672:67:0;;;8677:21:1;;;8714:18;;;8707:30;8773:34;8753:18;;;8746:62;8825:18;;2672:67:0;8667:182:1;2672:67:0;11744:12:::1;11729;:27:::0;11669:96::o;7745:340::-;7839:19;;;7831:68;;;;;;;9872:2:1;7831:68:0;;;9854:21:1;9911:2;9891:18;;;9884:30;9950:34;9930:18;;;9923:62;10021:6;10001:18;;;9994:34;10045:19;;7831:68:0;9844:226:1;7831:68:0;7919:21;;;7911:68;;;;;;;7534:2:1;7911:68:0;;;7516:21:1;7573:2;7553:18;;;7546:30;7612:34;7592:18;;;7585:62;7683:4;7663:18;;;7656:32;7705:19;;7911:68:0;7506:224:1;7911:68:0;7991:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;8044:32;;10573:25:1;;;8044:32:0;;10546:18:1;8044:32:0;;;;;;;7745:340;;;:::o;8095:1854::-;8184:18;;;8176:68;;;;;;;9466:2:1;8176:68:0;;;9448:21:1;9505:2;9485:18;;;9478:30;9544:34;9524:18;;;9517:62;9615:7;9595:18;;;9588:35;9640:19;;8176:68:0;9438:227:1;8176:68:0;8264:16;;;8256:64;;;;;;;6719:2:1;8256:64:0;;;6701:21:1;6758:2;6738:18;;;6731:30;6797:34;6777:18;;;6770:62;6868:5;6848:18;;;6841:33;6891:19;;8256:64:0;6691:225:1;8256:64:0;8349:1;8340:6;:10;8332:64;;;;;;;9056:2:1;8332:64:0;;;9038:21:1;9095:2;9075:18;;;9068:30;9134:34;9114:18;;;9107:62;9205:11;9185:18;;;9178:39;9234:19;;8332:64:0;9028:231:1;8332:64:0;14884:13;;;14873:24;;;14884:13;;14873:24;8426:555;;8522:13;;;;;;;:7;:13;;;;;;:18;;;;:86;;-1:-1:-1;8563:13:0;;;;;;;:7;:13;;;;;;8592:15;;8563:25;;8580:7;8563:25;:::i;:::-;:44;;8522:86;8518:270;;;8643:1;8631:9;:13;8676:2;8664:9;:14;8426:555;;8518:270;8736:1;8724:9;:13;8769:2;8757:14;;8426:555;;;8826:11;;;;;;;:7;:11;;;;;;8822:88;;8864:11;;;;;;;:7;:11;;;;;8878:15;8864:29;;8822:88;8937:1;8925:9;:13;8966:2;8954:14;;8426:555;2586:7;2614:6;;9007:15;;;2614:6;;9007:15;;;;:32;;-1:-1:-1;2586:7:0;2614:6;;9026:13;;;2614:6;;9026:13;;9007:32;9003:885;;;9066:10;;;;;;;:4;:10;;;;;;;;9065:11;:24;;;;-1:-1:-1;9081:8:0;;;;;;;:4;:8;;;;;;;;9080:9;9065:24;9057:33;;;;;;9118:13;;;9110:21;;;9118:13;;9110:21;:55;;;;-1:-1:-1;9149:15:0;;;9135:30;;;9149:15;;9135:30;;9110:55;:83;;;;-1:-1:-1;9171:22:0;;;;;;;:18;:22;;;;;;;;9169:24;9110:83;:102;;;;-1:-1:-1;9197:15:0;;;;;;;9110:102;9106:330;;;9282:12;;9272:6;:22;;9264:31;;;;;;9323:12;;;;;;;:8;:12;;;;;;9338:15;-1:-1:-1;9315:39:0;;;;;;9389:30;:15;9408:10;9389:30;:::i;:::-;9374:12;;;;;;;:8;:12;;;;;:45;9106:330;9481:28;9512:24;9530:4;9512:9;:24::i;:::-;9557:6;;9481:55;;-1:-1:-1;9557:6:0;;;;;9556:7;:32;;;;-1:-1:-1;9575:13:0;;;9567:21;;;9575:13;;9567:21;;9556:32;:47;;;;-1:-1:-1;9592:11:0;;;;;;;9556:47;9552:324;;;9625:38;9642:20;9625:16;:38::i;:::-;9712:21;9756:22;;9753:107;;9804:35;9817:21;9804:12;:35::i;:::-;9552:324;;9003:885;;9910:30;9925:4;9930:2;9933:6;9910:14;:30::i;:::-;8095:1854;;;:::o;1365:194::-;1451:7;1488:12;1480:6;;;;1472:29;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1513:9:0;1525:5;1529:1;1525;:5;:::i;:::-;1513:17;1365:194;-1:-1:-1;;;;;1365:194:0:o;10472:157::-;10530:15;;;;:39;10555:13;:6;10566:1;10555:10;:13::i;:::-;10530:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10581:15:0;;;;:39;10606:13;:6;10617:1;10606:10;:13::i;:::-;10581:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7477:258;7544:7;7584;;7573;:18;;7565:73;;;;;;;7123:2:1;7565:73:0;;;7105:21:1;7162:2;7142:18;;;7135:30;7201:34;7181:18;;;7174:62;7272:12;7252:18;;;7245:40;7302:19;;7565:73:0;7095:232:1;7565:73:0;7650:19;7673:10;:8;:10::i;:::-;7650:33;-1:-1:-1;7702:24:0;:7;7650:33;7702:11;:24::i;:::-;7695:31;7477:258;-1:-1:-1;;;7477:258:0:o;9959:495::-;5095:6;:13;;;;;;;;10062:16:::1;::::0;;10076:1:::1;10062:16:::0;;;;;::::1;::::0;;-1:-1:-1;;10062:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;10062:16:0::1;10038:40;;10108:4;10090;10095:1;10090:7;;;;;;;;;;;;;;;;:23;::::0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;10135:15:::1;::::0;:22:::1;::::0;;;;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;10090:7;;10135:22;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10125:4;10130:1;10125:7;;;;;;;;;;;;;;;;:32;::::0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;10201:15:::1;::::0;10169:62:::1;::::0;10186:4:::1;::::0;10201:15:::1;10219:11:::0;10169:8:::1;:62::i;:::-;10243:15;::::0;:202:::1;::::0;;;;:15:::1;::::0;;::::1;::::0;:66:::1;::::0;:202:::1;::::0;10325:11;;10243:15:::1;::::0;10369:4;;10397::::1;::::0;10418:15:::1;::::0;10243:202:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;5133:6:0;:14;;;;;;-1:-1:-1;;;;9959:495:0:o;11887:148::-;11982:44;12000:6;12008:9;12019:6;11982:17;:44::i;1832:134::-;1890:7;1918:39;1922:1;1925;1918:39;;;;;;;;;;;;;;;;;:3;:39::i;14919:166::-;14960:7;14982:15;14999;15018:19;:17;:19::i;:::-;14981:56;;-1:-1:-1;14981:56:0;-1:-1:-1;15056:20:0;14981:56;;15056:11;:20::i;:::-;15049:27;;;;14919:166;:::o;12045:495::-;12145:15;12162:23;12187:12;12201:23;12226:12;12240:13;12257:19;12268:7;12257:10;:19::i;:::-;12306:15;;;;;;;:7;:15;;;;;;12144:132;;-1:-1:-1;12144:132:0;;-1:-1:-1;12144:132:0;;-1:-1:-1;12144:132:0;-1:-1:-1;12144:132:0;-1:-1:-1;12144:132:0;-1:-1:-1;12306:28:0;;12144:132;12306:19;:28::i;:::-;12288:15;;;;;;;;:7;:15;;;;;;:46;;;;12367:18;;;;;;;:39;;12390:15;12367:22;:39::i;:::-;12346:18;;;;;;;:7;:18;;;;;:60;12419:16;12429:5;12419:9;:16::i;:::-;12447:23;12459:4;12465;12447:11;:23::i;:::-;12504:9;12487:44;;12496:6;12487:44;;;12515:15;12487:44;;;;10573:25:1;;10561:2;10546:18;;10528:76;12487:44:0;;;;;;;;12045:495;;;;;;;;;:::o;1976:193::-;2062:7;2098:12;2091:5;2083:28;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2123:9:0;2135:5;2139:1;2135;:5;:::i;15095:267::-;15193:7;;15145;;;;4284:12;15269:20;15193:7;4284:12;15269:11;:20::i;:::-;15259:7;:30;15255:61;;;-1:-1:-1;;15299:7:0;;;4284:12;;-1:-1:-1;15095:267:0;-1:-1:-1;15095:267:0:o;15255:61::-;15336:7;;15345;;-1:-1:-1;15095:267:0;-1:-1:-1;15095:267:0:o;13516:476::-;13575:7;13584;13593;13602;13611;13620;13642:23;13667:12;13681:13;13698:42;13710:7;13719:9;;13730;;13698:11;:42::i;:::-;13641:99;;;;;;13752:19;13775:10;:8;:10::i;:::-;13752:33;;13798:15;13815:23;13840:12;13856:46;13868:7;13877:4;13883:5;13890:11;13856;:46::i;:::-;13797:105;;-1:-1:-1;13797:105:0;-1:-1:-1;13797:105:0;-1:-1:-1;13954:15:0;;-1:-1:-1;13971:4:0;;-1:-1:-1;13977:5:0;;-1:-1:-1;;;;;13516:476:0;;;;;;;:::o;1217:138::-;1275:7;1303:43;1307:1;1310;1303:43;;;;;;;;;;;;;;;;;:3;:43::i;1024:183::-;1082:7;;1115:5;1119:1;1115;:5;:::i;:::-;1103:17;;1145:1;1140;:6;;1132:46;;;;;;;7937:2:1;1132:46:0;;;7919:21:1;7976:2;7956:18;;;7949:30;8015:29;7995:18;;;7988:57;8062:18;;1132:46:0;7909:177:1;12550:216:0;12604:19;12627:10;:8;:10::i;:::-;12604:33;-1:-1:-1;12649:13:0;12665:22;:5;12604:33;12665:9;:22::i;:::-;12740:4;12724:22;;;;:7;:22;;;;;;12649:38;;-1:-1:-1;12724:33:0;;12649:38;12724:26;:33::i;:::-;12715:4;12699:22;;;;:7;:22;;;;;:58;-1:-1:-1;;;12550:216:0:o;12885:150::-;12964:7;;:17;;12976:4;12964:11;:17::i;:::-;12954:7;:27;13006:10;;:20;;13021:4;13006:14;:20::i;:::-;12993:10;:33;-1:-1:-1;;12885:150:0:o;14002:356::-;14095:7;;;;14149:28;14173:3;14149:19;:7;14161:6;14149:11;:19::i;:::-;:23;;:28::i;:::-;14134:43;-1:-1:-1;14189:13:0;14205:29;14230:3;14205:20;:7;14217;14205:11;:20::i;:29::-;14189:45;-1:-1:-1;14246:23:0;14272:28;14189:45;14272:17;:7;14284:4;14272:11;:17::i;:::-;:21;;:28::i;:::-;14246:54;14337:4;;-1:-1:-1;14343:5:0;;-1:-1:-1;14002:356:0;;-1:-1:-1;;;;;14002:356:0:o;14368:415::-;14478:7;;;;14535:24;:7;14547:11;14535;:24::i;:::-;14517:42;-1:-1:-1;14571:12:0;14586:21;:4;14595:11;14586:8;:21::i;:::-;14571:36;-1:-1:-1;14619:13:0;14635:22;:5;14645:11;14635:9;:22::i;:::-;14619:38;-1:-1:-1;14669:23:0;14695:28;14619:38;14695:17;:7;14707:4;14695:11;:17::i;:28::-;14743:7;;;;-1:-1:-1;14769:4:0;;-1:-1:-1;14368:415:0;;-1:-1:-1;;;;;;;14368:415:0:o;1569:253::-;1627:7;1652:6;1648:49;;-1:-1:-1;1683:1:0;1676:8;;1648:49;1708:9;1720:5;1724:1;1720;:5;:::i;:::-;1708:17;-1:-1:-1;1754:1:0;1745:5;1749:1;1708:17;1745:5;:::i;:::-;:10;1737:56;;;;;;;8293:2:1;1737:56:0;;;8275:21:1;8332:2;8312:18;;;8305:30;8371:34;8351:18;;;8344:62;8442:3;8422:18;;;8415:31;8463:19;;1737:56:0;8265:223:1;14:134;82:20;;111:31;82:20;111:31;:::i;:::-;63:85;;;:::o;153:257::-;212:6;265:2;253:9;244:7;240:23;236:32;233:2;;;286:6;278;271:22;233:2;330:9;317:23;349:31;374:5;349:31;:::i;415:261::-;485:6;538:2;526:9;517:7;513:23;509:32;506:2;;;559:6;551;544:22;506:2;596:9;590:16;615:31;640:5;615:31;:::i;681:398::-;749:6;757;810:2;798:9;789:7;785:23;781:32;778:2;;;831:6;823;816:22;778:2;875:9;862:23;894:31;919:5;894:31;:::i;:::-;944:5;-1:-1:-1;1001:2:1;986:18;;973:32;1014:33;973:32;1014:33;:::i;:::-;1066:7;1056:17;;;768:311;;;;;:::o;1084:466::-;1161:6;1169;1177;1230:2;1218:9;1209:7;1205:23;1201:32;1198:2;;;1251:6;1243;1236:22;1198:2;1295:9;1282:23;1314:31;1339:5;1314:31;:::i;:::-;1364:5;-1:-1:-1;1421:2:1;1406:18;;1393:32;1434:33;1393:32;1434:33;:::i;:::-;1188:362;;1486:7;;-1:-1:-1;;;1540:2:1;1525:18;;;;1512:32;;1188:362::o;1555:325::-;1623:6;1631;1684:2;1672:9;1663:7;1659:23;1655:32;1652:2;;;1705:6;1697;1690:22;1652:2;1749:9;1736:23;1768:31;1793:5;1768:31;:::i;:::-;1818:5;1870:2;1855:18;;;;1842:32;;-1:-1:-1;;;1642:238:1:o;1885:1236::-;1969:6;2000:2;2043;2031:9;2022:7;2018:23;2014:32;2011:2;;;2064:6;2056;2049:22;2011:2;2109:9;2096:23;2138:18;2179:2;2171:6;2168:14;2165:2;;;2200:6;2192;2185:22;2165:2;2243:6;2232:9;2228:22;2218:32;;2288:7;2281:4;2277:2;2273:13;2269:27;2259:2;;2315:6;2307;2300:22;2259:2;2356;2343:16;2378:2;2374;2371:10;2368:2;;;2384:18;;:::i;:::-;2430:2;2427:1;2423:10;2462:2;2456:9;2521:66;2516:2;2512;2508:11;2504:84;2496:6;2492:97;2639:6;2627:10;2624:22;2619:2;2607:10;2604:18;2601:46;2598:2;;;2650:18;;:::i;:::-;2686:2;2679:22;2736:18;;;2770:15;;;;-1:-1:-1;2805:11:1;;;2835;;;2831:20;;2828:33;-1:-1:-1;2825:2:1;;;2879:6;2871;2864:22;2825:2;2906:6;2897:15;;2921:169;2935:2;2932:1;2929:9;2921:169;;;2992:23;3011:3;2992:23;:::i;:::-;2980:36;;2953:1;2946:9;;;;;3036:12;;;;3068;;2921:169;;;-1:-1:-1;3109:6:1;1980:1141;-1:-1:-1;;;;;;;;1980:1141:1:o;3126:251::-;3182:6;3235:2;3223:9;3214:7;3210:23;3206:32;3203:2;;;3256:6;3248;3241:22;3203:2;3300:9;3287:23;3319:28;3341:5;3319:28;:::i;3382:255::-;3449:6;3502:2;3490:9;3481:7;3477:23;3473:32;3470:2;;;3523:6;3515;3508:22;3470:2;3560:9;3554:16;3579:28;3601:5;3579:28;:::i;3642:190::-;3701:6;3754:2;3742:9;3733:7;3729:23;3725:32;3722:2;;;3775:6;3767;3760:22;3722:2;-1:-1:-1;3803:23:1;;3712:120;-1:-1:-1;3712:120:1:o;3837:316::-;3925:6;3933;3941;3994:2;3982:9;3973:7;3969:23;3965:32;3962:2;;;4015:6;4007;4000:22;3962:2;4049:9;4043:16;4033:26;;4099:2;4088:9;4084:18;4078:25;4068:35;;4143:2;4132:9;4128:18;4122:25;4112:35;;3952:201;;;;;:::o;5850:662::-;5962:4;5991:2;6020;6009:9;6002:21;6052:6;6046:13;6095:6;6090:2;6079:9;6075:18;6068:34;6120:4;6133:140;6147:6;6144:1;6141:13;6133:140;;;6242:14;;;6238:23;;6232:30;6208:17;;;6227:2;6204:26;6197:66;6162:10;;6133:140;;;6291:6;6288:1;6285:13;6282:2;;;6361:4;6356:2;6347:6;6336:9;6332:22;6328:31;6321:45;6282:2;-1:-1:-1;6428:2:1;6416:15;6433:66;6412:88;6397:104;;;;6503:2;6393:113;;5971:541;-1:-1:-1;;;5971:541:1:o;10609:1029::-;10871:4;10919:3;10908:9;10904:19;10950:6;10939:9;10932:25;10976:2;11014:6;11009:2;10998:9;10994:18;10987:34;11057:3;11052:2;11041:9;11037:18;11030:31;11081:6;11116;11110:13;11147:6;11139;11132:22;11185:3;11174:9;11170:19;11163:26;;11224:2;11216:6;11212:15;11198:29;;11245:4;11258:218;11272:6;11269:1;11266:13;11258:218;;;11337:13;;11352:42;11333:62;11321:75;;11451:15;;;;11416:12;;;;11294:1;11287:9;11258:218;;;-1:-1:-1;;11544:42:1;11532:55;;;;11527:2;11512:18;;11505:83;-1:-1:-1;;;11619:3:1;11604:19;11597:35;11493:3;10880:758;-1:-1:-1;;;10880:758:1:o;11832:128::-;11872:3;11903:1;11899:6;11896:1;11893:13;11890:2;;;11909:18;;:::i;:::-;-1:-1:-1;11945:9:1;;11880:80::o;11965:274::-;12005:1;12031;12021:2;;12066:77;12063:1;12056:88;12167:4;12164:1;12157:15;12195:4;12192:1;12185:15;12021:2;-1:-1:-1;12224:9:1;;12011:228::o;12244:::-;12284:7;12410:1;12342:66;12338:74;12335:1;12332:81;12327:1;12320:9;12313:17;12309:105;12306:2;;;12417:18;;:::i;:::-;-1:-1:-1;12457:9:1;;12296:176::o;12477:125::-;12517:4;12545:1;12542;12539:8;12536:2;;;12550:18;;:::i;:::-;-1:-1:-1;12587:9:1;;12526:76::o;12607:195::-;12646:3;12677:66;12670:5;12667:77;12664:2;;;12747:18;;:::i;:::-;-1:-1:-1;12794:1:1;12783:13;;12654:148::o;12807:184::-;12859:77;12856:1;12849:88;12956:4;12953:1;12946:15;12980:4;12977:1;12970:15;12996:184;13048:77;13045:1;13038:88;13145:4;13142:1;13135:15;13169:4;13166:1;13159:15;13185:154;13271:42;13264:5;13260:54;13253:5;13250:65;13240:2;;13329:1;13326;13319:12;13344:118;13430:5;13423:13;13416:21;13409:5;13406:32;13396:2;;13452:1;13449;13442:12
Swarm Source
ipfs://e98788b65e70ea73df97f10485ff593bdb1e2251e7081f4760166031cbc5df6b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.