ETH Price: $3,362.31 (-1.59%)
Gas: 7 Gwei

Token

PoolTogether (POOL)
 

Overview

Max Total Supply

10,000,000 POOL

Holders

8,476 ( 0.024%)

Market

Price

$0.43 @ 0.000129 ETH (-0.44%)

Onchain Market Cap

$4,337,080.00

Circulating Supply Market Cap

$2,494,636.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
jimbobbins.eth
Balance
10 POOL

Value
$4.34 ( ~0.00129077748644745 Eth) [0.0001%]
0x0f48669B1681D41357EAc232F516B77D0c10F0F1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

PoolTogether is a protocol for no-loss prize games.

Market

Volume (24H):$767.44
Market Capitalization:$2,494,636.00
Circulating Supply:5,768,509.00 POOL
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Pool

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, None license
File 1 of 5 : Pool.sol
pragma solidity ^0.5.16;
pragma experimental ABIEncoderV2;

import "./SafeMath.sol";


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

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

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

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

    /// @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 = 365 days; //1 year

    /// @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 Pool 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, "Pool::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, "Pool::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, "Pool::mint: only the minter can mint");
        require(block.timestamp >= mintingAllowedAfter, "Pool::mint: minting not allowed yet");
        require(dst != address(0), "Pool::mint: cannot transfer to the zero address");

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

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

        // transfer the amount to the recipient
        balances[dst] = add96(balances[dst], amount, "Pool::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, "Pool::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, "Pool::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), "Pool::permit: invalid signature");
        require(signatory == owner, "Pool::permit: unauthorized");
        require(now <= deadline, "Pool::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, "Pool::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, "Pool::approve: amount exceeds 96 bits");

        if (spender != src && spenderAllowance != uint96(-1)) {
            uint96 newAllowance = sub96(spenderAllowance, amount, "Pool::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), "Pool::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "Pool::delegateBySig: invalid nonce");
        require(now <= expiry, "Pool::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, "Pool::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), "Pool::_transferTokens: cannot transfer from the zero address");
        require(dst != address(0), "Pool::_transferTokens: cannot transfer to the zero address");

        balances[src] = sub96(balances[src], amount, "Pool::_transferTokens: transfer amount exceeds balance");
        balances[dst] = add96(balances[dst], amount, "Pool::_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, "Pool::_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, "Pool::_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, "Pool::_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;
    }
}

File 2 of 5 : SafeMath.sol
pragma solidity ^0.5.16;

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

File 3 of 5 : TreasuryVester.sol
pragma solidity ^0.5.16;

import "./SafeMath.sol";

contract TreasuryVester {
    using SafeMath for uint;

    address public pool;
    address public recipient;

    uint public vestingAmount;
    uint public vestingBegin;
    uint public vestingCliff;
    uint public vestingEnd;

    uint public lastUpdate;

    constructor(
        address pool_,
        address recipient_,
        uint vestingAmount_,
        uint vestingBegin_,
        uint vestingCliff_,
        uint vestingEnd_
    ) public {
        require(vestingBegin_ >= block.timestamp, 'TreasuryVester::constructor: vesting begin too early');
        require(vestingCliff_ >= vestingBegin_, 'TreasuryVester::constructor: cliff is too early');
        require(vestingEnd_ > vestingCliff_, 'TreasuryVester::constructor: end is too early');

        pool = pool_;
        recipient = recipient_;

        vestingAmount = vestingAmount_;
        vestingBegin = vestingBegin_;
        vestingCliff = vestingCliff_;
        vestingEnd = vestingEnd_;

        lastUpdate = vestingBegin;
    }

    function setRecipient(address recipient_) public {
        require(msg.sender == recipient, 'TreasuryVester::setRecipient: unauthorized');
        recipient = recipient_;
    }

    function claim() public {
        require(block.timestamp >= vestingCliff, 'TreasuryVester::claim: not time yet');
        uint amount;
        if (block.timestamp >= vestingEnd) {
            amount = IERC20(pool).balanceOf(address(this));
        } else {
            amount = vestingAmount.mul(block.timestamp - lastUpdate).div(vestingEnd - vestingBegin);
            lastUpdate = block.timestamp;
        }
        IERC20(pool).transfer(recipient, amount);
    }
}

interface IERC20 {
    function balanceOf(address account) external view returns (uint);
    function transfer(address dst, uint rawAmount) external returns (bool);
}

File 4 of 5 : Timelock.sol
pragma solidity ^0.5.16;

import "./SafeMath.sol";

contract Timelock {
    using SafeMath for uint;

    event NewAdmin(address indexed newAdmin);
    event NewPendingAdmin(address indexed newPendingAdmin);
    event NewDelay(uint indexed newDelay);
    event CancelTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature,  bytes data, uint eta);
    event ExecuteTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature,  bytes data, uint eta);
    event QueueTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature, bytes data, uint eta);

    function gracePeriod() public pure returns (uint) { return 14 days; }

    function minimumDelay() public pure returns (uint) { return 2 days; }

    function maximumDelay() public pure returns (uint) { return 30 days; }

    address public admin;
    address public pendingAdmin;
    uint public delay;

    mapping (bytes32 => bool) public queuedTransactions;


    constructor(address admin_, uint delay_) public {
        require(delay_ >= minimumDelay(), "Timelock::constructor: Delay must exceed minimum delay.");
        require(delay_ <= maximumDelay(), "Timelock::setDelay: Delay must not exceed maximum delay.");

        admin = admin_;
        delay = delay_;
    }

    function() external payable { }

    function setDelay(uint delay_) public {
        require(msg.sender == address(this), "Timelock::setDelay: Call must come from Timelock.");
        require(delay_ >= minimumDelay(), "Timelock::setDelay: Delay must exceed minimum delay.");
        require(delay_ <= maximumDelay(), "Timelock::setDelay: Delay must not exceed maximum delay.");
        delay = delay_;

        emit NewDelay(delay);
    }

    function acceptAdmin() public {
        require(msg.sender == pendingAdmin, "Timelock::acceptAdmin: Call must come from pendingAdmin.");
        admin = msg.sender;
        pendingAdmin = address(0);

        emit NewAdmin(admin);
    }

    function setPendingAdmin(address pendingAdmin_) public {
        require(msg.sender == address(this), "Timelock::setPendingAdmin: Call must come from Timelock.");
        pendingAdmin = pendingAdmin_;

        emit NewPendingAdmin(pendingAdmin);
    }

    function queueTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public returns (bytes32) {
        require(msg.sender == admin, "Timelock::queueTransaction: Call must come from admin.");
        require(eta >= getBlockTimestamp().add(delay), "Timelock::queueTransaction: Estimated execution block must satisfy delay.");

        bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta));
        queuedTransactions[txHash] = true;

        emit QueueTransaction(txHash, target, value, signature, data, eta);
        return txHash;
    }

    function cancelTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public {
        require(msg.sender == admin, "Timelock::cancelTransaction: Call must come from admin.");

        bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta));
        queuedTransactions[txHash] = false;

        emit CancelTransaction(txHash, target, value, signature, data, eta);
    }

    function executeTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public payable returns (bytes memory) {
        require(msg.sender == admin, "Timelock::executeTransaction: Call must come from admin.");
        bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta));
        require(queuedTransactions[txHash], "Timelock::executeTransaction: Transaction hasn't been queued.");
        require(getBlockTimestamp() >= eta, "Timelock::executeTransaction: Transaction hasn't surpassed time lock.");
        require(getBlockTimestamp() <= eta.add(gracePeriod()), "Timelock::executeTransaction: Transaction is stale.");
        queuedTransactions[txHash] = false;

        bytes memory callData;

        if (bytes(signature).length == 0) {
            callData = data;
        } else {
            callData = abi.encodePacked(bytes4(keccak256(bytes(signature))), data);
        }
        // solium-disable-next-line security/no-call-value
        (bool success, bytes memory returnData) = target.call.value(value)(callData);
        require(success, "Timelock::executeTransaction: Transaction execution reverted.");

        emit ExecuteTransaction(txHash, target, value, signature, data, eta);

        return returnData;
    }

    function getBlockTimestamp() internal view returns (uint) {
        // solium-disable-next-line security/no-block-members
        return block.timestamp;
    }
}

File 5 of 5 : Nolock.sol
pragma solidity ^0.5.16;

import "../Timelock.sol";

contract Nolock is Timelock {

    function gracePeriod() public pure returns (uint) { return 10 minutes; }

    function minimumDelay() public pure returns (uint) { return 1 seconds; }

    function maximumDelay() public pure returns (uint) { return 100000 days; }

    constructor(address admin_, uint delay_) public Timelock(admin_, delay_) {}
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"minter_","type":"address"},{"internalType":"uint256","name":"mintingAllowedAfter_","type":"uint256"}],"payable":false,"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"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"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"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minimumTimeBetweenMints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintCap","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintingAllowedAfter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"minter_","type":"address"}],"name":"setMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040526a084595161401484a0000006000553480156200002057600080fd5b5060405162002a7338038062002a73833981016040819052620000439162000170565b428110156200006f5760405162461bcd60e51b8152600401620000669062000272565b60405180910390fd5b600080546001600160a01b0385168083526004602052604080842080546001600160601b0319166001600160601b0390941693909317909255825491519092917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000dd919062000284565b60405180910390a3600180546001600160a01b0319166001600160a01b0384811691909117918290556040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6926200013c926000929116906200024c565b60405180910390a160025550620002eb9050565b80516200015d81620002c6565b92915050565b80516200015d81620002e0565b6000806000606084860312156200018657600080fd5b600062000194868662000150565b9350506020620001a78682870162000150565b9250506040620001ba8682870162000163565b9150509250925092565b620001cf81620002b2565b82525050565b620001cf816200029d565b6000620001ef603a8362000294565b7f506f6f6c3a3a636f6e7374727563746f723a206d696e74696e672063616e206f81527f6e6c7920626567696e206166746572206465706c6f796d656e74000000000000602082015260400192915050565b620001cf81620002af565b604081016200025c8285620001c4565b6200026b6020830184620001d5565b9392505050565b602080825281016200015d81620001e0565b602081016200015d828462000241565b90815260200190565b60006001600160a01b0382166200015d565b90565b60006200015d8260006200015d826200029d565b620002d1816200029d565b8114620002dd57600080fd5b50565b620002d181620002af565b61277880620002fb6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80636fcfff45116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e1461035b578063e7a324dc1461036e578063f1127ed814610376578063fca3b5aa14610397576101a9565b8063b4b5ea5714610322578063c3cda52014610335578063d505accf14610348576101a9565b8063782d6fe1116100d3578063782d6fe1146102d45780637ecebe00146102f457806395d89b4114610307578063a9059cbb1461030f576101a9565b80636fcfff45146102a657806370a08231146102b957806376c71ca1146102cc576101a9565b806330adf81f1161016657806340c10f191161014057806340c10f1914610256578063587cde1e1461026b5780635c11d62f1461027e5780635c19a95c14610293576101a9565b806330adf81f1461023157806330b36cef14610239578063313ce56714610241576101a9565b806306fdde03146101ae57806307546172146101cc578063095ea7b3146101e157806318160ddd1461020157806320606b701461021657806323b872dd1461021e575b600080fd5b6101b66103aa565b6040516101c391906122f7565b60405180910390f35b6101d46103d2565b6040516101c391906121ca565b6101f46101ef366004611a2b565b6103e1565b6040516101c391906121f3565b6102096104a0565b6040516101c39190612201565b6102096104a6565b6101f461022c366004611942565b6104bd565b610209610606565b610209610612565b610249610618565b6040516101c39190612431565b610269610264366004611a2b565b61061d565b005b6101d46102793660046118e2565b610838565b610286610853565b6040516101c39190612408565b6102696102a13660046118e2565b61085b565b6102866102b43660046118e2565b610868565b6102096102c73660046118e2565b610880565b6102496108a4565b6102e76102e2366004611a2b565b6108a9565b6040516101c3919061244d565b6102096103023660046118e2565b610ab7565b6101b6610ac9565b6101f461031d366004611a2b565b610ae9565b6102e76103303660046118e2565b610b25565b610269610343366004611a5b565b610b95565b61026961035636600461198f565b610d83565b610209610369366004611908565b611073565b6102096110a7565b610389610384366004611ae2565b6110b3565b6040516101c3929190612416565b6102696103a53660046118e2565b6110e8565b6040518060400160405280600c81526020016b2837b7b62a37b3b2ba3432b960a11b81525081565b6001546001600160a01b031681565b6000806000198314156103f7575060001961041c565b610419836040518060600160405280602581526020016125336025913961117b565b90505b3360008181526003602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061048c90859061243f565b60405180910390a360019150505b92915050565b60005481565b6040516104b2906121b4565b604051809103902081565b6001600160a01b03831660009081526003602090815260408083203380855290835281842054825160608101909352602580845291936001600160601b0390911692859261051592889291906125339083013961117b565b9050866001600160a01b0316836001600160a01b03161415801561054257506001600160601b0382811614155b156105ec57600061056c83836040518060600160405280603d81526020016125e5603d91396111aa565b6001600160a01b038981166000818152600360209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105e290859061243f565b60405180910390a3505b6105f78787836111e9565b600193505050505b9392505050565b6040516104b2906121a9565b60025481565b601281565b6001546001600160a01b031633146106505760405162461bcd60e51b815260040161064790612388565b60405180910390fd5b6002544210156106725760405162461bcd60e51b815260040161064790612338565b6001600160a01b0382166106985760405162461bcd60e51b815260040161064790612378565b6106a6426301e1338061138f565b60028190555060006106d0826040518060600160405280602281526020016126c56022913961117b565b90506106ec6106e5600054600260ff166113b4565b60646113ee565b816001600160601b031611156107145760405162461bcd60e51b815260040161064790612398565b61074a61072c600054836001600160601b031661138f565b60405180606001604052806027815260200161270f6027913961117b565b6001600160601b0390811660009081556001600160a01b03851681526004602090815260409182902054825160608101909352602580845261079c949190911692859290919061264890830139611430565b6001600160a01b03841660008181526004602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061080690859061243f565b60405180910390a36001600160a01b0380841660009081526005602052604081205461083392168361146c565b505050565b6005602052600090815260409020546001600160a01b031681565b6301e1338081565b61086533826115fe565b50565b60076020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600460205260409020546001600160601b031690565b600281565b60004382106108ca5760405162461bcd60e51b8152600401610647906123b8565b6001600160a01b03831660009081526007602052604090205463ffffffff16806108f857600091505061049a565b6001600160a01b038416600090815260066020908152604080832063ffffffff600019860181168552925290912054168310610974576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b0316905061049a565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff168310156109af57600091505061049a565b600060001982015b8163ffffffff168163ffffffff161115610a7257600282820363ffffffff160481036109e161189f565b506001600160a01b038716600090815260066020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610a4d5760200151945061049a9350505050565b805163ffffffff16871115610a6457819350610a6b565b6001820392505b50506109b7565b506001600160a01b038516600090815260066020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60086020526000908152604090205481565b604051806040016040528060048152602001631413d3d360e21b81525081565b600080610b0e836040518060600160405280602681526020016126226026913961117b565b9050610b1b3385836111e9565b5060019392505050565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610b505760006105ff565b6001600160a01b0383166000908152600660209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b6000604051610ba3906121b4565b60408051918290038220828201909152600c82526b2837b7b62a37b3b2ba3432b960a11b6020909201919091527f856debe1b05b03d324190d1efb77fc9169c8c5b356fcf8aa8619d54677664ae1610bf9611688565b30604051602001610c0d94939291906122a7565b6040516020818303038152906040528051906020012090506000604051610c33906121bf565b604051908190038120610c4e918a908a908a90602001612269565b60405160208183030381529060405280519060200120905060008282604051602001610c7b929190612178565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610cb894939291906122dc565b6020604051602081039080840390855afa158015610cda573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d0d5760405162461bcd60e51b815260040161064790612308565b6001600160a01b03811660009081526008602052604090208054600181019091558914610d4c5760405162461bcd60e51b8152600401610647906123e8565b87421115610d6c5760405162461bcd60e51b815260040161064790612348565b610d76818b6115fe565b505050505b505050505050565b6000600019861415610d985750600019610dbd565b610dba866040518060600160405280602481526020016126a16024913961117b565b90505b6000604051610dcb906121b4565b60408051918290038220828201909152600c82526b2837b7b62a37b3b2ba3432b960a11b6020909201919091527f856debe1b05b03d324190d1efb77fc9169c8c5b356fcf8aa8619d54677664ae1610e21611688565b30604051602001610e3594939291906122a7565b6040516020818303038152906040528051906020012090506000604051610e5b906121a9565b604080519182900382206001600160a01b038d16600090815260086020908152929020805460018101909155610e9d9391928e928e928e9290918e910161220f565b60405160208183030381529060405280519060200120905060008282604051602001610eca929190612178565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610f0794939291906122dc565b6020604051602081039080840390855afa158015610f29573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610f5c5760405162461bcd60e51b815260040161064790612368565b8b6001600160a01b0316816001600160a01b031614610f8d5760405162461bcd60e51b8152600401610647906123d8565b88421115610fad5760405162461bcd60e51b815260040161064790612318565b84600360008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258760405161105d919061243f565b60405180910390a3505050505050505050505050565b6001600160a01b0391821660009081526003602090815260408083209390941682529190915220546001600160601b031690565b6040516104b2906121bf565b600660209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6001546001600160a01b031633146111125760405162461bcd60e51b8152600401610647906123f8565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f691611151916001600160a01b039091169084906121d8565b60405180910390a1600180546001600160a01b0319166001600160a01b0392909216919091179055565b600081600160601b84106111a25760405162461bcd60e51b815260040161064791906122f7565b509192915050565b6000836001600160601b0316836001600160601b0316111582906111e15760405162461bcd60e51b815260040161064791906122f7565b505050900390565b6001600160a01b03831661120f5760405162461bcd60e51b8152600401610647906123a8565b6001600160a01b0382166112355760405162461bcd60e51b815260040161064790612328565b6001600160a01b038316600090815260046020908152604091829020548251606081019093526036808452611280936001600160601b0390921692859291906125af908301396111aa565b6001600160a01b03848116600090815260046020908152604080832080546001600160601b0319166001600160601b039687161790559286168252908290205482516060810190935260308084526112e8949190911692859290919061257f90830139611430565b6001600160a01b038381166000818152600460205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061135590859061243f565b60405180910390a36001600160a01b038084166000908152600560205260408082205485841683529120546108339291821691168361146c565b6000828201838110156105ff5760405162461bcd60e51b815260040161064790612358565b6000826113c35750600061049a565b828202828482816113d057fe5b04146105ff5760405162461bcd60e51b8152600401610647906123c8565b60006105ff83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061168c565b6000838301826001600160601b0380871690831610156114635760405162461bcd60e51b815260040161064791906122f7565b50949350505050565b816001600160a01b0316836001600160a01b03161415801561149757506000816001600160601b0316115b15610833576001600160a01b0383161561154f576001600160a01b03831660009081526007602052604081205463ffffffff1690816114d7576000611516565b6001600160a01b0385166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061153d82856040518060600160405280602881526020016126e7602891396111aa565b905061154b868484846116c3565b5050505b6001600160a01b03821615610833576001600160a01b03821660009081526007602052604081205463ffffffff16908161158a5760006115c9565b6001600160a01b0384166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006115f0828560405180606001604052806027815260200161255860279139611430565b9050610d7b858484846116c3565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461168282848361146c565b50505050565b4690565b600081836116ad5760405162461bcd60e51b815260040161064791906122f7565b5060008385816116b957fe5b0495945050505050565b60006116e74360405180606001604052806034815260200161266d60349139611878565b905060008463ffffffff1611801561173057506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561178f576001600160a01b0385166000908152600660209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b0385160217905561182e565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600683528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600790935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724848460405161186992919061245b565b60405180910390a25050505050565b600081600160201b84106111a25760405162461bcd60e51b815260040161064791906122f7565b604080518082019091526000808252602082015290565b803561049a81612503565b803561049a81612517565b803561049a81612520565b803561049a81612529565b6000602082840312156118f457600080fd5b600061190084846118b6565b949350505050565b6000806040838503121561191b57600080fd5b600061192785856118b6565b9250506020611938858286016118b6565b9150509250929050565b60008060006060848603121561195757600080fd5b600061196386866118b6565b9350506020611974868287016118b6565b9250506040611985868287016118c1565b9150509250925092565b600080600080600080600060e0888a0312156119aa57600080fd5b60006119b68a8a6118b6565b97505060206119c78a828b016118b6565b96505060406119d88a828b016118c1565b95505060606119e98a828b016118c1565b94505060806119fa8a828b016118d7565b93505060a0611a0b8a828b016118c1565b92505060c0611a1c8a828b016118c1565b91505092959891949750929550565b60008060408385031215611a3e57600080fd5b6000611a4a85856118b6565b9250506020611938858286016118c1565b60008060008060008060c08789031215611a7457600080fd5b6000611a8089896118b6565b9650506020611a9189828a016118c1565b9550506040611aa289828a016118c1565b9450506060611ab389828a016118d7565b9350506080611ac489828a016118c1565b92505060a0611ad589828a016118c1565b9150509295509295509295565b60008060408385031215611af557600080fd5b6000611b0185856118b6565b9250506020611938858286016118cc565b611b1b81612488565b82525050565b611b1b81612493565b611b1b81612498565b611b1b611b3f82612498565b612498565b6000611b4f82612476565b611b59818561247a565b9350611b698185602086016124cd565b611b72816124f9565b9093019392505050565b6000611b8960268361247a565b7f506f6f6c3a3a64656c656761746542795369673a20696e76616c6964207369678152656e617475726560d01b602082015260400192915050565b6000611bd1601f8361247a565b7f506f6f6c3a3a7065726d69743a207369676e6174757265206578706972656400815260200192915050565b6000611c0a603a8361247a565b7f506f6f6c3a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747281527f616e7366657220746f20746865207a65726f2061646472657373000000000000602082015260400192915050565b6000611c6960238361247a565b7f506f6f6c3a3a6d696e743a206d696e74696e67206e6f7420616c6c6f776564208152621e595d60ea1b602082015260400192915050565b6000611cae60268361247a565b7f506f6f6c3a3a64656c656761746542795369673a207369676e617475726520658152651e1c1a5c995960d21b602082015260400192915050565b6000611cf6600283612483565b61190160f01b815260020192915050565b6000611d14601b8361247a565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000611d4d601f8361247a565b7f506f6f6c3a3a7065726d69743a20696e76616c6964207369676e617475726500815260200192915050565b6000611d86602f8361247a565b7f506f6f6c3a3a6d696e743a2063616e6e6f74207472616e7366657220746f207481526e6865207a65726f206164647265737360881b602082015260400192915050565b6000611dd760248361247a565b7f506f6f6c3a3a6d696e743a206f6e6c7920746865206d696e7465722063616e208152631b5a5b9d60e21b602082015260400192915050565b6000611e1d601d8361247a565b7f506f6f6c3a3a6d696e743a206578636565646564206d696e7420636170000000815260200192915050565b6000611e56605283612483565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63656020820152712c75696e7432353620646561646c696e652960701b604082015260520192915050565b6000611ed0603c8361247a565b7f506f6f6c3a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747281527f616e736665722066726f6d20746865207a65726f206164647265737300000000602082015260400192915050565b6000611f2f60278361247a565b7f506f6f6c3a3a6765745072696f72566f7465733a206e6f742079657420646574815266195c9b5a5b995960ca1b602082015260400192915050565b6000611f78604383612483565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611fe360218361247a565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f8152607760f81b602082015260400192915050565b6000612026601a8361247a565b7f506f6f6c3a3a7065726d69743a20756e617574686f72697a6564000000000000815260200192915050565b600061205f60228361247a565b7f506f6f6c3a3a64656c656761746542795369673a20696e76616c6964206e6f6e815261636560f01b602082015260400192915050565b60006120a3603a83612483565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b6000612102603e8361247a565b7f506f6f6c3a3a7365744d696e7465723a206f6e6c7920746865206d696e74657281527f2063616e206368616e676520746865206d696e74657220616464726573730000602082015260400192915050565b611b1b816124a7565b611b1b816124b0565b611b1b816124c2565b611b1b816124b6565b600061218382611ce9565b915061218f8285611b33565b60208201915061219f8284611b33565b5060200192915050565b600061049a82611e49565b600061049a82611f6b565b600061049a82612096565b6020810161049a8284611b12565b604081016121e68285611b12565b6105ff6020830184611b12565b6020810161049a8284611b21565b6020810161049a8284611b2a565b60c0810161221d8289611b2a565b61222a6020830188611b12565b6122376040830187611b12565b6122446060830186611b2a565b6122516080830185611b2a565b61225e60a0830184611b2a565b979650505050505050565b608081016122778287611b2a565b6122846020830186611b12565b6122916040830185611b2a565b61229e6060830184611b2a565b95945050505050565b608081016122b58287611b2a565b6122c26020830186611b2a565b6122cf6040830185611b2a565b61229e6060830184611b12565b608081016122ea8287611b2a565b612284602083018661215d565b602080825281016105ff8184611b44565b6020808252810161049a81611b7c565b6020808252810161049a81611bc4565b6020808252810161049a81611bfd565b6020808252810161049a81611c5c565b6020808252810161049a81611ca1565b6020808252810161049a81611d07565b6020808252810161049a81611d40565b6020808252810161049a81611d79565b6020808252810161049a81611dca565b6020808252810161049a81611e10565b6020808252810161049a81611ec3565b6020808252810161049a81611f22565b6020808252810161049a81611fd6565b6020808252810161049a81612019565b6020808252810161049a81612052565b6020808252810161049a816120f5565b6020810161049a8284612154565b604081016124248285612154565b6105ff602083018461216f565b6020810161049a828461215d565b6020810161049a8284612166565b6020810161049a828461216f565b604081016124698285612166565b6105ff6020830184612166565b5190565b90815260200190565b919050565b600061049a8261249b565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b6001600160601b031690565b600061049a826124b6565b60005b838110156124e85781810151838201526020016124d0565b838111156116825750506000910152565b601f01601f191690565b61250c81612488565b811461086557600080fd5b61250c81612498565b61250c816124a7565b61250c816124b056fe506f6f6c3a3a617070726f76653a20616d6f756e7420657863656564732039362062697473506f6f6c3a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773506f6f6c3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f7773506f6f6c3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365506f6f6c3a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365506f6f6c3a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473506f6f6c3a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f7773506f6f6c3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473506f6f6c3a3a7065726d69743a20616d6f756e7420657863656564732039362062697473506f6f6c3a3a6d696e743a20616d6f756e7420657863656564732039362062697473506f6f6c3a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f7773506f6f6c3a3a6d696e743a20746f74616c537570706c7920657863656564732039362062697473a365627a7a723158208d72f82aaefb2f0e5b0321df1ca459b096d061cdecf654628fda46f27f2760f26c6578706572696d656e74616cf564736f6c6343000510004000000000000000000000000077383badb05049806d53e9def0c8128de0d56d90000000000000000000000000e0f4217390221af47855e094f6e112d43c8698fe0000000000000000000000000000000000000000000000000000000067b0fe87

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80636fcfff45116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e1461035b578063e7a324dc1461036e578063f1127ed814610376578063fca3b5aa14610397576101a9565b8063b4b5ea5714610322578063c3cda52014610335578063d505accf14610348576101a9565b8063782d6fe1116100d3578063782d6fe1146102d45780637ecebe00146102f457806395d89b4114610307578063a9059cbb1461030f576101a9565b80636fcfff45146102a657806370a08231146102b957806376c71ca1146102cc576101a9565b806330adf81f1161016657806340c10f191161014057806340c10f1914610256578063587cde1e1461026b5780635c11d62f1461027e5780635c19a95c14610293576101a9565b806330adf81f1461023157806330b36cef14610239578063313ce56714610241576101a9565b806306fdde03146101ae57806307546172146101cc578063095ea7b3146101e157806318160ddd1461020157806320606b701461021657806323b872dd1461021e575b600080fd5b6101b66103aa565b6040516101c391906122f7565b60405180910390f35b6101d46103d2565b6040516101c391906121ca565b6101f46101ef366004611a2b565b6103e1565b6040516101c391906121f3565b6102096104a0565b6040516101c39190612201565b6102096104a6565b6101f461022c366004611942565b6104bd565b610209610606565b610209610612565b610249610618565b6040516101c39190612431565b610269610264366004611a2b565b61061d565b005b6101d46102793660046118e2565b610838565b610286610853565b6040516101c39190612408565b6102696102a13660046118e2565b61085b565b6102866102b43660046118e2565b610868565b6102096102c73660046118e2565b610880565b6102496108a4565b6102e76102e2366004611a2b565b6108a9565b6040516101c3919061244d565b6102096103023660046118e2565b610ab7565b6101b6610ac9565b6101f461031d366004611a2b565b610ae9565b6102e76103303660046118e2565b610b25565b610269610343366004611a5b565b610b95565b61026961035636600461198f565b610d83565b610209610369366004611908565b611073565b6102096110a7565b610389610384366004611ae2565b6110b3565b6040516101c3929190612416565b6102696103a53660046118e2565b6110e8565b6040518060400160405280600c81526020016b2837b7b62a37b3b2ba3432b960a11b81525081565b6001546001600160a01b031681565b6000806000198314156103f7575060001961041c565b610419836040518060600160405280602581526020016125336025913961117b565b90505b3360008181526003602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061048c90859061243f565b60405180910390a360019150505b92915050565b60005481565b6040516104b2906121b4565b604051809103902081565b6001600160a01b03831660009081526003602090815260408083203380855290835281842054825160608101909352602580845291936001600160601b0390911692859261051592889291906125339083013961117b565b9050866001600160a01b0316836001600160a01b03161415801561054257506001600160601b0382811614155b156105ec57600061056c83836040518060600160405280603d81526020016125e5603d91396111aa565b6001600160a01b038981166000818152600360209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105e290859061243f565b60405180910390a3505b6105f78787836111e9565b600193505050505b9392505050565b6040516104b2906121a9565b60025481565b601281565b6001546001600160a01b031633146106505760405162461bcd60e51b815260040161064790612388565b60405180910390fd5b6002544210156106725760405162461bcd60e51b815260040161064790612338565b6001600160a01b0382166106985760405162461bcd60e51b815260040161064790612378565b6106a6426301e1338061138f565b60028190555060006106d0826040518060600160405280602281526020016126c56022913961117b565b90506106ec6106e5600054600260ff166113b4565b60646113ee565b816001600160601b031611156107145760405162461bcd60e51b815260040161064790612398565b61074a61072c600054836001600160601b031661138f565b60405180606001604052806027815260200161270f6027913961117b565b6001600160601b0390811660009081556001600160a01b03851681526004602090815260409182902054825160608101909352602580845261079c949190911692859290919061264890830139611430565b6001600160a01b03841660008181526004602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061080690859061243f565b60405180910390a36001600160a01b0380841660009081526005602052604081205461083392168361146c565b505050565b6005602052600090815260409020546001600160a01b031681565b6301e1338081565b61086533826115fe565b50565b60076020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600460205260409020546001600160601b031690565b600281565b60004382106108ca5760405162461bcd60e51b8152600401610647906123b8565b6001600160a01b03831660009081526007602052604090205463ffffffff16806108f857600091505061049a565b6001600160a01b038416600090815260066020908152604080832063ffffffff600019860181168552925290912054168310610974576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b0316905061049a565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff168310156109af57600091505061049a565b600060001982015b8163ffffffff168163ffffffff161115610a7257600282820363ffffffff160481036109e161189f565b506001600160a01b038716600090815260066020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610a4d5760200151945061049a9350505050565b805163ffffffff16871115610a6457819350610a6b565b6001820392505b50506109b7565b506001600160a01b038516600090815260066020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60086020526000908152604090205481565b604051806040016040528060048152602001631413d3d360e21b81525081565b600080610b0e836040518060600160405280602681526020016126226026913961117b565b9050610b1b3385836111e9565b5060019392505050565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610b505760006105ff565b6001600160a01b0383166000908152600660209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b6000604051610ba3906121b4565b60408051918290038220828201909152600c82526b2837b7b62a37b3b2ba3432b960a11b6020909201919091527f856debe1b05b03d324190d1efb77fc9169c8c5b356fcf8aa8619d54677664ae1610bf9611688565b30604051602001610c0d94939291906122a7565b6040516020818303038152906040528051906020012090506000604051610c33906121bf565b604051908190038120610c4e918a908a908a90602001612269565b60405160208183030381529060405280519060200120905060008282604051602001610c7b929190612178565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610cb894939291906122dc565b6020604051602081039080840390855afa158015610cda573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d0d5760405162461bcd60e51b815260040161064790612308565b6001600160a01b03811660009081526008602052604090208054600181019091558914610d4c5760405162461bcd60e51b8152600401610647906123e8565b87421115610d6c5760405162461bcd60e51b815260040161064790612348565b610d76818b6115fe565b505050505b505050505050565b6000600019861415610d985750600019610dbd565b610dba866040518060600160405280602481526020016126a16024913961117b565b90505b6000604051610dcb906121b4565b60408051918290038220828201909152600c82526b2837b7b62a37b3b2ba3432b960a11b6020909201919091527f856debe1b05b03d324190d1efb77fc9169c8c5b356fcf8aa8619d54677664ae1610e21611688565b30604051602001610e3594939291906122a7565b6040516020818303038152906040528051906020012090506000604051610e5b906121a9565b604080519182900382206001600160a01b038d16600090815260086020908152929020805460018101909155610e9d9391928e928e928e9290918e910161220f565b60405160208183030381529060405280519060200120905060008282604051602001610eca929190612178565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610f0794939291906122dc565b6020604051602081039080840390855afa158015610f29573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610f5c5760405162461bcd60e51b815260040161064790612368565b8b6001600160a01b0316816001600160a01b031614610f8d5760405162461bcd60e51b8152600401610647906123d8565b88421115610fad5760405162461bcd60e51b815260040161064790612318565b84600360008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258760405161105d919061243f565b60405180910390a3505050505050505050505050565b6001600160a01b0391821660009081526003602090815260408083209390941682529190915220546001600160601b031690565b6040516104b2906121bf565b600660209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6001546001600160a01b031633146111125760405162461bcd60e51b8152600401610647906123f8565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f691611151916001600160a01b039091169084906121d8565b60405180910390a1600180546001600160a01b0319166001600160a01b0392909216919091179055565b600081600160601b84106111a25760405162461bcd60e51b815260040161064791906122f7565b509192915050565b6000836001600160601b0316836001600160601b0316111582906111e15760405162461bcd60e51b815260040161064791906122f7565b505050900390565b6001600160a01b03831661120f5760405162461bcd60e51b8152600401610647906123a8565b6001600160a01b0382166112355760405162461bcd60e51b815260040161064790612328565b6001600160a01b038316600090815260046020908152604091829020548251606081019093526036808452611280936001600160601b0390921692859291906125af908301396111aa565b6001600160a01b03848116600090815260046020908152604080832080546001600160601b0319166001600160601b039687161790559286168252908290205482516060810190935260308084526112e8949190911692859290919061257f90830139611430565b6001600160a01b038381166000818152600460205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061135590859061243f565b60405180910390a36001600160a01b038084166000908152600560205260408082205485841683529120546108339291821691168361146c565b6000828201838110156105ff5760405162461bcd60e51b815260040161064790612358565b6000826113c35750600061049a565b828202828482816113d057fe5b04146105ff5760405162461bcd60e51b8152600401610647906123c8565b60006105ff83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061168c565b6000838301826001600160601b0380871690831610156114635760405162461bcd60e51b815260040161064791906122f7565b50949350505050565b816001600160a01b0316836001600160a01b03161415801561149757506000816001600160601b0316115b15610833576001600160a01b0383161561154f576001600160a01b03831660009081526007602052604081205463ffffffff1690816114d7576000611516565b6001600160a01b0385166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061153d82856040518060600160405280602881526020016126e7602891396111aa565b905061154b868484846116c3565b5050505b6001600160a01b03821615610833576001600160a01b03821660009081526007602052604081205463ffffffff16908161158a5760006115c9565b6001600160a01b0384166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006115f0828560405180606001604052806027815260200161255860279139611430565b9050610d7b858484846116c3565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461168282848361146c565b50505050565b4690565b600081836116ad5760405162461bcd60e51b815260040161064791906122f7565b5060008385816116b957fe5b0495945050505050565b60006116e74360405180606001604052806034815260200161266d60349139611878565b905060008463ffffffff1611801561173057506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561178f576001600160a01b0385166000908152600660209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b0385160217905561182e565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600683528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600790935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724848460405161186992919061245b565b60405180910390a25050505050565b600081600160201b84106111a25760405162461bcd60e51b815260040161064791906122f7565b604080518082019091526000808252602082015290565b803561049a81612503565b803561049a81612517565b803561049a81612520565b803561049a81612529565b6000602082840312156118f457600080fd5b600061190084846118b6565b949350505050565b6000806040838503121561191b57600080fd5b600061192785856118b6565b9250506020611938858286016118b6565b9150509250929050565b60008060006060848603121561195757600080fd5b600061196386866118b6565b9350506020611974868287016118b6565b9250506040611985868287016118c1565b9150509250925092565b600080600080600080600060e0888a0312156119aa57600080fd5b60006119b68a8a6118b6565b97505060206119c78a828b016118b6565b96505060406119d88a828b016118c1565b95505060606119e98a828b016118c1565b94505060806119fa8a828b016118d7565b93505060a0611a0b8a828b016118c1565b92505060c0611a1c8a828b016118c1565b91505092959891949750929550565b60008060408385031215611a3e57600080fd5b6000611a4a85856118b6565b9250506020611938858286016118c1565b60008060008060008060c08789031215611a7457600080fd5b6000611a8089896118b6565b9650506020611a9189828a016118c1565b9550506040611aa289828a016118c1565b9450506060611ab389828a016118d7565b9350506080611ac489828a016118c1565b92505060a0611ad589828a016118c1565b9150509295509295509295565b60008060408385031215611af557600080fd5b6000611b0185856118b6565b9250506020611938858286016118cc565b611b1b81612488565b82525050565b611b1b81612493565b611b1b81612498565b611b1b611b3f82612498565b612498565b6000611b4f82612476565b611b59818561247a565b9350611b698185602086016124cd565b611b72816124f9565b9093019392505050565b6000611b8960268361247a565b7f506f6f6c3a3a64656c656761746542795369673a20696e76616c6964207369678152656e617475726560d01b602082015260400192915050565b6000611bd1601f8361247a565b7f506f6f6c3a3a7065726d69743a207369676e6174757265206578706972656400815260200192915050565b6000611c0a603a8361247a565b7f506f6f6c3a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747281527f616e7366657220746f20746865207a65726f2061646472657373000000000000602082015260400192915050565b6000611c6960238361247a565b7f506f6f6c3a3a6d696e743a206d696e74696e67206e6f7420616c6c6f776564208152621e595d60ea1b602082015260400192915050565b6000611cae60268361247a565b7f506f6f6c3a3a64656c656761746542795369673a207369676e617475726520658152651e1c1a5c995960d21b602082015260400192915050565b6000611cf6600283612483565b61190160f01b815260020192915050565b6000611d14601b8361247a565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000611d4d601f8361247a565b7f506f6f6c3a3a7065726d69743a20696e76616c6964207369676e617475726500815260200192915050565b6000611d86602f8361247a565b7f506f6f6c3a3a6d696e743a2063616e6e6f74207472616e7366657220746f207481526e6865207a65726f206164647265737360881b602082015260400192915050565b6000611dd760248361247a565b7f506f6f6c3a3a6d696e743a206f6e6c7920746865206d696e7465722063616e208152631b5a5b9d60e21b602082015260400192915050565b6000611e1d601d8361247a565b7f506f6f6c3a3a6d696e743a206578636565646564206d696e7420636170000000815260200192915050565b6000611e56605283612483565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63656020820152712c75696e7432353620646561646c696e652960701b604082015260520192915050565b6000611ed0603c8361247a565b7f506f6f6c3a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747281527f616e736665722066726f6d20746865207a65726f206164647265737300000000602082015260400192915050565b6000611f2f60278361247a565b7f506f6f6c3a3a6765745072696f72566f7465733a206e6f742079657420646574815266195c9b5a5b995960ca1b602082015260400192915050565b6000611f78604383612483565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611fe360218361247a565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f8152607760f81b602082015260400192915050565b6000612026601a8361247a565b7f506f6f6c3a3a7065726d69743a20756e617574686f72697a6564000000000000815260200192915050565b600061205f60228361247a565b7f506f6f6c3a3a64656c656761746542795369673a20696e76616c6964206e6f6e815261636560f01b602082015260400192915050565b60006120a3603a83612483565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b6000612102603e8361247a565b7f506f6f6c3a3a7365744d696e7465723a206f6e6c7920746865206d696e74657281527f2063616e206368616e676520746865206d696e74657220616464726573730000602082015260400192915050565b611b1b816124a7565b611b1b816124b0565b611b1b816124c2565b611b1b816124b6565b600061218382611ce9565b915061218f8285611b33565b60208201915061219f8284611b33565b5060200192915050565b600061049a82611e49565b600061049a82611f6b565b600061049a82612096565b6020810161049a8284611b12565b604081016121e68285611b12565b6105ff6020830184611b12565b6020810161049a8284611b21565b6020810161049a8284611b2a565b60c0810161221d8289611b2a565b61222a6020830188611b12565b6122376040830187611b12565b6122446060830186611b2a565b6122516080830185611b2a565b61225e60a0830184611b2a565b979650505050505050565b608081016122778287611b2a565b6122846020830186611b12565b6122916040830185611b2a565b61229e6060830184611b2a565b95945050505050565b608081016122b58287611b2a565b6122c26020830186611b2a565b6122cf6040830185611b2a565b61229e6060830184611b12565b608081016122ea8287611b2a565b612284602083018661215d565b602080825281016105ff8184611b44565b6020808252810161049a81611b7c565b6020808252810161049a81611bc4565b6020808252810161049a81611bfd565b6020808252810161049a81611c5c565b6020808252810161049a81611ca1565b6020808252810161049a81611d07565b6020808252810161049a81611d40565b6020808252810161049a81611d79565b6020808252810161049a81611dca565b6020808252810161049a81611e10565b6020808252810161049a81611ec3565b6020808252810161049a81611f22565b6020808252810161049a81611fd6565b6020808252810161049a81612019565b6020808252810161049a81612052565b6020808252810161049a816120f5565b6020810161049a8284612154565b604081016124248285612154565b6105ff602083018461216f565b6020810161049a828461215d565b6020810161049a8284612166565b6020810161049a828461216f565b604081016124698285612166565b6105ff6020830184612166565b5190565b90815260200190565b919050565b600061049a8261249b565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b6001600160601b031690565b600061049a826124b6565b60005b838110156124e85781810151838201526020016124d0565b838111156116825750506000910152565b601f01601f191690565b61250c81612488565b811461086557600080fd5b61250c81612498565b61250c816124a7565b61250c816124b056fe506f6f6c3a3a617070726f76653a20616d6f756e7420657863656564732039362062697473506f6f6c3a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773506f6f6c3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f7773506f6f6c3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365506f6f6c3a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365506f6f6c3a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473506f6f6c3a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f7773506f6f6c3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473506f6f6c3a3a7065726d69743a20616d6f756e7420657863656564732039362062697473506f6f6c3a3a6d696e743a20616d6f756e7420657863656564732039362062697473506f6f6c3a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f7773506f6f6c3a3a6d696e743a20746f74616c537570706c7920657863656564732039362062697473a365627a7a723158208d72f82aaefb2f0e5b0321df1ca459b096d061cdecf654628fda46f27f2760f26c6578706572696d656e74616cf564736f6c63430005100040

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

00000000000000000000000077383badb05049806d53e9def0c8128de0d56d90000000000000000000000000e0f4217390221af47855e094f6e112d43c8698fe0000000000000000000000000000000000000000000000000000000067b0fe87

-----Decoded View---------------
Arg [0] : account (address): 0x77383BaDb05049806d53e9def0C8128de0D56D90
Arg [1] : minter_ (address): 0xE0F4217390221aF47855E094F6e112D43C8698fE
Arg [2] : mintingAllowedAfter_ (uint256): 1739652743

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000077383badb05049806d53e9def0c8128de0d56d90
Arg [1] : 000000000000000000000000e0f4217390221af47855e094f6e112d43c8698fe
Arg [2] : 0000000000000000000000000000000000000000000000000000000067b0fe87


Deployed Bytecode Sourcemap

87:16803:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;87:16803:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156:44;;;:::i;:::-;;;;;;;;;;;;;;;;567:21;;;:::i;:::-;;;;;;;;6373:407;;;;;;;;;:::i;:::-;;;;;;;;452:39;;;:::i;:::-;;;;;;;;1768:122;;;:::i;9386:658::-;;;;;;;;;:::i;2185:137::-;;;:::i;655:31::-;;;:::i;356:35::-;;;:::i;:::-;;;;;;;;4429:1046;;;;;;;;;:::i;:::-;;1233:45;;;;;;;;;:::i;736:57::-;;;:::i;:::-;;;;;;;;10186:100;;;;;;;;;:::i;1649:49::-;;;;;;;;;:::i;8489:106::-;;;;;;;;;:::i;894:33::-;;;:::i;12324:1186::-;;;;;;;;;:::i;:::-;;;;;;;;2400:39;;;;;;;;;:::i;258:38::-;;;:::i;8851:234::-;;;;;;;;;:::i;11683:219::-;;;;;;;;;:::i;10709:780::-;;;;;;;;;:::i;7258:1035::-;;;;;;;;;:::i;5771:134::-;;;;;;;;;:::i;1981:117::-;;;:::i;1513:70::-;;;;;;;;;:::i;:::-;;;;;;;;;4033:228;;;;;;;;;:::i;156:44::-;;;;;;;;;;;;;;-1:-1:-1;;;156:44:0;;;;:::o;567:21::-;;;-1:-1:-1;;;;;567:21:0;;:::o;6373:407::-;6441:4;6457:13;-1:-1:-1;;6484:9:0;:21;6480:169;;;-1:-1:-1;;;6480:169:0;;;6580:58;6587:9;6580:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;6571:67;;6480:169;6670:10;6659:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;6659:31:0;;;;;;;;;;;:40;;-1:-1:-1;;;;;;6659:40:0;-1:-1:-1;;;;;6659:40:0;;;;;6715:37;;6659:31;;6670:10;6715:37;;;;6659:40;;6715:37;;;;;;;;;;6769:4;6762:11;;;6373:407;;;;;:::o;452:39::-;;;;:::o;1768:122::-;1810:80;;;;;;;;;;;;;;1768:122;:::o;9386:658::-;-1:-1:-1;;;;;9548:15:0;;9468:4;9548:15;;;:10;:15;;;;;;;;9502:10;9548:24;;;;;;;;;;9598:58;;;;;;;;;;;;9502:10;;-1:-1:-1;;;;;9548:24:0;;;;9468:4;;9598:58;;9605:9;;9598:58;;;;;;;:6;:58::i;:::-;9582:74;;9682:3;-1:-1:-1;;;;;9671:14:0;:7;-1:-1:-1;;;;;9671:14:0;;;:48;;;;-1:-1:-1;;;;;;9689:30:0;;;;;9671:48;9667:306;;;9735:19;9757:96;9763:16;9781:6;9757:96;;;;;;;;;;;;;;;;;:5;:96::i;:::-;-1:-1:-1;;;;;9867:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;;:39;;-1:-1:-1;;;;;;9867:39:0;-1:-1:-1;;;;;9867:39:0;;;;;9926:36;9867:39;;-1:-1:-1;9867:24:0;;9926:36;;;;9867:39;;9926:36;;;;;;;;;;9667:306;;9983:33;9999:3;10004;10009:6;9983:15;:33::i;:::-;10033:4;10026:11;;;;;9386:658;;;;;;:::o;2185:137::-;2227:95;;;;;;655:31;;;;:::o;356:35::-;389:2;356:35;:::o;4429:1046::-;4513:6;;-1:-1:-1;;;;;4513:6:0;4499:10;:20;4491:69;;;;-1:-1:-1;;;4491:69:0;;;;;;;;;;;;;;;;;4597:19;;4578:15;:38;;4570:86;;;;-1:-1:-1;;;4570:86:0;;;;;;;;;-1:-1:-1;;;;;4674:17:0;;4666:77;;;;-1:-1:-1;;;4666:77:0;;;;;;;;;4803:54;4816:15;785:8;4803:12;:54::i;:::-;4781:19;:76;;;;4895:13;4911:55;4918:9;4911:55;;;;;;;;;;;;;;;;;:6;:55::i;:::-;4895:71;;4994:53;5007:34;5020:11;;926:1;5007:34;;:12;:34::i;:::-;5043:3;4994:12;:53::i;:::-;4984:6;-1:-1:-1;;;;;4984:63:0;;;4976:105;;;;-1:-1:-1;;;4976:105:0;;;;;;;;;5105:84;5112:33;5125:11;;5138:6;-1:-1:-1;;;;;5112:33:0;:12;:33::i;:::-;5105:84;;;;;;;;;;;;;;;;;:6;:84::i;:::-;-1:-1:-1;;;;;5091:98:0;;;:11;:98;;;-1:-1:-1;;;;;5270:13:0;;;;:8;:13;;;;;;;;;;5264:69;;;;;;;;;;;;;;5270:13;;;;;5285:6;;5264:69;;;;;;;;:5;:69::i;:::-;-1:-1:-1;;;;;5248:13:0;;;;;;:8;:13;;;;;;:85;;-1:-1:-1;;;;;;5248:85:0;-1:-1:-1;;;;;5248:85:0;;;;;;;;;;;5348:33;;5248:13;;;5348:33;;;;5374:6;;5348:33;;;;;;;;;;-1:-1:-1;;;;;5445:14:0;;;5441:1;5445:14;;;:9;:14;;;;;;5418:50;;5445:14;5461:6;5418:14;:50::i;:::-;4429:1046;;;:::o;1233:45::-;;;;;;;;;;;;-1:-1:-1;;;;;1233:45:0;;:::o;736:57::-;785:8;736:57;:::o;10186:100::-;10247:32;10257:10;10269:9;10247;:32::i;:::-;10186:100;:::o;1649:49::-;;;;;;;;;;;;;;;:::o;8489:106::-;-1:-1:-1;;;;;8571:17:0;8548:4;8571:17;;;:8;:17;;;;;;-1:-1:-1;;;;;8571:17:0;;8489:106::o;894:33::-;926:1;894:33;:::o;12324:1186::-;12403:6;12443:12;12429:11;:26;12421:78;;;;-1:-1:-1;;;12421:78:0;;;;;;;;;-1:-1:-1;;;;;12532:23:0;;12510:19;12532:23;;;:14;:23;;;;;;;;12569:17;12565:56;;12609:1;12602:8;;;;;12565:56;-1:-1:-1;;;;;12678:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;12699:16:0;;12678:38;;;;;;;;;:48;;:63;-1:-1:-1;12674:145:0;;-1:-1:-1;;;;;12764:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;12785:16:0;;;;12764:38;;;;;;;;:44;-1:-1:-1;;;12764:44:0;;-1:-1:-1;;;;;12764:44:0;;-1:-1:-1;12757:51:0;;12674:145;-1:-1:-1;;;;;12877:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;12873:86:0;;;12947:1;12940:8;;;;;12873:86;12969:12;-1:-1:-1;;13010:16:0;;13036:418;13051:5;13043:13;;:5;:13;;;13036:418;;;13114:1;13097:13;;;13096:19;;;13088:27;;13156:20;;:::i;:::-;-1:-1:-1;;;;;;13179:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;13156:51;;;;;;;;;;;;;;;-1:-1:-1;;;13156:51:0;;;-1:-1:-1;;;;;13156:51:0;;;;;;;;;13225:27;;13221:223;;;13279:8;;;;-1:-1:-1;13272:15:0;;-1:-1:-1;;;;13272:15:0;13221:223;13312:12;;:26;;;-1:-1:-1;13308:136:0;;;13366:6;13358:14;;13308:136;;;13428:1;13419:6;:10;13411:18;;13308:136;13036:418;;;;;-1:-1:-1;;;;;;13470:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;-1:-1:-1;;;;;;;;13470:33:0;;;;;-1:-1:-1;;12324:1186:0;;;;:::o;2400:39::-;;;;;;;;;;;;;:::o;258:38::-;;;;;;;;;;;;;;-1:-1:-1;;;258:38:0;;;;:::o;8851:234::-;8916:4;8932:13;8948:59;8955:9;8948:59;;;;;;;;;;;;;;;;;:6;:59::i;:::-;8932:75;;9017:40;9033:10;9045:3;9050:6;9017:15;:40::i;:::-;-1:-1:-1;9074:4:0;;8851:234;-1:-1:-1;;;8851:234:0:o;11683:219::-;-1:-1:-1;;;;;11788:23:0;;11748:6;11788:23;;;:14;:23;;;;;;;;11828:16;:67;;11894:1;11828:67;;;-1:-1:-1;;;;;11847:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;11868:16:0;;11847:38;;;;;;;;;:44;-1:-1:-1;;;11847:44:0;;-1:-1:-1;;;;;11847:44:0;11821:74;11683:219;-1:-1:-1;;;11683:219:0:o;10709:780::-;10824:23;1810:80;;;;;;;;;;;;;;;;10904:4;;;;;;;;;-1:-1:-1;;;10904:4:0;;;;;;;;10888:22;10912:12;:10;:12::i;:::-;10934:4;10860:80;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;10860:80:0;;;10850:91;;;;;;10824:117;;10951:18;2027:71;;;;;;;;;;;;;;;10982:57;;11014:9;;11025:5;;11032:6;;10982:57;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;10982:57:0;;;10972:68;;;;;;10951:89;;11050:14;11106:15;11123:10;11077:57;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;11077:57:0;;;11067:68;;;;;;11050:85;;11145:17;11165:26;11175:6;11183:1;11186;11189;11165:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;11165:26:0;;-1:-1:-1;;11165:26:0;;;-1:-1:-1;;;;;;;11209:23:0;;11201:74;;;;-1:-1:-1;;;11201:74:0;;;;;;;;;-1:-1:-1;;;;;11302:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;11293:28;;11285:75;;;;-1:-1:-1;;;11285:75:0;;;;;;;;;11385:6;11378:3;:13;;11370:64;;;;-1:-1:-1;;;11370:64:0;;;;;;;;;11451:31;11461:9;11472;11451;:31::i;:::-;11444:38;;;;10709:780;;;;;;;:::o;7258:1035::-;7387:13;-1:-1:-1;;7414:9:0;:21;7410:168;;;-1:-1:-1;;;7410:168:0;;;7510:57;7517:9;7510:57;;;;;;;;;;;;;;;;;:6;:57::i;:::-;7501:66;;7410:168;7588:23;1810:80;;;;;;;;;;;;;;;;7668:4;;;;;;;;;-1:-1:-1;;;7668:4:0;;;;;;;;7652:22;7676:12;:10;:12::i;:::-;7698:4;7624:80;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;7624:80:0;;;7614:91;;;;;;7588:117;;7715:18;2227:95;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7801:13:0;;;;;;:6;:13;;;;;;;:15;;;;;;;;7746:81;;2227:95;;7774:5;;7781:7;;7790:9;;7801:15;;7818:8;;7746:81;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;7746:81:0;;;7736:92;;;;;;7715:113;;7838:14;7894:15;7911:10;7865:57;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;7865:57:0;;;7855:68;;;;;;7838:85;;7933:17;7953:26;7963:6;7971:1;7974;7977;7953:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;7953:26:0;;-1:-1:-1;;7953:26:0;;;-1:-1:-1;;;;;;;7997:23:0;;7989:67;;;;-1:-1:-1;;;7989:67:0;;;;;;;;;8087:5;-1:-1:-1;;;;;8074:18:0;:9;-1:-1:-1;;;;;8074:18:0;;8066:57;;;;-1:-1:-1;;;8066:57:0;;;;;;;;;8148:8;8141:3;:15;;8133:59;;;;-1:-1:-1;;;8133:59:0;;;;;;;;;8232:6;8203:10;:17;8214:5;-1:-1:-1;;;;;8203:17:0;-1:-1:-1;;;;;8203:17:0;;;;;;;;;;;;:26;8221:7;-1:-1:-1;;;;;8203:26:0;-1:-1:-1;;;;;8203:26:0;;;;;;;;;;;;;:35;;;;;-1:-1:-1;;;;;8203:35:0;;;;;-1:-1:-1;;;;;8203:35:0;;;;;;8270:7;-1:-1:-1;;;;;8254:32:0;8263:5;-1:-1:-1;;;;;8254:32:0;;8279:6;8254:32;;;;;;;;;;;;;;;7258:1035;;;;;;;;;;;;:::o;5771:134::-;-1:-1:-1;;;;;5870:19:0;;;5847:4;5870:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;-1:-1:-1;;;;;5870:28:0;;5771:134::o;1981:117::-;2027:71;;;;;;1513:70;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1513:70:0;;-1:-1:-1;;;;;1513:70:0;;:::o;4033:228::-;4110:6;;-1:-1:-1;;;;;4110:6:0;4096:10;:20;4088:95;;;;-1:-1:-1;;;4088:95:0;;;;;;;;;4212:6;;4198:30;;;;;;-1:-1:-1;;;;;4212:6:0;;;;4220:7;;4198:30;;;;;;;;;;4238:6;:16;;-1:-1:-1;;;;;;4238:16:0;-1:-1:-1;;;;;4238:16:0;;;;;;;;;;4033:228::o;16217:158::-;16292:6;16329:12;-1:-1:-1;;;16318:9:0;;16310:32;;;;-1:-1:-1;;;16310:32:0;;;;;;;;;;-1:-1:-1;16366:1:0;;16217:158;-1:-1:-1;;16217:158:0:o;16571:162::-;16657:6;16688:1;-1:-1:-1;;;;;16683:6:0;:1;-1:-1:-1;;;;;16683:6:0;;;16691:12;16675:29;;;;;-1:-1:-1;;;16675:29:0;;;;;;;;;;-1:-1:-1;;;16721:5:0;;;16571:162::o;13889:605::-;-1:-1:-1;;;;;13982:17:0;;13974:90;;;;-1:-1:-1;;;13974:90:0;;;;;;;;;-1:-1:-1;;;;;14082:17:0;;14074:88;;;;-1:-1:-1;;;14074:88:0;;;;;;;;;-1:-1:-1;;;;;14195:13:0;;;;;;:8;:13;;;;;;;;;;14189:86;;;;;;;;;;;;;;-1:-1:-1;;;;;14195:13:0;;;;14210:6;;14189:86;;;;;;;:5;:86::i;:::-;-1:-1:-1;;;;;14173:13:0;;;;;;;:8;:13;;;;;;;;:102;;-1:-1:-1;;;;;;14173:102:0;-1:-1:-1;;;;;14173:102:0;;;;;;14307:13;;;;;;;;;;14301:80;;;;;;;;;;;;;;14307:13;;;;;14322:6;;14301:80;;;;;;;;:5;:80::i;:::-;-1:-1:-1;;;;;14285:13:0;;;;;;;:8;:13;;;;;;;:96;;-1:-1:-1;;;;;;14285:96:0;-1:-1:-1;;;;;14285:96:0;;;;;;;;;;;14396:26;;;;;;;;;;14415:6;;14396:26;;;;;;;;;;-1:-1:-1;;;;;14448:14:0;;;;;;;:9;:14;;;;;;;14464;;;;;;;;14433:54;;14448:14;;;;14464;14480:6;14433:14;:54::i;959:176:1:-;1017:7;1048:5;;;1071:6;;;;1063:46;;;;-1:-1:-1;;;1063:46:1;;;;;;;;2656:459;2714:7;2955:6;2951:45;;-1:-1:-1;2984:1:1;2977:8;;2951:45;3018:5;;;3022:1;3018;:5;:1;3041:5;;;;;:10;3033:56;;;;-1:-1:-1;;;3033:56:1;;;;;;;;4267:130;4325:7;4351:39;4355:1;4358;4351:39;;;;;;;;;;;;;;;;;:3;:39::i;16381:184:0:-;16467:6;16496:5;;;16527:12;-1:-1:-1;;;;;16519:6:0;;;;;;;;16511:29;;;;-1:-1:-1;;;16511:29:0;;;;;;;;;;-1:-1:-1;16557:1:0;16381:184;-1:-1:-1;;;;16381:184:0:o;14500:923::-;14604:6;-1:-1:-1;;;;;14594:16:0;:6;-1:-1:-1;;;;;14594:16:0;;;:30;;;;;14623:1;14614:6;-1:-1:-1;;;;;14614:10:0;;14594:30;14590:827;;;-1:-1:-1;;;;;14644:20:0;;;14640:377;;-1:-1:-1;;;;;14703:22:0;;14684:16;14703:22;;;:14;:22;;;;;;;;;14762:13;:60;;14821:1;14762:60;;;-1:-1:-1;;;;;14778:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;14798:13:0;;14778:34;;;;;;;;;:40;-1:-1:-1;;;14778:40:0;;-1:-1:-1;;;;;14778:40:0;14762:60;14743:79;;14840:16;14859:68;14865:9;14876:6;14859:68;;;;;;;;;;;;;;;;;:5;:68::i;:::-;14840:87;;14945:57;14962:6;14970:9;14981;14992;14945:16;:57::i;:::-;14640:377;;;;-1:-1:-1;;;;;15035:20:0;;;15031:376;;-1:-1:-1;;;;;15094:22:0;;15075:16;15094:22;;;:14;:22;;;;;;;;;15153:13;:60;;15212:1;15153:60;;;-1:-1:-1;;;;;15169:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;15189:13:0;;15169:34;;;;;;;;;:40;-1:-1:-1;;;15169:40:0;;-1:-1:-1;;;;;15169:40:0;15153:60;15134:79;;15231:16;15250:67;15256:9;15267:6;15250:67;;;;;;;;;;;;;;;;;:5;:67::i;:::-;15231:86;;15335:57;15352:6;15360:9;15371;15382;15335:16;:57::i;13516:367::-;-1:-1:-1;;;;;13618:20:0;;;13592:23;13618:20;;;:9;:20;;;;;;;;;;13674:8;:19;;;;;;13703:20;;;;:32;;;-1:-1:-1;;;;;;13703:32:0;;;;;;;13751:54;;13618:20;;;;;-1:-1:-1;;;;;13674:19:0;;;;13703:32;;13618:20;;;13751:54;;13592:23;13751:54;13816:60;13831:15;13848:9;13859:16;13816:14;:60::i;:::-;13516:367;;;;:::o;16739:149::-;16847:9;16739:149;:::o;4872:338:1:-;4958:7;5058:12;5051:5;5043:28;;;;-1:-1:-1;;;5043:28:1;;;;;;;;;;;5081:9;5097:1;5093;:5;;;;;;;4872:338;-1:-1:-1;;;;;4872:338:1:o;15429:618:0:-;15546:18;15567:76;15574:12;15567:76;;;;;;;;;;;;;;;;;:6;:76::i;:::-;15546:97;;15671:1;15656:12;:16;;;:85;;;;-1:-1:-1;;;;;;15676:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;15699:16:0;;15676:40;;;;;;;;;:50;:65;;;:50;;:65;15656:85;15652:324;;;-1:-1:-1;;;;;15755:22:0;;;;;;:11;:22;;;;;;;;-1:-1:-1;;15778:16:0;;15755:40;;;;;;;;;:57;;-1:-1:-1;;15755:57:0;-1:-1:-1;;;;;;;;15755:57:0;;;;;;15652:324;;;15878:33;;;;;;;;;;;;;;-1:-1:-1;;;;;15878:33:0;;;;;;;;;;-1:-1:-1;;;;;15839:22:0;;-1:-1:-1;15839:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;;;-1:-1:-1;;;15839:72:0;-1:-1:-1;;15839:72:0;;;-1:-1:-1;;15839:72:0;;;;;;;;;;;;;;;15923:25;;;:14;:25;;;;;;;:44;;15839:72;15951:16;;15923:44;;;;;;;;;;;;;15652:324;16010:9;-1:-1:-1;;;;;15989:51:0;;16021:8;16031;15989:51;;;;;;;;;;;;;;;;15429:618;;;;;:::o;16053:158::-;16128:6;16165:12;-1:-1:-1;;;16154:9:0;;16146:32;;;;-1:-1:-1;;;16146:32:0;;;;;;;;;87:16803;;;;;;;;;;-1:-1:-1;87:16803:0;;;;;;;;:::o;5:130:-1:-;72:20;;97:33;72:20;97:33;;142:130;209:20;;234:33;209:20;234:33;;416:128;482:20;;507:32;482:20;507:32;;551:126;616:20;;641:31;616:20;641:31;;684:241;;788:2;776:9;767:7;763:23;759:32;756:2;;;804:1;801;794:12;756:2;839:1;856:53;901:7;881:9;856:53;;;846:63;750:175;-1:-1;;;;750:175;932:366;;;1053:2;1041:9;1032:7;1028:23;1024:32;1021:2;;;1069:1;1066;1059:12;1021:2;1104:1;1121:53;1166:7;1146:9;1121:53;;;1111:63;;1083:97;1211:2;1229:53;1274:7;1265:6;1254:9;1250:22;1229:53;;;1219:63;;1190:98;1015:283;;;;;;1305:491;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;1459:1;1456;1449:12;1411:2;1494:1;1511:53;1556:7;1536:9;1511:53;;;1501:63;;1473:97;1601:2;1619:53;1664:7;1655:6;1644:9;1640:22;1619:53;;;1609:63;;1580:98;1709:2;1727:53;1772:7;1763:6;1752:9;1748:22;1727:53;;;1717:63;;1688:98;1405:391;;;;;;1803:991;;;;;;;;2007:3;1995:9;1986:7;1982:23;1978:33;1975:2;;;2024:1;2021;2014:12;1975:2;2059:1;2076:53;2121:7;2101:9;2076:53;;;2066:63;;2038:97;2166:2;2184:53;2229:7;2220:6;2209:9;2205:22;2184:53;;;2174:63;;2145:98;2274:2;2292:53;2337:7;2328:6;2317:9;2313:22;2292:53;;;2282:63;;2253:98;2382:2;2400:53;2445:7;2436:6;2425:9;2421:22;2400:53;;;2390:63;;2361:98;2490:3;2509:51;2552:7;2543:6;2532:9;2528:22;2509:51;;;2499:61;;2469:97;2597:3;2616:53;2661:7;2652:6;2641:9;2637:22;2616:53;;;2606:63;;2576:99;2706:3;2725:53;2770:7;2761:6;2750:9;2746:22;2725:53;;;2715:63;;2685:99;1969:825;;;;;;;;;;;2801:366;;;2922:2;2910:9;2901:7;2897:23;2893:32;2890:2;;;2938:1;2935;2928:12;2890:2;2973:1;2990:53;3035:7;3015:9;2990:53;;;2980:63;;2952:97;3080:2;3098:53;3143:7;3134:6;3123:9;3119:22;3098:53;;3174:865;;;;;;;3361:3;3349:9;3340:7;3336:23;3332:33;3329:2;;;3378:1;3375;3368:12;3329:2;3413:1;3430:53;3475:7;3455:9;3430:53;;;3420:63;;3392:97;3520:2;3538:53;3583:7;3574:6;3563:9;3559:22;3538:53;;;3528:63;;3499:98;3628:2;3646:53;3691:7;3682:6;3671:9;3667:22;3646:53;;;3636:63;;3607:98;3736:2;3754:51;3797:7;3788:6;3777:9;3773:22;3754:51;;;3744:61;;3715:96;3842:3;3861:53;3906:7;3897:6;3886:9;3882:22;3861:53;;;3851:63;;3821:99;3951:3;3970:53;4015:7;4006:6;3995:9;3991:22;3970:53;;;3960:63;;3930:99;3323:716;;;;;;;;;4046:364;;;4166:2;4154:9;4145:7;4141:23;4137:32;4134:2;;;4182:1;4179;4172:12;4134:2;4217:1;4234:53;4279:7;4259:9;4234:53;;;4224:63;;4196:97;4324:2;4342:52;4386:7;4377:6;4366:9;4362:22;4342:52;;4417:113;4500:24;4518:5;4500:24;;;4495:3;4488:37;4482:48;;;4537:104;4614:21;4629:5;4614:21;;4648:113;4731:24;4749:5;4731:24;;4768:152;4869:45;4889:24;4907:5;4889:24;;;4869:45;;4927:347;;5039:39;5072:5;5039:39;;;5090:71;5154:6;5149:3;5090:71;;;5083:78;;5166:52;5211:6;5206:3;5199:4;5192:5;5188:16;5166:52;;;5239:29;5261:6;5239:29;;;5230:39;;;;5019:255;-1:-1;;;5019:255;5628:375;;5788:67;5852:2;5847:3;5788:67;;;5888:34;5868:55;;-1:-1;;;5952:2;5943:12;;5936:30;5994:2;5985:12;;5774:229;-1:-1;;5774:229;6012:331;;6172:67;6236:2;6231:3;6172:67;;;6272:33;6252:54;;6334:2;6325:12;;6158:185;-1:-1;;6158:185;6352:395;;6512:67;6576:2;6571:3;6512:67;;;6612:34;6592:55;;6681:28;6676:2;6667:12;;6660:50;6738:2;6729:12;;6498:249;-1:-1;;6498:249;6756:372;;6916:67;6980:2;6975:3;6916:67;;;7016:34;6996:55;;-1:-1;;;7080:2;7071:12;;7064:27;7119:2;7110:12;;6902:226;-1:-1;;6902:226;7137:375;;7297:67;7361:2;7356:3;7297:67;;;7397:34;7377:55;;-1:-1;;;7461:2;7452:12;;7445:30;7503:2;7494:12;;7283:229;-1:-1;;7283:229;7521:398;;7699:84;7781:1;7776:3;7699:84;;;-1:-1;;;7796:87;;7911:1;7902:11;;7685:234;-1:-1;;7685:234;7928:327;;8088:67;8152:2;8147:3;8088:67;;;8188:29;8168:50;;8246:2;8237:12;;8074:181;-1:-1;;8074:181;8264:331;;8424:67;8488:2;8483:3;8424:67;;;8524:33;8504:54;;8586:2;8577:12;;8410:185;-1:-1;;8410:185;8604:384;;8764:67;8828:2;8823:3;8764:67;;;8864:34;8844:55;;-1:-1;;;8928:2;8919:12;;8912:39;8979:2;8970:12;;8750:238;-1:-1;;8750:238;8997:373;;9157:67;9221:2;9216:3;9157:67;;;9257:34;9237:55;;-1:-1;;;9321:2;9312:12;;9305:28;9361:2;9352:12;;9143:227;-1:-1;;9143:227;9379:329;;9539:67;9603:2;9598:3;9539:67;;;9639:31;9619:52;;9699:2;9690:12;;9525:183;-1:-1;;9525:183;9717:492;;9895:85;9977:2;9972:3;9895:85;;;10013:34;9993:55;;10082:34;10077:2;10068:12;;10061:56;-1:-1;;;10146:2;10137:12;;10130:42;10200:2;10191:12;;9881:328;-1:-1;;9881:328;10218:397;;10378:67;10442:2;10437:3;10378:67;;;10478:34;10458:55;;10547:30;10542:2;10533:12;;10526:52;10606:2;10597:12;;10364:251;-1:-1;;10364:251;10624:376;;10784:67;10848:2;10843:3;10784:67;;;10884:34;10864:55;;-1:-1;;;10948:2;10939:12;;10932:31;10991:2;10982:12;;10770:230;-1:-1;;10770:230;11009:477;;11187:85;11269:2;11264:3;11187:85;;;11305:34;11285:55;;11374:34;11369:2;11360:12;;11353:56;-1:-1;;;11438:2;11429:12;;11422:27;11477:2;11468:12;;11173:313;-1:-1;;11173:313;11495:370;;11655:67;11719:2;11714:3;11655:67;;;11755:34;11735:55;;-1:-1;;;11819:2;11810:12;;11803:25;11856:2;11847:12;;11641:224;-1:-1;;11641:224;11874:326;;12034:67;12098:2;12093:3;12034:67;;;12134:28;12114:49;;12191:2;12182:12;;12020:180;-1:-1;;12020:180;12209:371;;12369:67;12433:2;12428:3;12369:67;;;12469:34;12449:55;;-1:-1;;;12533:2;12524:12;;12517:26;12571:2;12562:12;;12355:225;-1:-1;;12355:225;12589:431;;12767:85;12849:2;12844:3;12767:85;;;12885:34;12865:55;;12954:28;12949:2;12940:12;;12933:50;13011:2;13002:12;;12753:267;-1:-1;;12753:267;13029:399;;13189:67;13253:2;13248:3;13189:67;;;13289:34;13269:55;;13358:32;13353:2;13344:12;;13337:54;13419:2;13410:12;;13175:253;-1:-1;;13175:253;13556:110;13637:23;13654:5;13637:23;;13673:107;13752:22;13768:5;13752:22;;13787:124;13869:36;13899:5;13869:36;;13918:110;13999:23;14016:5;13999:23;;14035:650;;14290:148;14434:3;14290:148;;;14283:155;;14449:75;14520:3;14511:6;14449:75;;;14546:2;14541:3;14537:12;14530:19;;14560:75;14631:3;14622:6;14560:75;;;-1:-1;14657:2;14648:12;;14271:414;-1:-1;;14271:414;14692:372;;14891:148;15035:3;14891:148;;15071:372;;15270:148;15414:3;15270:148;;15450:372;;15649:148;15793:3;15649:148;;15829:213;15947:2;15932:18;;15961:71;15936:9;16005:6;15961:71;;16049:324;16195:2;16180:18;;16209:71;16184:9;16253:6;16209:71;;;16291:72;16359:2;16348:9;16344:18;16335:6;16291:72;;16380:201;16492:2;16477:18;;16506:65;16481:9;16544:6;16506:65;;16588:213;16706:2;16691:18;;16720:71;16695:9;16764:6;16720:71;;16808:771;17066:3;17051:19;;17081:71;17055:9;17125:6;17081:71;;;17163:72;17231:2;17220:9;17216:18;17207:6;17163:72;;;17246;17314:2;17303:9;17299:18;17290:6;17246:72;;;17329;17397:2;17386:9;17382:18;17373:6;17329:72;;;17412:73;17480:3;17469:9;17465:19;17456:6;17412:73;;;17496;17564:3;17553:9;17549:19;17540:6;17496:73;;;17037:542;;;;;;;;;;17586:547;17788:3;17773:19;;17803:71;17777:9;17847:6;17803:71;;;17885:72;17953:2;17942:9;17938:18;17929:6;17885:72;;;17968;18036:2;18025:9;18021:18;18012:6;17968:72;;;18051;18119:2;18108:9;18104:18;18095:6;18051:72;;;17759:374;;;;;;;;18140:547;18342:3;18327:19;;18357:71;18331:9;18401:6;18357:71;;;18439:72;18507:2;18496:9;18492:18;18483:6;18439:72;;;18522;18590:2;18579:9;18575:18;18566:6;18522:72;;;18605;18673:2;18662:9;18658:18;18649:6;18605:72;;18694:539;18892:3;18877:19;;18907:71;18881:9;18951:6;18907:71;;;18989:68;19053:2;19042:9;19038:18;19029:6;18989:68;;19240:293;19374:2;19388:47;;;19359:18;;19449:74;19359:18;19509:6;19449:74;;19848:407;20039:2;20053:47;;;20024:18;;20114:131;20024:18;20114:131;;20262:407;20453:2;20467:47;;;20438:18;;20528:131;20438:18;20528:131;;20676:407;20867:2;20881:47;;;20852:18;;20942:131;20852:18;20942:131;;21090:407;21281:2;21295:47;;;21266:18;;21356:131;21266:18;21356:131;;21504:407;21695:2;21709:47;;;21680:18;;21770:131;21680:18;21770:131;;21918:407;22109:2;22123:47;;;22094:18;;22184:131;22094:18;22184:131;;22332:407;22523:2;22537:47;;;22508:18;;22598:131;22508:18;22598:131;;22746:407;22937:2;22951:47;;;22922:18;;23012:131;22922:18;23012:131;;23160:407;23351:2;23365:47;;;23336:18;;23426:131;23336:18;23426:131;;23574:407;23765:2;23779:47;;;23750:18;;23840:131;23750:18;23840:131;;23988:407;24179:2;24193:47;;;24164:18;;24254:131;24164:18;24254:131;;24402:407;24593:2;24607:47;;;24578:18;;24668:131;24578:18;24668:131;;24816:407;25007:2;25021:47;;;24992:18;;25082:131;24992:18;25082:131;;25230:407;25421:2;25435:47;;;25406:18;;25496:131;25406:18;25496:131;;25644:407;25835:2;25849:47;;;25820:18;;25910:131;25820:18;25910:131;;26058:407;26249:2;26263:47;;;26234:18;;26324:131;26234:18;26324:131;;26692:209;26808:2;26793:18;;26822:69;26797:9;26864:6;26822:69;;26908:316;27050:2;27035:18;;27064:69;27039:9;27106:6;27064:69;;;27144:70;27210:2;27199:9;27195:18;27186:6;27144:70;;27231:205;27345:2;27330:18;;27359:67;27334:9;27399:6;27359:67;;27443:211;27560:2;27545:18;;27574:70;27549:9;27617:6;27574:70;;27661:209;27777:2;27762:18;;27791:69;27766:9;27833:6;27791:69;;27877:320;28021:2;28006:18;;28035:70;28010:9;28078:6;28035:70;;;28116:71;28183:2;28172:9;28168:18;28159:6;28116:71;;28204:118;28288:12;;28259:63;28459:163;28562:19;;;28611:4;28602:14;;28555:67;28631:145;28767:3;28745:31;-1:-1;28745:31;28784:91;;28846:24;28864:5;28846:24;;28882:85;28948:13;28941:21;;28924:43;28974:72;29036:5;29019:27;29053:121;-1:-1;;;;;29115:54;;29098:76;29260:88;29332:10;29321:22;;29304:44;29355:81;29426:4;29415:16;;29398:38;29443:104;-1:-1;;;;;29504:38;;29487:60;29554:106;;29632:23;29649:5;29632:23;;29668:268;29733:1;29740:101;29754:6;29751:1;29748:13;29740:101;;;29821:11;;;29815:18;29802:11;;;29795:39;29776:2;29769:10;29740:101;;;29856:6;29853:1;29850:13;29847:2;;;-1:-1;;29921:1;29903:16;;29896:27;29717:219;30025:97;30113:2;30093:14;-1:-1;;30089:28;;30073:49;30130:117;30199:24;30217:5;30199:24;;;30192:5;30189:35;30179:2;;30238:1;30235;30228:12;30254:117;30323:24;30341:5;30323:24;;30502:115;30570:23;30587:5;30570:23;;30624:113;30691:22;30707:5;30691:22;

Swarm Source

bzzr://8d72f82aaefb2f0e5b0321df1ca459b096d061cdecf654628fda46f27f2760f2
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.