BNB Price: $617.90 (+3.02%)
 

Overview

Max Total Supply

49,459,343.999999DAO

Holders

24,720 ( -0.004%)

Market

Price

$0.048 @ 0.000078 BNB (+0.36%)

Onchain Market Cap

$2,373,021.24

Circulating Supply Market Cap

$12,038,587.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000150811615677 DAO

Value
$0.00 ( ~0 BNB) [0.0000%]
0x8695330488513a6c3698a2b072ff88aaedbfac3e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

DAO Maker is the leading incubation, fundraising and acceleration platform with a vast network of successful projects launched.

Market

Volume (24H):$1,553,759.00
Market Capitalization:$12,038,587.00
Circulating Supply:250,926,000.00 DAO
Market Data Source: Coinmarketcap


Update? Click here to update the token ICO / general information

Contract Source Code Verified (Exact Match)

Contract Name:
DAOToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at BscScan.com on 2023-01-15
*/

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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 Contracts guidelines: functions revert
 * instead 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 default 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` 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);

        _afterTokenTransfer(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");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: daoBsc.sol

pragma solidity ^0.8.0;




contract DAOToken is ERC20Burnable, Ownable {
    uint public constant MAX_SUPPLY = 275e24;

    constructor(
        string memory name,
        string memory symbol,
        uint initialMint
    ) payable ERC20(name, symbol) {
        require(initialMint <= MAX_SUPPLY, "MAX_SUPPLY_REACHED");
        _mint(msg.sender, initialMint);
    }

    function mint(uint amount) external onlyOwner {
        require(totalSupply() + amount <= MAX_SUPPLY, "MAX_SUPPLY_REACHED");
        _mint(owner(), amount); 
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialMint","type":"uint256"}],"stateMutability":"payable","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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

60806040526040516200258e3803806200258e833981810160405281019062000029919062000481565b82828160039080519060200190620000439291906200033c565b5080600490805190602001906200005c9291906200033c565b5050506200007f62000073620000eb60201b60201c565b620000f360201b60201c565b6ae37983df262343f3000000811115620000d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000c7906200057a565b60405180910390fd5b620000e23382620001b960201b60201c565b50505062000872565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200022c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000223906200059c565b60405180910390fd5b62000240600083836200033260201b60201c565b80600260008282546200025491906200064b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002ab91906200064b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003129190620005be565b60405180910390a36200032e600083836200033760201b60201c565b5050565b505050565b505050565b8280546200034a90620006e8565b90600052602060002090601f0160209004810192826200036e5760008555620003ba565b82601f106200038957805160ff1916838001178555620003ba565b82800160010185558215620003ba579182015b82811115620003b95782518255916020019190600101906200039c565b5b509050620003c99190620003cd565b5090565b5b80821115620003e8576000816000905550600101620003ce565b5090565b600062000403620003fd8462000604565b620005db565b905082815260208101848484011115620004225762000421620007e6565b5b6200042f848285620006b2565b509392505050565b600082601f8301126200044f576200044e620007e1565b5b815162000461848260208601620003ec565b91505092915050565b6000815190506200047b8162000858565b92915050565b6000806000606084860312156200049d576200049c620007f0565b5b600084015167ffffffffffffffff811115620004be57620004bd620007eb565b5b620004cc8682870162000437565b935050602084015167ffffffffffffffff811115620004f057620004ef620007eb565b5b620004fe8682870162000437565b925050604062000511868287016200046a565b9150509250925092565b60006200052a6012836200063a565b9150620005378262000806565b602082019050919050565b600062000551601f836200063a565b91506200055e826200082f565b602082019050919050565b6200057481620006a8565b82525050565b6000602082019050818103600083015262000595816200051b565b9050919050565b60006020820190508181036000830152620005b78162000542565b9050919050565b6000602082019050620005d5600083018462000569565b92915050565b6000620005e7620005fa565b9050620005f582826200071e565b919050565b6000604051905090565b600067ffffffffffffffff821115620006225762000621620007b2565b5b6200062d82620007f5565b9050602081019050919050565b600082825260208201905092915050565b60006200065882620006a8565b91506200066583620006a8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200069d576200069c62000754565b5b828201905092915050565b6000819050919050565b60005b83811015620006d2578082015181840152602081019050620006b5565b83811115620006e2576000848401525b50505050565b600060028204905060018216806200070157607f821691505b6020821081141562000718576200071762000783565b5b50919050565b6200072982620007f5565b810181811067ffffffffffffffff821117156200074b576200074a620007b2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d41585f535550504c595f524541434845440000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6200086381620006a8565b81146200086f57600080fd5b50565b611d0c80620008826000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a0712d6811610071578063a0712d68146102d1578063a457c2d7146102ed578063a9059cbb1461031d578063dd62ed3e1461034d578063f2fde38b1461037d57610116565b8063715018a61461026f57806379cc6790146102795780638da5cb5b1461029557806395d89b41146102b357610116565b8063313ce567116100e9578063313ce567146101b757806332cb6b0c146101d557806339509351146101f357806342966c681461022357806370a082311461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610399565b6040516101309190611571565b60405180910390f35b610153600480360381019061014e9190611292565b61042b565b6040516101609190611556565b60405180910390f35b61017161044e565b60405161017e9190611733565b60405180910390f35b6101a1600480360381019061019c919061123f565b610458565b6040516101ae9190611556565b60405180910390f35b6101bf610487565b6040516101cc919061174e565b60405180910390f35b6101dd610490565b6040516101ea9190611733565b60405180910390f35b61020d60048036038101906102089190611292565b61049f565b60405161021a9190611556565b60405180910390f35b61023d600480360381019061023891906112d2565b6104d6565b005b610259600480360381019061025491906111d2565b6104ea565b6040516102669190611733565b60405180910390f35b610277610532565b005b610293600480360381019061028e9190611292565b610546565b005b61029d610566565b6040516102aa919061153b565b60405180910390f35b6102bb610590565b6040516102c89190611571565b60405180910390f35b6102eb60048036038101906102e691906112d2565b610622565b005b61030760048036038101906103029190611292565b61069e565b6040516103149190611556565b60405180910390f35b61033760048036038101906103329190611292565b610715565b6040516103449190611556565b60405180910390f35b610367600480360381019061036291906111ff565b610738565b6040516103749190611733565b60405180910390f35b610397600480360381019061039291906111d2565b6107bf565b005b6060600380546103a890611897565b80601f01602080910402602001604051908101604052809291908181526020018280546103d490611897565b80156104215780601f106103f657610100808354040283529160200191610421565b820191906000526020600020905b81548152906001019060200180831161040457829003601f168201915b5050505050905090565b600080610436610843565b905061044381858561084b565b600191505092915050565b6000600254905090565b600080610463610843565b9050610470858285610a16565b61047b858585610aa2565b60019150509392505050565b60006012905090565b6ae37983df262343f300000081565b6000806104aa610843565b90506104cb8185856104bc8589610738565b6104c69190611785565b61084b565b600191505092915050565b6104e76104e1610843565b82610d23565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61053a610efa565b6105446000610f78565b565b61055882610552610843565b83610a16565b6105628282610d23565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461059f90611897565b80601f01602080910402602001604051908101604052809291908181526020018280546105cb90611897565b80156106185780601f106105ed57610100808354040283529160200191610618565b820191906000526020600020905b8154815290600101906020018083116105fb57829003601f168201915b5050505050905090565b61062a610efa565b6ae37983df262343f30000008161063f61044e565b6106499190611785565b111561068a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610681906116d3565b60405180910390fd5b61069b610695610566565b8261103e565b50565b6000806106a9610843565b905060006106b78286610738565b9050838110156106fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f3906116f3565b60405180910390fd5b610709828686840361084b565b60019250505092915050565b600080610720610843565b905061072d818585610aa2565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107c7610efa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082e906115d3565b60405180910390fd5b61084081610f78565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b2906116b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561092b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610922906115f3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a099190611733565b60405180910390a3505050565b6000610a228484610738565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a9c5781811015610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590611613565b60405180910390fd5b610a9b848484840361084b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990611693565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7990611593565b60405180910390fd5b610b8d83838361119e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90611633565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ca69190611785565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d0a9190611733565b60405180910390a3610d1d8484846111a3565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90611673565b60405180910390fd5b610d9f8260008361119e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c906115b3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610e7c91906117db565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee19190611733565b60405180910390a3610ef5836000846111a3565b505050565b610f02610843565b73ffffffffffffffffffffffffffffffffffffffff16610f20610566565b73ffffffffffffffffffffffffffffffffffffffff1614610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90611653565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590611713565b60405180910390fd5b6110ba6000838361119e565b80600260008282546110cc9190611785565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111219190611785565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111869190611733565b60405180910390a361119a600083836111a3565b5050565b505050565b505050565b6000813590506111b781611ca8565b92915050565b6000813590506111cc81611cbf565b92915050565b6000602082840312156111e8576111e7611927565b5b60006111f6848285016111a8565b91505092915050565b6000806040838503121561121657611215611927565b5b6000611224858286016111a8565b9250506020611235858286016111a8565b9150509250929050565b60008060006060848603121561125857611257611927565b5b6000611266868287016111a8565b9350506020611277868287016111a8565b9250506040611288868287016111bd565b9150509250925092565b600080604083850312156112a9576112a8611927565b5b60006112b7858286016111a8565b92505060206112c8858286016111bd565b9150509250929050565b6000602082840312156112e8576112e7611927565b5b60006112f6848285016111bd565b91505092915050565b6113088161180f565b82525050565b61131781611821565b82525050565b600061132882611769565b6113328185611774565b9350611342818560208601611864565b61134b8161192c565b840191505092915050565b6000611363602383611774565b915061136e8261193d565b604082019050919050565b6000611386602283611774565b91506113918261198c565b604082019050919050565b60006113a9602683611774565b91506113b4826119db565b604082019050919050565b60006113cc602283611774565b91506113d782611a2a565b604082019050919050565b60006113ef601d83611774565b91506113fa82611a79565b602082019050919050565b6000611412602683611774565b915061141d82611aa2565b604082019050919050565b6000611435602083611774565b915061144082611af1565b602082019050919050565b6000611458602183611774565b915061146382611b1a565b604082019050919050565b600061147b602583611774565b915061148682611b69565b604082019050919050565b600061149e602483611774565b91506114a982611bb8565b604082019050919050565b60006114c1601283611774565b91506114cc82611c07565b602082019050919050565b60006114e4602583611774565b91506114ef82611c30565b604082019050919050565b6000611507601f83611774565b915061151282611c7f565b602082019050919050565b6115268161184d565b82525050565b61153581611857565b82525050565b600060208201905061155060008301846112ff565b92915050565b600060208201905061156b600083018461130e565b92915050565b6000602082019050818103600083015261158b818461131d565b905092915050565b600060208201905081810360008301526115ac81611356565b9050919050565b600060208201905081810360008301526115cc81611379565b9050919050565b600060208201905081810360008301526115ec8161139c565b9050919050565b6000602082019050818103600083015261160c816113bf565b9050919050565b6000602082019050818103600083015261162c816113e2565b9050919050565b6000602082019050818103600083015261164c81611405565b9050919050565b6000602082019050818103600083015261166c81611428565b9050919050565b6000602082019050818103600083015261168c8161144b565b9050919050565b600060208201905081810360008301526116ac8161146e565b9050919050565b600060208201905081810360008301526116cc81611491565b9050919050565b600060208201905081810360008301526116ec816114b4565b9050919050565b6000602082019050818103600083015261170c816114d7565b9050919050565b6000602082019050818103600083015261172c816114fa565b9050919050565b6000602082019050611748600083018461151d565b92915050565b6000602082019050611763600083018461152c565b92915050565b600081519050919050565b600082825260208201905092915050565b60006117908261184d565b915061179b8361184d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117d0576117cf6118c9565b5b828201905092915050565b60006117e68261184d565b91506117f18361184d565b925082821015611804576118036118c9565b5b828203905092915050565b600061181a8261182d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611882578082015181840152602081019050611867565b83811115611891576000848401525b50505050565b600060028204905060018216806118af57607f821691505b602082108114156118c3576118c26118f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4d41585f535550504c595f524541434845440000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611cb18161180f565b8114611cbc57600080fd5b50565b611cc88161184d565b8114611cd357600080fd5b5056fea2646970667358221220ef0c29cde962c2499b17569cb8116b98d1eca6ac1033740cf008166ccaa8165464736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000056bc75e2d63100000000000000000000000000000000000000000000000000000000000000000000944414f204d616b65720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344414f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a0712d6811610071578063a0712d68146102d1578063a457c2d7146102ed578063a9059cbb1461031d578063dd62ed3e1461034d578063f2fde38b1461037d57610116565b8063715018a61461026f57806379cc6790146102795780638da5cb5b1461029557806395d89b41146102b357610116565b8063313ce567116100e9578063313ce567146101b757806332cb6b0c146101d557806339509351146101f357806342966c681461022357806370a082311461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610399565b6040516101309190611571565b60405180910390f35b610153600480360381019061014e9190611292565b61042b565b6040516101609190611556565b60405180910390f35b61017161044e565b60405161017e9190611733565b60405180910390f35b6101a1600480360381019061019c919061123f565b610458565b6040516101ae9190611556565b60405180910390f35b6101bf610487565b6040516101cc919061174e565b60405180910390f35b6101dd610490565b6040516101ea9190611733565b60405180910390f35b61020d60048036038101906102089190611292565b61049f565b60405161021a9190611556565b60405180910390f35b61023d600480360381019061023891906112d2565b6104d6565b005b610259600480360381019061025491906111d2565b6104ea565b6040516102669190611733565b60405180910390f35b610277610532565b005b610293600480360381019061028e9190611292565b610546565b005b61029d610566565b6040516102aa919061153b565b60405180910390f35b6102bb610590565b6040516102c89190611571565b60405180910390f35b6102eb60048036038101906102e691906112d2565b610622565b005b61030760048036038101906103029190611292565b61069e565b6040516103149190611556565b60405180910390f35b61033760048036038101906103329190611292565b610715565b6040516103449190611556565b60405180910390f35b610367600480360381019061036291906111ff565b610738565b6040516103749190611733565b60405180910390f35b610397600480360381019061039291906111d2565b6107bf565b005b6060600380546103a890611897565b80601f01602080910402602001604051908101604052809291908181526020018280546103d490611897565b80156104215780601f106103f657610100808354040283529160200191610421565b820191906000526020600020905b81548152906001019060200180831161040457829003601f168201915b5050505050905090565b600080610436610843565b905061044381858561084b565b600191505092915050565b6000600254905090565b600080610463610843565b9050610470858285610a16565b61047b858585610aa2565b60019150509392505050565b60006012905090565b6ae37983df262343f300000081565b6000806104aa610843565b90506104cb8185856104bc8589610738565b6104c69190611785565b61084b565b600191505092915050565b6104e76104e1610843565b82610d23565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61053a610efa565b6105446000610f78565b565b61055882610552610843565b83610a16565b6105628282610d23565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461059f90611897565b80601f01602080910402602001604051908101604052809291908181526020018280546105cb90611897565b80156106185780601f106105ed57610100808354040283529160200191610618565b820191906000526020600020905b8154815290600101906020018083116105fb57829003601f168201915b5050505050905090565b61062a610efa565b6ae37983df262343f30000008161063f61044e565b6106499190611785565b111561068a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610681906116d3565b60405180910390fd5b61069b610695610566565b8261103e565b50565b6000806106a9610843565b905060006106b78286610738565b9050838110156106fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f3906116f3565b60405180910390fd5b610709828686840361084b565b60019250505092915050565b600080610720610843565b905061072d818585610aa2565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107c7610efa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082e906115d3565b60405180910390fd5b61084081610f78565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b2906116b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561092b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610922906115f3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a099190611733565b60405180910390a3505050565b6000610a228484610738565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a9c5781811015610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590611613565b60405180910390fd5b610a9b848484840361084b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990611693565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7990611593565b60405180910390fd5b610b8d83838361119e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90611633565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ca69190611785565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d0a9190611733565b60405180910390a3610d1d8484846111a3565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90611673565b60405180910390fd5b610d9f8260008361119e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c906115b3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610e7c91906117db565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee19190611733565b60405180910390a3610ef5836000846111a3565b505050565b610f02610843565b73ffffffffffffffffffffffffffffffffffffffff16610f20610566565b73ffffffffffffffffffffffffffffffffffffffff1614610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90611653565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590611713565b60405180910390fd5b6110ba6000838361119e565b80600260008282546110cc9190611785565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111219190611785565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111869190611733565b60405180910390a361119a600083836111a3565b5050565b505050565b505050565b6000813590506111b781611ca8565b92915050565b6000813590506111cc81611cbf565b92915050565b6000602082840312156111e8576111e7611927565b5b60006111f6848285016111a8565b91505092915050565b6000806040838503121561121657611215611927565b5b6000611224858286016111a8565b9250506020611235858286016111a8565b9150509250929050565b60008060006060848603121561125857611257611927565b5b6000611266868287016111a8565b9350506020611277868287016111a8565b9250506040611288868287016111bd565b9150509250925092565b600080604083850312156112a9576112a8611927565b5b60006112b7858286016111a8565b92505060206112c8858286016111bd565b9150509250929050565b6000602082840312156112e8576112e7611927565b5b60006112f6848285016111bd565b91505092915050565b6113088161180f565b82525050565b61131781611821565b82525050565b600061132882611769565b6113328185611774565b9350611342818560208601611864565b61134b8161192c565b840191505092915050565b6000611363602383611774565b915061136e8261193d565b604082019050919050565b6000611386602283611774565b91506113918261198c565b604082019050919050565b60006113a9602683611774565b91506113b4826119db565b604082019050919050565b60006113cc602283611774565b91506113d782611a2a565b604082019050919050565b60006113ef601d83611774565b91506113fa82611a79565b602082019050919050565b6000611412602683611774565b915061141d82611aa2565b604082019050919050565b6000611435602083611774565b915061144082611af1565b602082019050919050565b6000611458602183611774565b915061146382611b1a565b604082019050919050565b600061147b602583611774565b915061148682611b69565b604082019050919050565b600061149e602483611774565b91506114a982611bb8565b604082019050919050565b60006114c1601283611774565b91506114cc82611c07565b602082019050919050565b60006114e4602583611774565b91506114ef82611c30565b604082019050919050565b6000611507601f83611774565b915061151282611c7f565b602082019050919050565b6115268161184d565b82525050565b61153581611857565b82525050565b600060208201905061155060008301846112ff565b92915050565b600060208201905061156b600083018461130e565b92915050565b6000602082019050818103600083015261158b818461131d565b905092915050565b600060208201905081810360008301526115ac81611356565b9050919050565b600060208201905081810360008301526115cc81611379565b9050919050565b600060208201905081810360008301526115ec8161139c565b9050919050565b6000602082019050818103600083015261160c816113bf565b9050919050565b6000602082019050818103600083015261162c816113e2565b9050919050565b6000602082019050818103600083015261164c81611405565b9050919050565b6000602082019050818103600083015261166c81611428565b9050919050565b6000602082019050818103600083015261168c8161144b565b9050919050565b600060208201905081810360008301526116ac8161146e565b9050919050565b600060208201905081810360008301526116cc81611491565b9050919050565b600060208201905081810360008301526116ec816114b4565b9050919050565b6000602082019050818103600083015261170c816114d7565b9050919050565b6000602082019050818103600083015261172c816114fa565b9050919050565b6000602082019050611748600083018461151d565b92915050565b6000602082019050611763600083018461152c565b92915050565b600081519050919050565b600082825260208201905092915050565b60006117908261184d565b915061179b8361184d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117d0576117cf6118c9565b5b828201905092915050565b60006117e68261184d565b91506117f18361184d565b925082821015611804576118036118c9565b5b828203905092915050565b600061181a8261182d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611882578082015181840152602081019050611867565b83811115611891576000848401525b50505050565b600060028204905060018216806118af57607f821691505b602082108114156118c3576118c26118f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4d41585f535550504c595f524541434845440000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611cb18161180f565b8114611cbc57600080fd5b50565b611cc88161184d565b8114611cd357600080fd5b5056fea2646970667358221220ef0c29cde962c2499b17569cb8116b98d1eca6ac1033740cf008166ccaa8165464736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000056bc75e2d63100000000000000000000000000000000000000000000000000000000000000000000944414f204d616b65720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344414f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): DAO Maker
Arg [1] : symbol (string): DAO
Arg [2] : initialMint (uint256): 100000000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000056bc75e2d63100000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 44414f204d616b65720000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 44414f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

21359:527:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9353:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11704:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10473:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12485:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10315:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21410:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13189:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20722:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10644:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;:::i;:::-;;21132:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2128:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9572:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21717:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13930:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10977:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11233:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9353:100;9407:13;9440:5;9433:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9353:100;:::o;11704:201::-;11787:4;11804:13;11820:12;:10;:12::i;:::-;11804:28;;11843:32;11852:5;11859:7;11868:6;11843:8;:32::i;:::-;11893:4;11886:11;;;11704:201;;;;:::o;10473:108::-;10534:7;10561:12;;10554:19;;10473:108;:::o;12485:295::-;12616:4;12633:15;12651:12;:10;:12::i;:::-;12633:30;;12674:38;12690:4;12696:7;12705:6;12674:15;:38::i;:::-;12723:27;12733:4;12739:2;12743:6;12723:9;:27::i;:::-;12768:4;12761:11;;;12485:295;;;;;:::o;10315:93::-;10373:5;10398:2;10391:9;;10315:93;:::o;21410:40::-;21444:6;21410:40;:::o;13189:238::-;13277:4;13294:13;13310:12;:10;:12::i;:::-;13294:28;;13333:64;13342:5;13349:7;13386:10;13358:25;13368:5;13375:7;13358:9;:25::i;:::-;:38;;;;:::i;:::-;13333:8;:64::i;:::-;13415:4;13408:11;;;13189:238;;;;:::o;20722:91::-;20778:27;20784:12;:10;:12::i;:::-;20798:6;20778:5;:27::i;:::-;20722:91;:::o;10644:127::-;10718:7;10745:9;:18;10755:7;10745:18;;;;;;;;;;;;;;;;10738:25;;10644:127;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;21132:164::-;21209:46;21225:7;21234:12;:10;:12::i;:::-;21248:6;21209:15;:46::i;:::-;21266:22;21272:7;21281:6;21266:5;:22::i;:::-;21132:164;;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;9572:104::-;9628:13;9661:7;9654:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9572:104;:::o;21717:166::-;2014:13;:11;:13::i;:::-;21444:6:::1;21798;21782:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;21774:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21852:22;21858:7;:5;:7::i;:::-;21867:6;21852:5;:22::i;:::-;21717:166:::0;:::o;13930:436::-;14023:4;14040:13;14056:12;:10;:12::i;:::-;14040:28;;14079:24;14106:25;14116:5;14123:7;14106:9;:25::i;:::-;14079:52;;14170:15;14150:16;:35;;14142:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14263:60;14272:5;14279:7;14307:15;14288:16;:34;14263:8;:60::i;:::-;14354:4;14347:11;;;;13930:436;;;;:::o;10977:193::-;11056:4;11073:13;11089:12;:10;:12::i;:::-;11073:28;;11112;11122:5;11129:2;11133:6;11112:9;:28::i;:::-;11158:4;11151:11;;;10977:193;;;;:::o;11233:151::-;11322:7;11349:11;:18;11361:5;11349:18;;;;;;;;;;;;;;;:27;11368:7;11349:27;;;;;;;;;;;;;;;;11342:34;;11233:151;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;17555:380::-;17708:1;17691:19;;:5;:19;;;;17683:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17789:1;17770:21;;:7;:21;;;;17762:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17873:6;17843:11;:18;17855:5;17843:18;;;;;;;;;;;;;;;:27;17862:7;17843:27;;;;;;;;;;;;;;;:36;;;;17911:7;17895:32;;17904:5;17895:32;;;17920:6;17895:32;;;;;;:::i;:::-;;;;;;;;17555:380;;;:::o;18226:453::-;18361:24;18388:25;18398:5;18405:7;18388:9;:25::i;:::-;18361:52;;18448:17;18428:16;:37;18424:248;;18510:6;18490:16;:26;;18482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18594:51;18603:5;18610:7;18638:6;18619:16;:25;18594:8;:51::i;:::-;18424:248;18350:329;18226:453;;;:::o;14836:671::-;14983:1;14967:18;;:4;:18;;;;14959:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15060:1;15046:16;;:2;:16;;;;15038:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15115:38;15136:4;15142:2;15146:6;15115:20;:38::i;:::-;15166:19;15188:9;:15;15198:4;15188:15;;;;;;;;;;;;;;;;15166:37;;15237:6;15222:11;:21;;15214:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15354:6;15340:11;:20;15322:9;:15;15332:4;15322:15;;;;;;;;;;;;;;;:38;;;;15399:6;15382:9;:13;15392:2;15382:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;15438:2;15423:26;;15432:4;15423:26;;;15442:6;15423:26;;;;;;:::i;:::-;;;;;;;;15462:37;15482:4;15488:2;15492:6;15462:19;:37::i;:::-;14948:559;14836:671;;;:::o;16526:591::-;16629:1;16610:21;;:7;:21;;;;16602:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16682:49;16703:7;16720:1;16724:6;16682:20;:49::i;:::-;16744:22;16769:9;:18;16779:7;16769:18;;;;;;;;;;;;;;;;16744:43;;16824:6;16806:14;:24;;16798:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16943:6;16926:14;:23;16905:9;:18;16915:7;16905:18;;;;;;;;;;;;;;;:44;;;;16987:6;16971:12;;:22;;;;;;;:::i;:::-;;;;;;;;17037:1;17011:37;;17020:7;17011:37;;;17041:6;17011:37;;;;;;:::i;:::-;;;;;;;;17061:48;17081:7;17098:1;17102:6;17061:19;:48::i;:::-;16591:526;16526:591;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;15794:399::-;15897:1;15878:21;;:7;:21;;;;15870:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15948:49;15977:1;15981:7;15990:6;15948:20;:49::i;:::-;16026:6;16010:12;;:22;;;;;;;:::i;:::-;;;;;;;;16065:6;16043:9;:18;16053:7;16043:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;16108:7;16087:37;;16104:1;16087:37;;;16117:6;16087:37;;;;;;:::i;:::-;;;;;;;;16137:48;16165:1;16169:7;16178:6;16137:19;:48::i;:::-;15794:399;;:::o;19279:125::-;;;;:::o;20008:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:119;;;2331:79;;:::i;:::-;2293:119;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2217:329;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2552:118;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2676:109;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;2791:364;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3161:366;;;:::o;3533:::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3533:366;;;:::o;3905:::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;3905:366;;;:::o;4277:::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4277:366;;;:::o;4649:::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4649:366;;;:::o;5021:::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5021:366;;;:::o;5393:::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5393:366;;;:::o;5765:::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5765:366;;;:::o;6137:::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6137:366;;;:::o;6509:::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6509:366;;;:::o;6881:::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;6881:366;;;:::o;7253:::-;7395:3;7416:67;7480:2;7475:3;7416:67;:::i;:::-;7409:74;;7492:93;7581:3;7492:93;:::i;:::-;7610:2;7605:3;7601:12;7594:19;;7253:366;;;:::o;7625:::-;7767:3;7788:67;7852:2;7847:3;7788:67;:::i;:::-;7781:74;;7864:93;7953:3;7864:93;:::i;:::-;7982:2;7977:3;7973:12;7966:19;;7625:366;;;:::o;7997:118::-;8084:24;8102:5;8084:24;:::i;:::-;8079:3;8072:37;7997:118;;:::o;8121:112::-;8204:22;8220:5;8204:22;:::i;:::-;8199:3;8192:35;8121:112;;:::o;8239:222::-;8332:4;8370:2;8359:9;8355:18;8347:26;;8383:71;8451:1;8440:9;8436:17;8427:6;8383:71;:::i;:::-;8239:222;;;;:::o;8467:210::-;8554:4;8592:2;8581:9;8577:18;8569:26;;8605:65;8667:1;8656:9;8652:17;8643:6;8605:65;:::i;:::-;8467:210;;;;:::o;8683:313::-;8796:4;8834:2;8823:9;8819:18;8811:26;;8883:9;8877:4;8873:20;8869:1;8858:9;8854:17;8847:47;8911:78;8984:4;8975:6;8911:78;:::i;:::-;8903:86;;8683:313;;;;:::o;9002:419::-;9168:4;9206:2;9195:9;9191:18;9183:26;;9255:9;9249:4;9245:20;9241:1;9230:9;9226:17;9219:47;9283:131;9409:4;9283:131;:::i;:::-;9275:139;;9002:419;;;:::o;9427:::-;9593:4;9631:2;9620:9;9616:18;9608:26;;9680:9;9674:4;9670:20;9666:1;9655:9;9651:17;9644:47;9708:131;9834:4;9708:131;:::i;:::-;9700:139;;9427:419;;;:::o;9852:::-;10018:4;10056:2;10045:9;10041:18;10033:26;;10105:9;10099:4;10095:20;10091:1;10080:9;10076:17;10069:47;10133:131;10259:4;10133:131;:::i;:::-;10125:139;;9852:419;;;:::o;10277:::-;10443:4;10481:2;10470:9;10466:18;10458:26;;10530:9;10524:4;10520:20;10516:1;10505:9;10501:17;10494:47;10558:131;10684:4;10558:131;:::i;:::-;10550:139;;10277:419;;;:::o;10702:::-;10868:4;10906:2;10895:9;10891:18;10883:26;;10955:9;10949:4;10945:20;10941:1;10930:9;10926:17;10919:47;10983:131;11109:4;10983:131;:::i;:::-;10975:139;;10702:419;;;:::o;11127:::-;11293:4;11331:2;11320:9;11316:18;11308:26;;11380:9;11374:4;11370:20;11366:1;11355:9;11351:17;11344:47;11408:131;11534:4;11408:131;:::i;:::-;11400:139;;11127:419;;;:::o;11552:::-;11718:4;11756:2;11745:9;11741:18;11733:26;;11805:9;11799:4;11795:20;11791:1;11780:9;11776:17;11769:47;11833:131;11959:4;11833:131;:::i;:::-;11825:139;;11552:419;;;:::o;11977:::-;12143:4;12181:2;12170:9;12166:18;12158:26;;12230:9;12224:4;12220:20;12216:1;12205:9;12201:17;12194:47;12258:131;12384:4;12258:131;:::i;:::-;12250:139;;11977:419;;;:::o;12402:::-;12568:4;12606:2;12595:9;12591:18;12583:26;;12655:9;12649:4;12645:20;12641:1;12630:9;12626:17;12619:47;12683:131;12809:4;12683:131;:::i;:::-;12675:139;;12402:419;;;:::o;12827:::-;12993:4;13031:2;13020:9;13016:18;13008:26;;13080:9;13074:4;13070:20;13066:1;13055:9;13051:17;13044:47;13108:131;13234:4;13108:131;:::i;:::-;13100:139;;12827:419;;;:::o;13252:::-;13418:4;13456:2;13445:9;13441:18;13433:26;;13505:9;13499:4;13495:20;13491:1;13480:9;13476:17;13469:47;13533:131;13659:4;13533:131;:::i;:::-;13525:139;;13252:419;;;:::o;13677:::-;13843:4;13881:2;13870:9;13866:18;13858:26;;13930:9;13924:4;13920:20;13916:1;13905:9;13901:17;13894:47;13958:131;14084:4;13958:131;:::i;:::-;13950:139;;13677:419;;;:::o;14102:::-;14268:4;14306:2;14295:9;14291:18;14283:26;;14355:9;14349:4;14345:20;14341:1;14330:9;14326:17;14319:47;14383:131;14509:4;14383:131;:::i;:::-;14375:139;;14102:419;;;:::o;14527:222::-;14620:4;14658:2;14647:9;14643:18;14635:26;;14671:71;14739:1;14728:9;14724:17;14715:6;14671:71;:::i;:::-;14527:222;;;;:::o;14755:214::-;14844:4;14882:2;14871:9;14867:18;14859:26;;14895:67;14959:1;14948:9;14944:17;14935:6;14895:67;:::i;:::-;14755:214;;;;:::o;15056:99::-;15108:6;15142:5;15136:12;15126:22;;15056:99;;;:::o;15161:169::-;15245:11;15279:6;15274:3;15267:19;15319:4;15314:3;15310:14;15295:29;;15161:169;;;;:::o;15336:305::-;15376:3;15395:20;15413:1;15395:20;:::i;:::-;15390:25;;15429:20;15447:1;15429:20;:::i;:::-;15424:25;;15583:1;15515:66;15511:74;15508:1;15505:81;15502:107;;;15589:18;;:::i;:::-;15502:107;15633:1;15630;15626:9;15619:16;;15336:305;;;;:::o;15647:191::-;15687:4;15707:20;15725:1;15707:20;:::i;:::-;15702:25;;15741:20;15759:1;15741:20;:::i;:::-;15736:25;;15780:1;15777;15774:8;15771:34;;;15785:18;;:::i;:::-;15771:34;15830:1;15827;15823:9;15815:17;;15647:191;;;;:::o;15844:96::-;15881:7;15910:24;15928:5;15910:24;:::i;:::-;15899:35;;15844:96;;;:::o;15946:90::-;15980:7;16023:5;16016:13;16009:21;15998:32;;15946:90;;;:::o;16042:126::-;16079:7;16119:42;16112:5;16108:54;16097:65;;16042:126;;;:::o;16174:77::-;16211:7;16240:5;16229:16;;16174:77;;;:::o;16257:86::-;16292:7;16332:4;16325:5;16321:16;16310:27;;16257:86;;;:::o;16349:307::-;16417:1;16427:113;16441:6;16438:1;16435:13;16427:113;;;16526:1;16521:3;16517:11;16511:18;16507:1;16502:3;16498:11;16491:39;16463:2;16460:1;16456:10;16451:15;;16427:113;;;16558:6;16555:1;16552:13;16549:101;;;16638:1;16629:6;16624:3;16620:16;16613:27;16549:101;16398:258;16349:307;;;:::o;16662:320::-;16706:6;16743:1;16737:4;16733:12;16723:22;;16790:1;16784:4;16780:12;16811:18;16801:81;;16867:4;16859:6;16855:17;16845:27;;16801:81;16929:2;16921:6;16918:14;16898:18;16895:38;16892:84;;;16948:18;;:::i;:::-;16892:84;16713:269;16662:320;;;:::o;16988:180::-;17036:77;17033:1;17026:88;17133:4;17130:1;17123:15;17157:4;17154:1;17147:15;17174:180;17222:77;17219:1;17212:88;17319:4;17316:1;17309:15;17343:4;17340:1;17333:15;17483:117;17592:1;17589;17582:12;17606:102;17647:6;17698:2;17694:7;17689:2;17682:5;17678:14;17674:28;17664:38;;17606:102;;;:::o;17714:222::-;17854:34;17850:1;17842:6;17838:14;17831:58;17923:5;17918:2;17910:6;17906:15;17899:30;17714:222;:::o;17942:221::-;18082:34;18078:1;18070:6;18066:14;18059:58;18151:4;18146:2;18138:6;18134:15;18127:29;17942:221;:::o;18169:225::-;18309:34;18305:1;18297:6;18293:14;18286:58;18378:8;18373:2;18365:6;18361:15;18354:33;18169:225;:::o;18400:221::-;18540:34;18536:1;18528:6;18524:14;18517:58;18609:4;18604:2;18596:6;18592:15;18585:29;18400:221;:::o;18627:179::-;18767:31;18763:1;18755:6;18751:14;18744:55;18627:179;:::o;18812:225::-;18952:34;18948:1;18940:6;18936:14;18929:58;19021:8;19016:2;19008:6;19004:15;18997:33;18812:225;:::o;19043:182::-;19183:34;19179:1;19171:6;19167:14;19160:58;19043:182;:::o;19231:220::-;19371:34;19367:1;19359:6;19355:14;19348:58;19440:3;19435:2;19427:6;19423:15;19416:28;19231:220;:::o;19457:224::-;19597:34;19593:1;19585:6;19581:14;19574:58;19666:7;19661:2;19653:6;19649:15;19642:32;19457:224;:::o;19687:223::-;19827:34;19823:1;19815:6;19811:14;19804:58;19896:6;19891:2;19883:6;19879:15;19872:31;19687:223;:::o;19916:168::-;20056:20;20052:1;20044:6;20040:14;20033:44;19916:168;:::o;20090:224::-;20230:34;20226:1;20218:6;20214:14;20207:58;20299:7;20294:2;20286:6;20282:15;20275:32;20090:224;:::o;20320:181::-;20460:33;20456:1;20448:6;20444:14;20437:57;20320:181;:::o;20507:122::-;20580:24;20598:5;20580:24;:::i;:::-;20573:5;20570:35;20560:63;;20619:1;20616;20609:12;20560:63;20507:122;:::o;20635:::-;20708:24;20726:5;20708:24;:::i;:::-;20701:5;20698:35;20688:63;;20747:1;20744;20737:12;20688:63;20635:122;:::o

Swarm Source

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