ETH Price: $2,885.79 (-5.42%)
Gas: 1 Gwei

Token

JustBet (WINR)
 

Overview

Max Total Supply

1,722,919,230 WINR

Holders

494 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
185,545.154059483766747043 WINR

Value
$0.00
0x5f39e05FAa0E80f506ca1Fe948d96e978b2a9A02
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

JustBet is a decentralized ERC-20 gaming platform running on the Polygon Layer-2 network. The platform operates an autonomous house with no human intervention. Users mint WINR through gameplay. The platform rewards users 80% of all fees in airdrops by staking WINR tokens.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RootWINR

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : IMintableERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.2;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

interface IMintableERC20 is IERC20 {
    /**
     * @notice called by predicate contract to mint tokens while withdrawing
     * @dev Should be callable only by MintableERC20Predicate
     * Make sure minting is done only by this function
     * @param user user address for whom token is being minted
     * @param amount amount of token being minted
     */
    function mint(address user, uint256 amount) external;
}

File 2 of 15 : RootWINR.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.2;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "../utils/AccessControlMixin.sol";
import "../utils/NativeMetaTransaction.sol";
import "../utils/ContextMixin.sol";
import "./IMintableERC20.sol";
import "@openzeppelin/contracts/security/Pausable.sol";

contract RootWINR is
    ERC20,
    AccessControlMixin,
    NativeMetaTransaction,
    ContextMixin,
    IMintableERC20,
    Pausable
{
    bytes32 public constant PREDICATE_ROLE = keccak256("PREDICATE_ROLE");
    uint256 private immutable _cap = 10000000000 ether;

    constructor() ERC20("JustBet", "WINR") {
        _setupContractId("JustBetRootWINR");
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(PREDICATE_ROLE, _msgSender());
        _mint(_msgSender(), 1722919230 ether);
        _initializeEIP712("JustBet");
    }

    /**
     * @dev See {IMintableERC20-mint}.
     */
    function mint(address user, uint256 amount)
        external
        override
        only(PREDICATE_ROLE)
    {
        require(totalSupply() + amount <= cap(), "Max supply of WINR reached.");
        _mint(user, amount);
    }

    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    function _msgSender() internal view override returns (address sender) {
        return ContextMixin.msgSender();
    }
}

File 3 of 15 : AccessControlMixin.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.2;

import "@openzeppelin/contracts/access/AccessControl.sol";

contract AccessControlMixin is AccessControl {
    string private _revertMsg;

    function _setupContractId(string memory contractId) internal {
        _revertMsg = string(
            abi.encodePacked(contractId, ": INSUFFICIENT_PERMISSIONS")
        );
    }

    modifier only(bytes32 role) {
        require(hasRole(role, _msgSender()), _revertMsg);
        _;
    }
}

File 4 of 15 : ContextMixin.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.2;

abstract contract ContextMixin {
    function msgSender() internal view returns (address payable sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

File 5 of 15 : EIP712Base.sol
// File: contracts/common/EIP712Base.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.2;

import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string public constant ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH =
        keccak256(
            bytes(
                "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
            )
        );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contractsa that inherits this ccontractontract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(string memory name) internal initializer {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

File 6 of 15 : NativeMetaTransaction.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.2;

import "./EIP712Base.sol";

contract NativeMetaTransaction is EIP712Base {
    bytes32 private constant META_TRANSACTION_TYPEHASH =
        keccak256(
            bytes(
                "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
            )
        );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx =
            MetaTransaction({
                nonce: nonces[userAddress],
                from: userAddress,
                functionSignature: functionSignature
            });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] += 1;

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) =
            address(this).call(
                abi.encodePacked(functionSignature, userAddress)
            );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

File 7 of 15 : Initializable.sol
// SPDX-License-Identifier: MIT

// solhint-disable-next-line compiler-version
pragma solidity ^0.8.0;

import "../../utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 */
abstract contract Initializable {

    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        require(_initializing || !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }
}

File 8 of 15 : AddressUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 15 : AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping (address => bool) members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 10 of 15 : Pausable.sol
// SPDX-License-Identifier: MIT

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 11 of 15 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.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 guidelines: functions revert instead
 * of 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 {
    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 defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All three 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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
     * overloaded;
     *
     * 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 returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` 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);
    }

    /**
     * @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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to 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 { }
}

File 12 of 15 : IERC20.sol
// SPDX-License-Identifier: MIT

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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

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

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

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

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

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

File 13 of 15 : Context.sol
// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 14 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 15 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREDICATE_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a06040526b204fce5e3e250261100000006080908152503480156200002457600080fd5b506040518060400160405280600781526020017f4a757374426574000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f57494e52000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000a99291906200079f565b508060049080519060200190620000c29291906200079f565b5050506000600a60006101000a81548160ff021916908315150217905550620001266040518060400160405280600f81526020017f4a757374426574526f6f7457494e5200000000000000000000000000000000008152506200020460201b60201c565b6200014a6000801b6200013e6200024160201b60201c565b6200025d60201b60201c565b6200018b7f12ff340d0cd9c652c747ca35727e68c547d0f0bfa7758d2e77f75acef481b4f26200017f6200024160201b60201c565b6200025d60201b60201c565b620001b86200019f6200024160201b60201c565b6b05912a569bf16d278e3800006200027360201b60201c565b620001fe6040518060400160405280600781526020017f4a75737442657400000000000000000000000000000000000000000000000000815250620003d860201b60201c565b62000c49565b806040516020016200021791906200092e565b604051602081830303815290604052600690805190602001906200023d9291906200079f565b5050565b600062000258620004ce60201b6200123b1760201c565b905090565b6200026f82826200058160201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002dd90620009d3565b60405180910390fd5b620002fa600083836200067360201b60201c565b80600260008282546200030e919062000a39565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000365919062000a39565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003cc9190620009f5565b60405180910390a35050565b600760019054906101000a900460ff1680620004015750600760009054906101000a900460ff16155b62000443576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043a90620009b1565b60405180910390fd5b6000600760019054906101000a900460ff16159050801562000496576001600760016101000a81548160ff0219169083151502179055506001600760006101000a81548160ff0219169083151502179055505b620004a7826200067860201b60201c565b8015620004ca576000600760016101000a81548160ff0219169083151502179055505b5050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156200057a57600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff8183015116925050506200057e565b3390505b90565b6200059382826200072760201b60201c565b6200066f5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620006146200024160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b505050565b6040518060800160405280604f815260200162003c25604f91398051906020012081805190602001206040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152508051906020012030620006ef6200079260201b60201c565b60001b6040516020016200070895949392919062000954565b6040516020818303038152906040528051906020012060088190555050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000804690508091505090565b828054620007ad9062000b14565b90600052602060002090601f016020900481019282620007d157600085556200081d565b82601f10620007ec57805160ff19168380011785556200081d565b828001600101855582156200081d579182015b828111156200081c578251825591602001919060010190620007ff565b5b5090506200082c919062000830565b5090565b5b808211156200084b57600081600090555060010162000831565b5090565b6200085a8162000a96565b82525050565b6200086b8162000aaa565b82525050565b60006200087e8262000a12565b6200088a818562000a2e565b93506200089c81856020860162000ade565b80840191505092915050565b6000620008b7601a8362000a2e565b9150620008c48262000ba8565b601a82019050919050565b6000620008de602e8362000a1d565b9150620008eb8262000bd1565b604082019050919050565b600062000905601f8362000a1d565b9150620009128262000c20565b602082019050919050565b620009288162000ad4565b82525050565b60006200093c828462000871565b91506200094982620008a8565b915081905092915050565b600060a0820190506200096b600083018862000860565b6200097a602083018762000860565b62000989604083018662000860565b6200099860608301856200084f565b620009a7608083018462000860565b9695505050505050565b60006020820190508181036000830152620009cc81620008cf565b9050919050565b60006020820190508181036000830152620009ee81620008f6565b9050919050565b600060208201905062000a0c60008301846200091d565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600062000a468262000ad4565b915062000a538362000ad4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a8b5762000a8a62000b4a565b5b828201905092915050565b600062000aa38262000ab4565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000afe57808201518184015260208101905062000ae1565b8381111562000b0e576000848401525b50505050565b6000600282049050600182168062000b2d57607f821691505b6020821081141562000b445762000b4362000b79565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f3a20494e53554646494349454e545f5045524d495353494f4e53000000000000600082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b608051612fc062000c656000396000610c810152612fc06000f3fe60806040526004361061019c5760003560e01c8063355274ea116100ec57806395d89b411161008a578063a9059cbb11610064578063a9059cbb1461061f578063d547741f1461065c578063dd62ed3e14610685578063e72db5fd146106c25761019c565b806395d89b411461058c578063a217fddf146105b7578063a457c2d7146105e25761019c565b806340c10f19116100c657806340c10f19146104be5780635c975abb146104e757806370a082311461051257806391d148541461054f5761019c565b8063355274ea1461042d57806336568abe1461045857806339509351146104815761019c565b806320379ee5116101595780632d0335ab116101335780632d0335ab146103715780632f2ff15d146103ae578063313ce567146103d75780633408e470146104025761019c565b806320379ee5146102cc57806323b872dd146102f7578063248a9ca3146103345761019c565b806301ffc9a7146101a157806306fdde03146101de578063095ea7b3146102095780630c53c51c146102465780630f7e59701461027657806318160ddd146102a1575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190611f2a565b6106ed565b6040516101d591906123e2565b60405180910390f35b3480156101ea57600080fd5b506101f3610767565b60405161020091906124c4565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190611e89565b6107f9565b60405161023d91906123e2565b60405180910390f35b610260600480360381019061025b9190611dfa565b610817565b60405161026d91906124a2565b60405180910390f35b34801561028257600080fd5b5061028b610a4a565b60405161029891906124c4565b60405180910390f35b3480156102ad57600080fd5b506102b6610a83565b6040516102c391906126e8565b60405180910390f35b3480156102d857600080fd5b506102e1610a8d565b6040516102ee91906123fd565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190611dab565b610a97565b60405161032b91906123e2565b60405180910390f35b34801561034057600080fd5b5061035b60048036038101906103569190611ec5565b610b98565b60405161036891906123fd565b60405180910390f35b34801561037d57600080fd5b5061039860048036038101906103939190611d46565b610bb8565b6040516103a591906126e8565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190611eee565b610c01565b005b3480156103e357600080fd5b506103ec610c67565b6040516103f99190612703565b60405180910390f35b34801561040e57600080fd5b50610417610c70565b60405161042491906126e8565b60405180910390f35b34801561043957600080fd5b50610442610c7d565b60405161044f91906126e8565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190611eee565b610ca5565b005b34801561048d57600080fd5b506104a860048036038101906104a39190611e89565b610d28565b6040516104b591906123e2565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190611e89565b610dd4565b005b3480156104f357600080fd5b506104fc610eb5565b60405161050991906123e2565b60405180910390f35b34801561051e57600080fd5b5061053960048036038101906105349190611d46565b610ecc565b60405161054691906126e8565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190611eee565b610f14565b60405161058391906123e2565b60405180910390f35b34801561059857600080fd5b506105a1610f7f565b6040516105ae91906124c4565b60405180910390f35b3480156105c357600080fd5b506105cc611011565b6040516105d991906123fd565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190611e89565b611018565b60405161061691906123e2565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190611e89565b61110c565b60405161065391906123e2565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190611eee565b61112a565b005b34801561069157600080fd5b506106ac60048036038101906106a79190611d6f565b611190565b6040516106b991906126e8565b60405180910390f35b3480156106ce57600080fd5b506106d7611217565b6040516106e491906123fd565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610760575061075f826112ec565b5b9050919050565b60606003805461077690612940565b80601f01602080910402602001604051908101604052809291908181526020018280546107a290612940565b80156107ef5780601f106107c4576101008083540402835291602001916107ef565b820191906000526020600020905b8154815290600101906020018083116107d257829003601f168201915b5050505050905090565b600061080d610806611356565b8484611365565b6001905092915050565b606060006040518060600160405280600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff16815260200187815250905061089a8782878787611530565b6108d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d090612628565b60405180910390fd5b6001600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461092991906127d7565b925050819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610963939291906123a4565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610998929190612345565b6040516020818303038152906040526040516109b4919061232e565b6000604051808303816000865af19150503d80600081146109f1576040519150601f19603f3d011682016040523d82523d6000602084013e6109f6565b606091505b509150915081610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3290612568565b60405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b6000600254905090565b6000600854905090565b6000610aa4848484611639565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610aef611356565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6690612608565b60405180910390fd5b610b8c85610b7b611356565b8584610b87919061282d565b611365565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c1a610c0d83610b98565b610c15611356565b610f14565b610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5090612528565b60405180910390fd5b610c6382826118b8565b5050565b60006012905090565b6000804690508091505090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b610cad611356565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d11906126a8565b60405180910390fd5b610d248282611999565b5050565b6000610dca610d35611356565b848460016000610d43611356565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dc591906127d7565b611365565b6001905092915050565b7f12ff340d0cd9c652c747ca35727e68c547d0f0bfa7758d2e77f75acef481b4f2610e0681610e01611356565b610f14565b600690610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4091906124e6565b60405180910390fd5b50610e52610c7d565b82610e5b610a83565b610e6591906127d7565b1115610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d906125e8565b60405180910390fd5b610eb08383611a7b565b505050565b6000600a60009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610f8e90612940565b80601f0160208091040260200160405190810160405280929190818152602001828054610fba90612940565b80156110075780601f10610fdc57610100808354040283529160200191611007565b820191906000526020600020905b815481529060010190602001808311610fea57829003601f168201915b5050505050905090565b6000801b81565b60008060016000611027611356565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90612688565b60405180910390fd5b6111016110ef611356565b8585846110fc919061282d565b611365565b600191505092915050565b6000611120611119611356565b8484611639565b6001905092915050565b61114361113683610b98565b61113e611356565b610f14565b611182576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611179906125a8565b60405180910390fd5b61118c8282611999565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f12ff340d0cd9c652c747ca35727e68c547d0f0bfa7758d2e77f75acef481b4f281565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156112e557600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff8183015116925050506112e9565b3390505b90565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600061136061123b565b905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90612668565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143c90612548565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161152391906126e8565b60405180910390a3505050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156115a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611598906125c8565b60405180910390fd5b60016115b46115af87611bcf565b611c37565b838686604051600081526020016040526040516115d4949392919061245d565b6020604051602081039080840390855afa1580156115f6573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a090612648565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171090612508565b60405180910390fd5b611724838383611c70565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a190612588565b60405180910390fd5b81816117b6919061282d565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461184691906127d7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118aa91906126e8565b60405180910390a350505050565b6118c28282610f14565b6119955760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061193a611356565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6119a38282610f14565b15611a775760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a1c611356565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae2906126c8565b60405180910390fd5b611af760008383611c70565b8060026000828254611b0991906127d7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b5e91906127d7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bc391906126e8565b60405180910390a35050565b6000604051806080016040528060438152602001612f48604391398051906020012082600001518360200151846040015180519060200120604051602001611c1a9493929190612418565b604051602081830303815290604052805190602001209050919050565b6000611c41610a8d565b82604051602001611c5392919061236d565b604051602081830303815290604052805190602001209050919050565b505050565b6000611c88611c8384612743565b61271e565b905082815260208101848484011115611ca057600080fd5b611cab8482856128fe565b509392505050565b600081359050611cc281612ed4565b92915050565b600081359050611cd781612eeb565b92915050565b600081359050611cec81612f02565b92915050565b600082601f830112611d0357600080fd5b8135611d13848260208601611c75565b91505092915050565b600081359050611d2b81612f19565b92915050565b600081359050611d4081612f30565b92915050565b600060208284031215611d5857600080fd5b6000611d6684828501611cb3565b91505092915050565b60008060408385031215611d8257600080fd5b6000611d9085828601611cb3565b9250506020611da185828601611cb3565b9150509250929050565b600080600060608486031215611dc057600080fd5b6000611dce86828701611cb3565b9350506020611ddf86828701611cb3565b9250506040611df086828701611d1c565b9150509250925092565b600080600080600060a08688031215611e1257600080fd5b6000611e2088828901611cb3565b955050602086013567ffffffffffffffff811115611e3d57600080fd5b611e4988828901611cf2565b9450506040611e5a88828901611cc8565b9350506060611e6b88828901611cc8565b9250506080611e7c88828901611d31565b9150509295509295909350565b60008060408385031215611e9c57600080fd5b6000611eaa85828601611cb3565b9250506020611ebb85828601611d1c565b9150509250929050565b600060208284031215611ed757600080fd5b6000611ee584828501611cc8565b91505092915050565b60008060408385031215611f0157600080fd5b6000611f0f85828601611cc8565b9250506020611f2085828601611cb3565b9150509250929050565b600060208284031215611f3c57600080fd5b6000611f4a84828501611cdd565b91505092915050565b611f5c81612873565b82525050565b611f6b81612861565b82525050565b611f82611f7d82612861565b6129a3565b82525050565b611f9181612885565b82525050565b611fa081612891565b82525050565b611fb7611fb282612891565b6129b5565b82525050565b6000611fc882612789565b611fd2818561279f565b9350611fe281856020860161290d565b611feb81612a5e565b840191505092915050565b600061200182612789565b61200b81856127b0565b935061201b81856020860161290d565b80840191505092915050565b600061203282612794565b61203c81856127bb565b935061204c81856020860161290d565b61205581612a5e565b840191505092915050565b6000815461206d81612940565b61207781866127bb565b9450600182166000811461209257600181146120a4576120d7565b60ff19831686526020860193506120d7565b6120ad85612774565b60005b838110156120cf578154818901526001820191506020810190506120b0565b808801955050505b50505092915050565b60006120ed6023836127bb565b91506120f882612a7c565b604082019050919050565b6000612110602f836127bb565b915061211b82612acb565b604082019050919050565b60006121336022836127bb565b915061213e82612b1a565b604082019050919050565b6000612156601c836127bb565b915061216182612b69565b602082019050919050565b60006121796002836127cc565b915061218482612b92565b600282019050919050565b600061219c6026836127bb565b91506121a782612bbb565b604082019050919050565b60006121bf6030836127bb565b91506121ca82612c0a565b604082019050919050565b60006121e26025836127bb565b91506121ed82612c59565b604082019050919050565b6000612205601b836127bb565b915061221082612ca8565b602082019050919050565b60006122286028836127bb565b915061223382612cd1565b604082019050919050565b600061224b6021836127bb565b915061225682612d20565b604082019050919050565b600061226e6025836127bb565b915061227982612d6f565b604082019050919050565b60006122916024836127bb565b915061229c82612dbe565b604082019050919050565b60006122b46025836127bb565b91506122bf82612e0d565b604082019050919050565b60006122d7602f836127bb565b91506122e282612e5c565b604082019050919050565b60006122fa601f836127bb565b915061230582612eab565b602082019050919050565b612319816128e7565b82525050565b612328816128f1565b82525050565b600061233a8284611ff6565b915081905092915050565b60006123518285611ff6565b915061235d8284611f71565b6014820191508190509392505050565b60006123788261216c565b91506123848285611fa6565b6020820191506123948284611fa6565b6020820191508190509392505050565b60006060820190506123b96000830186611f62565b6123c66020830185611f53565b81810360408301526123d88184611fbd565b9050949350505050565b60006020820190506123f76000830184611f88565b92915050565b60006020820190506124126000830184611f97565b92915050565b600060808201905061242d6000830187611f97565b61243a6020830186612310565b6124476040830185611f62565b6124546060830184611f97565b95945050505050565b60006080820190506124726000830187611f97565b61247f602083018661231f565b61248c6040830185611f97565b6124996060830184611f97565b95945050505050565b600060208201905081810360008301526124bc8184611fbd565b905092915050565b600060208201905081810360008301526124de8184612027565b905092915050565b600060208201905081810360008301526125008184612060565b905092915050565b60006020820190508181036000830152612521816120e0565b9050919050565b6000602082019050818103600083015261254181612103565b9050919050565b6000602082019050818103600083015261256181612126565b9050919050565b6000602082019050818103600083015261258181612149565b9050919050565b600060208201905081810360008301526125a18161218f565b9050919050565b600060208201905081810360008301526125c1816121b2565b9050919050565b600060208201905081810360008301526125e1816121d5565b9050919050565b60006020820190508181036000830152612601816121f8565b9050919050565b600060208201905081810360008301526126218161221b565b9050919050565b600060208201905081810360008301526126418161223e565b9050919050565b6000602082019050818103600083015261266181612261565b9050919050565b6000602082019050818103600083015261268181612284565b9050919050565b600060208201905081810360008301526126a1816122a7565b9050919050565b600060208201905081810360008301526126c1816122ca565b9050919050565b600060208201905081810360008301526126e1816122ed565b9050919050565b60006020820190506126fd6000830184612310565b92915050565b6000602082019050612718600083018461231f565b92915050565b6000612728612739565b90506127348282612972565b919050565b6000604051905090565b600067ffffffffffffffff82111561275e5761275d612a2f565b5b61276782612a5e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006127e2826128e7565b91506127ed836128e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612822576128216129d1565b5b828201905092915050565b6000612838826128e7565b9150612843836128e7565b925082821015612856576128556129d1565b5b828203905092915050565b600061286c826128c7565b9050919050565b600061287e826128c7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561292b578082015181840152602081019050612910565b8381111561293a576000848401525b50505050565b6000600282049050600182168061295857607f821691505b6020821081141561296c5761296b612a00565b5b50919050565b61297b82612a5e565b810181811067ffffffffffffffff8211171561299a57612999612a2f565b5b80604052505050565b60006129ae826129bf565b9050919050565b6000819050919050565b60006129ca82612a6f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f206772616e740000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f207265766f6b6500000000000000000000000000000000602082015250565b7f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008201527f49474e4552000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c79206f662057494e5220726561636865642e0000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612edd81612861565b8114612ee857600080fd5b50565b612ef481612891565b8114612eff57600080fd5b50565b612f0b8161289b565b8114612f1657600080fd5b50565b612f22816128e7565b8114612f2d57600080fd5b50565b612f39816128f1565b8114612f4457600080fd5b5056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212200ce09d5972988f7a95cb78f50c9f73fada517fe76573b2d2bf8e04a45ea970ff64736f6c63430008020033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429

Deployed Bytecode

0x60806040526004361061019c5760003560e01c8063355274ea116100ec57806395d89b411161008a578063a9059cbb11610064578063a9059cbb1461061f578063d547741f1461065c578063dd62ed3e14610685578063e72db5fd146106c25761019c565b806395d89b411461058c578063a217fddf146105b7578063a457c2d7146105e25761019c565b806340c10f19116100c657806340c10f19146104be5780635c975abb146104e757806370a082311461051257806391d148541461054f5761019c565b8063355274ea1461042d57806336568abe1461045857806339509351146104815761019c565b806320379ee5116101595780632d0335ab116101335780632d0335ab146103715780632f2ff15d146103ae578063313ce567146103d75780633408e470146104025761019c565b806320379ee5146102cc57806323b872dd146102f7578063248a9ca3146103345761019c565b806301ffc9a7146101a157806306fdde03146101de578063095ea7b3146102095780630c53c51c146102465780630f7e59701461027657806318160ddd146102a1575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190611f2a565b6106ed565b6040516101d591906123e2565b60405180910390f35b3480156101ea57600080fd5b506101f3610767565b60405161020091906124c4565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190611e89565b6107f9565b60405161023d91906123e2565b60405180910390f35b610260600480360381019061025b9190611dfa565b610817565b60405161026d91906124a2565b60405180910390f35b34801561028257600080fd5b5061028b610a4a565b60405161029891906124c4565b60405180910390f35b3480156102ad57600080fd5b506102b6610a83565b6040516102c391906126e8565b60405180910390f35b3480156102d857600080fd5b506102e1610a8d565b6040516102ee91906123fd565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190611dab565b610a97565b60405161032b91906123e2565b60405180910390f35b34801561034057600080fd5b5061035b60048036038101906103569190611ec5565b610b98565b60405161036891906123fd565b60405180910390f35b34801561037d57600080fd5b5061039860048036038101906103939190611d46565b610bb8565b6040516103a591906126e8565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190611eee565b610c01565b005b3480156103e357600080fd5b506103ec610c67565b6040516103f99190612703565b60405180910390f35b34801561040e57600080fd5b50610417610c70565b60405161042491906126e8565b60405180910390f35b34801561043957600080fd5b50610442610c7d565b60405161044f91906126e8565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190611eee565b610ca5565b005b34801561048d57600080fd5b506104a860048036038101906104a39190611e89565b610d28565b6040516104b591906123e2565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190611e89565b610dd4565b005b3480156104f357600080fd5b506104fc610eb5565b60405161050991906123e2565b60405180910390f35b34801561051e57600080fd5b5061053960048036038101906105349190611d46565b610ecc565b60405161054691906126e8565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190611eee565b610f14565b60405161058391906123e2565b60405180910390f35b34801561059857600080fd5b506105a1610f7f565b6040516105ae91906124c4565b60405180910390f35b3480156105c357600080fd5b506105cc611011565b6040516105d991906123fd565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190611e89565b611018565b60405161061691906123e2565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190611e89565b61110c565b60405161065391906123e2565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190611eee565b61112a565b005b34801561069157600080fd5b506106ac60048036038101906106a79190611d6f565b611190565b6040516106b991906126e8565b60405180910390f35b3480156106ce57600080fd5b506106d7611217565b6040516106e491906123fd565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610760575061075f826112ec565b5b9050919050565b60606003805461077690612940565b80601f01602080910402602001604051908101604052809291908181526020018280546107a290612940565b80156107ef5780601f106107c4576101008083540402835291602001916107ef565b820191906000526020600020905b8154815290600101906020018083116107d257829003601f168201915b5050505050905090565b600061080d610806611356565b8484611365565b6001905092915050565b606060006040518060600160405280600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff16815260200187815250905061089a8782878787611530565b6108d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d090612628565b60405180910390fd5b6001600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461092991906127d7565b925050819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610963939291906123a4565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610998929190612345565b6040516020818303038152906040526040516109b4919061232e565b6000604051808303816000865af19150503d80600081146109f1576040519150601f19603f3d011682016040523d82523d6000602084013e6109f6565b606091505b509150915081610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3290612568565b60405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b6000600254905090565b6000600854905090565b6000610aa4848484611639565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610aef611356565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6690612608565b60405180910390fd5b610b8c85610b7b611356565b8584610b87919061282d565b611365565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c1a610c0d83610b98565b610c15611356565b610f14565b610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5090612528565b60405180910390fd5b610c6382826118b8565b5050565b60006012905090565b6000804690508091505090565b60007f0000000000000000000000000000000000000000204fce5e3e25026110000000905090565b610cad611356565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d11906126a8565b60405180910390fd5b610d248282611999565b5050565b6000610dca610d35611356565b848460016000610d43611356565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dc591906127d7565b611365565b6001905092915050565b7f12ff340d0cd9c652c747ca35727e68c547d0f0bfa7758d2e77f75acef481b4f2610e0681610e01611356565b610f14565b600690610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4091906124e6565b60405180910390fd5b50610e52610c7d565b82610e5b610a83565b610e6591906127d7565b1115610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d906125e8565b60405180910390fd5b610eb08383611a7b565b505050565b6000600a60009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610f8e90612940565b80601f0160208091040260200160405190810160405280929190818152602001828054610fba90612940565b80156110075780601f10610fdc57610100808354040283529160200191611007565b820191906000526020600020905b815481529060010190602001808311610fea57829003601f168201915b5050505050905090565b6000801b81565b60008060016000611027611356565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90612688565b60405180910390fd5b6111016110ef611356565b8585846110fc919061282d565b611365565b600191505092915050565b6000611120611119611356565b8484611639565b6001905092915050565b61114361113683610b98565b61113e611356565b610f14565b611182576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611179906125a8565b60405180910390fd5b61118c8282611999565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f12ff340d0cd9c652c747ca35727e68c547d0f0bfa7758d2e77f75acef481b4f281565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156112e557600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff8183015116925050506112e9565b3390505b90565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600061136061123b565b905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90612668565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143c90612548565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161152391906126e8565b60405180910390a3505050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156115a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611598906125c8565b60405180910390fd5b60016115b46115af87611bcf565b611c37565b838686604051600081526020016040526040516115d4949392919061245d565b6020604051602081039080840390855afa1580156115f6573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a090612648565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171090612508565b60405180910390fd5b611724838383611c70565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a190612588565b60405180910390fd5b81816117b6919061282d565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461184691906127d7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118aa91906126e8565b60405180910390a350505050565b6118c28282610f14565b6119955760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061193a611356565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6119a38282610f14565b15611a775760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a1c611356565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae2906126c8565b60405180910390fd5b611af760008383611c70565b8060026000828254611b0991906127d7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b5e91906127d7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bc391906126e8565b60405180910390a35050565b6000604051806080016040528060438152602001612f48604391398051906020012082600001518360200151846040015180519060200120604051602001611c1a9493929190612418565b604051602081830303815290604052805190602001209050919050565b6000611c41610a8d565b82604051602001611c5392919061236d565b604051602081830303815290604052805190602001209050919050565b505050565b6000611c88611c8384612743565b61271e565b905082815260208101848484011115611ca057600080fd5b611cab8482856128fe565b509392505050565b600081359050611cc281612ed4565b92915050565b600081359050611cd781612eeb565b92915050565b600081359050611cec81612f02565b92915050565b600082601f830112611d0357600080fd5b8135611d13848260208601611c75565b91505092915050565b600081359050611d2b81612f19565b92915050565b600081359050611d4081612f30565b92915050565b600060208284031215611d5857600080fd5b6000611d6684828501611cb3565b91505092915050565b60008060408385031215611d8257600080fd5b6000611d9085828601611cb3565b9250506020611da185828601611cb3565b9150509250929050565b600080600060608486031215611dc057600080fd5b6000611dce86828701611cb3565b9350506020611ddf86828701611cb3565b9250506040611df086828701611d1c565b9150509250925092565b600080600080600060a08688031215611e1257600080fd5b6000611e2088828901611cb3565b955050602086013567ffffffffffffffff811115611e3d57600080fd5b611e4988828901611cf2565b9450506040611e5a88828901611cc8565b9350506060611e6b88828901611cc8565b9250506080611e7c88828901611d31565b9150509295509295909350565b60008060408385031215611e9c57600080fd5b6000611eaa85828601611cb3565b9250506020611ebb85828601611d1c565b9150509250929050565b600060208284031215611ed757600080fd5b6000611ee584828501611cc8565b91505092915050565b60008060408385031215611f0157600080fd5b6000611f0f85828601611cc8565b9250506020611f2085828601611cb3565b9150509250929050565b600060208284031215611f3c57600080fd5b6000611f4a84828501611cdd565b91505092915050565b611f5c81612873565b82525050565b611f6b81612861565b82525050565b611f82611f7d82612861565b6129a3565b82525050565b611f9181612885565b82525050565b611fa081612891565b82525050565b611fb7611fb282612891565b6129b5565b82525050565b6000611fc882612789565b611fd2818561279f565b9350611fe281856020860161290d565b611feb81612a5e565b840191505092915050565b600061200182612789565b61200b81856127b0565b935061201b81856020860161290d565b80840191505092915050565b600061203282612794565b61203c81856127bb565b935061204c81856020860161290d565b61205581612a5e565b840191505092915050565b6000815461206d81612940565b61207781866127bb565b9450600182166000811461209257600181146120a4576120d7565b60ff19831686526020860193506120d7565b6120ad85612774565b60005b838110156120cf578154818901526001820191506020810190506120b0565b808801955050505b50505092915050565b60006120ed6023836127bb565b91506120f882612a7c565b604082019050919050565b6000612110602f836127bb565b915061211b82612acb565b604082019050919050565b60006121336022836127bb565b915061213e82612b1a565b604082019050919050565b6000612156601c836127bb565b915061216182612b69565b602082019050919050565b60006121796002836127cc565b915061218482612b92565b600282019050919050565b600061219c6026836127bb565b91506121a782612bbb565b604082019050919050565b60006121bf6030836127bb565b91506121ca82612c0a565b604082019050919050565b60006121e26025836127bb565b91506121ed82612c59565b604082019050919050565b6000612205601b836127bb565b915061221082612ca8565b602082019050919050565b60006122286028836127bb565b915061223382612cd1565b604082019050919050565b600061224b6021836127bb565b915061225682612d20565b604082019050919050565b600061226e6025836127bb565b915061227982612d6f565b604082019050919050565b60006122916024836127bb565b915061229c82612dbe565b604082019050919050565b60006122b46025836127bb565b91506122bf82612e0d565b604082019050919050565b60006122d7602f836127bb565b91506122e282612e5c565b604082019050919050565b60006122fa601f836127bb565b915061230582612eab565b602082019050919050565b612319816128e7565b82525050565b612328816128f1565b82525050565b600061233a8284611ff6565b915081905092915050565b60006123518285611ff6565b915061235d8284611f71565b6014820191508190509392505050565b60006123788261216c565b91506123848285611fa6565b6020820191506123948284611fa6565b6020820191508190509392505050565b60006060820190506123b96000830186611f62565b6123c66020830185611f53565b81810360408301526123d88184611fbd565b9050949350505050565b60006020820190506123f76000830184611f88565b92915050565b60006020820190506124126000830184611f97565b92915050565b600060808201905061242d6000830187611f97565b61243a6020830186612310565b6124476040830185611f62565b6124546060830184611f97565b95945050505050565b60006080820190506124726000830187611f97565b61247f602083018661231f565b61248c6040830185611f97565b6124996060830184611f97565b95945050505050565b600060208201905081810360008301526124bc8184611fbd565b905092915050565b600060208201905081810360008301526124de8184612027565b905092915050565b600060208201905081810360008301526125008184612060565b905092915050565b60006020820190508181036000830152612521816120e0565b9050919050565b6000602082019050818103600083015261254181612103565b9050919050565b6000602082019050818103600083015261256181612126565b9050919050565b6000602082019050818103600083015261258181612149565b9050919050565b600060208201905081810360008301526125a18161218f565b9050919050565b600060208201905081810360008301526125c1816121b2565b9050919050565b600060208201905081810360008301526125e1816121d5565b9050919050565b60006020820190508181036000830152612601816121f8565b9050919050565b600060208201905081810360008301526126218161221b565b9050919050565b600060208201905081810360008301526126418161223e565b9050919050565b6000602082019050818103600083015261266181612261565b9050919050565b6000602082019050818103600083015261268181612284565b9050919050565b600060208201905081810360008301526126a1816122a7565b9050919050565b600060208201905081810360008301526126c1816122ca565b9050919050565b600060208201905081810360008301526126e1816122ed565b9050919050565b60006020820190506126fd6000830184612310565b92915050565b6000602082019050612718600083018461231f565b92915050565b6000612728612739565b90506127348282612972565b919050565b6000604051905090565b600067ffffffffffffffff82111561275e5761275d612a2f565b5b61276782612a5e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006127e2826128e7565b91506127ed836128e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612822576128216129d1565b5b828201905092915050565b6000612838826128e7565b9150612843836128e7565b925082821015612856576128556129d1565b5b828203905092915050565b600061286c826128c7565b9050919050565b600061287e826128c7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561292b578082015181840152602081019050612910565b8381111561293a576000848401525b50505050565b6000600282049050600182168061295857607f821691505b6020821081141561296c5761296b612a00565b5b50919050565b61297b82612a5e565b810181811067ffffffffffffffff8211171561299a57612999612a2f565b5b80604052505050565b60006129ae826129bf565b9050919050565b6000819050919050565b60006129ca82612a6f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f206772616e740000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f207265766f6b6500000000000000000000000000000000602082015250565b7f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008201527f49474e4552000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c79206f662057494e5220726561636865642e0000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612edd81612861565b8114612ee857600080fd5b50565b612ef481612891565b8114612eff57600080fd5b50565b612f0b8161289b565b8114612f1657600080fd5b50565b612f22816128e7565b8114612f2d57600080fd5b50565b612f39816128f1565b8114612f4457600080fd5b5056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212200ce09d5972988f7a95cb78f50c9f73fada517fe76573b2d2bf8e04a45ea970ff64736f6c63430008020033

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.