ETH Price: $2,766.62 (+5.45%)

Token

Many (MANY)
 

Overview

Max Total Supply

700,000,000 MANY

Holders

674

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
0x564f.eth
Balance
400 MANY

Value
$0.00
0x564fc5027be63048121d54608cabf441e1f63473
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:
Many

Compiler Version
v0.6.11+commit.5ef660b1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-09-24
*/

pragma solidity ^0.6.11;
pragma experimental ABIEncoderV2;

// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol
// Subject to the MIT license.

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting with custom message on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, errorMessage);

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on underflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot underflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction underflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on underflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot underflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, errorMessage);

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers.
     * Reverts on division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers.
     * Reverts with custom message on division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract Many {
    /// @notice EIP-20 token name for this token
    string public constant name = "Many";

    /// @notice EIP-20 token symbol for this token
    string public constant symbol = "MANY";

    /// @notice EIP-20 token decimals for this token
    uint8 public constant decimals = 18;

    /// @notice Total number of tokens in circulation
    uint public totalSupply = 700_000_000e18; // 700 million Many

    /// @notice Address which may mint new tokens
    address public minter;

    /// @notice The timestamp after which minting may occur
    uint public mintingAllowedAfter;

    /// @notice Minimum time between mints
    uint32 public constant minimumTimeBetweenMints = 1 days * 365;

    /// @notice Cap on the percentage of totalSupply that can be minted at each mint
    uint8 public constant mintCap = 2;

    /// @notice Allowance amounts on behalf of others
    mapping (address => mapping (address => uint96)) internal allowances;

    /// @notice Official record of token balances for each account
    mapping (address => uint96) internal balances;

    /// @notice A record of each accounts delegate
    mapping (address => address) public delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint96 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice The EIP-712 typehash for the permit struct used by the contract
    bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

    /// @notice An event thats emitted when the minter address is changed
    event MinterChanged(address minter, address newMinter);

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /// @notice The standard EIP-20 transfer event
    event Transfer(address indexed from, address indexed to, uint256 amount);

    /// @notice The standard EIP-20 approval event
    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /**
     * @notice Construct a new Many token
     * @param account The initial account to grant all the tokens
     * @param minter_ The account with minting ability
     * @param mintingAllowedAfter_ The timestamp after which minting may occur
     */
    constructor(address account, address minter_, uint mintingAllowedAfter_) public {
        require(mintingAllowedAfter_ >= block.timestamp, "Many::constructor: minting can only begin after deployment");

        balances[account] = uint96(totalSupply);
        emit Transfer(address(0), account, totalSupply);
        minter = minter_;
        emit MinterChanged(address(0), minter);
        mintingAllowedAfter = mintingAllowedAfter_;
    }

    /**
     * @notice Change the minter address
     * @param minter_ The address of the new minter
     */
    function setMinter(address minter_) external {
        require(msg.sender == minter, "Many::setMinter: only the minter can change the minter address");
        emit MinterChanged(minter, minter_);
        minter = minter_;
    }

    /**
     * @notice Mint new tokens
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to be minted
     */
    function mint(address dst, uint rawAmount) external {
        require(msg.sender == minter, "Many::mint: only the minter can mint");
        require(block.timestamp >= mintingAllowedAfter, "Many::mint: minting not allowed yet");
        require(dst != address(0), "Many::mint: cannot transfer to the zero address");

        // record the mint
        mintingAllowedAfter = SafeMath.add(block.timestamp, minimumTimeBetweenMints);

        // mint the amount
        uint96 amount = safe96(rawAmount, "Many::mint: amount exceeds 96 bits");
        require(amount <= SafeMath.div(SafeMath.mul(totalSupply, mintCap), 100), "Many::mint: exceeded mint cap");
        totalSupply = safe96(SafeMath.add(totalSupply, amount), "Many::mint: totalSupply exceeds 96 bits");

        // transfer the amount to the recipient
        balances[dst] = add96(balances[dst], amount, "Many::mint: transfer amount overflows");
        emit Transfer(address(0), dst, amount);

        // move delegates
        _moveDelegates(address(0), delegates[dst], amount);
    }

    /**
     * @notice Get the number of tokens `spender` is approved to spend on behalf of `account`
     * @param account The address of the account holding the funds
     * @param spender The address of the account spending the funds
     * @return The number of tokens approved
     */
    function allowance(address account, address spender) external view returns (uint) {
        return allowances[account][spender];
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint rawAmount) external returns (bool) {
        uint96 amount;
        if (rawAmount == uint(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "Many::approve: amount exceeds 96 bits");
        }

        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    /**
     * @notice Triggers an approval from owner to spends
     * @param owner The address to approve from
     * @param spender The address to be approved
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @param deadline The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function permit(address owner, address spender, uint rawAmount, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
        uint96 amount;
        if (rawAmount == uint(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "Many::permit: amount exceeds 96 bits");
        }

        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, rawAmount, nonces[owner]++, deadline));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "Many::permit: invalid signature");
        require(signatory == owner, "Many::permit: unauthorized");
        require(now <= deadline, "Many::permit: signature expired");

        allowances[owner][spender] = amount;

        emit Approval(owner, spender, amount);
    }

    /**
     * @notice Get the number of tokens held by the `account`
     * @param account The address of the account to get the balance of
     * @return The number of tokens held
     */
    function balanceOf(address account) external view returns (uint) {
        return balances[account];
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint rawAmount) external returns (bool) {
        uint96 amount = safe96(rawAmount, "Many::transfer: amount exceeds 96 bits");
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address src, address dst, uint rawAmount) external returns (bool) {
        address spender = msg.sender;
        uint96 spenderAllowance = allowances[src][spender];
        uint96 amount = safe96(rawAmount, "Many::approve: amount exceeds 96 bits");

        if (spender != src && spenderAllowance != uint96(-1)) {
            uint96 newAllowance = sub96(spenderAllowance, amount, "Many::transferFrom: transfer amount exceeds spender allowance");
            allowances[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public {
        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "Many::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "Many::delegateBySig: invalid nonce");
        require(now <= expiry, "Many::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint96) {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber) public view returns (uint96) {
        require(blockNumber < block.number, "Many::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint96 delegatorBalance = balances[delegator];
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _transferTokens(address src, address dst, uint96 amount) internal {
        require(src != address(0), "Many::_transferTokens: cannot transfer from the zero address");
        require(dst != address(0), "Many::_transferTokens: cannot transfer to the zero address");

        balances[src] = sub96(balances[src], amount, "Many::_transferTokens: transfer amount exceeds balance");
        balances[dst] = add96(balances[dst], amount, "Many::_transferTokens: transfer amount overflows");
        emit Transfer(src, dst, amount);

        _moveDelegates(delegates[src], delegates[dst], amount);
    }

    function _moveDelegates(address srcRep, address dstRep, uint96 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint96 srcRepNew = sub96(srcRepOld, amount, "Many::_moveVotes: vote amount underflows");
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint96 dstRepNew = add96(dstRepOld, amount, "Many::_moveVotes: vote amount overflows");
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes) internal {
        uint32 blockNumber = safe32(block.number, "Many::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function safe96(uint n, string memory errorMessage) internal pure returns (uint96) {
        require(n < 2**96, errorMessage);
        return uint96(n);
    }

    function add96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) {
        uint96 c = a + b;
        require(c >= a, errorMessage);
        return c;
    }

    function sub96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) {
        require(b <= a, errorMessage);
        return a - b;
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"minter_","type":"address"},{"internalType":"uint256","name":"mintingAllowedAfter_","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":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"address","name":"newMinter","type":"address"}],"name":"MinterChanged","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","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":"rawAmount","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":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint96","name":"votes","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumTimeBetweenMints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintCap","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingAllowedAfter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter_","type":"address"}],"name":"setMinter","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":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040526b024306c4097859c43c0000006000553480156200002157600080fd5b50604051620026313803806200263183398101604081905262000044916200016f565b42811015620000705760405162461bcd60e51b81526004016200006790620001cb565b60405180910390fd5b600080546001600160a01b0385168083526004602052604080842080546001600160601b0319166001600160601b0390941693909317909255825491519092917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000de919062000228565b60405180910390a3600180546001600160a01b0319166001600160a01b0384811691909117918290556040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6926200013d92600092911690620001b1565b60405180910390a160025550620002319050565b80516001600160a01b03811681146200016957600080fd5b92915050565b60008060006060848603121562000184578283fd5b62000190858562000151565b9250620001a1856020860162000151565b9150604084015190509250925092565b6001600160a01b0392831681529116602082015260400190565b6020808252603a908201527f4d616e793a3a636f6e7374727563746f723a206d696e74696e672063616e206f60408201527f6e6c7920626567696e206166746572206465706c6f796d656e74000000000000606082015260800190565b90815260200190565b6123f080620002416000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80636fcfff45116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e1461035b578063e7a324dc1461036e578063f1127ed814610376578063fca3b5aa14610397576101a9565b8063b4b5ea5714610322578063c3cda52014610335578063d505accf14610348576101a9565b8063782d6fe1116100d3578063782d6fe1146102d45780637ecebe00146102f457806395d89b4114610307578063a9059cbb1461030f576101a9565b80636fcfff45146102a657806370a08231146102b957806376c71ca1146102cc576101a9565b806330adf81f1161016657806340c10f191161014057806340c10f1914610256578063587cde1e1461026b5780635c11d62f1461027e5780635c19a95c14610293576101a9565b806330adf81f1461023157806330b36cef14610239578063313ce56714610241576101a9565b806306fdde03146101ae57806307546172146101cc578063095ea7b3146101e157806318160ddd1461020157806320606b701461021657806323b872dd1461021e575b600080fd5b6101b66103aa565b6040516101c39190611c8d565b60405180910390f35b6101d46103ca565b6040516101c39190611bb1565b6101f46101ef3660046119c0565b6103d9565b6040516101c39190611bdf565b610209610498565b6040516101c39190611bea565b61020961049e565b6101f461022c366004611914565b6104b5565b6102096105fc565b610209610608565b61024961060e565b6040516101c39190612166565b6102696102643660046119c0565b610613565b005b6101d46102793660046118c5565b61082e565b610286610849565b6040516101c39190612136565b6102696102a13660046118c5565b610851565b6102866102b43660046118c5565b61085e565b6102096102c73660046118c5565b610876565b61024961089a565b6102e76102e23660046119c0565b61089f565b6040516101c39190612174565b6102096103023660046118c5565b610aad565b6101b6610abf565b6101f461031d3660046119c0565b610adf565b6102e76103303660046118c5565b610b1b565b6102696103433660046119ea565b610b8c565b610269610356366004611954565b610d72565b6102096103693660046118e0565b61105a565b61020961108e565b610389610384366004611a43565b61109a565b6040516101c3929190612147565b6102696103a53660046118c5565b6110cf565b604051806040016040528060048152602001634d616e7960e01b81525081565b6001546001600160a01b031681565b6000806000198314156103ef5750600019610414565b6104118360405180606001604052806025815260200161220260259139611162565b90505b3360008181526003602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610484908590612174565b60405180910390a360019150505b92915050565b60005481565b6040516104aa90611b07565b604051809103902081565b6001600160a01b03831660009081526003602090815260408083203380855290835281842054825160608101909352602580845291936001600160601b0390911692859261050d928892919061220290830139611162565b9050866001600160a01b0316836001600160a01b03161415801561053a57506001600160601b0382811614155b156105e457600061056483836040518060600160405280603d8152602001612357603d9139611191565b6001600160a01b038981166000818152600360209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105da908590612174565b60405180910390a3505b6105ef8787836111d0565b5060019695505050505050565b6040516104aa90611a9d565b60025481565b601281565b6001546001600160a01b031633146106465760405162461bcd60e51b815260040161063d90612017565b60405180910390fd5b6002544210156106685760405162461bcd60e51b815260040161063d90611fd4565b6001600160a01b03821661068e5760405162461bcd60e51b815260040161063d90611e02565b61069c426301e13380611376565b60028190555060006106c68260405180606001604052806022815260200161233560229139611162565b90506106e26106db600054600260ff1661139b565b60646113d5565b816001600160601b0316111561070a5760405162461bcd60e51b815260040161063d906120ff565b610740610722600054836001600160601b0316611376565b60405180606001604052806027815260200161239460279139611162565b6001600160601b0390811660009081556001600160a01b03851681526004602090815260409182902054825160608101909352602580845261079294919091169285929091906122e890830139611417565b6001600160a01b03841660008181526004602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107fc908590612174565b60405180910390a36001600160a01b03808416600090815260056020526040812054610829921683611453565b505050565b6005602052600090815260409020546001600160a01b031681565b6301e1338081565b61085b33826115e5565b50565b60076020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600460205260409020546001600160601b031690565b600281565b60004382106108c05760405162461bcd60e51b815260040161063d9061205b565b6001600160a01b03831660009081526007602052604090205463ffffffff16806108ee576000915050610492565b6001600160a01b038416600090815260066020908152604080832063ffffffff60001986018116855292529091205416831061096a576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b03169050610492565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff168310156109a5576000915050610492565b600060001982015b8163ffffffff168163ffffffff161115610a6857600282820363ffffffff160481036109d7611886565b506001600160a01b038716600090815260066020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610a43576020015194506104929350505050565b805163ffffffff16871115610a5a57819350610a61565b6001820392505b50506109ad565b506001600160a01b038516600090815260066020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60086020526000908152604090205481565b604051806040016040528060048152602001634d414e5960e01b81525081565b600080610b04836040518060600160405280602681526020016121dc60269139611162565b9050610b113385836111d0565b5060019392505050565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610b46576000610b85565b6001600160a01b0383166000908152600660209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03165b9392505050565b6000604051610b9a90611b07565b6040805191829003822082820190915260048252634d616e7960e01b6020909201919091527f5315825fb5d166148e7b66a92f18f899e287566fa8c2166e769e4d8b19bdc72e610be861166f565b30604051602001610bfc9493929190611c4b565b6040516020818303038152906040528051906020012090506000604051610c2290611b62565b604051908190038120610c3d918a908a908a90602001611c27565b60405160208183030381529060405280519060200120905060008282604051602001610c6a929190611a82565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610ca79493929190611c6f565b6020604051602081039080840390855afa158015610cc9573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610cfc5760405162461bcd60e51b815260040161063d90611ce0565b6001600160a01b03811660009081526008602052604090208054600181019091558914610d3b5760405162461bcd60e51b815260040161063d90611e51565b87421115610d5b5760405162461bcd60e51b815260040161063d90611f4d565b610d65818b6115e5565b505050505b505050505050565b6000600019861415610d875750600019610dac565b610da9866040518060600160405280602481526020016121b860249139611162565b90505b6000604051610dba90611b07565b6040805191829003822082820190915260048252634d616e7960e01b6020909201919091527f5315825fb5d166148e7b66a92f18f899e287566fa8c2166e769e4d8b19bdc72e610e0861166f565b30604051602001610e1c9493929190611c4b565b6040516020818303038152906040528051906020012090506000604051610e4290611a9d565b604080519182900382206001600160a01b038d16600090815260086020908152929020805460018101909155610e849391928e928e928e9290918e9101611bf3565b60405160208183030381529060405280519060200120905060008282604051602001610eb1929190611a82565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610eee9493929190611c6f565b6020604051602081039080840390855afa158015610f10573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610f435760405162461bcd60e51b815260040161063d90611d94565b8b6001600160a01b0316816001600160a01b031614610f745760405162461bcd60e51b815260040161063d90611d26565b88421115610f945760405162461bcd60e51b815260040161063d90611d5d565b84600360008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040516110449190612174565b60405180910390a3505050505050505050505050565b6001600160a01b0391821660009081526003602090815260408083209390941682529190915220546001600160601b031690565b6040516104aa90611b62565b600660209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6001546001600160a01b031633146110f95760405162461bcd60e51b815260040161063d90611e93565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f691611138916001600160a01b03909116908490611bc5565b60405180910390a1600180546001600160a01b0319166001600160a01b0392909216919091179055565b600081600160601b84106111895760405162461bcd60e51b815260040161063d9190611c8d565b509192915050565b6000836001600160601b0316836001600160601b0316111582906111c85760405162461bcd60e51b815260040161063d9190611c8d565b505050900390565b6001600160a01b0383166111f65760405162461bcd60e51b815260040161063d906120a2565b6001600160a01b03821661121c5760405162461bcd60e51b815260040161063d90611ef0565b6001600160a01b038316600090815260046020908152604091829020548251606081019093526036808452611267936001600160601b03909216928592919061224e90830139611191565b6001600160a01b03848116600090815260046020908152604080832080546001600160601b0319166001600160601b039687161790559286168252908290205482516060810190935260308084526112cf94919091169285929091906122b890830139611417565b6001600160a01b038381166000818152600460205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061133c908590612174565b60405180910390a36001600160a01b0380841660009081526005602052604080822054858416835291205461082992918216911683611453565b600082820183811015610b855760405162461bcd60e51b815260040161063d90611dcb565b6000826113aa57506000610492565b828202828482816113b757fe5b0414610b855760405162461bcd60e51b815260040161063d90611f93565b6000610b8583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611673565b6000838301826001600160601b03808716908316101561144a5760405162461bcd60e51b815260040161063d9190611c8d565b50949350505050565b816001600160a01b0316836001600160a01b03161415801561147e57506000816001600160601b0316115b15610829576001600160a01b03831615611536576001600160a01b03831660009081526007602052604081205463ffffffff1690816114be5760006114fd565b6001600160a01b0385166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b90506000611524828560405180606001604052806028815260200161230d60289139611191565b9050611532868484846116aa565b5050505b6001600160a01b03821615610829576001600160a01b03821660009081526007602052604081205463ffffffff1690816115715760006115b0565b6001600160a01b0384166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006115d7828560405180606001604052806027815260200161222760279139611417565b9050610d6a858484846116aa565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611669828483611453565b50505050565b4690565b600081836116945760405162461bcd60e51b815260040161063d9190611c8d565b5060008385816116a057fe5b0495945050505050565b60006116ce436040518060600160405280603481526020016122846034913961185f565b905060008463ffffffff1611801561171757506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611776576001600160a01b0385166000908152600660209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b03851602179055611815565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600683528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600790935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611850929190612188565b60405180910390a25050505050565b600081600160201b84106111895760405162461bcd60e51b815260040161063d9190611c8d565b604080518082019091526000808252602082015290565b80356001600160a01b038116811461049257600080fd5b803560ff8116811461049257600080fd5b6000602082840312156118d6578081fd5b610b85838361189d565b600080604083850312156118f2578081fd5b6118fc848461189d565b915061190b846020850161189d565b90509250929050565b600080600060608486031215611928578081fd5b8335611933816121a2565b92506020840135611943816121a2565b929592945050506040919091013590565b600080600080600080600060e0888a03121561196e578283fd5b611978898961189d565b96506119878960208a0161189d565b955060408801359450606088013593506119a48960808a016118b4565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156119d2578182fd5b6119dc848461189d565b946020939093013593505050565b60008060008060008060c08789031215611a02578182fd5b611a0c888861189d565b95506020870135945060408701359350611a2988606089016118b4565b92506080870135915060a087013590509295509295509295565b60008060408385031215611a55578182fd5b611a5f848461189d565b9150602083013563ffffffff81168114611a77578182fd5b809150509250929050565b61190160f01b81526002810192909252602282015260420190565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63656020820152712c75696e7432353620646561646c696e652960701b604082015260520190565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430190565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0190565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611cb957858101830151858201604001528201611c9d565b81811115611cca5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526026908201527f4d616e793a3a64656c656761746542795369673a20696e76616c6964207369676040820152656e617475726560d01b606082015260800190565b6020808252601a908201527f4d616e793a3a7065726d69743a20756e617574686f72697a6564000000000000604082015260600190565b6020808252601f908201527f4d616e793a3a7065726d69743a207369676e6174757265206578706972656400604082015260600190565b6020808252601f908201527f4d616e793a3a7065726d69743a20696e76616c6964207369676e617475726500604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252602f908201527f4d616e793a3a6d696e743a2063616e6e6f74207472616e7366657220746f207460408201526e6865207a65726f206164647265737360881b606082015260800190565b60208082526022908201527f4d616e793a3a64656c656761746542795369673a20696e76616c6964206e6f6e604082015261636560f01b606082015260800190565b6020808252603e908201527f4d616e793a3a7365744d696e7465723a206f6e6c7920746865206d696e74657260408201527f2063616e206368616e676520746865206d696e74657220616464726573730000606082015260800190565b6020808252603a908201527f4d616e793a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e7366657220746f20746865207a65726f2061646472657373000000000000606082015260800190565b60208082526026908201527f4d616e793a3a64656c656761746542795369673a207369676e617475726520656040820152651e1c1a5c995960d21b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526023908201527f4d616e793a3a6d696e743a206d696e74696e67206e6f7420616c6c6f776564206040820152621e595d60ea1b606082015260800190565b60208082526024908201527f4d616e793a3a6d696e743a206f6e6c7920746865206d696e7465722063616e206040820152631b5a5b9d60e21b606082015260800190565b60208082526027908201527f4d616e793a3a6765745072696f72566f7465733a206e6f742079657420646574604082015266195c9b5a5b995960ca1b606082015260800190565b6020808252603c908201527f4d616e793a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e736665722066726f6d20746865207a65726f206164647265737300000000606082015260800190565b6020808252601d908201527f4d616e793a3a6d696e743a206578636565646564206d696e7420636170000000604082015260600190565b63ffffffff91909116815260200190565b63ffffffff9290921682526001600160601b0316602082015260400190565b60ff91909116815260200190565b6001600160601b0391909116815260200190565b6001600160601b0392831681529116602082015260400190565b6001600160a01b038116811461085b57600080fdfe4d616e793a3a7065726d69743a20616d6f756e74206578636565647320393620626974734d616e793a3a7472616e736665723a20616d6f756e74206578636565647320393620626974734d616e793a3a617070726f76653a20616d6f756e74206578636565647320393620626974734d616e793a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f77734d616e793a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d616e793a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734d616e793a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77734d616e793a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f77734d616e793a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77734d616e793a3a6d696e743a20616d6f756e74206578636565647320393620626974734d616e793a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63654d616e793a3a6d696e743a20746f74616c537570706c7920657863656564732039362062697473a2646970667358221220af23d6c5c0bc306e120db3d586bf8ff5a9e0d9ad81d012bf227606d9a734dee364736f6c634300060b0033000000000000000000000000cf275597a2eb06f9985c39cd5c01949a2782051e000000000000000000000000cf275597a2eb06f9985c39cd5c01949a2782051e0000000000000000000000000000000000000000000000000000000065920080

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80636fcfff45116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e1461035b578063e7a324dc1461036e578063f1127ed814610376578063fca3b5aa14610397576101a9565b8063b4b5ea5714610322578063c3cda52014610335578063d505accf14610348576101a9565b8063782d6fe1116100d3578063782d6fe1146102d45780637ecebe00146102f457806395d89b4114610307578063a9059cbb1461030f576101a9565b80636fcfff45146102a657806370a08231146102b957806376c71ca1146102cc576101a9565b806330adf81f1161016657806340c10f191161014057806340c10f1914610256578063587cde1e1461026b5780635c11d62f1461027e5780635c19a95c14610293576101a9565b806330adf81f1461023157806330b36cef14610239578063313ce56714610241576101a9565b806306fdde03146101ae57806307546172146101cc578063095ea7b3146101e157806318160ddd1461020157806320606b701461021657806323b872dd1461021e575b600080fd5b6101b66103aa565b6040516101c39190611c8d565b60405180910390f35b6101d46103ca565b6040516101c39190611bb1565b6101f46101ef3660046119c0565b6103d9565b6040516101c39190611bdf565b610209610498565b6040516101c39190611bea565b61020961049e565b6101f461022c366004611914565b6104b5565b6102096105fc565b610209610608565b61024961060e565b6040516101c39190612166565b6102696102643660046119c0565b610613565b005b6101d46102793660046118c5565b61082e565b610286610849565b6040516101c39190612136565b6102696102a13660046118c5565b610851565b6102866102b43660046118c5565b61085e565b6102096102c73660046118c5565b610876565b61024961089a565b6102e76102e23660046119c0565b61089f565b6040516101c39190612174565b6102096103023660046118c5565b610aad565b6101b6610abf565b6101f461031d3660046119c0565b610adf565b6102e76103303660046118c5565b610b1b565b6102696103433660046119ea565b610b8c565b610269610356366004611954565b610d72565b6102096103693660046118e0565b61105a565b61020961108e565b610389610384366004611a43565b61109a565b6040516101c3929190612147565b6102696103a53660046118c5565b6110cf565b604051806040016040528060048152602001634d616e7960e01b81525081565b6001546001600160a01b031681565b6000806000198314156103ef5750600019610414565b6104118360405180606001604052806025815260200161220260259139611162565b90505b3360008181526003602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610484908590612174565b60405180910390a360019150505b92915050565b60005481565b6040516104aa90611b07565b604051809103902081565b6001600160a01b03831660009081526003602090815260408083203380855290835281842054825160608101909352602580845291936001600160601b0390911692859261050d928892919061220290830139611162565b9050866001600160a01b0316836001600160a01b03161415801561053a57506001600160601b0382811614155b156105e457600061056483836040518060600160405280603d8152602001612357603d9139611191565b6001600160a01b038981166000818152600360209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105da908590612174565b60405180910390a3505b6105ef8787836111d0565b5060019695505050505050565b6040516104aa90611a9d565b60025481565b601281565b6001546001600160a01b031633146106465760405162461bcd60e51b815260040161063d90612017565b60405180910390fd5b6002544210156106685760405162461bcd60e51b815260040161063d90611fd4565b6001600160a01b03821661068e5760405162461bcd60e51b815260040161063d90611e02565b61069c426301e13380611376565b60028190555060006106c68260405180606001604052806022815260200161233560229139611162565b90506106e26106db600054600260ff1661139b565b60646113d5565b816001600160601b0316111561070a5760405162461bcd60e51b815260040161063d906120ff565b610740610722600054836001600160601b0316611376565b60405180606001604052806027815260200161239460279139611162565b6001600160601b0390811660009081556001600160a01b03851681526004602090815260409182902054825160608101909352602580845261079294919091169285929091906122e890830139611417565b6001600160a01b03841660008181526004602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107fc908590612174565b60405180910390a36001600160a01b03808416600090815260056020526040812054610829921683611453565b505050565b6005602052600090815260409020546001600160a01b031681565b6301e1338081565b61085b33826115e5565b50565b60076020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600460205260409020546001600160601b031690565b600281565b60004382106108c05760405162461bcd60e51b815260040161063d9061205b565b6001600160a01b03831660009081526007602052604090205463ffffffff16806108ee576000915050610492565b6001600160a01b038416600090815260066020908152604080832063ffffffff60001986018116855292529091205416831061096a576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b03169050610492565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff168310156109a5576000915050610492565b600060001982015b8163ffffffff168163ffffffff161115610a6857600282820363ffffffff160481036109d7611886565b506001600160a01b038716600090815260066020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610a43576020015194506104929350505050565b805163ffffffff16871115610a5a57819350610a61565b6001820392505b50506109ad565b506001600160a01b038516600090815260066020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60086020526000908152604090205481565b604051806040016040528060048152602001634d414e5960e01b81525081565b600080610b04836040518060600160405280602681526020016121dc60269139611162565b9050610b113385836111d0565b5060019392505050565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610b46576000610b85565b6001600160a01b0383166000908152600660209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03165b9392505050565b6000604051610b9a90611b07565b6040805191829003822082820190915260048252634d616e7960e01b6020909201919091527f5315825fb5d166148e7b66a92f18f899e287566fa8c2166e769e4d8b19bdc72e610be861166f565b30604051602001610bfc9493929190611c4b565b6040516020818303038152906040528051906020012090506000604051610c2290611b62565b604051908190038120610c3d918a908a908a90602001611c27565b60405160208183030381529060405280519060200120905060008282604051602001610c6a929190611a82565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610ca79493929190611c6f565b6020604051602081039080840390855afa158015610cc9573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610cfc5760405162461bcd60e51b815260040161063d90611ce0565b6001600160a01b03811660009081526008602052604090208054600181019091558914610d3b5760405162461bcd60e51b815260040161063d90611e51565b87421115610d5b5760405162461bcd60e51b815260040161063d90611f4d565b610d65818b6115e5565b505050505b505050505050565b6000600019861415610d875750600019610dac565b610da9866040518060600160405280602481526020016121b860249139611162565b90505b6000604051610dba90611b07565b6040805191829003822082820190915260048252634d616e7960e01b6020909201919091527f5315825fb5d166148e7b66a92f18f899e287566fa8c2166e769e4d8b19bdc72e610e0861166f565b30604051602001610e1c9493929190611c4b565b6040516020818303038152906040528051906020012090506000604051610e4290611a9d565b604080519182900382206001600160a01b038d16600090815260086020908152929020805460018101909155610e849391928e928e928e9290918e9101611bf3565b60405160208183030381529060405280519060200120905060008282604051602001610eb1929190611a82565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610eee9493929190611c6f565b6020604051602081039080840390855afa158015610f10573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610f435760405162461bcd60e51b815260040161063d90611d94565b8b6001600160a01b0316816001600160a01b031614610f745760405162461bcd60e51b815260040161063d90611d26565b88421115610f945760405162461bcd60e51b815260040161063d90611d5d565b84600360008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040516110449190612174565b60405180910390a3505050505050505050505050565b6001600160a01b0391821660009081526003602090815260408083209390941682529190915220546001600160601b031690565b6040516104aa90611b62565b600660209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6001546001600160a01b031633146110f95760405162461bcd60e51b815260040161063d90611e93565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f691611138916001600160a01b03909116908490611bc5565b60405180910390a1600180546001600160a01b0319166001600160a01b0392909216919091179055565b600081600160601b84106111895760405162461bcd60e51b815260040161063d9190611c8d565b509192915050565b6000836001600160601b0316836001600160601b0316111582906111c85760405162461bcd60e51b815260040161063d9190611c8d565b505050900390565b6001600160a01b0383166111f65760405162461bcd60e51b815260040161063d906120a2565b6001600160a01b03821661121c5760405162461bcd60e51b815260040161063d90611ef0565b6001600160a01b038316600090815260046020908152604091829020548251606081019093526036808452611267936001600160601b03909216928592919061224e90830139611191565b6001600160a01b03848116600090815260046020908152604080832080546001600160601b0319166001600160601b039687161790559286168252908290205482516060810190935260308084526112cf94919091169285929091906122b890830139611417565b6001600160a01b038381166000818152600460205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061133c908590612174565b60405180910390a36001600160a01b0380841660009081526005602052604080822054858416835291205461082992918216911683611453565b600082820183811015610b855760405162461bcd60e51b815260040161063d90611dcb565b6000826113aa57506000610492565b828202828482816113b757fe5b0414610b855760405162461bcd60e51b815260040161063d90611f93565b6000610b8583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611673565b6000838301826001600160601b03808716908316101561144a5760405162461bcd60e51b815260040161063d9190611c8d565b50949350505050565b816001600160a01b0316836001600160a01b03161415801561147e57506000816001600160601b0316115b15610829576001600160a01b03831615611536576001600160a01b03831660009081526007602052604081205463ffffffff1690816114be5760006114fd565b6001600160a01b0385166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b90506000611524828560405180606001604052806028815260200161230d60289139611191565b9050611532868484846116aa565b5050505b6001600160a01b03821615610829576001600160a01b03821660009081526007602052604081205463ffffffff1690816115715760006115b0565b6001600160a01b0384166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006115d7828560405180606001604052806027815260200161222760279139611417565b9050610d6a858484846116aa565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611669828483611453565b50505050565b4690565b600081836116945760405162461bcd60e51b815260040161063d9190611c8d565b5060008385816116a057fe5b0495945050505050565b60006116ce436040518060600160405280603481526020016122846034913961185f565b905060008463ffffffff1611801561171757506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611776576001600160a01b0385166000908152600660209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b03851602179055611815565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600683528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600790935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611850929190612188565b60405180910390a25050505050565b600081600160201b84106111895760405162461bcd60e51b815260040161063d9190611c8d565b604080518082019091526000808252602082015290565b80356001600160a01b038116811461049257600080fd5b803560ff8116811461049257600080fd5b6000602082840312156118d6578081fd5b610b85838361189d565b600080604083850312156118f2578081fd5b6118fc848461189d565b915061190b846020850161189d565b90509250929050565b600080600060608486031215611928578081fd5b8335611933816121a2565b92506020840135611943816121a2565b929592945050506040919091013590565b600080600080600080600060e0888a03121561196e578283fd5b611978898961189d565b96506119878960208a0161189d565b955060408801359450606088013593506119a48960808a016118b4565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156119d2578182fd5b6119dc848461189d565b946020939093013593505050565b60008060008060008060c08789031215611a02578182fd5b611a0c888861189d565b95506020870135945060408701359350611a2988606089016118b4565b92506080870135915060a087013590509295509295509295565b60008060408385031215611a55578182fd5b611a5f848461189d565b9150602083013563ffffffff81168114611a77578182fd5b809150509250929050565b61190160f01b81526002810192909252602282015260420190565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63656020820152712c75696e7432353620646561646c696e652960701b604082015260520190565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430190565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0190565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611cb957858101830151858201604001528201611c9d565b81811115611cca5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526026908201527f4d616e793a3a64656c656761746542795369673a20696e76616c6964207369676040820152656e617475726560d01b606082015260800190565b6020808252601a908201527f4d616e793a3a7065726d69743a20756e617574686f72697a6564000000000000604082015260600190565b6020808252601f908201527f4d616e793a3a7065726d69743a207369676e6174757265206578706972656400604082015260600190565b6020808252601f908201527f4d616e793a3a7065726d69743a20696e76616c6964207369676e617475726500604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252602f908201527f4d616e793a3a6d696e743a2063616e6e6f74207472616e7366657220746f207460408201526e6865207a65726f206164647265737360881b606082015260800190565b60208082526022908201527f4d616e793a3a64656c656761746542795369673a20696e76616c6964206e6f6e604082015261636560f01b606082015260800190565b6020808252603e908201527f4d616e793a3a7365744d696e7465723a206f6e6c7920746865206d696e74657260408201527f2063616e206368616e676520746865206d696e74657220616464726573730000606082015260800190565b6020808252603a908201527f4d616e793a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e7366657220746f20746865207a65726f2061646472657373000000000000606082015260800190565b60208082526026908201527f4d616e793a3a64656c656761746542795369673a207369676e617475726520656040820152651e1c1a5c995960d21b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526023908201527f4d616e793a3a6d696e743a206d696e74696e67206e6f7420616c6c6f776564206040820152621e595d60ea1b606082015260800190565b60208082526024908201527f4d616e793a3a6d696e743a206f6e6c7920746865206d696e7465722063616e206040820152631b5a5b9d60e21b606082015260800190565b60208082526027908201527f4d616e793a3a6765745072696f72566f7465733a206e6f742079657420646574604082015266195c9b5a5b995960ca1b606082015260800190565b6020808252603c908201527f4d616e793a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e736665722066726f6d20746865207a65726f206164647265737300000000606082015260800190565b6020808252601d908201527f4d616e793a3a6d696e743a206578636565646564206d696e7420636170000000604082015260600190565b63ffffffff91909116815260200190565b63ffffffff9290921682526001600160601b0316602082015260400190565b60ff91909116815260200190565b6001600160601b0391909116815260200190565b6001600160601b0392831681529116602082015260400190565b6001600160a01b038116811461085b57600080fdfe4d616e793a3a7065726d69743a20616d6f756e74206578636565647320393620626974734d616e793a3a7472616e736665723a20616d6f756e74206578636565647320393620626974734d616e793a3a617070726f76653a20616d6f756e74206578636565647320393620626974734d616e793a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f77734d616e793a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d616e793a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734d616e793a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77734d616e793a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f77734d616e793a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77734d616e793a3a6d696e743a20616d6f756e74206578636565647320393620626974734d616e793a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63654d616e793a3a6d696e743a20746f74616c537570706c7920657863656564732039362062697473a2646970667358221220af23d6c5c0bc306e120db3d586bf8ff5a9e0d9ad81d012bf227606d9a734dee364736f6c634300060b0033

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

000000000000000000000000cf275597a2eb06f9985c39cd5c01949a2782051e000000000000000000000000cf275597a2eb06f9985c39cd5c01949a2782051e0000000000000000000000000000000000000000000000000000000065920080

-----Decoded View---------------
Arg [0] : account (address): 0xCF275597a2Eb06f9985c39cD5C01949a2782051e
Arg [1] : minter_ (address): 0xCF275597a2Eb06f9985c39cD5C01949a2782051e
Arg [2] : mintingAllowedAfter_ (uint256): 1704067200

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000cf275597a2eb06f9985c39cd5c01949a2782051e
Arg [1] : 000000000000000000000000cf275597a2eb06f9985c39cd5c01949a2782051e
Arg [2] : 0000000000000000000000000000000000000000000000000000000065920080


Deployed Bytecode Sourcemap

6635:17197:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6706:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7123:21;;;:::i;:::-;;;;;;;:::i;13053:419::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7003:40::-;;;:::i;:::-;;;;;;;:::i;8352:122::-;;;:::i;16139:672::-;;;;;;:::i;:::-;;:::i;8775:137::-;;;:::i;7214:31::-;;;:::i;6904:35::-;;;:::i;:::-;;;;;;;:::i;11070:1065::-;;;;;;:::i;:::-;;:::i;:::-;;7802:45;;;;;;:::i;:::-;;:::i;7298:61::-;;;:::i;:::-;;;;;;;:::i;16959:102::-;;;;;;:::i;:::-;;:::i;8230:49::-;;;;;;:::i;:::-;;:::i;15219:108::-;;;;;;:::i;:::-;;:::i;7454:33::-;;;:::i;19138:1218::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8993:39::-;;;;;;:::i;:::-;;:::i;6803:38::-;;;:::i;15591:238::-;;;;;;:::i;:::-;;:::i;18485:222::-;;;;;;:::i;:::-;;:::i;17495:789::-;;;;;;:::i;:::-;;:::i;13962:1054::-;;;;;;:::i;:::-;;:::i;12439:136::-;;;;;;:::i;:::-;;:::i;8568:117::-;;;:::i;8091:70::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;10663:232::-;;;;;;:::i;:::-;;:::i;6706:36::-;;;;;;;;;;;;;;-1:-1:-1;;;6706:36:0;;;;:::o;7123:21::-;;;-1:-1:-1;;;;;7123:21:0;;:::o;13053:419::-;13121:4;13138:13;-1:-1:-1;;13166:9:0;:21;13162:173;;;-1:-1:-1;;;13162:173:0;;;13265:58;13272:9;13265:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;13256:67;;13162:173;13358:10;13347:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;13347:31:0;;;;;;;;;;;:40;;-1:-1:-1;;;;;;13347:40:0;-1:-1:-1;;;;;13347:40:0;;;;;13405:37;;13347:31;;13358:10;13405:37;;;;13347:40;;13405:37;:::i;:::-;;;;;;;;13460:4;13453:11;;;13053:419;;;;;:::o;7003:40::-;;;;:::o;8352:122::-;8394:80;;;;;:::i;:::-;;;;;;;;8352:122;:::o;16139:672::-;-1:-1:-1;;;;;16303:15:0;;16221:4;16303:15;;;:10;:15;;;;;;;;16256:10;16303:24;;;;;;;;;;16354:58;;;;;;;;;;;;16256:10;;-1:-1:-1;;;;;16303:24:0;;;;16221:4;;16354:58;;16361:9;;16354:58;;;;;;;:6;:58::i;:::-;16338:74;;16440:3;-1:-1:-1;;;;;16429:14:0;:7;-1:-1:-1;;;;;16429:14:0;;;:48;;;;-1:-1:-1;;;;;;16447:30:0;;;;;16429:48;16425:311;;;16494:19;16516:96;16522:16;16540:6;16516:96;;;;;;;;;;;;;;;;;:5;:96::i;:::-;-1:-1:-1;;;;;16627:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;;:39;;-1:-1:-1;;;;;;16627:39:0;-1:-1:-1;;;;;16627:39:0;;;;;16688:36;16627:39;;-1:-1:-1;16627:24:0;;16688:36;;;;16627:39;;16688:36;:::i;:::-;;;;;;;;16425:311;;16748:33;16764:3;16769;16774:6;16748:15;:33::i;:::-;-1:-1:-1;16799:4:0;;16139:672;-1:-1:-1;;;;;;16139:672:0:o;8775:137::-;8817:95;;;;;:::i;7214:31::-;;;;:::o;6904:35::-;6937:2;6904:35;:::o;11070:1065::-;11155:6;;-1:-1:-1;;;;;11155:6:0;11141:10;:20;11133:69;;;;-1:-1:-1;;;11133:69:0;;;;;;;:::i;:::-;;;;;;;;;11240:19;;11221:15;:38;;11213:86;;;;-1:-1:-1;;;11213:86:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11318:17:0;;11310:77;;;;-1:-1:-1;;;11310:77:0;;;;;;;:::i;:::-;11450:54;11463:15;7347:12;11450;:54::i;:::-;11428:19;:76;;;;11545:13;11561:55;11568:9;11561:55;;;;;;;;;;;;;;;;;:6;:55::i;:::-;11545:71;;11645:53;11658:34;11671:11;;7486:1;11658:34;;:12;:34::i;:::-;11694:3;11645:12;:53::i;:::-;11635:6;-1:-1:-1;;;;;11635:63:0;;;11627:105;;;;-1:-1:-1;;;11627:105:0;;;;;;;:::i;:::-;11757:84;11764:33;11777:11;;11790:6;-1:-1:-1;;;;;11764:33:0;:12;:33::i;:::-;11757:84;;;;;;;;;;;;;;;;;:6;:84::i;:::-;-1:-1:-1;;;;;11743:98:0;;;:11;:98;;;-1:-1:-1;;;;;11925:13:0;;;;:8;:13;;;;;;;;;;11919:69;;;;;;;;;;;;;;11925:13;;;;;11940:6;;11919:69;;;;;;;;:5;:69::i;:::-;-1:-1:-1;;;;;11903:13:0;;;;;;:8;:13;;;;;;:85;;-1:-1:-1;;;;;;11903:85:0;-1:-1:-1;;;;;11903:85:0;;;;;;;;;;;12004:33;;11903:13;;;12004:33;;;;12030:6;;12004:33;:::i;:::-;;;;;;;;-1:-1:-1;;;;;12104:14:0;;;12100:1;12104:14;;;:9;:14;;;;;;12077:50;;12104:14;12120:6;12077:14;:50::i;:::-;11070:1065;;;:::o;7802:45::-;;;;;;;;;;;;-1:-1:-1;;;;;7802:45:0;;:::o;7298:61::-;7347:12;7298:61;:::o;16959:102::-;17021:32;17031:10;17043:9;17021;:32::i;:::-;16959:102;:::o;8230:49::-;;;;;;;;;;;;;;;:::o;15219:108::-;-1:-1:-1;;;;;15302:17:0;15278:4;15302:17;;;:8;:17;;;;;;-1:-1:-1;;;;;15302:17:0;;15219:108::o;7454:33::-;7486:1;7454:33;:::o;19138:1218::-;19217:6;19258:12;19244:11;:26;19236:78;;;;-1:-1:-1;;;19236:78:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19349:23:0;;19327:19;19349:23;;;:14;:23;;;;;;;;19387:17;19383:58;;19428:1;19421:8;;;;;19383:58;-1:-1:-1;;;;;19501:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;19522:16:0;;19501:38;;;;;;;;;:48;;:63;-1:-1:-1;19497:147:0;;-1:-1:-1;;;;;19588:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;19609:16:0;;;;19588:38;;;;;;;;:44;-1:-1:-1;;;19588:44:0;;-1:-1:-1;;;;;19588:44:0;;-1:-1:-1;19581:51:0;;19497:147;-1:-1:-1;;;;;19705:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;19701:88:0;;;19776:1;19769:8;;;;;19701:88;19801:12;-1:-1:-1;;19843:16:0;;19870:428;19885:5;19877:13;;:5;:13;;;19870:428;;;19949:1;19932:13;;;19931:19;;;19923:27;;19992:20;;:::i;:::-;-1:-1:-1;;;;;;20015:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;19992:51;;;;;;;;;;;;;;;-1:-1:-1;;;19992:51:0;;;-1:-1:-1;;;;;19992:51:0;;;;;;;;;20062:27;;20058:229;;;20117:8;;;;-1:-1:-1;20110:15:0;;-1:-1:-1;;;;20110:15:0;20058:229;20151:12;;:26;;;-1:-1:-1;20147:140:0;;;20206:6;20198:14;;20147:140;;;20270:1;20261:6;:10;20253:18;;20147:140;19870:428;;;;;-1:-1:-1;;;;;;20315:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;-1:-1:-1;;;;;;;;20315:33:0;;;;;-1:-1:-1;;19138:1218:0;;;;:::o;8993:39::-;;;;;;;;;;;;;:::o;6803:38::-;;;;;;;;;;;;;;-1:-1:-1;;;6803:38:0;;;;:::o;15591:238::-;15656:4;15673:13;15689:59;15696:9;15689:59;;;;;;;;;;;;;;;;;:6;:59::i;:::-;15673:75;;15759:40;15775:10;15787:3;15792:6;15759:15;:40::i;:::-;-1:-1:-1;15817:4:0;;15591:238;-1:-1:-1;;;15591:238:0:o;18485:222::-;-1:-1:-1;;;;;18591:23:0;;18550:6;18591:23;;;:14;:23;;;;;;;;18632:16;:67;;18698:1;18632:67;;;-1:-1:-1;;;;;18651:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;18672:16:0;;18651:38;;;;;;;;;:44;-1:-1:-1;;;18651:44:0;;-1:-1:-1;;;;;18651:44:0;18632:67;18625:74;18485:222;-1:-1:-1;;;18485:222:0:o;17495:789::-;17611:23;8394:80;;;;;:::i;:::-;;;;;;;;;;17691:4;;;;;;;;;-1:-1:-1;;;17691:4:0;;;;;;;;17675:22;17699:12;:10;:12::i;:::-;17721:4;17647:80;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17637:91;;;;;;17611:117;;17739:18;8614:71;;;;;:::i;:::-;;;;;;;;;17770:57;;17802:9;;17813:5;;17820:6;;17770:57;;;:::i;:::-;;;;;;;;;;;;;17760:68;;;;;;17739:89;;17839:14;17895:15;17912:10;17866:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17856:68;;;;;;17839:85;;17935:17;17955:26;17965:6;17973:1;17976;17979;17955:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;17955:26:0;;-1:-1:-1;;17955:26:0;;;-1:-1:-1;;;;;;;18000:23:0;;17992:74;;;;-1:-1:-1;;;17992:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18094:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;18085:28;;18077:75;;;;-1:-1:-1;;;18077:75:0;;;;;;;:::i;:::-;18178:6;18171:3;:13;;18163:64;;;;-1:-1:-1;;;18163:64:0;;;;;;;:::i;:::-;18245:31;18255:9;18266;18245;:31::i;:::-;18238:38;;;;17495:789;;;;;;;:::o;13962:1054::-;14092:13;-1:-1:-1;;14120:9:0;:21;14116:172;;;-1:-1:-1;;;14116:172:0;;;14219:57;14226:9;14219:57;;;;;;;;;;;;;;;;;:6;:57::i;:::-;14210:66;;14116:172;14300:23;8394:80;;;;;:::i;:::-;;;;;;;;;;14380:4;;;;;;;;;-1:-1:-1;;;14380:4:0;;;;;;;;14364:22;14388:12;:10;:12::i;:::-;14410:4;14336:80;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;14326:91;;;;;;14300:117;;14428:18;8817:95;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;;;;14514:13:0;;;;;;:6;:13;;;;;;;:15;;;;;;;;14459:81;;8817:95;;14487:5;;14494:7;;14503:9;;14514:15;;14531:8;;14459:81;;:::i;:::-;;;;;;;;;;;;;14449:92;;;;;;14428:113;;14552:14;14608:15;14625:10;14579:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;14569:68;;;;;;14552:85;;14648:17;14668:26;14678:6;14686:1;14689;14692;14668:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14668:26:0;;-1:-1:-1;;14668:26:0;;;-1:-1:-1;;;;;;;14713:23:0;;14705:67;;;;-1:-1:-1;;;14705:67:0;;;;;;;:::i;:::-;14804:5;-1:-1:-1;;;;;14791:18:0;:9;-1:-1:-1;;;;;14791:18:0;;14783:57;;;;-1:-1:-1;;;14783:57:0;;;;;;;:::i;:::-;14866:8;14859:3;:15;;14851:59;;;;-1:-1:-1;;;14851:59:0;;;;;;;:::i;:::-;14952:6;14923:10;:17;14934:5;-1:-1:-1;;;;;14923:17:0;-1:-1:-1;;;;;14923:17:0;;;;;;;;;;;;:26;14941:7;-1:-1:-1;;;;;14923:26:0;-1:-1:-1;;;;;14923:26:0;;;;;;;;;;;;;:35;;;;;-1:-1:-1;;;;;14923:35:0;;;;;-1:-1:-1;;;;;14923:35:0;;;;;;14992:7;-1:-1:-1;;;;;14976:32:0;14985:5;-1:-1:-1;;;;;14976:32:0;;15001:6;14976:32;;;;;;:::i;:::-;;;;;;;;13962:1054;;;;;;;;;;;;:::o;12439:136::-;-1:-1:-1;;;;;12539:19:0;;;12515:4;12539:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;-1:-1:-1;;;;;12539:28:0;;12439:136::o;8568:117::-;8614:71;;;;;:::i;8091:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8091:70:0;;-1:-1:-1;;;;;8091:70:0;;:::o;10663:232::-;10741:6;;-1:-1:-1;;;;;10741:6:0;10727:10;:20;10719:95;;;;-1:-1:-1;;;10719:95:0;;;;;;;:::i;:::-;10844:6;;10830:30;;;;;;-1:-1:-1;;;;;10844:6:0;;;;10852:7;;10830:30;:::i;:::-;;;;;;;;10871:6;:16;;-1:-1:-1;;;;;;10871:16:0;-1:-1:-1;;;;;10871:16:0;;;;;;;;;;10663:232::o;23138:161::-;23213:6;23251:12;-1:-1:-1;;;23240:9:0;;23232:32;;;;-1:-1:-1;;;23232:32:0;;;;;;;;:::i;:::-;-1:-1:-1;23289:1:0;;23138:161;-1:-1:-1;;23138:161:0:o;23503:165::-;23589:6;23621:1;-1:-1:-1;;;;;23616:6:0;:1;-1:-1:-1;;;;;23616:6:0;;;23624:12;23608:29;;;;;-1:-1:-1;;;23608:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;23655:5:0;;;23503:165::o;20747:614::-;-1:-1:-1;;;;;20841:17:0;;20833:90;;;;-1:-1:-1;;;20833:90:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20942:17:0;;20934:88;;;;-1:-1:-1;;;20934:88:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21057:13:0;;;;;;:8;:13;;;;;;;;;;21051:86;;;;;;;;;;;;;;-1:-1:-1;;;;;21057:13:0;;;;21072:6;;21051:86;;;;;;;:5;:86::i;:::-;-1:-1:-1;;;;;21035:13:0;;;;;;;:8;:13;;;;;;;;:102;;-1:-1:-1;;;;;;21035:102:0;-1:-1:-1;;;;;21035:102:0;;;;;;21170:13;;;;;;;;;;21164:80;;;;;;;;;;;;;;21170:13;;;;;21185:6;;21164:80;;;;;;;;:5;:80::i;:::-;-1:-1:-1;;;;;21148:13:0;;;;;;;:8;:13;;;;;;;:96;;-1:-1:-1;;;;;;21148:96:0;-1:-1:-1;;;;;21148:96:0;;;;;;;;;;;21260:26;;;;;;;;;;21279:6;;21260:26;:::i;:::-;;;;;;;;-1:-1:-1;;;;;21314:14:0;;;;;;;:9;:14;;;;;;;21330;;;;;;;;21299:54;;21314:14;;;;21330;21346:6;21299:14;:54::i;1021:181::-;1079:7;1111:5;;;1135:6;;;;1127:46;;;;-1:-1:-1;;;1127:46:0;;;;;;;:::i;2775:471::-;2833:7;3078:6;3074:47;;-1:-1:-1;3108:1:0;3101:8;;3074:47;3145:5;;;3149:1;3145;:5;:1;3169:5;;;;;:10;3161:56;;;;-1:-1:-1;;;3161:56:0;;;;;;;:::i;4433:132::-;4491:7;4518:39;4522:1;4525;4518:39;;;;;;;;;;;;;;;;;:3;:39::i;23307:188::-;23393:6;23423:5;;;23455:12;-1:-1:-1;;;;;23447:6:0;;;;;;;;23439:29;;;;-1:-1:-1;;;23439:29:0;;;;;;;;:::i;:::-;-1:-1:-1;23486:1:0;23307:188;-1:-1:-1;;;;23307:188:0:o;21369:939::-;21474:6;-1:-1:-1;;;;;21464:16:0;:6;-1:-1:-1;;;;;21464:16:0;;;:30;;;;;21493:1;21484:6;-1:-1:-1;;;;;21484:10:0;;21464:30;21460:841;;;-1:-1:-1;;;;;21515:20:0;;;21511:382;;-1:-1:-1;;;;;21575:22:0;;21556:16;21575:22;;;:14;:22;;;;;;;;;21635:13;:60;;21694:1;21635:60;;;-1:-1:-1;;;;;21651:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;21671:13:0;;21651:34;;;;;;;;;:40;-1:-1:-1;;;21651:40:0;;-1:-1:-1;;;;;21651:40:0;21635:60;21616:79;;21714:16;21733:68;21739:9;21750:6;21733:68;;;;;;;;;;;;;;;;;:5;:68::i;:::-;21714:87;;21820:57;21837:6;21845:9;21856;21867;21820:16;:57::i;:::-;21511:382;;;;-1:-1:-1;;;;;21913:20:0;;;21909:381;;-1:-1:-1;;;;;21973:22:0;;21954:16;21973:22;;;:14;:22;;;;;;;;;22033:13;:60;;22092:1;22033:60;;;-1:-1:-1;;;;;22049:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;22069:13:0;;22049:34;;;;;;;;;:40;-1:-1:-1;;;22049:40:0;;-1:-1:-1;;;;;22049:40:0;22033:60;22014:79;;22112:16;22131:67;22137:9;22148:6;22131:67;;;;;;;;;;;;;;;;;:5;:67::i;:::-;22112:86;;22217:57;22234:6;22242:9;22253;22264;22217:16;:57::i;20364:375::-;-1:-1:-1;;;;;20467:20:0;;;20441:23;20467:20;;;:9;:20;;;;;;;;;;20524:8;:19;;;;;;20554:20;;;;:32;;;-1:-1:-1;;;;;;20554:32:0;;;;;;;20604:54;;20467:20;;;;;-1:-1:-1;;;;;20524:19:0;;;;20554:32;;20467:20;;;20604:54;;20441:23;20604:54;20671:60;20686:15;20703:9;20714:16;20671:14;:60::i;:::-;20364:375;;;;:::o;23676:153::-;23786:9;23676:153;:::o;5053:345::-;5139:7;5241:12;5234:5;5226:28;;;;-1:-1:-1;;;5226:28:0;;;;;;;;:::i;:::-;;5265:9;5281:1;5277;:5;;;;;;;5053:345;-1:-1:-1;;;;;5053:345:0:o;22316:645::-;22436:18;22457:76;22464:12;22457:76;;;;;;;;;;;;;;;;;:6;:76::i;:::-;22436:97;;22565:1;22550:12;:16;;;:85;;;;-1:-1:-1;;;;;;22570:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;22593:16:0;;22570:40;;;;;;;;;:50;:65;;;:50;;:65;22550:85;22546:339;;;-1:-1:-1;;;;;22652:22:0;;;;;;:11;:22;;;;;;;;-1:-1:-1;;22675:16:0;;22652:40;;;;;;;;;:57;;-1:-1:-1;;22652:57:0;-1:-1:-1;;;;;;;;22652:57:0;;;;;;22546:339;;;22781:33;;;;;;;;;;;;;;-1:-1:-1;;;;;22781:33:0;;;;;;;;;;-1:-1:-1;;;;;22742:22:0;;-1:-1:-1;22742:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;;;-1:-1:-1;;;22742:72:0;-1:-1:-1;;22742:72:0;;;-1:-1:-1;;22742:72:0;;;;;;;;;;;;;;;22829:25;;;:14;:25;;;;;;;:44;;22742:72;22857:16;;22829:44;;;;;;;;;;;;;22546:339;22923:9;-1:-1:-1;;;;;22902:51:0;;22934:8;22944;22902:51;;;;;;;:::i;:::-;;;;;;;;22316:645;;;;;:::o;22969:161::-;23044:6;23082:12;-1:-1:-1;;;23071:9:0;;23063:32;;;;-1:-1:-1;;;23063:32:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;5:130::-;72:20;;-1:-1;;;;;28668:54;;29742:35;;29732:2;;29791:1;;29781:12;551:126;616:20;;28979:4;28968:16;;30234:33;;30224:2;;30281:1;;30271:12;684:241;;788:2;776:9;767:7;763:23;759:32;756:2;;;-1:-1;;794:12;756:2;856:53;901:7;877:22;856:53;:::i;932:366::-;;;1053:2;1041:9;1032:7;1028:23;1024:32;1021:2;;;-1:-1;;1059:12;1021:2;1121:53;1166:7;1142:22;1121:53;:::i;:::-;1111:63;;1229:53;1274:7;1211:2;1254:9;1250:22;1229:53;:::i;:::-;1219:63;;1015:283;;;;;:::o;1305:491::-;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;-1:-1;;1449:12;1411:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1501:63;-1:-1;1601:2;1640:22;;72:20;97:33;72:20;97:33;:::i;:::-;1405:391;;1609:63;;-1:-1;;;1709:2;1748:22;;;;346:20;;1405:391::o;1803:991::-;;;;;;;;2007:3;1995:9;1986:7;1982:23;1978:33;1975:2;;;-1:-1;;2014:12;1975:2;2076:53;2121:7;2097:22;2076:53;:::i;:::-;2066:63;;2184:53;2229:7;2166:2;2209:9;2205:22;2184:53;:::i;:::-;2174:63;;2274:2;2317:9;2313:22;346:20;2282:63;;2382:2;2425:9;2421:22;346:20;2390:63;;2509:51;2552:7;2490:3;2532:9;2528:22;2509:51;:::i;:::-;2499:61;;2597:3;2641:9;2637:22;209:20;2606:63;;2706:3;2750:9;2746:22;209:20;2715:63;;1969:825;;;;;;;;;;:::o;2801:366::-;;;2922:2;2910:9;2901:7;2897:23;2893:32;2890:2;;;-1:-1;;2928:12;2890:2;2990:53;3035:7;3011:22;2990:53;:::i;:::-;2980:63;3080:2;3119:22;;;;346:20;;-1:-1;;;2884:283::o;3174:865::-;;;;;;;3361:3;3349:9;3340:7;3336:23;3332:33;3329:2;;;-1:-1;;3368:12;3329:2;3430:53;3475:7;3451:22;3430:53;:::i;:::-;3420:63;;3520:2;3563:9;3559:22;346:20;3528:63;;3628:2;3671:9;3667:22;346:20;3636:63;;3754:51;3797:7;3736:2;3777:9;3773:22;3754:51;:::i;:::-;3744:61;;3842:3;3886:9;3882:22;209:20;3851:63;;3951:3;3995:9;3991:22;209:20;3960:63;;3323:716;;;;;;;;:::o;4046:364::-;;;4166:2;4154:9;4145:7;4141:23;4137:32;4134:2;;;-1:-1;;4172:12;4134:2;4234:53;4279:7;4255:22;4234:53;:::i;:::-;4224:63;;4324:2;4366:9;4362:22;482:20;28885:10;30140:5;28874:22;30116:5;30113:34;30103:2;;-1:-1;;30151:12;30103:2;4332:62;;;;4128:282;;;;;:::o;13689:659::-;-1:-1;;;6956:87;;6941:1;7062:11;;4719:37;;;;14200:12;;;4719:37;14311:12;;;13934:414::o;14355:381::-;7720:34;7700:55;;7789:34;7784:2;7775:12;;7768:56;-1:-1;;;7853:2;7844:12;;7837:42;7684:2;7898:12;;14544:192::o;14743:381::-;9806:34;9786:55;;9875:34;9870:2;9861:12;;9854:56;-1:-1;;;9939:2;9930:12;;9923:27;9770:2;9969:12;;14932:192::o;15131:381::-;12203:34;12183:55;;12272:28;12267:2;12258:12;;12251:50;12167:2;12320:12;;15320:192::o;15519:222::-;-1:-1;;;;;28668:54;;;;4488:37;;15646:2;15631:18;;15617:124::o;15748:333::-;-1:-1;;;;;28668:54;;;4488:37;;28668:54;;16067:2;16052:18;;4488:37;15903:2;15888:18;;15874:207::o;16088:210::-;28501:13;;28494:21;4602:34;;16209:2;16194:18;;16180:118::o;16305:222::-;4719:37;;;16432:2;16417:18;;16403:124::o;16534:780::-;4719:37;;;-1:-1;;;;;28668:54;;;16966:2;16951:18;;4488:37;28668:54;;;;17049:2;17034:18;;4488:37;17132:2;17117:18;;4719:37;17215:3;17200:19;;4719:37;;;;28679:42;17284:19;;4719:37;16801:3;16786:19;;16772:542::o;17321:556::-;4719:37;;;-1:-1;;;;;28668:54;;;;17697:2;17682:18;;4488:37;17780:2;17765:18;;4719:37;17863:2;17848:18;;4719:37;17532:3;17517:19;;17503:374::o;17884:556::-;4719:37;;;18260:2;18245:18;;4719:37;;;;18343:2;18328:18;;4719:37;-1:-1;;;;;28668:54;18426:2;18411:18;;4488:37;18095:3;18080:19;;18066:374::o;18447:548::-;4719:37;;;28979:4;28968:16;;;;18815:2;18800:18;;13394:35;18898:2;18883:18;;4719:37;18981:2;18966:18;;4719:37;18654:3;18639:19;;18625:370::o;19002:310::-;;19149:2;;19170:17;19163:47;5072:5;27970:12;28127:6;19149:2;19138:9;19134:18;28115:19;-1:-1;29293:101;29307:6;29304:1;29301:13;29293:101;;;29374:11;;;;;29368:18;29355:11;;;28155:14;29355:11;29348:39;29322:10;;29293:101;;;29409:6;29406:1;29403:13;29400:2;;;-1:-1;28155:14;29465:6;19138:9;29456:16;;29449:27;29400:2;-1:-1;29662:7;29646:14;-1:-1;;29642:28;5230:39;;;;28155:14;5230:39;;19120:192;-1:-1;;;19120:192::o;19319:416::-;19519:2;19533:47;;;5506:2;19504:18;;;28115:19;5542:34;28155:14;;;5522:55;-1:-1;;;5597:12;;;5590:30;5639:12;;;19490:245::o;19742:416::-;19942:2;19956:47;;;5890:2;19927:18;;;28115:19;5926:28;28155:14;;;5906:49;5974:12;;;19913:245::o;20165:416::-;20365:2;20379:47;;;6225:2;20350:18;;;28115:19;6261:33;28155:14;;;6241:54;6314:12;;;20336:245::o;20588:416::-;20788:2;20802:47;;;6565:2;20773:18;;;28115:19;6601:33;28155:14;;;6581:54;6654:12;;;20759:245::o;21011:416::-;21211:2;21225:47;;;7312:2;21196:18;;;28115:19;7348:29;28155:14;;;7328:50;7397:12;;;21182:245::o;21434:416::-;21634:2;21648:47;;;8149:2;21619:18;;;28115:19;8185:34;28155:14;;;8165:55;-1:-1;;;8240:12;;;8233:39;8291:12;;;21605:245::o;21857:416::-;22057:2;22071:47;;;8542:2;22042:18;;;28115:19;8578:34;28155:14;;;8558:55;-1:-1;;;8633:12;;;8626:26;8671:12;;;22028:245::o;22280:416::-;22480:2;22494:47;;;8922:2;22465:18;;;28115:19;8958:34;28155:14;;;8938:55;9027:32;9013:12;;;9006:54;9079:12;;;22451:245::o;22703:416::-;22903:2;22917:47;;;9330:2;22888:18;;;28115:19;9366:34;28155:14;;;9346:55;9435:28;9421:12;;;9414:50;9483:12;;;22874:245::o;23126:416::-;23326:2;23340:47;;;10220:2;23311:18;;;28115:19;10256:34;28155:14;;;10236:55;-1:-1;;;10311:12;;;10304:30;10353:12;;;23297:245::o;23549:416::-;23749:2;23763:47;;;10604:2;23734:18;;;28115:19;10640:34;28155:14;;;10620:55;-1:-1;;;10695:12;;;10688:25;10732:12;;;23720:245::o;23972:416::-;24172:2;24186:47;;;10983:2;24157:18;;;28115:19;11019:34;28155:14;;;10999:55;-1:-1;;;11074:12;;;11067:27;11113:12;;;24143:245::o;24395:416::-;24595:2;24609:47;;;11364:2;24580:18;;;28115:19;11400:34;28155:14;;;11380:55;-1:-1;;;11455:12;;;11448:28;11495:12;;;24566:245::o;24818:416::-;25018:2;25032:47;;;11746:2;25003:18;;;28115:19;11782:34;28155:14;;;11762:55;-1:-1;;;11837:12;;;11830:31;11880:12;;;24989:245::o;25241:416::-;25441:2;25455:47;;;12571:2;25426:18;;;28115:19;12607:34;28155:14;;;12587:55;12676:30;12662:12;;;12655:52;12726:12;;;25412:245::o;25664:416::-;25864:2;25878:47;;;12977:2;25849:18;;;28115:19;13013:31;28155:14;;;12993:52;13064:12;;;25835:245::o;26316:218::-;28885:10;28874:22;;;;13279:36;;26441:2;26426:18;;26412:122::o;26541:325::-;28885:10;28874:22;;;;13279:36;;-1:-1;;;;;29057:38;26852:2;26837:18;;13641:36;26692:2;26677:18;;26663:203::o;26873:214::-;28979:4;28968:16;;;;13394:35;;26996:2;26981:18;;26967:120::o;27094:220::-;-1:-1;;;;;29057:38;;;;13511:49;;27220:2;27205:18;;27191:123::o;27546:329::-;-1:-1;;;;;29057:38;;;13511:49;;29057:38;;27861:2;27846:18;;13511:49;27699:2;27684:18;;27670:205::o;29683:117::-;-1:-1;;;;;28668:54;;29742:35;;29732:2;;29791:1;;29781:12

Swarm Source

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