ETH Price: $2,441.93 (-8.87%)

Token

Coinversation Token (CTO)
 

Overview

Max Total Supply

6,107,943.57499999999999999 CTO

Holders

170

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
131 CTO

Value
$0.00
0x8ea5c071d5b66ed671df6d38190f2f67a1bc4958
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:
CoinversationToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-07
*/

pragma solidity 0.8.4;

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


/**
 * @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);
}


/**
 * @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);
}



/**
 * @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:
     *
     * - `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");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `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");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `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 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 {}
}


/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}


contract CoinversationToken is ERC20Capped {
    uint256 public immutable startReleaseBlock;   // the block num when initial distribution start.
    uint256 public constant MONTH = 195622; // 30 * 24 * 60 * 60 / 13.25

    mapping(address => uint256) public locks12;
    mapping(address => uint256) public lastUnlockEra12;

    mapping(address => uint256) public locks24;
    mapping(address => uint256) public lastUnlockEra24;
    mapping(address => uint256) public addressStartReleaseBlock;
    address public constant DEV_ACCOUNT = 0x2326eAb2a83bbe25dE8B9D0A8cB6dc63Dae6BaF9;
    bool public isDevInitialFundMinted = false;

    constructor(uint256 _startReleaseBlock)
        ERC20("Coinversation Token", "CTO")
        ERC20Capped(100000000 * (10 ** decimals()))
    {
        //13566600
        startReleaseBlock = _startReleaseBlock;

        uint8 decimals = decimals();

        //for initial release
        ERC20._mint(0xDAc57a2C77a64AEFC171339F2891871d9A298EC5, 3604834 * (10 ** decimals));

        //investors' funds locks up in 12 MONTHs
        locks12[0x707E4A05B3dDC2049387BF7B7CFe82D6F09e986e] = 7107144 * (10 ** (decimals - 1));
        locks12[0x316D0e55B47ad86443b25EAa088e203482645046] = 425000 * (10 ** decimals);
        locks12[0xA7060deA79008DEf99508F50DaBDCDe7293c1D8A] = 349225 * (10 ** decimals);
        locks12[0xC286Bc3F74fAce4387959665aF71253461c28d34] = 2125000 * (10 ** decimals);

        locks12[0x3C68319b15Bc0145ce111636f6d8043ACF4D59f6] = 228572 * (10 ** decimals);
        locks12[0x175dd00579DF16669fC993F8AFA4EE8AA962865A] = 228572 * (10 ** decimals);
        locks12[0x729Ea64B1393eD633C069aF04b45e1212905b4A9] = 120000 * (10 ** decimals);
        locks12[0x2C9bC9793AD5c24feD22654Ee13F287329668B55] = 571432 * (10 ** (decimals - 1));
        locks12[0x2295b2e2F0C8CF5e4E9c2cae33ad4F4cCbc95fD5] = 857144 * (10 ** (decimals - 1));

        locks12[0xB7d41bb3863E403c29Fe4CA85D31206b6b507630] = 187500 * (10 ** decimals);
        locks12[0x6D9e32012eC93EBb858F9103B9F7f52eBAb6299F] = 262500 * (10 ** decimals);
        locks12[0x97CA08d4CA2015545eeb81ca71d1Ac719Fe4A8F6] = 93750 * (10 ** decimals);
        locks12[0x968dF8FBF4d7c6C46282a46C5DA7d514b23a98fa] = 562500 * (10 ** decimals);

        locks12[0x16f9cEB2D822ee203a304635d12897dBD2cEeB75] = 93750 * (10 ** decimals);
        locks12[0xe32341a633FA57CA963D2F2dc78D31D76ee258B7] = 65625 * (10 ** decimals);
        locks12[0xE88540354a9565300D2E7109d7737508F4155A4d] = 56250 * (10 ** decimals);
        locks12[0x570DaFD281d70d8d69D19c5A004b0FC3fF52Fd0b] = 56250 * (10 ** decimals);
        locks12[0x9D400eb10623d34CCEc7aaa9FC347921866B9c86] = 75000 * (10 ** decimals);

        locks12[0xb87230a8169366051b1732DfB4687F2A041564cf] = 211425 * (10 ** (decimals - 1));
        locks12[0x67c069523115A6ffE9192F85426cF79f8b4ba7a5] = 2586225 * (10 ** (decimals - 2));
        locks12[0x8786CB3682Cb347AE1226b5A15E991339A877Dfb] = 2586225 * (10 ** (decimals - 2));

        //Project Development Fund locks up in 24 MONTHs
        locks24[0x9C94F95fBa7aDcf936043b817817e18fcb611857] = 12750000 * (10 ** decimals);
        addressStartReleaseBlock[0x9C94F95fBa7aDcf936043b817817e18fcb611857] = _startReleaseBlock;

        //Dev Group Fund locks up in 24 MONTHs and the initial release needs to be delayed by one more MONTH
        locks24[DEV_ACCOUNT] = 13500000 * (10 ** decimals);
        addressStartReleaseBlock[DEV_ACCOUNT] = _startReleaseBlock + MONTH;
    }

    function nextUnlockBlock12(address _account) public view returns (uint) {
        if(locks12[_account] > 0){
            return startReleaseBlock + ((lastUnlockEra12[_account] + 1) * MONTH);
        }else{
            return 0;
        }
    }

    function canUnlockAmount12(address _account) public view returns (uint256, uint) {
        uint startBlock = startReleaseBlock;
        uint lastEra = lastUnlockEra12[_account];
        // When block number less than nextReleaseBlock, no CTO can be unlocked
        if (block.number < (startBlock + ((lastEra + 1) * MONTH))) {
            return (0, 0);
        }
        // When block number more than endReleaseBlock12, all locked CTO can be unlocked
        else if (block.number >= (startBlock + (12 * MONTH))) {
            return (locks12[_account], 12 - lastEra);
        }
        // When block number is more than nextReleaseBlock but less than endReleaseBlock12,
        // some CTO can be released
        else {
            uint eras = (block.number - (startBlock + (lastEra * MONTH))) / MONTH;
            return (locks12[_account] / (12 - lastEra) * eras, eras);
        }
    }

    function canUnlockAmount24(uint _specificStartReleaseBlock, address _account) public view returns (uint256, uint) {
        uint startBlock = _specificStartReleaseBlock;
        uint lastEra = lastUnlockEra24[_account];
        // When block number less than nextReleaseBlock, no CTO can be unlocked
        if (block.number < (startBlock + ((lastEra + 1) * MONTH))) {
            return (0, 0);
        }
        // When block number more than endReleaseBlock24, all locked CTO can be unlocked
        else if (block.number >= (startBlock + (24 * MONTH))) {
            return (locks24[_account], 24 - lastEra);
        }
        // When block number is more than nextReleaseBlock but less than endReleaseBlock24,
        // some CTO can be released
        else {
            uint eras = (block.number - (startBlock + (lastEra * MONTH))) / MONTH;
            return (locks24[_account] / (24 - lastEra) * eras, eras);
        }
    }


    function unlock12() public {
        (uint256 amount, uint eras) = canUnlockAmount12(msg.sender);
        require(amount > 0, "none unlocked CTO");

        _mint(msg.sender, amount);

        locks12[msg.sender] = locks12[msg.sender] - amount;
        lastUnlockEra12[msg.sender] = lastUnlockEra12[msg.sender] + eras;
    }

    function unlock24() public {
        (uint256 amount, uint eras) = canUnlockAmount24(addressStartReleaseBlock[msg.sender], msg.sender);
        require(amount > 0, "none unlocked CTO");

        _mint(msg.sender, amount);

        locks24[msg.sender] = locks24[msg.sender] - amount;
        lastUnlockEra24[msg.sender] = lastUnlockEra24[msg.sender] + eras;
    }

    function mintDevInitialFund() public {
        require(!isDevInitialFundMinted, "already minted");
        require(block.number > addressStartReleaseBlock[DEV_ACCOUNT], "time is not up yet");

        _mint(DEV_ACCOUNT, 1500000 * 10 ** decimals());
        isDevInitialFundMinted = true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_startReleaseBlock","type":"uint256"}],"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":"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":"DEV_ACCOUNT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MONTH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressStartReleaseBlock","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":"address","name":"_account","type":"address"}],"name":"canUnlockAmount12","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_specificStartReleaseBlock","type":"uint256"},{"internalType":"address","name":"_account","type":"address"}],"name":"canUnlockAmount24","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","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":"isDevInitialFundMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastUnlockEra12","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastUnlockEra24","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"locks12","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"locks24","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintDevInitialFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"nextUnlockBlock12","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startReleaseBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"unlock12","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock24","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600a805460ff191690553480156200001b57600080fd5b50604051620021b8380380620021b88339810160408190526200003e9162000c04565b6200004c6012600a62000c81565b6200005c906305f5e10062000d4f565b6040518060400160405280601381526020017f436f696e766572736174696f6e20546f6b656e000000000000000000000000008152506040518060400160405280600381526020016243544f60e81b8152508160039080519060200190620000c692919062000b5e565b508051620000dc90600490602084019062000b5e565b50505060008111620001355760405162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a206361702069732030000000000000000000000060448201526064015b60405180910390fd5b60805260a081905260126200018573dac57a2c77a64aefc171339f2891871d9a298ec56200016583600a62000c81565b62000174906237016262000d4f565b62000a7960201b62000c0d1760201c565b6200019260018262000d71565b6200019f90600a62000c81565b620001ae90626c724862000d4f565b73707e4a05b3ddc2049387bf7b7cfe82d6f09e986e60005260056020527f1426a14e78815292da7496e989ad2b22f9ba4ea7817e9bc0d56334958170380c55620001fa81600a62000c81565b620002099062067c2862000d4f565b73316d0e55b47ad86443b25eaa088e20348264504660005260056020527fd1d948165a8224024a822e89d8b6ebf7dae325633fa24baaf0391d6dd237a6ca556200025581600a62000c81565b62000264906205542962000d4f565b73a7060dea79008def99508f50dabdcde7293c1d8a60005260056020527fcd59abfee7aefc485a36d6907d2d3e9013535e22b77ddfdbfc86bf15a2f56d8f55620002b081600a62000c81565b620002bf9062206cc862000d4f565b73c286bc3f74face4387959665af71253461c28d3460005260056020527fee2b635bd86c0c59feaf53383ad28f432d9ca492b7ca4787a9fb405f08b574f4556200030b81600a62000c81565b6200031a9062037cdc62000d4f565b733c68319b15bc0145ce111636f6d8043acf4d59f660005260056020527f720314b0fd0786a1be63a450253bac739c49214338e0894eb7338cafcc4dfbed556200036681600a62000c81565b620003759062037cdc62000d4f565b73175dd00579df16669fc993f8afa4ee8aa962865a60005260056020527ff828018ce7cae296794f86a2d99d71bbb3234db3d76885ddbdb117a8cfcc88e255620003c181600a62000c81565b620003d0906201d4c062000d4f565b73729ea64b1393ed633c069af04b45e1212905b4a960005260056020527f447f66c546766ba2be377bb9aa52539eb31cdbcd41656fcb4f28762143980bac556200041c60018262000d71565b6200042990600a62000c81565b62000438906208b82862000d4f565b732c9bc9793ad5c24fed22654ee13f287329668b5560005260056020527fc052e1e52440527148c90355d4405e30f61ba035595218dfb993e1bfa5fcb829556200048460018262000d71565b6200049190600a62000c81565b620004a090620d143862000d4f565b732295b2e2f0c8cf5e4e9c2cae33ad4f4ccbc95fd560005260056020527f06ddb23edcb51b15c56535e82762c75097ed5db27a5b2de44ebd1e4be007922555620004ec81600a62000c81565b620004fb906202dc6c62000d4f565b73b7d41bb3863e403c29fe4ca85d31206b6b50763060005260056020527f6af59c5a83ae0c27b650541e22ceaff164522183989c6cc1c1045766c906b70a556200054781600a62000c81565b62000556906204016462000d4f565b736d9e32012ec93ebb858f9103b9f7f52ebab6299f60005260056020527f15a3f8b8a70ef88ccaecda91f33e51be0d04d7130eaea3c949af401e71d80ffc55620005a281600a62000c81565b620005b19062016e3662000d4f565b7397ca08d4ca2015545eeb81ca71d1ac719fe4a8f660005260056020527fd8117cca6b65f80f6fc0b6fea9ba76abcdfedeb6f8456f6afecdb08e8c7b542555620005fd81600a62000c81565b6200060c906208954462000d4f565b73968df8fbf4d7c6c46282a46c5da7d514b23a98fa60005260056020527f9987f8fd9f0db46cf34018f60b2180ebb3c9f5d381927f268ecd7676d1b2d5ac556200065881600a62000c81565b620006679062016e3662000d4f565b7316f9ceb2d822ee203a304635d12897dbd2ceeb7560005260056020527f90369ff85c4ef6250da6d492fbce41d1a0c04cba2f3782cda5b202be7e3fc06355620006b381600a62000c81565b620006c2906201005962000d4f565b73e32341a633fa57ca963d2f2dc78d31d76ee258b760005260056020527f7c54cc34bd3982796166499d589aa7ecf3d6f3169c2fb0b05915206a4944ba18556200070e81600a62000c81565b6200071c9061dbba62000d4f565b73e88540354a9565300d2e7109d7737508f4155a4d60005260056020527f309694ac9382c2974dfc654196aa93507c25ff9b1189d7f09aec90ef2c86d4ff556200076881600a62000c81565b620007769061dbba62000d4f565b73570dafd281d70d8d69d19c5a004b0fc3ff52fd0b60005260056020527f144a5ea3888f5000194f4d7fc570cad024fa9026e2b589039892c5b8fdc0837d55620007c281600a62000c81565b620007d190620124f862000d4f565b739d400eb10623d34ccec7aaa9fc347921866b9c8660005260056020527f72e2a70612cfee283eb3eb845b04cf4bfcf41c5f183fbc28791bbfcaf91a5934556200081d60018262000d71565b6200082a90600a62000c81565b6200083990620339e162000d4f565b73b87230a8169366051b1732dfb4687f2a041564cf60005260056020527f30a7e4e20760e8edb3d7b116b97948273cd84c346db04f7903296992f7b26bb5556200088560028262000d71565b6200089290600a62000c81565b620008a1906227767162000d4f565b7367c069523115a6ffe9192f85426cf79f8b4ba7a560005260056020527ffdf1949ddddf966bcc09307c2b45ceb764f81e25ad25247f2264214d49b7a89255620008ed60028262000d71565b620008fa90600a62000c81565b62000909906227767162000d4f565b738786cb3682cb347ae1226b5a15e991339a877dfb60005260056020527fed2ebddede52f3edcaa1afb7a27bbe73c440bcb287e4a2bb0c8d92d8b757d4ee556200095581600a62000c81565b620009649062c28cb062000d4f565b739c94f95fba7adcf936043b817817e18fcb6118576000527feb0e1ba2daf329e96c3081bbb25b30c8b8584fb38d01939b7344b2f2e96fed185560096020527fc85ec8c5ad8b002f3522bf4f82481b76df42d49cd136892bb19bea72a9e1587a829055620009d481600a62000c81565b620009e39062cdfe6062000d4f565b732326eab2a83bbe25de8b9d0a8cb6dc63dae6baf960005260076020527ff715a180b1bc9d54b2a14d1244d003e1f50a43d8c54ea7ec2ab737257844f4955562000a316202fc268362000c1d565b732326eab2a83bbe25de8b9d0a8cb6dc63dae6baf960005260096020527f51778f52b5b5956fd8a81d39b25797faedf9b9d7fef12f0be1a9ba92803c4b53555062000dea9050565b6001600160a01b03821662000ad15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200012c565b806002600082825462000ae5919062000c1d565b90915550506001600160a01b0382166000908152602081905260408120805483929062000b1490849062000c1d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b82805462000b6c9062000d97565b90600052602060002090601f01602090048101928262000b90576000855562000bdb565b82601f1062000bab57805160ff191683800117855562000bdb565b8280016001018555821562000bdb579182015b8281111562000bdb57825182559160200191906001019062000bbe565b5062000be992915062000bed565b5090565b5b8082111562000be9576000815560010162000bee565b60006020828403121562000c16578081fd5b5051919050565b6000821982111562000c335762000c3362000dd4565b500190565b600181815b8085111562000c7957816000190482111562000c5d5762000c5d62000dd4565b8085161562000c6b57918102915b93841c939080029062000c3d565b509250929050565b600062000c9260ff84168362000c99565b9392505050565b60008262000caa5750600162000d49565b8162000cb95750600062000d49565b816001811462000cd2576002811462000cdd5762000cfd565b600191505062000d49565b60ff84111562000cf15762000cf162000dd4565b50506001821b62000d49565b5060208310610133831016604e8410600b841016171562000d22575081810a62000d49565b62000d2e838362000c38565b806000190482111562000d455762000d4562000dd4565b0290505b92915050565b600081600019048311821515161562000d6c5762000d6c62000dd4565b500290565b600060ff821660ff84168082101562000d8e5762000d8e62000dd4565b90039392505050565b600181811c9082168062000dac57607f821691505b6020821081141562000dce57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60805160a05161139362000e256000396000818161034a01528181610822015261097b01526000818161022f0152610e1301526113936000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a9059cbb11610097578063d5999a5c11610071578063d5999a5c146103f5578063dd62ed3e146103ff578063e91b28ee14610438578063fbe7b6931461045857600080fd5b8063a9059cbb146103ba578063baeefe78146103cd578063bd80a7aa146103d557600080fd5b806382d57db6116100d357806382d57db61461036c57806395d89b411461037f578063a457c2d714610387578063a4f354121461039a57600080fd5b806370a08231146102fc5780637dead707146103255780637ee416151461034557600080fd5b8063355274ea116101665780633c06870a116101405780633c06870a1461028e5780634dc1f222146102ae5780634ec0a295146102c1578063632e04ad146102c957600080fd5b8063355274ea1461022d578063361912bd14610253578063395093511461027b57600080fd5b806306fdde03146101ae578063095ea7b3146101cc57806313b222f2146101ef57806318160ddd146101f957806323b872dd1461020b578063313ce5671461021e575b600080fd5b6101b6610465565b6040516101c3919061115d565b60405180910390f35b6101df6101da366004611112565b6104f7565b60405190151581526020016101c3565b6101f761050e565b005b6002545b6040519081526020016101c3565b6101df6102193660046110d7565b6105c7565b604051601281526020016101c3565b7f00000000000000000000000000000000000000000000000000000000000000006101fd565b61026661026136600461113b565b610671565b604080519283526020830191909152016101c3565b6101df610289366004611112565b61078f565b6101fd61029c366004611084565b60066020526000908152604090205481565b6101fd6102bc366004611084565b6107cb565b6101f7610853565b6102e4732326eab2a83bbe25de8b9d0a8cb6dc63dae6baf981565b6040516001600160a01b0390911681526020016101c3565b6101fd61030a366004611084565b6001600160a01b031660009081526020819052604090205490565b6101fd610333366004611084565b60076020526000908152604090205481565b6101fd7f000000000000000000000000000000000000000000000000000000000000000081565b61026661037a366004611084565b61095e565b6101b6610a93565b6101df610395366004611112565b610aa2565b6101fd6103a8366004611084565b60096020526000908152604090205481565b6101df6103c8366004611112565b610b3b565b6101f7610b48565b6101fd6103e3366004611084565b60086020526000908152604090205481565b6101fd6202fc2681565b6101fd61040d3660046110a5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101fd610446366004611084565b60056020526000908152604090205481565b600a546101df9060ff1681565b6060600380546104749061130c565b80601f01602080910402602001604051908101604052809291908181526020018280546104a09061130c565b80156104ed5780601f106104c2576101008083540402835291602001916104ed565b820191906000526020600020905b8154815290600101906020018083116104d057829003601f168201915b5050505050905090565b6000610504338484610ced565b5060015b92915050565b60008061051a3361095e565b91509150600082116105675760405162461bcd60e51b81526020600482015260116024820152706e6f6e6520756e6c6f636b65642043544f60781b60448201526064015b60405180910390fd5b6105713383610e11565b3360009081526005602052604090205461058c9083906112f5565b336000908152600560209081526040808320939093556006905220546105b39082906111b0565b336000908152600660205260409020555050565b60006105d4848484610e9e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106595760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161055e565b6106668533858403610ced565b506001949350505050565b6001600160a01b038116600090815260086020526040812054819084906202fc2661069d8260016111b0565b6106a791906112d6565b6106b190836111b0565b4310156106c657600080935093505050610788565b6106d46202fc2660186112d6565b6106de90836111b0565b4310610713576001600160a01b0385166000908152600760205260409020546107088260186112f5565b935093505050610788565b60006202fc2661072381846112d6565b61072d90856111b0565b61073790436112f5565b61074191906111c8565b90508061074f8360186112f5565b6001600160a01b03881660009081526007602052604090205461077291906111c8565b61077c91906112d6565b94509250610788915050565b9250929050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105049185906107c69086906111b0565b610ced565b6001600160a01b03811660009081526005602052604081205415610846576001600160a01b0382166000908152600660205260409020546202fc26906108129060016111b0565b61081c91906112d6565b610508907f00000000000000000000000000000000000000000000000000000000000000006111b0565b506000919050565b919050565b600a5460ff16156108975760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b604482015260640161055e565b732326eab2a83bbe25de8b9d0a8cb6dc63dae6baf960005260096020527f51778f52b5b5956fd8a81d39b25797faedf9b9d7fef12f0be1a9ba92803c4b535443116109195760405162461bcd60e51b81526020600482015260126024820152711d1a5b59481a5cc81b9bdd081d5c081e595d60721b604482015260640161055e565b61094f732326eab2a83bbe25de8b9d0a8cb6dc63dae6baf961093d6012600a61122b565b61094a906216e3606112d6565b610e11565b600a805460ff19166001179055565b6001600160a01b03811660009081526006602052604081205481907f0000000000000000000000000000000000000000000000000000000000000000906202fc266109aa8260016111b0565b6109b491906112d6565b6109be90836111b0565b4310156109d2575060009485945092505050565b6109e06202fc26600c6112d6565b6109ea90836111b0565b4310610a1f576001600160a01b038516600090815260056020526040902054610a1482600c6112f5565b935093505050915091565b60006202fc26610a2f81846112d6565b610a3990856111b0565b610a4390436112f5565b610a4d91906111c8565b905080610a5b83600c6112f5565b6001600160a01b038816600090815260056020526040902054610a7e91906111c8565b610a8891906112d6565b969095509350505050565b6060600480546104749061130c565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b245760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161055e565b610b313385858403610ced565b5060019392505050565b6000610504338484610e9e565b3360008181526009602052604081205490918291610b6591610671565b9150915060008211610bad5760405162461bcd60e51b81526020600482015260116024820152706e6f6e6520756e6c6f636b65642043544f60781b604482015260640161055e565b610bb73383610e11565b33600090815260076020526040902054610bd29083906112f5565b33600090815260076020908152604080832093909355600890522054610bf99082906111b0565b336000908152600860205260409020555050565b6001600160a01b038216610c635760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161055e565b8060026000828254610c7591906111b0565b90915550506001600160a01b03821660009081526020819052604081208054839290610ca29084906111b0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b6001600160a01b038316610d4f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161055e565b6001600160a01b038216610db05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161055e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b7f000000000000000000000000000000000000000000000000000000000000000081610e3c60025490565b610e4691906111b0565b1115610e945760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015260640161055e565b610ce98282610c0d565b6001600160a01b038316610f025760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161055e565b6001600160a01b038216610f645760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161055e565b6001600160a01b03831660009081526020819052604090205481811015610fdc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161055e565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906110139084906111b0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161105f91815260200190565b60405180910390a350505050565b80356001600160a01b038116811461084e57600080fd5b600060208284031215611095578081fd5b61109e8261106d565b9392505050565b600080604083850312156110b7578081fd5b6110c08361106d565b91506110ce6020840161106d565b90509250929050565b6000806000606084860312156110eb578081fd5b6110f48461106d565b92506111026020850161106d565b9150604084013590509250925092565b60008060408385031215611124578182fd5b61112d8361106d565b946020939093013593505050565b6000806040838503121561114d578182fd5b823591506110ce6020840161106d565b6000602080835283518082850152825b818110156111895785810183015185820160400152820161116d565b8181111561119a5783604083870101525b50601f01601f1916929092016040019392505050565b600082198211156111c3576111c3611347565b500190565b6000826111e357634e487b7160e01b81526012600452602481fd5b500490565b600181815b8085111561122357816000190482111561120957611209611347565b8085161561121657918102915b93841c93908002906111ed565b509250929050565b600061109e60ff84168360008261124457506001610508565b8161125157506000610508565b816001811461126757600281146112715761128d565b6001915050610508565b60ff84111561128257611282611347565b50506001821b610508565b5060208310610133831016604e8410600b84101617156112b0575081810a610508565b6112ba83836111e8565b80600019048211156112ce576112ce611347565b029392505050565b60008160001904831182151516156112f0576112f0611347565b500290565b60008282101561130757611307611347565b500390565b600181811c9082168061132057607f821691505b6020821081141561134157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212209985f7a2576ab473e1d7a0af1840bb1564398dedf4dd35108e03ed512951af8f64736f6c634300080400330000000000000000000000000000000000000000000000000000000000cf0288

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a9059cbb11610097578063d5999a5c11610071578063d5999a5c146103f5578063dd62ed3e146103ff578063e91b28ee14610438578063fbe7b6931461045857600080fd5b8063a9059cbb146103ba578063baeefe78146103cd578063bd80a7aa146103d557600080fd5b806382d57db6116100d357806382d57db61461036c57806395d89b411461037f578063a457c2d714610387578063a4f354121461039a57600080fd5b806370a08231146102fc5780637dead707146103255780637ee416151461034557600080fd5b8063355274ea116101665780633c06870a116101405780633c06870a1461028e5780634dc1f222146102ae5780634ec0a295146102c1578063632e04ad146102c957600080fd5b8063355274ea1461022d578063361912bd14610253578063395093511461027b57600080fd5b806306fdde03146101ae578063095ea7b3146101cc57806313b222f2146101ef57806318160ddd146101f957806323b872dd1461020b578063313ce5671461021e575b600080fd5b6101b6610465565b6040516101c3919061115d565b60405180910390f35b6101df6101da366004611112565b6104f7565b60405190151581526020016101c3565b6101f761050e565b005b6002545b6040519081526020016101c3565b6101df6102193660046110d7565b6105c7565b604051601281526020016101c3565b7f00000000000000000000000000000000000000000052b7d2dcc80cd2e40000006101fd565b61026661026136600461113b565b610671565b604080519283526020830191909152016101c3565b6101df610289366004611112565b61078f565b6101fd61029c366004611084565b60066020526000908152604090205481565b6101fd6102bc366004611084565b6107cb565b6101f7610853565b6102e4732326eab2a83bbe25de8b9d0a8cb6dc63dae6baf981565b6040516001600160a01b0390911681526020016101c3565b6101fd61030a366004611084565b6001600160a01b031660009081526020819052604090205490565b6101fd610333366004611084565b60076020526000908152604090205481565b6101fd7f0000000000000000000000000000000000000000000000000000000000cf028881565b61026661037a366004611084565b61095e565b6101b6610a93565b6101df610395366004611112565b610aa2565b6101fd6103a8366004611084565b60096020526000908152604090205481565b6101df6103c8366004611112565b610b3b565b6101f7610b48565b6101fd6103e3366004611084565b60086020526000908152604090205481565b6101fd6202fc2681565b6101fd61040d3660046110a5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101fd610446366004611084565b60056020526000908152604090205481565b600a546101df9060ff1681565b6060600380546104749061130c565b80601f01602080910402602001604051908101604052809291908181526020018280546104a09061130c565b80156104ed5780601f106104c2576101008083540402835291602001916104ed565b820191906000526020600020905b8154815290600101906020018083116104d057829003601f168201915b5050505050905090565b6000610504338484610ced565b5060015b92915050565b60008061051a3361095e565b91509150600082116105675760405162461bcd60e51b81526020600482015260116024820152706e6f6e6520756e6c6f636b65642043544f60781b60448201526064015b60405180910390fd5b6105713383610e11565b3360009081526005602052604090205461058c9083906112f5565b336000908152600560209081526040808320939093556006905220546105b39082906111b0565b336000908152600660205260409020555050565b60006105d4848484610e9e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106595760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161055e565b6106668533858403610ced565b506001949350505050565b6001600160a01b038116600090815260086020526040812054819084906202fc2661069d8260016111b0565b6106a791906112d6565b6106b190836111b0565b4310156106c657600080935093505050610788565b6106d46202fc2660186112d6565b6106de90836111b0565b4310610713576001600160a01b0385166000908152600760205260409020546107088260186112f5565b935093505050610788565b60006202fc2661072381846112d6565b61072d90856111b0565b61073790436112f5565b61074191906111c8565b90508061074f8360186112f5565b6001600160a01b03881660009081526007602052604090205461077291906111c8565b61077c91906112d6565b94509250610788915050565b9250929050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105049185906107c69086906111b0565b610ced565b6001600160a01b03811660009081526005602052604081205415610846576001600160a01b0382166000908152600660205260409020546202fc26906108129060016111b0565b61081c91906112d6565b610508907f0000000000000000000000000000000000000000000000000000000000cf02886111b0565b506000919050565b919050565b600a5460ff16156108975760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b604482015260640161055e565b732326eab2a83bbe25de8b9d0a8cb6dc63dae6baf960005260096020527f51778f52b5b5956fd8a81d39b25797faedf9b9d7fef12f0be1a9ba92803c4b535443116109195760405162461bcd60e51b81526020600482015260126024820152711d1a5b59481a5cc81b9bdd081d5c081e595d60721b604482015260640161055e565b61094f732326eab2a83bbe25de8b9d0a8cb6dc63dae6baf961093d6012600a61122b565b61094a906216e3606112d6565b610e11565b600a805460ff19166001179055565b6001600160a01b03811660009081526006602052604081205481907f0000000000000000000000000000000000000000000000000000000000cf0288906202fc266109aa8260016111b0565b6109b491906112d6565b6109be90836111b0565b4310156109d2575060009485945092505050565b6109e06202fc26600c6112d6565b6109ea90836111b0565b4310610a1f576001600160a01b038516600090815260056020526040902054610a1482600c6112f5565b935093505050915091565b60006202fc26610a2f81846112d6565b610a3990856111b0565b610a4390436112f5565b610a4d91906111c8565b905080610a5b83600c6112f5565b6001600160a01b038816600090815260056020526040902054610a7e91906111c8565b610a8891906112d6565b969095509350505050565b6060600480546104749061130c565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b245760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161055e565b610b313385858403610ced565b5060019392505050565b6000610504338484610e9e565b3360008181526009602052604081205490918291610b6591610671565b9150915060008211610bad5760405162461bcd60e51b81526020600482015260116024820152706e6f6e6520756e6c6f636b65642043544f60781b604482015260640161055e565b610bb73383610e11565b33600090815260076020526040902054610bd29083906112f5565b33600090815260076020908152604080832093909355600890522054610bf99082906111b0565b336000908152600860205260409020555050565b6001600160a01b038216610c635760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161055e565b8060026000828254610c7591906111b0565b90915550506001600160a01b03821660009081526020819052604081208054839290610ca29084906111b0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b6001600160a01b038316610d4f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161055e565b6001600160a01b038216610db05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161055e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b7f00000000000000000000000000000000000000000052b7d2dcc80cd2e400000081610e3c60025490565b610e4691906111b0565b1115610e945760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015260640161055e565b610ce98282610c0d565b6001600160a01b038316610f025760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161055e565b6001600160a01b038216610f645760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161055e565b6001600160a01b03831660009081526020819052604090205481811015610fdc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161055e565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906110139084906111b0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161105f91815260200190565b60405180910390a350505050565b80356001600160a01b038116811461084e57600080fd5b600060208284031215611095578081fd5b61109e8261106d565b9392505050565b600080604083850312156110b7578081fd5b6110c08361106d565b91506110ce6020840161106d565b90509250929050565b6000806000606084860312156110eb578081fd5b6110f48461106d565b92506111026020850161106d565b9150604084013590509250925092565b60008060408385031215611124578182fd5b61112d8361106d565b946020939093013593505050565b6000806040838503121561114d578182fd5b823591506110ce6020840161106d565b6000602080835283518082850152825b818110156111895785810183015185820160400152820161116d565b8181111561119a5783604083870101525b50601f01601f1916929092016040019392505050565b600082198211156111c3576111c3611347565b500190565b6000826111e357634e487b7160e01b81526012600452602481fd5b500490565b600181815b8085111561122357816000190482111561120957611209611347565b8085161561121657918102915b93841c93908002906111ed565b509250929050565b600061109e60ff84168360008261124457506001610508565b8161125157506000610508565b816001811461126757600281146112715761128d565b6001915050610508565b60ff84111561128257611282611347565b50506001821b610508565b5060208310610133831016604e8410600b84101617156112b0575081810a610508565b6112ba83836111e8565b80600019048211156112ce576112ce611347565b029392505050565b60008160001904831182151516156112f0576112f0611347565b500290565b60008282101561130757611307611347565b500390565b600181811c9082168061132057607f821691505b6020821081141561134157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212209985f7a2576ab473e1d7a0af1840bb1564398dedf4dd35108e03ed512951af8f64736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000cf0288

-----Decoded View---------------
Arg [0] : _startReleaseBlock (uint256): 13566600

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000cf0288


Deployed Bytecode Sourcemap

16876:6681:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6059:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8226:169;;;;;;:::i;:::-;;:::i;:::-;;;1922:14:1;;1915:22;1897:41;;1885:2;1870:18;8226:169:0;1852:92:1;22537:332:0;;;:::i;:::-;;7179:108;7267:12;;7179:108;;;7293:25:1;;;7281:2;7266:18;7179:108:0;7248:76:1;8877:492:0;;;;;;:::i;:::-;;:::i;7021:93::-;;;7104:2;7724:36:1;;7712:2;7697:18;7021:93:0;7679:87:1;16519:83:0;16590:4;16519:83;;21576:951;;;;;;:::i;:::-;;:::i;:::-;;;;7503:25:1;;;7559:2;7544:18;;7537:34;;;;7476:18;21576:951:0;7458:119:1;9778:215:0;;;;;;:::i;:::-;;:::i;17152:50::-;;;;;;:::i;:::-;;;;;;;;;;;;;;20402:249;;;;;;:::i;:::-;;:::i;23255:299::-;;;:::i;17383:80::-;;17421:42;17383:80;;;;;-1:-1:-1;;;;;1713:32:1;;;1695:51;;1683:2;1668:18;17383:80:0;1650:102:1;7350:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;7451:18:0;7424:7;7451:18;;;;;;;;;;;;7350:127;17211:42;;;;;;:::i;:::-;;;;;;;;;;;;;;16926;;;;;20659:909;;;;;;:::i;:::-;;:::i;6278:104::-;;;:::i;10496:413::-;;;;;;:::i;:::-;;:::i;17317:59::-;;;;;;:::i;:::-;;;;;;;;;;;;;;7690:175;;;;;;:::i;:::-;;:::i;22877:370::-;;;:::i;17260:50::-;;;;;;:::i;:::-;;;;;;;;;;;;;;17027:38;;17059:6;17027:38;;7928:151;;;;;;:::i;:::-;-1:-1:-1;;;;;8044:18:0;;;8017:7;8044:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7928:151;17103:42;;;;;;:::i;:::-;;;;;;;;;;;;;;17470;;;;;;;;;6059:100;6113:13;6146:5;6139:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6059:100;:::o;8226:169::-;8309:4;8326:39;646:10;8349:7;8358:6;8326:8;:39::i;:::-;-1:-1:-1;8383:4:0;8226:169;;;;;:::o;22537:332::-;22576:14;22592:9;22605:29;22623:10;22605:17;:29::i;:::-;22575:59;;;;22662:1;22653:6;:10;22645:40;;;;-1:-1:-1;;;22645:40:0;;3163:2:1;22645:40:0;;;3145:21:1;3202:2;3182:18;;;3175:30;-1:-1:-1;;;3221:18:1;;;3214:47;3278:18;;22645:40:0;;;;;;;;;22698:25;22704:10;22716:6;22698:5;:25::i;:::-;22766:10;22758:19;;;;:7;:19;;;;;;:28;;22780:6;;22758:28;:::i;:::-;22744:10;22736:19;;;;:7;:19;;;;;;;;:50;;;;22827:15;:27;;;;:34;;22857:4;;22827:34;:::i;:::-;22813:10;22797:27;;;;:15;:27;;;;;:64;-1:-1:-1;;22537:332:0:o;8877:492::-;9017:4;9034:36;9044:6;9052:9;9063:6;9034:9;:36::i;:::-;-1:-1:-1;;;;;9110:19:0;;9083:24;9110:19;;;:11;:19;;;;;;;;646:10;9110:33;;;;;;;;9162:26;;;;9154:79;;;;-1:-1:-1;;;9154:79:0;;4319:2:1;9154:79:0;;;4301:21:1;4358:2;4338:18;;;4331:30;4397:34;4377:18;;;4370:62;-1:-1:-1;;;4448:18:1;;;4441:38;4496:19;;9154:79:0;4291:230:1;9154:79:0;9269:57;9278:6;646:10;9319:6;9300:16;:25;9269:8;:57::i;:::-;-1:-1:-1;9357:4:0;;8877:492;-1:-1:-1;;;;8877:492:0:o;21576:951::-;-1:-1:-1;;;;;21771:25:0;;21675:7;21771:25;;;:15;:25;;;;;;21675:7;;21719:26;;17059:6;21923:11;21771:25;21933:1;21923:11;:::i;:::-;21922:21;;;;:::i;:::-;21908:36;;:10;:36;:::i;:::-;21892:12;:53;21888:632;;;21970:1;21973;21962:13;;;;;;;;21888:632;22127:10;17059:6;22127:2;:10;:::i;:::-;22113:25;;:10;:25;:::i;:::-;22096:12;:43;22092:428;;-1:-1:-1;;;;;22164:17:0;;;;;;:7;:17;;;;;;22183:12;22188:7;22183:2;:12;:::i;:::-;22156:40;;;;;;;;22092:428;22368:9;17059:6;22411:15;17059:6;22411:7;:15;:::i;:::-;22397:30;;:10;:30;:::i;:::-;22381:47;;:12;:47;:::i;:::-;22380:57;;;;:::i;:::-;22368:69;-1:-1:-1;22368:69:0;22481:12;22486:7;22481:2;:12;:::i;:::-;-1:-1:-1;;;;;22460:17:0;;;;;;:7;:17;;;;;;:34;;;;:::i;:::-;:41;;;;:::i;:::-;22452:56;-1:-1:-1;22503:4:0;-1:-1:-1;22452:56:0;;-1:-1:-1;;22452:56:0;21576:951;;;;;;:::o;9778:215::-;646:10;9866:4;9915:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9915:34:0;;;;;;;;;;9866:4;;9883:80;;9906:7;;9915:47;;9952:10;;9915:47;:::i;:::-;9883:8;:80::i;20402:249::-;-1:-1:-1;;;;;20488:17:0;;20468:4;20488:17;;;:7;:17;;;;;;:21;20485:159;;-1:-1:-1;;;;;20554:25:0;;;;;;:15;:25;;;;;;17059:6;;20554:29;;20582:1;20554:29;:::i;:::-;20553:39;;;;:::i;:::-;20532:61;;:17;:61;:::i;20485:159::-;-1:-1:-1;20631:1:0;;20402:249;-1:-1:-1;20402:249:0:o;20485:159::-;20402:249;;;:::o;23255:299::-;23312:22;;;;23311:23;23303:50;;;;-1:-1:-1;;;23303:50:0;;7006:2:1;23303:50:0;;;6988:21:1;7045:2;7025:18;;;7018:30;-1:-1:-1;;;7064:18:1;;;7057:44;7118:18;;23303:50:0;6978:164:1;23303:50:0;17421:42;23387:37;;:24;:37;;;;23372:12;:52;23364:83;;;;-1:-1:-1;;;23364:83:0;;5893:2:1;23364:83:0;;;5875:21:1;5932:2;5912:18;;;5905:30;-1:-1:-1;;;5951:18:1;;;5944:48;6009:18;;23364:83:0;5865:168:1;23364:83:0;23460:46;17421:42;23489:16;7104:2;23489;:16;:::i;:::-;23479:26;;:7;:26;:::i;:::-;23460:5;:46::i;:::-;23517:22;:29;;-1:-1:-1;;23517:29:0;23542:4;23517:29;;;23255:299::o;20659:909::-;-1:-1:-1;;;;;20812:25:0;;20725:7;20812:25;;;:15;:25;;;;;;20725:7;;20769:17;;17059:6;20964:11;20812:25;20974:1;20964:11;:::i;:::-;20963:21;;;;:::i;:::-;20949:36;;:10;:36;:::i;:::-;20933:12;:53;20929:632;;;-1:-1:-1;21011:1:0;;;;-1:-1:-1;20659:909:0;-1:-1:-1;;;20659:909:0:o;20929:632::-;21168:10;17059:6;21168:2;:10;:::i;:::-;21154:25;;:10;:25;:::i;:::-;21137:12;:43;21133:428;;-1:-1:-1;;;;;21205:17:0;;;;;;:7;:17;;;;;;21224:12;21229:7;21224:2;:12;:::i;:::-;21197:40;;;;;;20659:909;;;:::o;21133:428::-;21409:9;17059:6;21452:15;17059:6;21452:7;:15;:::i;:::-;21438:30;;:10;:30;:::i;:::-;21422:47;;:12;:47;:::i;:::-;21421:57;;;;:::i;:::-;21409:69;-1:-1:-1;21409:69:0;21522:12;21527:7;21522:2;:12;:::i;:::-;-1:-1:-1;;;;;21501:17:0;;;;;;:7;:17;;;;;;:34;;;;:::i;:::-;:41;;;;:::i;:::-;21493:56;21544:4;;-1:-1:-1;20659:909:0;-1:-1:-1;;;;20659:909:0:o;6278:104::-;6334:13;6367:7;6360:14;;;;;:::i;10496:413::-;646:10;10589:4;10633:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10633:34:0;;;;;;;;;;10686:35;;;;10678:85;;;;-1:-1:-1;;;10678:85:0;;6240:2:1;10678:85:0;;;6222:21:1;6279:2;6259:18;;;6252:30;6318:34;6298:18;;;6291:62;-1:-1:-1;;;6369:18:1;;;6362:35;6414:19;;10678:85:0;6212:227:1;10678:85:0;10799:67;646:10;10822:7;10850:15;10831:16;:34;10799:8;:67::i;:::-;-1:-1:-1;10897:4:0;;10496:413;-1:-1:-1;;;10496:413:0:o;7690:175::-;7776:4;7793:42;646:10;7817:9;7828:6;7793:9;:42::i;22877:370::-;22988:10;22916:14;22963:36;;;:24;:36;;;;;;22916:14;;;;22945:67;;:17;:67::i;:::-;22915:97;;;;23040:1;23031:6;:10;23023:40;;;;-1:-1:-1;;;23023:40:0;;3163:2:1;23023:40:0;;;3145:21:1;3202:2;3182:18;;;3175:30;-1:-1:-1;;;3221:18:1;;;3214:47;3278:18;;23023:40:0;3135:167:1;23023:40:0;23076:25;23082:10;23094:6;23076:5;:25::i;:::-;23144:10;23136:19;;;;:7;:19;;;;;;:28;;23158:6;;23136:28;:::i;:::-;23122:10;23114:19;;;;:7;:19;;;;;;;;:50;;;;23205:15;:27;;;;:34;;23235:4;;23205:34;:::i;:::-;23191:10;23175:27;;;;:15;:27;;;;;:64;-1:-1:-1;;22877:370:0:o;12419:399::-;-1:-1:-1;;;;;12503:21:0;;12495:65;;;;-1:-1:-1;;;12495:65:0;;6646:2:1;12495:65:0;;;6628:21:1;6685:2;6665:18;;;6658:30;6724:33;6704:18;;;6697:61;6775:18;;12495:65:0;6618:181:1;12495:65:0;12651:6;12635:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12668:18:0;;:9;:18;;;;;;;;;;:28;;12690:6;;12668:9;:28;;12690:6;;12668:28;:::i;:::-;;;;-1:-1:-1;;12712:37:0;;7293:25:1;;;-1:-1:-1;;;;;12712:37:0;;;12729:1;;12712:37;;7281:2:1;7266:18;12712:37:0;;;;;;;12762:48;12419:399;;:::o;14180:380::-;-1:-1:-1;;;;;14316:19:0;;14308:68;;;;-1:-1:-1;;;14308:68:0;;5488:2:1;14308:68:0;;;5470:21:1;5527:2;5507:18;;;5500:30;5566:34;5546:18;;;5539:62;-1:-1:-1;;;5617:18:1;;;5610:34;5661:19;;14308:68:0;5460:226:1;14308:68:0;-1:-1:-1;;;;;14395:21:0;;14387:68;;;;-1:-1:-1;;;14387:68:0;;3509:2:1;14387:68:0;;;3491:21:1;3548:2;3528:18;;;3521:30;3587:34;3567:18;;;3560:62;-1:-1:-1;;;3638:18:1;;;3631:32;3680:19;;14387:68:0;3481:224:1;14387:68:0;-1:-1:-1;;;;;14468:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14520:32;;7293:25:1;;;14520:32:0;;7266:18:1;14520:32:0;;;;;;;14180:380;;;:::o;16660:207::-;16590:4;16775:6;16753:19;7267:12;;;7179:108;16753:19;:28;;;;:::i;:::-;:37;;16745:75;;;;-1:-1:-1;;;16745:75:0;;5134:2:1;16745:75:0;;;5116:21:1;5173:2;5153:18;;;5146:30;5212:27;5192:18;;;5185:55;5257:18;;16745:75:0;5106:175:1;16745:75:0;16831:28;16843:7;16852:6;16831:11;:28::i;11399:733::-;-1:-1:-1;;;;;11539:20:0;;11531:70;;;;-1:-1:-1;;;11531:70:0;;4728:2:1;11531:70:0;;;4710:21:1;4767:2;4747:18;;;4740:30;4806:34;4786:18;;;4779:62;-1:-1:-1;;;4857:18:1;;;4850:35;4902:19;;11531:70:0;4700:227:1;11531:70:0;-1:-1:-1;;;;;11620:23:0;;11612:71;;;;-1:-1:-1;;;11612:71:0;;2759:2:1;11612:71:0;;;2741:21:1;2798:2;2778:18;;;2771:30;2837:34;2817:18;;;2810:62;-1:-1:-1;;;2888:18:1;;;2881:33;2931:19;;11612:71:0;2731:225:1;11612:71:0;-1:-1:-1;;;;;11780:17:0;;11756:21;11780:17;;;;;;;;;;;11816:23;;;;11808:74;;;;-1:-1:-1;;;11808:74:0;;3912:2:1;11808:74:0;;;3894:21:1;3951:2;3931:18;;;3924:30;3990:34;3970:18;;;3963:62;-1:-1:-1;;;4041:18:1;;;4034:36;4087:19;;11808:74:0;3884:228:1;11808:74:0;-1:-1:-1;;;;;11918:17:0;;;:9;:17;;;;;;;;;;;11938:22;;;11918:42;;11982:20;;;;;;;;:30;;11954:6;;11918:9;11982:30;;11954:6;;11982:30;:::i;:::-;;;;;;;;12047:9;-1:-1:-1;;;;;12030:35:0;12039:6;-1:-1:-1;;;;;12030:35:0;;12058:6;12030:35;;;;7293:25:1;;7281:2;7266:18;;7248:76;12030:35:0;;;;;;;;11399:733;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;192:196;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:264::-;1348:6;1356;1409:2;1397:9;1388:7;1384:23;1380:32;1377:2;;;1430:6;1422;1415:22;1377:2;1471:9;1458:23;1448:33;;1500:38;1534:2;1523:9;1519:18;1500:38;:::i;1949:603::-;2061:4;2090:2;2119;2108:9;2101:21;2151:6;2145:13;2194:6;2189:2;2178:9;2174:18;2167:34;2219:4;2232:140;2246:6;2243:1;2240:13;2232:140;;;2341:14;;;2337:23;;2331:30;2307:17;;;2326:2;2303:26;2296:66;2261:10;;2232:140;;;2390:6;2387:1;2384:13;2381:2;;;2460:4;2455:2;2446:6;2435:9;2431:22;2427:31;2420:45;2381:2;-1:-1:-1;2536:2:1;2515:15;-1:-1:-1;;2511:29:1;2496:45;;;;2543:2;2492:54;;2070:482;-1:-1:-1;;;2070:482:1:o;7771:128::-;7811:3;7842:1;7838:6;7835:1;7832:13;7829:2;;;7848:18;;:::i;:::-;-1:-1:-1;7884:9:1;;7819:80::o;7904:217::-;7944:1;7970;7960:2;;-1:-1:-1;;;7995:31:1;;8049:4;8046:1;8039:15;8077:4;8002:1;8067:15;7960:2;-1:-1:-1;8106:9:1;;7950:171::o;8126:422::-;8215:1;8258:5;8215:1;8272:270;8293:7;8283:8;8280:21;8272:270;;;8352:4;8348:1;8344:6;8340:17;8334:4;8331:27;8328:2;;;8361:18;;:::i;:::-;8411:7;8401:8;8397:22;8394:2;;;8431:16;;;;8394:2;8510:22;;;;8470:15;;;;8272:270;;;8276:3;8190:358;;;;;:::o;8553:140::-;8611:5;8640:47;8681:4;8671:8;8667:19;8661:4;8747:5;8777:8;8767:2;;-1:-1:-1;8818:1:1;8832:5;;8767:2;8866:4;8856:2;;-1:-1:-1;8903:1:1;8917:5;;8856:2;8948:4;8966:1;8961:59;;;;9034:1;9029:130;;;;8941:218;;8961:59;8991:1;8982:10;;9005:5;;;9029:130;9066:3;9056:8;9053:17;9050:2;;;9073:18;;:::i;:::-;-1:-1:-1;;9129:1:1;9115:16;;9144:5;;8941:218;;9243:2;9233:8;9230:16;9224:3;9218:4;9215:13;9211:36;9205:2;9195:8;9192:16;9187:2;9181:4;9178:12;9174:35;9171:77;9168:2;;;-1:-1:-1;9280:19:1;;;9312:5;;9168:2;9359:34;9384:8;9378:4;9359:34;:::i;:::-;9429:6;9425:1;9421:6;9417:19;9408:7;9405:32;9402:2;;;9440:18;;:::i;:::-;9478:20;;8757:747;-1:-1:-1;;;8757:747:1:o;9509:168::-;9549:7;9615:1;9611;9607:6;9603:14;9600:1;9597:21;9592:1;9585:9;9578:17;9574:45;9571:2;;;9622:18;;:::i;:::-;-1:-1:-1;9662:9:1;;9561:116::o;9682:125::-;9722:4;9750:1;9747;9744:8;9741:2;;;9755:18;;:::i;:::-;-1:-1:-1;9792:9:1;;9731:76::o;9812:380::-;9891:1;9887:12;;;;9934;;;9955:2;;10009:4;10001:6;9997:17;9987:27;;9955:2;10062;10054:6;10051:14;10031:18;10028:38;10025:2;;;10108:10;10103:3;10099:20;10096:1;10089:31;10143:4;10140:1;10133:15;10171:4;10168:1;10161:15;10025:2;;9867:325;;;:::o;10197:127::-;10258:10;10253:3;10249:20;10246:1;10239:31;10289:4;10286:1;10279:15;10313:4;10310:1;10303:15

Swarm Source

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