ETH Price: $3,226.10 (-0.89%)
Gas: 28 Gwei

Token

LeisureMeta (LM)
 

Overview

Max Total Supply

4,668,074,832.13 LM

Holders

10,223

Market

Price

$0.00 @ 0.000001 ETH (+1.02%)

Onchain Market Cap

$21,933,369.73

Circulating Supply Market Cap

$9,125,326.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
6 LM

Value
$0.03 ( ~9.29916729101544E-06 Eth) [0.0000%]
0x0000035d8ca0ce472455acff8b5be3c7a9e0603d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

LeisureMetaverse issued its own LM token to energize trade of NFTs and increase the valuation of NFTs.

Market

Volume (24H):$441,850.00
Market Capitalization:$9,125,326.00
Circulating Supply:1,940,348,714.00 LM
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LeisureMeta

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
byzantium EvmVersion
File 1 of 9 : LeisureMeta.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/utils/Context.sol";

import "@openzeppelin/contracts/utils/Strings.sol";

contract LeisureMeta is ERC20Burnable, Ownable, Pausable {
    uint256 private _dDay;

    mapping(address => LockedItem[]) private _lockedItems;

    mapping(address => LockedItem[]) private _revocablyLockedItems;

    struct LockedItem {
        uint256 amount;
        uint256 releaseTime;
    }

    event SetDDay(uint256 dDay);
    event DaoLock(address indexed beneficiary, uint256 totalAmount);
    event SalesLock(address indexed beneficiary, uint256 totalAmount);
    event GeneralLock(address indexed beneficiary, uint256 totalAmount);
    event CustomLock(
        address indexed beneficiary,
        uint256 totalAmount,
        uint256 partition,
        uint256 startMonth
    );
    event Revoke(address indexed from, uint256 amount, uint256 revokeTime);

    constructor(uint256 initialDDay)
        ERC20("LeisureMeta", "LM")
    {
        uint256 totalAmount = 5_000_000_000 * (10**uint256(decimals()));

        _dDay = initialDDay;

        _mint(_msgSender(), totalAmount);
    }

    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     * - the sender have enough unlocked tokens to transfer.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(
            balanceOf(from) >= lockedAmount(from) + amount,
            "LM: insufficient balance"
        );

        clearUnnessaryLockedItems(from);
        super._transfer(from, to, amount);
    }

    /**
     * @dev Set D-Day which might be the first day of listing in major crypto exchanges.
     */
    function setDDay(uint256 dDay) external onlyOwner {
        _dDay = dDay;
        emit SetDDay(_dDay);
    }

    function getDDay() external view returns (uint256) {
        return _dDay;
    }

    function lockedItems(address beneficiary)
        external
        view
        returns (LockedItem[] memory)
    {
        return _lockedItems[beneficiary];
    }

    function revocablyLockedItems(address beneficiary)
        external
        view
        returns (LockedItem[] memory)
    {
        return _revocablyLockedItems[beneficiary];
    }

    function lockedAmount(address beneficiary) public view returns (uint256) {
        uint256 total = 0;
        for (uint256 i = 0; i < _lockedItems[beneficiary].length; i++) {
            LockedItem storage item = _lockedItems[beneficiary][i];
            if (_dDay + item.releaseTime > block.timestamp)
                total += item.amount;
        }
        for (
            uint256 i = 0;
            i < _revocablyLockedItems[beneficiary].length;
            i++
        ) {
            LockedItem storage item = _revocablyLockedItems[beneficiary][i];
            if (_dDay + item.releaseTime > block.timestamp)
                total += item.amount;
        }
        return total;
    }

    function clearUnnessaryLockedItems(address from) internal {
        while (
            lockedItemSize(from) > 0 &&
            _dDay + _lockedItems[from][lockedItemSize(from) - 1].releaseTime <
            block.timestamp
        ) {
            _lockedItems[from].pop();
        }
        while (
            revocablyLockedItemSize(from) > 0 &&
            _dDay +
                _revocablyLockedItems[from][revocablyLockedItemSize(from) - 1]
                    .releaseTime <
            block.timestamp
        ) {
            _revocablyLockedItems[from].pop();
        }

        if (lockedItemSize(from) == 0) delete _lockedItems[from];
        if (revocablyLockedItemSize(from) == 0)
            delete _revocablyLockedItems[from];
    }

    function lockedItemSize(address beneficiary)
        internal
        view
        returns (uint256)
    {
        return _lockedItems[beneficiary].length;
    }

    function revocablyLockedItemSize(address beneficiary)
        internal
        view
        returns (uint256)
    {
        return _revocablyLockedItems[beneficiary].length;
    }

    function daoLock(address beneficiary, uint256 amount)
        external
        onlyOwner
    {
        uint256 aDay = 24 * 3600;
        for (uint256 i = 0; i < 60; i++) {
            _lockedItems[beneficiary].push(
                LockedItem({
                    amount: amount / 60,
                    releaseTime: 30 * aDay * (60 - i)
                })
            );
        }
        emit DaoLock(beneficiary, amount);
        address owner = _msgSender();
        super._transfer(owner, beneficiary, amount);
    }

    function saleLock(address beneficiary, uint256 amount)
        external
        onlyOwner
    {
        uint256 aDay = 24 * 3600;
        for (uint256 i = 0; i < 7; i++) {
            _lockedItems[beneficiary].push(
                LockedItem({
                    amount: amount / 7,
                    releaseTime: 30 * aDay * (10 - i)
                })
            );
        }
        emit SalesLock(beneficiary, amount);
        address owner = _msgSender();
        super._transfer(owner, beneficiary, amount);
    }

    function generalLock(address beneficiary, uint256 amount)
        external
        onlyOwner
    {
        uint256 aDay = 24 * 3600;
        for (uint256 i = 0; i < 20; i++) {
            _revocablyLockedItems[beneficiary].push(
                LockedItem({
                    amount: amount / 20,
                    releaseTime: 30 * aDay * (25 - i)
                })
            );
        }
        emit GeneralLock(beneficiary, amount);
        transfer(beneficiary, amount);
    }
    
    function customLock(address beneficiary, uint256 amount, uint256 partition, uint256 startMonth)
        external
        onlyOwner
    {
        uint256 aDay = 24 * 3600;
        for (uint256 i = 0; i < partition; i++) {
            _revocablyLockedItems[beneficiary].push(
                LockedItem({
                    amount: amount / partition,
                    releaseTime: 30 * aDay * ((partition + startMonth) - i)
                })
            );
        }
        emit CustomLock(beneficiary, amount, partition, startMonth);
        transfer(beneficiary, amount);
    }


    function revoke(address from) external onlyOwner {
        uint256 lockedTotal = 0;
        LockedItem[] storage items = _revocablyLockedItems[from];
        while (items.length > 0) {
            if (_dDay + items[items.length - 1].releaseTime > block.timestamp) {
                lockedTotal += items[items.length - 1].amount;
            }
            items.pop();
        }
        delete _revocablyLockedItems[from];
        emit Revoke(from, lockedTotal, block.timestamp);
        _approve(from, _msgSender(), lockedTotal);
        transferFrom(from, _msgSender(), lockedTotal);
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }
}

File 2 of 9 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 3 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 4 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 9 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

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

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

File 6 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 7 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 8 of 9 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 9 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "byzantium",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialDDay","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"partition","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startMonth","type":"uint256"}],"name":"CustomLock","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalAmount","type":"uint256"}],"name":"DaoLock","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalAmount","type":"uint256"}],"name":"GeneralLock","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"revokeTime","type":"uint256"}],"name":"Revoke","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalAmount","type":"uint256"}],"name":"SalesLock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"dDay","type":"uint256"}],"name":"SetDDay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"partition","type":"uint256"},{"internalType":"uint256","name":"startMonth","type":"uint256"}],"name":"customLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"daoLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"generalLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getDDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"lockedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"lockedItems","outputs":[{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"releaseTime","type":"uint256"}],"internalType":"struct LeisureMeta.LockedItem[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"revocablyLockedItems","outputs":[{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"releaseTime","type":"uint256"}],"internalType":"struct LeisureMeta.LockedItem[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"saleLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"dDay","type":"uint256"}],"name":"setDDay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200435c3803806200435c8339818101604052810190620000379190620004d7565b6040518060400160405280600b81526020017f4c6569737572654d6574610000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4c4d0000000000000000000000000000000000000000000000000000000000008152508160039081620000b491906200077f565b508060049081620000c691906200077f565b505050620000fb620000e662000198640100000000026401000000009004565b620001a0640100000000026401000000009004565b6000600560146101000a81548160ff02191690831515021790555060006200013162000266640100000000026401000000009004565b60ff16600a620001429190620009e9565b64012a05f20062000154919062000a3a565b905081600681905550620001906200017a62000198640100000000026401000000009004565b826200026f640100000000026401000000009004565b505062000c09565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d89062000ae6565b60405180910390fd5b620002fe60008383620003f9640100000000026401000000009004565b806002600082825462000312919062000b08565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000369919062000b08565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003d0919062000b54565b60405180910390a3620003f56000838362000476640100000000026401000000009004565b5050565b620004158383836200047b640100000000026401000000009004565b6200042e62000480640100000000026401000000009004565b1562000471576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004689062000be7565b60405180910390fd5b505050565b505050565b505050565b6000600560149054906101000a900460ff16905090565b600080fd5b6000819050919050565b620004b1816200049c565b8114620004bd57600080fd5b50565b600081519050620004d181620004a6565b92915050565b600060208284031215620004f057620004ef62000497565b5b60006200050084828501620004c0565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200058b57607f821691505b602082108103620005a157620005a062000543565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b60008160020a8302905092915050565b6000600883026200060e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005cc565b6200061a8683620005cc565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200065d6200065762000651846200049c565b62000632565b6200049c565b9050919050565b6000819050919050565b62000679836200063c565b62000691620006888262000664565b848454620005dc565b825550505050565b600090565b620006a862000699565b620006b58184846200066e565b505050565b5b81811015620006dd57620006d16000826200069e565b600181019050620006bb565b5050565b601f8211156200072c57620006f681620005a7565b6200070184620005bc565b8101602085101562000711578190505b620007296200072085620005bc565b830182620006ba565b50505b505050565b60008160020a8304905092915050565b6000620007546000198460080262000731565b1980831691505092915050565b60006200076f838362000741565b9150826002028217905092915050565b6200078a8262000509565b67ffffffffffffffff811115620007a657620007a562000514565b5b620007b2825462000572565b620007bf828285620006e1565b600060209050601f831160018114620007f75760008415620007e2578287015190505b620007ee858262000761565b8655506200085e565b601f1984166200080786620005a7565b60005b8281101562000831578489015182556001820191506020850194506020810190506200080a565b868310156200085157848901516200084d601f89168262000741565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000600282049050919050565b6000808291508390505b6001851115620008f457808604811115620008cc57620008cb62000866565b5b6001851615620008dc5780820291505b8081029050620008ec8562000895565b9450620008ac565b94509492505050565b6000826200090f5760019050620009e2565b816200091f5760009050620009e2565b8160018114620009385760028114620009435762000979565b6001915050620009e2565b60ff84111562000958576200095762000866565b5b8360020a91508482111562000972576200097162000866565b5b50620009e2565b5060208310610133831016604e8410600b8410161715620009b35782820a905083811115620009ad57620009ac62000866565b5b620009e2565b620009c28484846001620008a2565b92509050818404811115620009dc57620009db62000866565b5b81810290505b9392505050565b6000620009f6826200049c565b915062000a03836200049c565b925062000a327fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620008fd565b905092915050565b600062000a47826200049c565b915062000a54836200049c565b925082820262000a64816200049c565b9150828204841483151762000a7e5762000a7d62000866565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ace601f8362000a85565b915062000adb8262000a96565b602082019050919050565b6000602082019050818103600083015262000b018162000abf565b9050919050565b600062000b15826200049c565b915062000b22836200049c565b925082820190508082111562000b3d5762000b3c62000866565b5b92915050565b62000b4e816200049c565b82525050565b600060208201905062000b6b600083018462000b43565b92915050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b600062000bcf602a8362000a85565b915062000bdc8262000b71565b604082019050919050565b6000602082019050818103600083015262000c028162000bc0565b9050919050565b6137438062000c196000396000f3fe608060405234801561001057600080fd5b50600436106101ec576000357c01000000000000000000000000000000000000000000000000000000009004806374a8f1031161012157806395d89b41116100bf578063cc8be5e01161008e578063cc8be5e014610525578063dd62ed3e14610541578063e813e8fa14610571578063f2fde38b146105a1576101ec565b806395d89b4114610477578063a153e70814610495578063a457c2d7146104c5578063a9059cbb146104f5576101ec565b80638456cb59116100fb5780638456cb59146104155780638916289c1461041f5780638da5cb5b1461043b578063947c428b14610459576101ec565b806374a8f103146103c1578063753d93e3146103dd57806379cc6790146103f9576101ec565b80633f4ba83a1161018e5780635c975abb116101685780635c975abb146103395780636a2dcc841461035757806370a0823114610387578063715018a6146103b7576101ec565b80633f4ba83a146102f757806342966c681461030157806359105ade1461031d576101ec565b806318160ddd116101ca57806318160ddd1461025b57806323b872dd14610279578063313ce567146102a957806339509351146102c7576101ec565b806306fdde03146101f1578063095ea7b31461020f57806313c181151461023f575b600080fd5b6101f96105bd565b604051610206919061287f565b60405180910390f35b6102296004803603810190610224919061293a565b61064f565b6040516102369190612995565b60405180910390f35b6102596004803603810190610254919061293a565b610672565b005b610263610843565b60405161027091906129bf565b60405180910390f35b610293600480360381019061028e91906129da565b61084d565b6040516102a09190612995565b60405180910390f35b6102b161087c565b6040516102be9190612a49565b60405180910390f35b6102e160048036038101906102dc919061293a565b610885565b6040516102ee9190612995565b60405180910390f35b6102ff61092f565b005b61031b60048036038101906103169190612a64565b6109b5565b005b61033760048036038101906103329190612a64565b6109c9565b005b610341610a88565b60405161034e9190612995565b60405180910390f35b610371600480360381019061036c9190612a91565b610a9f565b60405161037e9190612bab565b60405180910390f35b6103a1600480360381019061039c9190612a91565b610b51565b6040516103ae91906129bf565b60405180910390f35b6103bf610b99565b005b6103db60048036038101906103d69190612a91565b610c21565b005b6103f760048036038101906103f2919061293a565b610e7f565b005b610413600480360381019061040e919061293a565b611050565b005b61041d611070565b005b6104396004803603810190610434919061293a565b6110f6565b005b6104436112ba565b6040516104509190612bdc565b60405180910390f35b6104616112e4565b60405161046e91906129bf565b60405180910390f35b61047f6112ee565b60405161048c919061287f565b60405180910390f35b6104af60048036038101906104aa9190612a91565b611380565b6040516104bc91906129bf565b60405180910390f35b6104df60048036038101906104da919061293a565b611572565b6040516104ec9190612995565b60405180910390f35b61050f600480360381019061050a919061293a565b61165c565b60405161051c9190612995565b60405180910390f35b61053f600480360381019061053a9190612bf7565b61167f565b005b61055b60048036038101906105569190612c5e565b611851565b60405161056891906129bf565b60405180910390f35b61058b60048036038101906105869190612a91565b6118d8565b6040516105989190612bab565b60405180910390f35b6105bb60048036038101906105b69190612a91565b61198a565b005b6060600380546105cc90612ccd565b80601f01602080910402602001604051908101604052809291908181526020018280546105f890612ccd565b80156106455780601f1061061a57610100808354040283529160200191610645565b820191906000526020600020905b81548152906001019060200180831161062857829003601f168201915b5050505050905090565b60008061065a611a81565b9050610667818585611a89565b600191505092915050565b61067a611a81565b73ffffffffffffffffffffffffffffffffffffffff166106986112ba565b73ffffffffffffffffffffffffffffffffffffffff16146106ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e590612d4a565b60405180910390fd5b600062015180905060005b60078110156107d757600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180604001604052806007866107599190612dc8565b815260200183600a61076b9190612df9565b85601e6107789190612e2d565b6107829190612e2d565b81525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505080806107cf90612e6f565b9150506106f9565b508273ffffffffffffffffffffffffffffffffffffffff167f9e926862465cd78e8db113d3f57eed20bcb175bcf18cc4caf061bac006681a5a8360405161081e91906129bf565b60405180910390a26000610830611a81565b905061083d818585611c52565b50505050565b6000600254905090565b600080610858611a81565b9050610865858285611ed1565b610870858585611f5d565b60019150509392505050565b60006012905090565b600080610890611a81565b9050610924818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461091f9190612eb7565b611a89565b600191505092915050565b610937611a81565b73ffffffffffffffffffffffffffffffffffffffff166109556112ba565b73ffffffffffffffffffffffffffffffffffffffff16146109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a290612d4a565b60405180910390fd5b6109b3611fd4565b565b6109c66109c0611a81565b82612076565b50565b6109d1611a81565b73ffffffffffffffffffffffffffffffffffffffff166109ef6112ba565b73ffffffffffffffffffffffffffffffffffffffff1614610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90612d4a565b60405180910390fd5b806006819055507f5e227761f31d143dd52b225f94bd9fb5c936b54e92887ade55149129045682b0600654604051610a7d91906129bf565b60405180910390a150565b6000600560149054906101000a900460ff16905090565b6060600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b82821015610b4657838290600052602060002090600202016040518060400160405290816000820154815260200160018201548152505081526020019060010190610b00565b505050509050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ba1611a81565b73ffffffffffffffffffffffffffffffffffffffff16610bbf6112ba565b73ffffffffffffffffffffffffffffffffffffffff1614610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90612d4a565b60405180910390fd5b610c1f600061224c565b565b610c29611a81565b73ffffffffffffffffffffffffffffffffffffffff16610c476112ba565b73ffffffffffffffffffffffffffffffffffffffff1614610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490612d4a565b60405180910390fd5b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090505b600081805490501115610dba57428160018380549050610d029190612df9565b81548110610d1357610d12612eeb565b5b906000526020600020906002020160010154600654610d329190612eb7565b1115610d7b578060018280549050610d4a9190612df9565b81548110610d5b57610d5a612eeb565b5b90600052602060002090600202016000015482610d789190612eb7565b91505b80805480610d8c57610d8b612f1a565b5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055610ce2565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e0591906127a4565b8273ffffffffffffffffffffffffffffffffffffffff167f437a05d5b9037b4fe16f9564c21528b3f978b6a015269140722644f407e943cd8342604051610e4d929190612f49565b60405180910390a2610e6783610e61611a81565b84611a89565b610e7983610e73611a81565b8461084d565b50505050565b610e87611a81565b73ffffffffffffffffffffffffffffffffffffffff16610ea56112ba565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290612d4a565b60405180910390fd5b600062015180905060005b603c811015610fe457600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405280603c86610f669190612dc8565b815260200183603c610f789190612df9565b85601e610f859190612e2d565b610f8f9190612e2d565b8152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508080610fdc90612e6f565b915050610f06565b508273ffffffffffffffffffffffffffffffffffffffff167fc54f77b90994b70b17e3393ff4ce943939603ba8478eafd900cd3ee1f88cf9888360405161102b91906129bf565b60405180910390a2600061103d611a81565b905061104a818585611c52565b50505050565b6110628261105c611a81565b83611ed1565b61106c8282612076565b5050565b611078611a81565b73ffffffffffffffffffffffffffffffffffffffff166110966112ba565b73ffffffffffffffffffffffffffffffffffffffff16146110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390612d4a565b60405180910390fd5b6110f4612312565b565b6110fe611a81565b73ffffffffffffffffffffffffffffffffffffffff1661111c6112ba565b73ffffffffffffffffffffffffffffffffffffffff1614611172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116990612d4a565b60405180910390fd5b600062015180905060005b601481101561125b57600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180604001604052806014866111dd9190612dc8565b81526020018360196111ef9190612df9565b85601e6111fc9190612e2d565b6112069190612e2d565b815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050808061125390612e6f565b91505061117d565b508273ffffffffffffffffffffffffffffffffffffffff167fe5cfca223703486882d036fb39da2b854b9074b8a9c3692551441f57e61fd889836040516112a291906129bf565b60405180910390a26112b4838361165c565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600654905090565b6060600480546112fd90612ccd565b80601f016020809104026020016040519081016040528092919081815260200182805461132990612ccd565b80156113765780601f1061134b57610100808354040283529160200191611376565b820191906000526020600020905b81548152906001019060200180831161135957829003601f168201915b5050505050905090565b6000806000905060005b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015611477576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061142757611426612eeb565b5b9060005260206000209060020201905042816001015460065461144a9190612eb7565b1115611463578060000154836114609190612eb7565b92505b50808061146f90612e6f565b91505061138a565b5060005b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015611568576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061151857611517612eeb565b5b9060005260206000209060020201905042816001015460065461153b9190612eb7565b1115611554578060000154836115519190612eb7565b92505b50808061156090612e6f565b91505061147b565b5080915050919050565b60008061157d611a81565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a90612fe4565b60405180910390fd5b6116508286868403611a89565b60019250505092915050565b600080611667611a81565b9050611674818585611f5d565b600191505092915050565b611687611a81565b73ffffffffffffffffffffffffffffffffffffffff166116a56112ba565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290612d4a565b60405180910390fd5b600062015180905060005b838110156117ec57600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806040016040528086886117649190612dc8565b81526020018386886117769190612eb7565b6117809190612df9565b85601e61178d9190612e2d565b6117979190612e2d565b81525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505080806117e490612e6f565b915050611706565b508473ffffffffffffffffffffffffffffffffffffffff167f4405aa610b6c4c37e8a6598e2d58d85c38ad18b6056321c08d118d6833eefb7a85858560405161183793929190613004565b60405180910390a2611849858561165c565b505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6060600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b8282101561197f57838290600052602060002090600202016040518060400160405290816000820154815260200160018201548152505081526020019060010190611939565b505050509050919050565b611992611a81565b73ffffffffffffffffffffffffffffffffffffffff166119b06112ba565b73ffffffffffffffffffffffffffffffffffffffff1614611a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fd90612d4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c906130ad565b60405180910390fd5b611a7e8161224c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aef9061313f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5e906131d1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c4591906129bf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb890613263565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d27906132f5565b60405180910390fd5b611d3b8383836123b5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db890613387565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e549190612eb7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611eb891906129bf565b60405180910390a3611ecb84848461240d565b50505050565b6000611edd8484611851565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611f575781811015611f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f40906133f3565b60405180910390fd5b611f568484848403611a89565b5b50505050565b80611f6784611380565b611f719190612eb7565b611f7a84610b51565b1015611fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb29061345f565b60405180910390fd5b611fc483612412565b611fcf838383611c52565b505050565b611fdc610a88565b61201b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612012906134cb565b60405180910390fd5b6000600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61205f611a81565b60405161206c9190612bdc565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc9061355d565b60405180910390fd5b6120f1826000836123b5565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216e906135ef565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546121ce9190612df9565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161223391906129bf565b60405180910390a36122478360008461240d565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61231a610a88565b1561235a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123519061365b565b60405180910390fd5b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861239e611a81565b6040516123ab9190612bdc565b60405180910390a1565b6123c0838383612707565b6123c8610a88565b15612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ff906136ed565b60405180910390fd5b505050565b505050565b5b600061241e8261270c565b1180156124ad575042600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060016124718461270c565b61247b9190612df9565b8154811061248c5761248b612eeb565b5b9060005260206000209060020201600101546006546124ab9190612eb7565b105b1561252f57600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548061250157612500612f1a565b5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055612413565b5b600061253b82612758565b1180156125ca575042600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600161258e84612758565b6125989190612df9565b815481106125a9576125a8612eeb565b5b9060005260206000209060020201600101546006546125c89190612eb7565b105b1561264c57600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548061261e5761261d612f1a565b5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055612530565b60006126578261270c565b036126a857600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006126a791906127a4565b5b60006126b382612758565b0361270457600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061270391906127a4565b5b50565b505050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b50805460008255600202906000526020600020908101906127c591906127c8565b50565b5b808211156127eb576000808201600090556001820160009055506002016127c9565b5090565b600081519050919050565b600082825260208201905092915050565b60005b8381101561282957808201518184015260208101905061280e565b60008484015250505050565b6000601f19601f8301169050919050565b6000612851826127ef565b61285b81856127fa565b935061286b81856020860161280b565b61287481612835565b840191505092915050565b600060208201905081810360008301526128998184612846565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128d1826128a6565b9050919050565b6128e1816128c6565b81146128ec57600080fd5b50565b6000813590506128fe816128d8565b92915050565b6000819050919050565b61291781612904565b811461292257600080fd5b50565b6000813590506129348161290e565b92915050565b60008060408385031215612951576129506128a1565b5b600061295f858286016128ef565b925050602061297085828601612925565b9150509250929050565b60008115159050919050565b61298f8161297a565b82525050565b60006020820190506129aa6000830184612986565b92915050565b6129b981612904565b82525050565b60006020820190506129d460008301846129b0565b92915050565b6000806000606084860312156129f3576129f26128a1565b5b6000612a01868287016128ef565b9350506020612a12868287016128ef565b9250506040612a2386828701612925565b9150509250925092565b600060ff82169050919050565b612a4381612a2d565b82525050565b6000602082019050612a5e6000830184612a3a565b92915050565b600060208284031215612a7a57612a796128a1565b5b6000612a8884828501612925565b91505092915050565b600060208284031215612aa757612aa66128a1565b5b6000612ab5848285016128ef565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612af381612904565b82525050565b604082016000820151612b0f6000850182612aea565b506020820151612b226020850182612aea565b50505050565b6000612b348383612af9565b60408301905092915050565b6000602082019050919050565b6000612b5882612abe565b612b628185612ac9565b9350612b6d83612ada565b8060005b83811015612b9e578151612b858882612b28565b9750612b9083612b40565b925050600181019050612b71565b5085935050505092915050565b60006020820190508181036000830152612bc58184612b4d565b905092915050565b612bd6816128c6565b82525050565b6000602082019050612bf16000830184612bcd565b92915050565b60008060008060808587031215612c1157612c106128a1565b5b6000612c1f878288016128ef565b9450506020612c3087828801612925565b9350506040612c4187828801612925565b9250506060612c5287828801612925565b91505092959194509250565b60008060408385031215612c7557612c746128a1565b5b6000612c83858286016128ef565b9250506020612c94858286016128ef565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ce557607f821691505b602082108103612cf857612cf7612c9e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d346020836127fa565b9150612d3f82612cfe565b602082019050919050565b60006020820190508181036000830152612d6381612d27565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dd382612904565b9150612dde83612904565b925082612dee57612ded612d6a565b5b828204905092915050565b6000612e0482612904565b9150612e0f83612904565b9250828203905081811115612e2757612e26612d99565b5b92915050565b6000612e3882612904565b9150612e4383612904565b9250828202612e5181612904565b91508282048414831517612e6857612e67612d99565b5b5092915050565b6000612e7a82612904565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612eac57612eab612d99565b5b600182019050919050565b6000612ec282612904565b9150612ecd83612904565b9250828201905080821115612ee557612ee4612d99565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6000604082019050612f5e60008301856129b0565b612f6b60208301846129b0565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612fce6025836127fa565b9150612fd982612f72565b604082019050919050565b60006020820190508181036000830152612ffd81612fc1565b9050919050565b600060608201905061301960008301866129b0565b61302660208301856129b0565b61303360408301846129b0565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130976026836127fa565b91506130a28261303b565b604082019050919050565b600060208201905081810360008301526130c68161308a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006131296024836127fa565b9150613134826130cd565b604082019050919050565b600060208201905081810360008301526131588161311c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131bb6022836127fa565b91506131c68261315f565b604082019050919050565b600060208201905081810360008301526131ea816131ae565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061324d6025836127fa565b9150613258826131f1565b604082019050919050565b6000602082019050818103600083015261327c81613240565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132df6023836127fa565b91506132ea82613283565b604082019050919050565b6000602082019050818103600083015261330e816132d2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006133716026836127fa565b915061337c82613315565b604082019050919050565b600060208201905081810360008301526133a081613364565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006133dd601d836127fa565b91506133e8826133a7565b602082019050919050565b6000602082019050818103600083015261340c816133d0565b9050919050565b7f4c4d3a20696e73756666696369656e742062616c616e63650000000000000000600082015250565b60006134496018836127fa565b915061345482613413565b602082019050919050565b600060208201905081810360008301526134788161343c565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006134b56014836127fa565b91506134c08261347f565b602082019050919050565b600060208201905081810360008301526134e4816134a8565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006135476021836127fa565b9150613552826134eb565b604082019050919050565b600060208201905081810360008301526135768161353a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006135d96022836127fa565b91506135e48261357d565b604082019050919050565b60006020820190508181036000830152613608816135cc565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006136456010836127fa565b91506136508261360f565b602082019050919050565b6000602082019050818103600083015261367481613638565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b60006136d7602a836127fa565b91506136e28261367b565b604082019050919050565b60006020820190508181036000830152613706816136ca565b905091905056fea2646970667358221220e4e5f09c76f86953bd617dbaa6fa8f03777df149dbc84dbb6356670fc19c7fd164736f6c634300081400330000000000000000000000000000000000000000000000000000000063f6d200

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101ec576000357c01000000000000000000000000000000000000000000000000000000009004806374a8f1031161012157806395d89b41116100bf578063cc8be5e01161008e578063cc8be5e014610525578063dd62ed3e14610541578063e813e8fa14610571578063f2fde38b146105a1576101ec565b806395d89b4114610477578063a153e70814610495578063a457c2d7146104c5578063a9059cbb146104f5576101ec565b80638456cb59116100fb5780638456cb59146104155780638916289c1461041f5780638da5cb5b1461043b578063947c428b14610459576101ec565b806374a8f103146103c1578063753d93e3146103dd57806379cc6790146103f9576101ec565b80633f4ba83a1161018e5780635c975abb116101685780635c975abb146103395780636a2dcc841461035757806370a0823114610387578063715018a6146103b7576101ec565b80633f4ba83a146102f757806342966c681461030157806359105ade1461031d576101ec565b806318160ddd116101ca57806318160ddd1461025b57806323b872dd14610279578063313ce567146102a957806339509351146102c7576101ec565b806306fdde03146101f1578063095ea7b31461020f57806313c181151461023f575b600080fd5b6101f96105bd565b604051610206919061287f565b60405180910390f35b6102296004803603810190610224919061293a565b61064f565b6040516102369190612995565b60405180910390f35b6102596004803603810190610254919061293a565b610672565b005b610263610843565b60405161027091906129bf565b60405180910390f35b610293600480360381019061028e91906129da565b61084d565b6040516102a09190612995565b60405180910390f35b6102b161087c565b6040516102be9190612a49565b60405180910390f35b6102e160048036038101906102dc919061293a565b610885565b6040516102ee9190612995565b60405180910390f35b6102ff61092f565b005b61031b60048036038101906103169190612a64565b6109b5565b005b61033760048036038101906103329190612a64565b6109c9565b005b610341610a88565b60405161034e9190612995565b60405180910390f35b610371600480360381019061036c9190612a91565b610a9f565b60405161037e9190612bab565b60405180910390f35b6103a1600480360381019061039c9190612a91565b610b51565b6040516103ae91906129bf565b60405180910390f35b6103bf610b99565b005b6103db60048036038101906103d69190612a91565b610c21565b005b6103f760048036038101906103f2919061293a565b610e7f565b005b610413600480360381019061040e919061293a565b611050565b005b61041d611070565b005b6104396004803603810190610434919061293a565b6110f6565b005b6104436112ba565b6040516104509190612bdc565b60405180910390f35b6104616112e4565b60405161046e91906129bf565b60405180910390f35b61047f6112ee565b60405161048c919061287f565b60405180910390f35b6104af60048036038101906104aa9190612a91565b611380565b6040516104bc91906129bf565b60405180910390f35b6104df60048036038101906104da919061293a565b611572565b6040516104ec9190612995565b60405180910390f35b61050f600480360381019061050a919061293a565b61165c565b60405161051c9190612995565b60405180910390f35b61053f600480360381019061053a9190612bf7565b61167f565b005b61055b60048036038101906105569190612c5e565b611851565b60405161056891906129bf565b60405180910390f35b61058b60048036038101906105869190612a91565b6118d8565b6040516105989190612bab565b60405180910390f35b6105bb60048036038101906105b69190612a91565b61198a565b005b6060600380546105cc90612ccd565b80601f01602080910402602001604051908101604052809291908181526020018280546105f890612ccd565b80156106455780601f1061061a57610100808354040283529160200191610645565b820191906000526020600020905b81548152906001019060200180831161062857829003601f168201915b5050505050905090565b60008061065a611a81565b9050610667818585611a89565b600191505092915050565b61067a611a81565b73ffffffffffffffffffffffffffffffffffffffff166106986112ba565b73ffffffffffffffffffffffffffffffffffffffff16146106ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e590612d4a565b60405180910390fd5b600062015180905060005b60078110156107d757600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180604001604052806007866107599190612dc8565b815260200183600a61076b9190612df9565b85601e6107789190612e2d565b6107829190612e2d565b81525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505080806107cf90612e6f565b9150506106f9565b508273ffffffffffffffffffffffffffffffffffffffff167f9e926862465cd78e8db113d3f57eed20bcb175bcf18cc4caf061bac006681a5a8360405161081e91906129bf565b60405180910390a26000610830611a81565b905061083d818585611c52565b50505050565b6000600254905090565b600080610858611a81565b9050610865858285611ed1565b610870858585611f5d565b60019150509392505050565b60006012905090565b600080610890611a81565b9050610924818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461091f9190612eb7565b611a89565b600191505092915050565b610937611a81565b73ffffffffffffffffffffffffffffffffffffffff166109556112ba565b73ffffffffffffffffffffffffffffffffffffffff16146109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a290612d4a565b60405180910390fd5b6109b3611fd4565b565b6109c66109c0611a81565b82612076565b50565b6109d1611a81565b73ffffffffffffffffffffffffffffffffffffffff166109ef6112ba565b73ffffffffffffffffffffffffffffffffffffffff1614610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90612d4a565b60405180910390fd5b806006819055507f5e227761f31d143dd52b225f94bd9fb5c936b54e92887ade55149129045682b0600654604051610a7d91906129bf565b60405180910390a150565b6000600560149054906101000a900460ff16905090565b6060600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b82821015610b4657838290600052602060002090600202016040518060400160405290816000820154815260200160018201548152505081526020019060010190610b00565b505050509050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ba1611a81565b73ffffffffffffffffffffffffffffffffffffffff16610bbf6112ba565b73ffffffffffffffffffffffffffffffffffffffff1614610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90612d4a565b60405180910390fd5b610c1f600061224c565b565b610c29611a81565b73ffffffffffffffffffffffffffffffffffffffff16610c476112ba565b73ffffffffffffffffffffffffffffffffffffffff1614610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490612d4a565b60405180910390fd5b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090505b600081805490501115610dba57428160018380549050610d029190612df9565b81548110610d1357610d12612eeb565b5b906000526020600020906002020160010154600654610d329190612eb7565b1115610d7b578060018280549050610d4a9190612df9565b81548110610d5b57610d5a612eeb565b5b90600052602060002090600202016000015482610d789190612eb7565b91505b80805480610d8c57610d8b612f1a565b5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055610ce2565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e0591906127a4565b8273ffffffffffffffffffffffffffffffffffffffff167f437a05d5b9037b4fe16f9564c21528b3f978b6a015269140722644f407e943cd8342604051610e4d929190612f49565b60405180910390a2610e6783610e61611a81565b84611a89565b610e7983610e73611a81565b8461084d565b50505050565b610e87611a81565b73ffffffffffffffffffffffffffffffffffffffff16610ea56112ba565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290612d4a565b60405180910390fd5b600062015180905060005b603c811015610fe457600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405280603c86610f669190612dc8565b815260200183603c610f789190612df9565b85601e610f859190612e2d565b610f8f9190612e2d565b8152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508080610fdc90612e6f565b915050610f06565b508273ffffffffffffffffffffffffffffffffffffffff167fc54f77b90994b70b17e3393ff4ce943939603ba8478eafd900cd3ee1f88cf9888360405161102b91906129bf565b60405180910390a2600061103d611a81565b905061104a818585611c52565b50505050565b6110628261105c611a81565b83611ed1565b61106c8282612076565b5050565b611078611a81565b73ffffffffffffffffffffffffffffffffffffffff166110966112ba565b73ffffffffffffffffffffffffffffffffffffffff16146110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390612d4a565b60405180910390fd5b6110f4612312565b565b6110fe611a81565b73ffffffffffffffffffffffffffffffffffffffff1661111c6112ba565b73ffffffffffffffffffffffffffffffffffffffff1614611172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116990612d4a565b60405180910390fd5b600062015180905060005b601481101561125b57600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180604001604052806014866111dd9190612dc8565b81526020018360196111ef9190612df9565b85601e6111fc9190612e2d565b6112069190612e2d565b815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050808061125390612e6f565b91505061117d565b508273ffffffffffffffffffffffffffffffffffffffff167fe5cfca223703486882d036fb39da2b854b9074b8a9c3692551441f57e61fd889836040516112a291906129bf565b60405180910390a26112b4838361165c565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600654905090565b6060600480546112fd90612ccd565b80601f016020809104026020016040519081016040528092919081815260200182805461132990612ccd565b80156113765780601f1061134b57610100808354040283529160200191611376565b820191906000526020600020905b81548152906001019060200180831161135957829003601f168201915b5050505050905090565b6000806000905060005b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015611477576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061142757611426612eeb565b5b9060005260206000209060020201905042816001015460065461144a9190612eb7565b1115611463578060000154836114609190612eb7565b92505b50808061146f90612e6f565b91505061138a565b5060005b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015611568576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061151857611517612eeb565b5b9060005260206000209060020201905042816001015460065461153b9190612eb7565b1115611554578060000154836115519190612eb7565b92505b50808061156090612e6f565b91505061147b565b5080915050919050565b60008061157d611a81565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a90612fe4565b60405180910390fd5b6116508286868403611a89565b60019250505092915050565b600080611667611a81565b9050611674818585611f5d565b600191505092915050565b611687611a81565b73ffffffffffffffffffffffffffffffffffffffff166116a56112ba565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290612d4a565b60405180910390fd5b600062015180905060005b838110156117ec57600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806040016040528086886117649190612dc8565b81526020018386886117769190612eb7565b6117809190612df9565b85601e61178d9190612e2d565b6117979190612e2d565b81525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505080806117e490612e6f565b915050611706565b508473ffffffffffffffffffffffffffffffffffffffff167f4405aa610b6c4c37e8a6598e2d58d85c38ad18b6056321c08d118d6833eefb7a85858560405161183793929190613004565b60405180910390a2611849858561165c565b505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6060600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b8282101561197f57838290600052602060002090600202016040518060400160405290816000820154815260200160018201548152505081526020019060010190611939565b505050509050919050565b611992611a81565b73ffffffffffffffffffffffffffffffffffffffff166119b06112ba565b73ffffffffffffffffffffffffffffffffffffffff1614611a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fd90612d4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c906130ad565b60405180910390fd5b611a7e8161224c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aef9061313f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5e906131d1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c4591906129bf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb890613263565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d27906132f5565b60405180910390fd5b611d3b8383836123b5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db890613387565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e549190612eb7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611eb891906129bf565b60405180910390a3611ecb84848461240d565b50505050565b6000611edd8484611851565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611f575781811015611f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f40906133f3565b60405180910390fd5b611f568484848403611a89565b5b50505050565b80611f6784611380565b611f719190612eb7565b611f7a84610b51565b1015611fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb29061345f565b60405180910390fd5b611fc483612412565b611fcf838383611c52565b505050565b611fdc610a88565b61201b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612012906134cb565b60405180910390fd5b6000600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61205f611a81565b60405161206c9190612bdc565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc9061355d565b60405180910390fd5b6120f1826000836123b5565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216e906135ef565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546121ce9190612df9565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161223391906129bf565b60405180910390a36122478360008461240d565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61231a610a88565b1561235a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123519061365b565b60405180910390fd5b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861239e611a81565b6040516123ab9190612bdc565b60405180910390a1565b6123c0838383612707565b6123c8610a88565b15612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ff906136ed565b60405180910390fd5b505050565b505050565b5b600061241e8261270c565b1180156124ad575042600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060016124718461270c565b61247b9190612df9565b8154811061248c5761248b612eeb565b5b9060005260206000209060020201600101546006546124ab9190612eb7565b105b1561252f57600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548061250157612500612f1a565b5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055612413565b5b600061253b82612758565b1180156125ca575042600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600161258e84612758565b6125989190612df9565b815481106125a9576125a8612eeb565b5b9060005260206000209060020201600101546006546125c89190612eb7565b105b1561264c57600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548061261e5761261d612f1a565b5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055612530565b60006126578261270c565b036126a857600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006126a791906127a4565b5b60006126b382612758565b0361270457600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061270391906127a4565b5b50565b505050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b50805460008255600202906000526020600020908101906127c591906127c8565b50565b5b808211156127eb576000808201600090556001820160009055506002016127c9565b5090565b600081519050919050565b600082825260208201905092915050565b60005b8381101561282957808201518184015260208101905061280e565b60008484015250505050565b6000601f19601f8301169050919050565b6000612851826127ef565b61285b81856127fa565b935061286b81856020860161280b565b61287481612835565b840191505092915050565b600060208201905081810360008301526128998184612846565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128d1826128a6565b9050919050565b6128e1816128c6565b81146128ec57600080fd5b50565b6000813590506128fe816128d8565b92915050565b6000819050919050565b61291781612904565b811461292257600080fd5b50565b6000813590506129348161290e565b92915050565b60008060408385031215612951576129506128a1565b5b600061295f858286016128ef565b925050602061297085828601612925565b9150509250929050565b60008115159050919050565b61298f8161297a565b82525050565b60006020820190506129aa6000830184612986565b92915050565b6129b981612904565b82525050565b60006020820190506129d460008301846129b0565b92915050565b6000806000606084860312156129f3576129f26128a1565b5b6000612a01868287016128ef565b9350506020612a12868287016128ef565b9250506040612a2386828701612925565b9150509250925092565b600060ff82169050919050565b612a4381612a2d565b82525050565b6000602082019050612a5e6000830184612a3a565b92915050565b600060208284031215612a7a57612a796128a1565b5b6000612a8884828501612925565b91505092915050565b600060208284031215612aa757612aa66128a1565b5b6000612ab5848285016128ef565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612af381612904565b82525050565b604082016000820151612b0f6000850182612aea565b506020820151612b226020850182612aea565b50505050565b6000612b348383612af9565b60408301905092915050565b6000602082019050919050565b6000612b5882612abe565b612b628185612ac9565b9350612b6d83612ada565b8060005b83811015612b9e578151612b858882612b28565b9750612b9083612b40565b925050600181019050612b71565b5085935050505092915050565b60006020820190508181036000830152612bc58184612b4d565b905092915050565b612bd6816128c6565b82525050565b6000602082019050612bf16000830184612bcd565b92915050565b60008060008060808587031215612c1157612c106128a1565b5b6000612c1f878288016128ef565b9450506020612c3087828801612925565b9350506040612c4187828801612925565b9250506060612c5287828801612925565b91505092959194509250565b60008060408385031215612c7557612c746128a1565b5b6000612c83858286016128ef565b9250506020612c94858286016128ef565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ce557607f821691505b602082108103612cf857612cf7612c9e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d346020836127fa565b9150612d3f82612cfe565b602082019050919050565b60006020820190508181036000830152612d6381612d27565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dd382612904565b9150612dde83612904565b925082612dee57612ded612d6a565b5b828204905092915050565b6000612e0482612904565b9150612e0f83612904565b9250828203905081811115612e2757612e26612d99565b5b92915050565b6000612e3882612904565b9150612e4383612904565b9250828202612e5181612904565b91508282048414831517612e6857612e67612d99565b5b5092915050565b6000612e7a82612904565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612eac57612eab612d99565b5b600182019050919050565b6000612ec282612904565b9150612ecd83612904565b9250828201905080821115612ee557612ee4612d99565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6000604082019050612f5e60008301856129b0565b612f6b60208301846129b0565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612fce6025836127fa565b9150612fd982612f72565b604082019050919050565b60006020820190508181036000830152612ffd81612fc1565b9050919050565b600060608201905061301960008301866129b0565b61302660208301856129b0565b61303360408301846129b0565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130976026836127fa565b91506130a28261303b565b604082019050919050565b600060208201905081810360008301526130c68161308a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006131296024836127fa565b9150613134826130cd565b604082019050919050565b600060208201905081810360008301526131588161311c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131bb6022836127fa565b91506131c68261315f565b604082019050919050565b600060208201905081810360008301526131ea816131ae565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061324d6025836127fa565b9150613258826131f1565b604082019050919050565b6000602082019050818103600083015261327c81613240565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132df6023836127fa565b91506132ea82613283565b604082019050919050565b6000602082019050818103600083015261330e816132d2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006133716026836127fa565b915061337c82613315565b604082019050919050565b600060208201905081810360008301526133a081613364565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006133dd601d836127fa565b91506133e8826133a7565b602082019050919050565b6000602082019050818103600083015261340c816133d0565b9050919050565b7f4c4d3a20696e73756666696369656e742062616c616e63650000000000000000600082015250565b60006134496018836127fa565b915061345482613413565b602082019050919050565b600060208201905081810360008301526134788161343c565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006134b56014836127fa565b91506134c08261347f565b602082019050919050565b600060208201905081810360008301526134e4816134a8565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006135476021836127fa565b9150613552826134eb565b604082019050919050565b600060208201905081810360008301526135768161353a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006135d96022836127fa565b91506135e48261357d565b604082019050919050565b60006020820190508181036000830152613608816135cc565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006136456010836127fa565b91506136508261360f565b602082019050919050565b6000602082019050818103600083015261367481613638565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b60006136d7602a836127fa565b91506136e28261367b565b604082019050919050565b60006020820190508181036000830152613706816136ca565b905091905056fea2646970667358221220e4e5f09c76f86953bd617dbaa6fa8f03777df149dbc84dbb6356670fc19c7fd164736f6c63430008140033

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

0000000000000000000000000000000000000000000000000000000063f6d200

-----Decoded View---------------
Arg [0] : initialDDay (uint256): 1677120000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000063f6d200


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.