ETH Price: $2,935.04 (-0.62%)

Token

POT Token (POT)

Overview

Max Total Supply

81,291,243.06149999999997655 POT

Holders

674 (0.00%)

Market

Price

$0.0002 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,050 POT

Value
$1.57 ( ~0.000534916384481074 ETH) [0.0087%]
0x7c1a5fd2a0fa67e3a7bd6c7cf1160166fd11f90a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Proof of Trade (PoT) is a consensus mechanism used in TraderDAO that requires significant trading efforts to generate valuable data for the TradeGDT AI.

Contract Source Code Verified (Exact Match)

Contract Name:
POTToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;

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

contract POTToken is ERC20, ERC20Burnable, Pausable, Ownable {
    using ECDSA for bytes32;

    uint8 private _decimals;
    mapping(bytes32 => bool) public _swapKey;
    mapping(address => uint256) public AmountToMint;
    address private _signerAddress = 0x75ffe67F97D9259c08A8a3F192625752AEE66269;

    event MintCompleted(address indexed to, uint256 value, string _data);

    constructor() ERC20("POT Token", "POT") {
        _decimals = 18;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

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

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

    function SetSigner(address _address) external onlyOwner {
        _signerAddress = _address;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing
     * the total supply.
     *
     * Requirements
     *
     * - `msg.sender` must be the token owner
     */
    function mint(
        string calldata timestamp_,
        bytes calldata signature_,
        uint256 amount_
    ) public returns (bool) {
        bytes32 message = getMessage(timestamp_, amount_, address(this), msg.sender);
        require(!_swapKey[message], "Key Already Claimed");
        require(isValidData(message, signature_), "Invalid Signature");
        require(amount_ > 0, "Invalid fund");
        _swapKey[message] = true;
        _mint(_msgSender(), amount_);

        emit MintCompleted(
            msg.sender,
            amount_,
            string.concat(
                string.concat(timestamp_, Strings.toString(amount_)),
                Strings.toHexString(uint256(uint160(msg.sender)), 20)
            )
        );

        return true;
    }

    function ownerMint(uint256 amount) public onlyOwner {
        _mint(_msgSender(), amount);
    }

    function getMessage(
        string calldata timestamp_,
        uint256 amount_,
        address contractAddress_,
        address msgSender_
    ) public pure returns (bytes32) {
        return keccak256(abi.encode(timestamp_, amount_, contractAddress_, msgSender_));
    }

    function isValidData(
        bytes32 message_,
        bytes memory signature_
    ) public view returns (bool) {
        return
            message_.toEthSignedMessageHash().recover(signature_) ==
            _signerAddress;
    }

    function toByte(uint8 _uint8) public pure returns (bytes1) {
        if (_uint8 < 10) {
            return bytes1(_uint8 + 48);
        } else {
            return bytes1(_uint8 + 87);
        }
    }
}

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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

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

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

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

Settings
{
  "remappings": [
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "ds-test/=lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "solmate/=lib/solmate/src/",
    "weird-erc20/=lib/solmate/lib/weird-erc20/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "london",
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"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":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"string","name":"_data","type":"string"}],"name":"MintCompleted","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":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":"","type":"address"}],"name":"AmountToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"SetSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"_swapKey","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"timestamp_","type":"string"},{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"address","name":"contractAddress_","type":"address"},{"internalType":"address","name":"msgSender_","type":"address"}],"name":"getMessage","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","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":"bytes32","name":"message_","type":"bytes32"},{"internalType":"bytes","name":"signature_","type":"bytes"}],"name":"isValidData","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"timestamp_","type":"string"},{"internalType":"bytes","name":"signature_","type":"bytes"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_uint8","type":"uint8"}],"name":"toByte","outputs":[{"internalType":"bytes1","name":"","type":"bytes1"}],"stateMutability":"pure","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"}]

6080604052600880546001600160a01b0319167375ffe67f97d9259c08a8a3f192625752aee662691790553480156200003757600080fd5b50604051806040016040528060098152602001682827aa102a37b5b2b760b91b815250604051806040016040528060038152602001621413d560ea1b8152508160039081620000879190620001c6565b506004620000968282620001c6565b50506005805460ff1916905550620000ae33620000c7565b6005805460ff60a81b1916600960a91b17905562000292565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200014c57607f821691505b6020821081036200016d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001c157600081815260208120601f850160051c810160208610156200019c5750805b601f850160051c820191505b81811015620001bd57828155600101620001a8565b5050505b505050565b81516001600160401b03811115620001e257620001e262000121565b620001fa81620001f3845462000137565b8462000173565b602080601f831160018114620002325760008415620002195750858301515b600019600386901b1c1916600185901b178555620001bd565b600085815260208120601f198616915b82811015620002635788860151825594840194600190910190840162000242565b5085821015620002825787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611e2f80620002a26000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a457c2d711610097578063bb10aee711610071578063bb10aee7146103bd578063dd62ed3e146103d0578063f19e75d414610409578063f2fde38b1461041c57600080fd5b8063a457c2d71461036b578063a86b73f01461037e578063a9059cbb146103aa57600080fd5b80638da5cb5b116100d35780638da5cb5b1461030457806395d89b411461032d5780639de5cba514610335578063a0143a631461034857600080fd5b8063715018a6146102e157806379cc6790146102e95780638456cb59146102fc57600080fd5b806339509351116101665780634a2728ab116101405780634a2728ab146102875780635c10af461461029a5780635c975abb146102ad57806370a08231146102b857600080fd5b806339509351146102575780633f4ba83a1461026a57806342966c681461027457600080fd5b806306fdde03146101ae578063095ea7b3146101cc57806314872740146101ef57806318160ddd1461021d57806323b872dd14610225578063313ce56714610238575b600080fd5b6101b661042f565b6040516101c391906118b7565b60405180910390f35b6101df6101da3660046118e1565b6104c1565b60405190151581526020016101c3565b61020f6101fd36600461190b565b60076020526000908152604090205481565b6040519081526020016101c3565b60025461020f565b6101df610233366004611926565b6104db565b600554600160a81b900460ff1660405160ff90911681526020016101c3565b6101df6102653660046118e1565b6104ff565b61027261053e565b005b610272610282366004611962565b610581565b6101df6102953660046119bd565b61058e565b6101df6102a8366004611a47565b61077a565b60055460ff166101df565b61020f6102c636600461190b565b6001600160a01b031660009081526020819052604090205490565b6102726107fb565b6102726102f73660046118e1565b610835565b61027261084e565b60055461010090046001600160a01b03166040516001600160a01b0390911681526020016101c3565b6101b6610886565b61020f610343366004611b02565b610895565b6101df610356366004611962565b60066020526000908152604090205460ff1681565b6101df6103793660046118e1565b6108d1565b61039161038c366004611b70565b610963565b6040516001600160f81b031990911681526020016101c3565b6101df6103b83660046118e1565b610995565b6102726103cb36600461190b565b6109a3565b61020f6103de366004611b93565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610272610417366004611962565b6109f5565b61027261042a36600461190b565b610a2f565b60606003805461043e90611bc6565b80601f016020809104026020016040519081016040528092919081815260200182805461046a90611bc6565b80156104b75780601f1061048c576101008083540402835291602001916104b7565b820191906000526020600020905b81548152906001019060200180831161049a57829003601f168201915b5050505050905090565b6000336104cf818585610acd565b60019150505b92915050565b6000336104e9858285610bf2565b6104f4858585610c84565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906104cf9082908690610539908790611c16565b610acd565b6005546001600160a01b036101009091041633146105775760405162461bcd60e51b815260040161056e90611c29565b60405180910390fd5b61057f610e5d565b565b61058b3382610ef0565b50565b60008061059e8787853033610895565b60008181526006602052604090205490915060ff16156105f65760405162461bcd60e51b815260206004820152601360248201527212d95e48105b1c9958591e4810db185a5b5959606a1b604482015260640161056e565b6106368186868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061077a92505050565b6106765760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b604482015260640161056e565b600083116106b55760405162461bcd60e51b815260206004820152600c60248201526b125b9d985b1a5908199d5b9960a21b604482015260640161056e565b6000818152600660205260409020805460ff191660011790556106de6106d83390565b84611042565b337f4933bbe6074e354b1e30710238bd188e596504c86aeef32d02031e0ced7b60f584898961070c8361112d565b60405160200161071e93929190611c5e565b60408051601f19818403018152919052610739336014611236565b60405160200161074a929190611c85565b60408051601f19818403018152908290526107659291611cb4565b60405180910390a25060019695505050505050565b6008546000906001600160a01b03166107ea836107e4866040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b906113d9565b6001600160a01b0316149392505050565b6005546001600160a01b0361010090910416331461082b5760405162461bcd60e51b815260040161056e90611c29565b61057f60006113fd565b610840823383610bf2565b61084a8282610ef0565b5050565b6005546001600160a01b0361010090910416331461087e5760405162461bcd60e51b815260040161056e90611c29565b61057f611457565b60606004805461043e90611bc6565b600085858585856040516020016108b0959493929190611ccd565b60405160208183030381529060405280519060200120905095945050505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156109565760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161056e565b6104f48286868403610acd565b6000600a8260ff1610156109855761097c826030611d1c565b60f81b92915050565b61097c826057611d1c565b919050565b6000336104cf818585610c84565b6005546001600160a01b036101009091041633146109d35760405162461bcd60e51b815260040161056e90611c29565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03610100909104163314610a255760405162461bcd60e51b815260040161056e90611c29565b61058b3382611042565b6005546001600160a01b03610100909104163314610a5f5760405162461bcd60e51b815260040161056e90611c29565b6001600160a01b038116610ac45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056e565b61058b816113fd565b6001600160a01b038316610b2f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161056e565b6001600160a01b038216610b905760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161056e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610c7e5781811015610c715760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161056e565b610c7e8484848403610acd565b50505050565b6001600160a01b038316610ce85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161056e565b6001600160a01b038216610d4a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161056e565b610d558383836114d2565b6001600160a01b03831660009081526020819052604090205481811015610dcd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161056e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610e04908490611c16565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e5091815260200190565b60405180910390a3610c7e565b60055460ff16610ea65760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161056e565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610f505760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161056e565b610f5c826000836114d2565b6001600160a01b03821660009081526020819052604090205481811015610fd05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161056e565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610fff908490611d35565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610be5565b6001600160a01b0382166110985760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161056e565b6110a4600083836114d2565b80600260008282546110b69190611c16565b90915550506001600160a01b038216600090815260208190526040812080548392906110e3908490611c16565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6060816000036111545750506040805180820190915260018152600360fc1b602082015290565b8160005b811561117e578061116881611d48565b91506111779050600a83611d77565b9150611158565b60008167ffffffffffffffff81111561119957611199611a31565b6040519080825280601f01601f1916602001820160405280156111c3576020820181803683370190505b5090505b841561122e576111d8600183611d35565b91506111e5600a86611d8b565b6111f0906030611c16565b60f81b81838151811061120557611205611d9f565b60200101906001600160f81b031916908160001a905350611227600a86611d77565b94506111c7565b949350505050565b60606000611245836002611db5565b611250906002611c16565b67ffffffffffffffff81111561126857611268611a31565b6040519080825280601f01601f191660200182016040528015611292576020820181803683370190505b509050600360fc1b816000815181106112ad576112ad611d9f565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106112dc576112dc611d9f565b60200101906001600160f81b031916908160001a9053506000611300846002611db5565b61130b906001611c16565b90505b6001811115611383576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061133f5761133f611d9f565b1a60f81b82828151811061135557611355611d9f565b60200101906001600160f81b031916908160001a90535060049490941c9361137c81611dcc565b905061130e565b5083156113d25760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161056e565b9392505050565b60008060006113e8858561151d565b915091506113f58161158b565b509392505050565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff161561149d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161056e565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610ed33390565b60055460ff16156115185760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161056e565b505050565b60008082516041036115535760208301516040840151606085015160001a61154787828585611741565b94509450505050611584565b825160400361157c576020830151604084015161157186838361182e565b935093505050611584565b506000905060025b9250929050565b600081600481111561159f5761159f611de3565b036115a75750565b60018160048111156115bb576115bb611de3565b036116085760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161056e565b600281600481111561161c5761161c611de3565b036116695760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161056e565b600381600481111561167d5761167d611de3565b036116d55760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161056e565b60048160048111156116e9576116e9611de3565b0361058b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161056e565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156117785750600090506003611825565b8460ff16601b1415801561179057508460ff16601c14155b156117a15750600090506004611825565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156117f5573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661181e57600060019250925050611825565b9150600090505b94509492505050565b6000806001600160ff1b0383168161184b60ff86901c601b611c16565b905061185987828885611741565b935093505050935093915050565b60005b8381101561188257818101518382015260200161186a565b50506000910152565b600081518084526118a3816020860160208601611867565b601f01601f19169290920160200192915050565b6020815260006113d2602083018461188b565b80356001600160a01b038116811461099057600080fd5b600080604083850312156118f457600080fd5b6118fd836118ca565b946020939093013593505050565b60006020828403121561191d57600080fd5b6113d2826118ca565b60008060006060848603121561193b57600080fd5b611944846118ca565b9250611952602085016118ca565b9150604084013590509250925092565b60006020828403121561197457600080fd5b5035919050565b60008083601f84011261198d57600080fd5b50813567ffffffffffffffff8111156119a557600080fd5b60208301915083602082850101111561158457600080fd5b6000806000806000606086880312156119d557600080fd5b853567ffffffffffffffff808211156119ed57600080fd5b6119f989838a0161197b565b90975095506020880135915080821115611a1257600080fd5b50611a1f8882890161197b565b96999598509660400135949350505050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215611a5a57600080fd5b82359150602083013567ffffffffffffffff80821115611a7957600080fd5b818501915085601f830112611a8d57600080fd5b813581811115611a9f57611a9f611a31565b604051601f8201601f19908116603f01168101908382118183101715611ac757611ac7611a31565b81604052828152886020848701011115611ae057600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b600080600080600060808688031215611b1a57600080fd5b853567ffffffffffffffff811115611b3157600080fd5b611b3d8882890161197b565b90965094505060208601359250611b56604087016118ca565b9150611b64606087016118ca565b90509295509295909350565b600060208284031215611b8257600080fd5b813560ff811681146113d257600080fd5b60008060408385031215611ba657600080fd5b611baf836118ca565b9150611bbd602084016118ca565b90509250929050565b600181811c90821680611bda57607f821691505b602082108103611bfa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104d5576104d5611c00565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b828482376000838201600081528351611c7b818360208801611867565b0195945050505050565b60008351611c97818460208801611867565b835190830190611cab818360208801611867565b01949350505050565b82815260406020820152600061122e604083018461188b565b60808152846080820152848660a0830137600060a086830181019190915260208201949094526001600160a01b03928316604082015291166060820152601f909201601f191690910101919050565b60ff81811683821601908111156104d5576104d5611c00565b818103818111156104d5576104d5611c00565b600060018201611d5a57611d5a611c00565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611d8657611d86611d61565b500490565b600082611d9a57611d9a611d61565b500690565b634e487b7160e01b600052603260045260246000fd5b80820281158282048414176104d5576104d5611c00565b600081611ddb57611ddb611c00565b506000190190565b634e487b7160e01b600052602160045260246000fdfea264697066735822122094ea10026a4378ab9b3ee7313838b6e05badb55c73d6bd8c3e2ba9fc1abc63d764736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a457c2d711610097578063bb10aee711610071578063bb10aee7146103bd578063dd62ed3e146103d0578063f19e75d414610409578063f2fde38b1461041c57600080fd5b8063a457c2d71461036b578063a86b73f01461037e578063a9059cbb146103aa57600080fd5b80638da5cb5b116100d35780638da5cb5b1461030457806395d89b411461032d5780639de5cba514610335578063a0143a631461034857600080fd5b8063715018a6146102e157806379cc6790146102e95780638456cb59146102fc57600080fd5b806339509351116101665780634a2728ab116101405780634a2728ab146102875780635c10af461461029a5780635c975abb146102ad57806370a08231146102b857600080fd5b806339509351146102575780633f4ba83a1461026a57806342966c681461027457600080fd5b806306fdde03146101ae578063095ea7b3146101cc57806314872740146101ef57806318160ddd1461021d57806323b872dd14610225578063313ce56714610238575b600080fd5b6101b661042f565b6040516101c391906118b7565b60405180910390f35b6101df6101da3660046118e1565b6104c1565b60405190151581526020016101c3565b61020f6101fd36600461190b565b60076020526000908152604090205481565b6040519081526020016101c3565b60025461020f565b6101df610233366004611926565b6104db565b600554600160a81b900460ff1660405160ff90911681526020016101c3565b6101df6102653660046118e1565b6104ff565b61027261053e565b005b610272610282366004611962565b610581565b6101df6102953660046119bd565b61058e565b6101df6102a8366004611a47565b61077a565b60055460ff166101df565b61020f6102c636600461190b565b6001600160a01b031660009081526020819052604090205490565b6102726107fb565b6102726102f73660046118e1565b610835565b61027261084e565b60055461010090046001600160a01b03166040516001600160a01b0390911681526020016101c3565b6101b6610886565b61020f610343366004611b02565b610895565b6101df610356366004611962565b60066020526000908152604090205460ff1681565b6101df6103793660046118e1565b6108d1565b61039161038c366004611b70565b610963565b6040516001600160f81b031990911681526020016101c3565b6101df6103b83660046118e1565b610995565b6102726103cb36600461190b565b6109a3565b61020f6103de366004611b93565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610272610417366004611962565b6109f5565b61027261042a36600461190b565b610a2f565b60606003805461043e90611bc6565b80601f016020809104026020016040519081016040528092919081815260200182805461046a90611bc6565b80156104b75780601f1061048c576101008083540402835291602001916104b7565b820191906000526020600020905b81548152906001019060200180831161049a57829003601f168201915b5050505050905090565b6000336104cf818585610acd565b60019150505b92915050565b6000336104e9858285610bf2565b6104f4858585610c84565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906104cf9082908690610539908790611c16565b610acd565b6005546001600160a01b036101009091041633146105775760405162461bcd60e51b815260040161056e90611c29565b60405180910390fd5b61057f610e5d565b565b61058b3382610ef0565b50565b60008061059e8787853033610895565b60008181526006602052604090205490915060ff16156105f65760405162461bcd60e51b815260206004820152601360248201527212d95e48105b1c9958591e4810db185a5b5959606a1b604482015260640161056e565b6106368186868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061077a92505050565b6106765760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b604482015260640161056e565b600083116106b55760405162461bcd60e51b815260206004820152600c60248201526b125b9d985b1a5908199d5b9960a21b604482015260640161056e565b6000818152600660205260409020805460ff191660011790556106de6106d83390565b84611042565b337f4933bbe6074e354b1e30710238bd188e596504c86aeef32d02031e0ced7b60f584898961070c8361112d565b60405160200161071e93929190611c5e565b60408051601f19818403018152919052610739336014611236565b60405160200161074a929190611c85565b60408051601f19818403018152908290526107659291611cb4565b60405180910390a25060019695505050505050565b6008546000906001600160a01b03166107ea836107e4866040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b906113d9565b6001600160a01b0316149392505050565b6005546001600160a01b0361010090910416331461082b5760405162461bcd60e51b815260040161056e90611c29565b61057f60006113fd565b610840823383610bf2565b61084a8282610ef0565b5050565b6005546001600160a01b0361010090910416331461087e5760405162461bcd60e51b815260040161056e90611c29565b61057f611457565b60606004805461043e90611bc6565b600085858585856040516020016108b0959493929190611ccd565b60405160208183030381529060405280519060200120905095945050505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156109565760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161056e565b6104f48286868403610acd565b6000600a8260ff1610156109855761097c826030611d1c565b60f81b92915050565b61097c826057611d1c565b919050565b6000336104cf818585610c84565b6005546001600160a01b036101009091041633146109d35760405162461bcd60e51b815260040161056e90611c29565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03610100909104163314610a255760405162461bcd60e51b815260040161056e90611c29565b61058b3382611042565b6005546001600160a01b03610100909104163314610a5f5760405162461bcd60e51b815260040161056e90611c29565b6001600160a01b038116610ac45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056e565b61058b816113fd565b6001600160a01b038316610b2f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161056e565b6001600160a01b038216610b905760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161056e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610c7e5781811015610c715760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161056e565b610c7e8484848403610acd565b50505050565b6001600160a01b038316610ce85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161056e565b6001600160a01b038216610d4a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161056e565b610d558383836114d2565b6001600160a01b03831660009081526020819052604090205481811015610dcd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161056e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610e04908490611c16565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e5091815260200190565b60405180910390a3610c7e565b60055460ff16610ea65760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161056e565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610f505760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161056e565b610f5c826000836114d2565b6001600160a01b03821660009081526020819052604090205481811015610fd05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161056e565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610fff908490611d35565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610be5565b6001600160a01b0382166110985760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161056e565b6110a4600083836114d2565b80600260008282546110b69190611c16565b90915550506001600160a01b038216600090815260208190526040812080548392906110e3908490611c16565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6060816000036111545750506040805180820190915260018152600360fc1b602082015290565b8160005b811561117e578061116881611d48565b91506111779050600a83611d77565b9150611158565b60008167ffffffffffffffff81111561119957611199611a31565b6040519080825280601f01601f1916602001820160405280156111c3576020820181803683370190505b5090505b841561122e576111d8600183611d35565b91506111e5600a86611d8b565b6111f0906030611c16565b60f81b81838151811061120557611205611d9f565b60200101906001600160f81b031916908160001a905350611227600a86611d77565b94506111c7565b949350505050565b60606000611245836002611db5565b611250906002611c16565b67ffffffffffffffff81111561126857611268611a31565b6040519080825280601f01601f191660200182016040528015611292576020820181803683370190505b509050600360fc1b816000815181106112ad576112ad611d9f565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106112dc576112dc611d9f565b60200101906001600160f81b031916908160001a9053506000611300846002611db5565b61130b906001611c16565b90505b6001811115611383576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061133f5761133f611d9f565b1a60f81b82828151811061135557611355611d9f565b60200101906001600160f81b031916908160001a90535060049490941c9361137c81611dcc565b905061130e565b5083156113d25760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161056e565b9392505050565b60008060006113e8858561151d565b915091506113f58161158b565b509392505050565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff161561149d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161056e565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610ed33390565b60055460ff16156115185760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161056e565b505050565b60008082516041036115535760208301516040840151606085015160001a61154787828585611741565b94509450505050611584565b825160400361157c576020830151604084015161157186838361182e565b935093505050611584565b506000905060025b9250929050565b600081600481111561159f5761159f611de3565b036115a75750565b60018160048111156115bb576115bb611de3565b036116085760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161056e565b600281600481111561161c5761161c611de3565b036116695760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161056e565b600381600481111561167d5761167d611de3565b036116d55760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161056e565b60048160048111156116e9576116e9611de3565b0361058b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161056e565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156117785750600090506003611825565b8460ff16601b1415801561179057508460ff16601c14155b156117a15750600090506004611825565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156117f5573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661181e57600060019250925050611825565b9150600090505b94509492505050565b6000806001600160ff1b0383168161184b60ff86901c601b611c16565b905061185987828885611741565b935093505050935093915050565b60005b8381101561188257818101518382015260200161186a565b50506000910152565b600081518084526118a3816020860160208601611867565b601f01601f19169290920160200192915050565b6020815260006113d2602083018461188b565b80356001600160a01b038116811461099057600080fd5b600080604083850312156118f457600080fd5b6118fd836118ca565b946020939093013593505050565b60006020828403121561191d57600080fd5b6113d2826118ca565b60008060006060848603121561193b57600080fd5b611944846118ca565b9250611952602085016118ca565b9150604084013590509250925092565b60006020828403121561197457600080fd5b5035919050565b60008083601f84011261198d57600080fd5b50813567ffffffffffffffff8111156119a557600080fd5b60208301915083602082850101111561158457600080fd5b6000806000806000606086880312156119d557600080fd5b853567ffffffffffffffff808211156119ed57600080fd5b6119f989838a0161197b565b90975095506020880135915080821115611a1257600080fd5b50611a1f8882890161197b565b96999598509660400135949350505050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215611a5a57600080fd5b82359150602083013567ffffffffffffffff80821115611a7957600080fd5b818501915085601f830112611a8d57600080fd5b813581811115611a9f57611a9f611a31565b604051601f8201601f19908116603f01168101908382118183101715611ac757611ac7611a31565b81604052828152886020848701011115611ae057600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b600080600080600060808688031215611b1a57600080fd5b853567ffffffffffffffff811115611b3157600080fd5b611b3d8882890161197b565b90965094505060208601359250611b56604087016118ca565b9150611b64606087016118ca565b90509295509295909350565b600060208284031215611b8257600080fd5b813560ff811681146113d257600080fd5b60008060408385031215611ba657600080fd5b611baf836118ca565b9150611bbd602084016118ca565b90509250929050565b600181811c90821680611bda57607f821691505b602082108103611bfa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104d5576104d5611c00565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b828482376000838201600081528351611c7b818360208801611867565b0195945050505050565b60008351611c97818460208801611867565b835190830190611cab818360208801611867565b01949350505050565b82815260406020820152600061122e604083018461188b565b60808152846080820152848660a0830137600060a086830181019190915260208201949094526001600160a01b03928316604082015291166060820152601f909201601f191690910101919050565b60ff81811683821601908111156104d5576104d5611c00565b818103818111156104d5576104d5611c00565b600060018201611d5a57611d5a611c00565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611d8657611d86611d61565b500490565b600082611d9a57611d9a611d61565b500690565b634e487b7160e01b600052603260045260246000fd5b80820281158282048414176104d5576104d5611c00565b600081611ddb57611ddb611c00565b506000190190565b634e487b7160e01b600052602160045260246000fdfea264697066735822122094ea10026a4378ab9b3ee7313838b6e05badb55c73d6bd8c3e2ba9fc1abc63d764736f6c63430008130033

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.