ETH Price: $3,181.26 (-1.76%)
Gas: 16 Gwei

Token

Reltime (RTC)
 

Overview

Max Total Supply

10,000,000,000 RTC

Holders

56

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ReltimeContract

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-09
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol



pragma solidity ^0.8.0;

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/security/Pausable.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol



pragma solidity ^0.8.0;



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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol



pragma solidity ^0.8.0;



/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/access/IAccessControl.sol



pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @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 {AccessControl-_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 Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @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) external;

    /**
     * @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) external;

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

// File: @openzeppelin/contracts/access/AccessControl.sol



pragma solidity ^0.8.0;





/**
 * @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 Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @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 Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @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 onlyRole(getRoleAdmin(role)) {
        _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 onlyRole(getRoleAdmin(role)) {
        _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 {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, 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: contracts/1_Storage.sol


pragma solidity ^0.8.0;






contract ReltimeContract is Context, AccessControl, Ownable, ERC20, ERC20Pausable, ERC20Burnable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    uint8 private decimal;
    
    constructor(string memory tokenName, string memory tokenSymbol, uint256 initialSupply, uint8 decimal_) ERC20(tokenName, tokenSymbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
        
        decimal = decimal_;
        initialSupply = initialSupply  * (10 ** uint8(decimal));  //1000000000
        
        _mint(msg.sender, initialSupply);   
    }
    
    function decimals() public view virtual override returns (uint8) {
        return decimal;
    }
    
    function mint(address to, uint256 amount) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
        _mint(to, amount);
    }
   
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause");
        _pause();
    }

    
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause");
        _unpause();
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint8","name":"decimal_","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"to","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200406e3803806200406e833981810160405281019062000037919062000775565b8383620000596200004d620001b260201b60201c565b620001ba60201b60201c565b81600590805190602001906200007192919062000619565b5080600690805190602001906200008a92919062000619565b5050506000600760006101000a81548160ff021916908315150217905550620000cc6000801b620000c0620001b260201b60201c565b6200028060201b60201c565b6200010d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a662000101620001b260201b60201c565b6200028060201b60201c565b6200014e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a62000142620001b260201b60201c565b6200028060201b60201c565b80600760016101000a81548160ff021916908360ff160217905550600760019054906101000a900460ff16600a62000187919062000a0d565b8262000194919062000b4a565b9150620001a833836200029660201b60201c565b5050505062000dcf565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200029282826200041060201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003009062000884565b60405180910390fd5b6200031d600083836200050160201b60201c565b806004600082825462000331919062000955565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000389919062000955565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003f09190620008c8565b60405180910390a36200040c600083836200051e60201b60201c565b5050565b6200042282826200052360201b60201c565b620004fd57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004a2620001b260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620005198383836200058d60201b6200106d1760201c565b505050565b505050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b620005a5838383620005fd60201b620010c51760201c565b620005b56200060260201b60201c565b15620005f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005ef90620008a6565b60405180910390fd5b505050565b505050565b6000600760009054906101000a900460ff16905090565b828054620006279062000bf8565b90600052602060002090601f0160209004810192826200064b576000855562000697565b82601f106200066657805160ff191683800117855562000697565b8280016001018555821562000697579182015b828111156200069657825182559160200191906001019062000679565b5b509050620006a69190620006aa565b5090565b5b80821115620006c5576000816000905550600101620006ab565b5090565b6000620006e0620006da846200090e565b620008e5565b905082815260208101848484011115620006ff57620006fe62000cf6565b5b6200070c84828562000bc2565b509392505050565b600082601f8301126200072c576200072b62000cf1565b5b81516200073e848260208601620006c9565b91505092915050565b600081519050620007588162000d9b565b92915050565b6000815190506200076f8162000db5565b92915050565b6000806000806080858703121562000792576200079162000d00565b5b600085015167ffffffffffffffff811115620007b357620007b262000cfb565b5b620007c18782880162000714565b945050602085015167ffffffffffffffff811115620007e557620007e462000cfb565b5b620007f38782880162000714565b9350506040620008068782880162000747565b925050606062000819878288016200075e565b91505092959194509250565b600062000834601f8362000944565b9150620008418262000d23565b602082019050919050565b60006200085b602a8362000944565b9150620008688262000d4c565b604082019050919050565b6200087e8162000bab565b82525050565b600060208201905081810360008301526200089f8162000825565b9050919050565b60006020820190508181036000830152620008c1816200084c565b9050919050565b6000602082019050620008df600083018462000873565b92915050565b6000620008f162000904565b9050620008ff828262000c2e565b919050565b6000604051905090565b600067ffffffffffffffff8211156200092c576200092b62000cc2565b5b620009378262000d05565b9050602081019050919050565b600082825260208201905092915050565b6000620009628262000bab565b91506200096f8362000bab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009a757620009a662000c64565b5b828201905092915050565b6000808291508390505b600185111562000a0457808604811115620009dc57620009db62000c64565b5b6001851615620009ec5780820291505b8081029050620009fc8562000d16565b9450620009bc565b94509492505050565b600062000a1a8262000bab565b915062000a278362000bb5565b925062000a567fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a5e565b905092915050565b60008262000a70576001905062000b43565b8162000a80576000905062000b43565b816001811462000a99576002811462000aa45762000ada565b600191505062000b43565b60ff84111562000ab95762000ab862000c64565b5b8360020a91508482111562000ad35762000ad262000c64565b5b5062000b43565b5060208310610133831016604e8410600b841016171562000b145782820a90508381111562000b0e5762000b0d62000c64565b5b62000b43565b62000b238484846001620009b2565b9250905081840481111562000b3d5762000b3c62000c64565b5b81810290505b9392505050565b600062000b578262000bab565b915062000b648362000bab565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ba05762000b9f62000c64565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60005b8381101562000be257808201518184015260208101905062000bc5565b8381111562000bf2576000848401525b50505050565b6000600282049050600182168062000c1157607f821691505b6020821081141562000c285762000c2762000c93565b5b50919050565b62000c398262000d05565b810181811067ffffffffffffffff8211171562000c5b5762000c5a62000cc2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b62000da68162000bab565b811462000db257600080fd5b50565b62000dc08162000bb5565b811462000dcc57600080fd5b50565b61328f8062000ddf6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a217fddf116100a2578063d547741f11610071578063d547741f1461051e578063dd62ed3e1461053a578063e63ab1e91461056a578063f2fde38b14610588576101cf565b8063a217fddf14610482578063a457c2d7146104a0578063a9059cbb146104d0578063d539139314610500576101cf565b80638456cb59116100de5780638456cb591461040c5780638da5cb5b1461041657806391d148541461043457806395d89b4114610464576101cf565b806370a08231146103b6578063715018a6146103e657806379cc6790146103f0576101cf565b8063313ce567116101715780633f4ba83a1161014b5780633f4ba83a1461035657806340c10f191461036057806342966c681461037c5780635c975abb14610398576101cf565b8063313ce567146102ec57806336568abe1461030a5780633950935114610326576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd14610270578063248a9ca3146102a05780632f2ff15d146102d0576101cf565b806301ffc9a7146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e99190612140565b6105a4565b6040516101fb91906125c9565b60405180910390f35b61020c61061e565b60405161021991906125ff565b60405180910390f35b61023c60048036038101906102379190612093565b6106b0565b60405161024991906125c9565b60405180910390f35b61025a6106ce565b60405161026791906128c1565b60405180910390f35b61028a60048036038101906102859190612040565b6106d8565b60405161029791906125c9565b60405180910390f35b6102ba60048036038101906102b591906120d3565b6107d0565b6040516102c791906125e4565b60405180910390f35b6102ea60048036038101906102e59190612100565b6107ef565b005b6102f4610818565b60405161030191906128dc565b60405180910390f35b610324600480360381019061031f9190612100565b61082f565b005b610340600480360381019061033b9190612093565b6108b2565b60405161034d91906125c9565b60405180910390f35b61035e61095e565b005b61037a60048036038101906103759190612093565b6109d8565b005b6103966004803603810190610391919061216d565b610a56565b005b6103a0610a6a565b6040516103ad91906125c9565b60405180910390f35b6103d060048036038101906103cb9190611fd3565b610a81565b6040516103dd91906128c1565b60405180910390f35b6103ee610aca565b005b61040a60048036038101906104059190612093565b610b52565b005b610414610bcd565b005b61041e610c47565b60405161042b91906125ae565b60405180910390f35b61044e60048036038101906104499190612100565b610c71565b60405161045b91906125c9565b60405180910390f35b61046c610cdb565b60405161047991906125ff565b60405180910390f35b61048a610d6d565b60405161049791906125e4565b60405180910390f35b6104ba60048036038101906104b59190612093565b610d74565b6040516104c791906125c9565b60405180910390f35b6104ea60048036038101906104e59190612093565b610e5f565b6040516104f791906125c9565b60405180910390f35b610508610e7d565b60405161051591906125e4565b60405180910390f35b61053860048036038101906105339190612100565b610ea1565b005b610554600480360381019061054f9190612000565b610eca565b60405161056191906128c1565b60405180910390f35b610572610f51565b60405161057f91906125e4565b60405180910390f35b6105a2600480360381019061059d9190611fd3565b610f75565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106175750610616826110ca565b5b9050919050565b60606005805461062d90612aea565b80601f016020809104026020016040519081016040528092919081815260200182805461065990612aea565b80156106a65780601f1061067b576101008083540402835291602001916106a6565b820191906000526020600020905b81548152906001019060200180831161068957829003601f168201915b5050505050905090565b60006106c46106bd611134565b848461113c565b6001905092915050565b6000600454905090565b60006106e5848484611307565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610730611134565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a790612741565b60405180910390fd5b6107c4856107bc611134565b85840361113c565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6107f8826107d0565b61080981610804611134565b61158b565b6108138383611628565b505050565b6000600760019054906101000a900460ff16905090565b610837611134565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b90612861565b60405180910390fd5b6108ae8282611708565b5050565b60006109546108bf611134565b8484600360006108cd611134565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094f919061291e565b61113c565b6001905092915050565b61098f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61098a611134565b610c71565b6109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c5906126a1565b60405180910390fd5b6109d66117e9565b565b610a097f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a04611134565b610c71565b610a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3f90612781565b60405180910390fd5b610a52828261188b565b5050565b610a67610a61611134565b826119ec565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ad2611134565b73ffffffffffffffffffffffffffffffffffffffff16610af0610c47565b73ffffffffffffffffffffffffffffffffffffffff1614610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d90612761565b60405180910390fd5b610b506000611bc5565b565b6000610b6583610b60611134565b610eca565b905081811015610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba1906127a1565b60405180910390fd5b610bbe83610bb6611134565b84840361113c565b610bc883836119ec565b505050565b610bfe7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610bf9611134565b610c71565b610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490612821565b60405180910390fd5b610c45611c8b565b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610cea90612aea565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1690612aea565b8015610d635780601f10610d3857610100808354040283529160200191610d63565b820191906000526020600020905b815481529060010190602001808311610d4657829003601f168201915b5050505050905090565b6000801b81565b60008060036000610d83611134565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790612841565b60405180910390fd5b610e54610e4b611134565b8585840361113c565b600191505092915050565b6000610e73610e6c611134565b8484611307565b6001905092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610eaa826107d0565b610ebb81610eb6611134565b61158b565b610ec58383611708565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610f7d611134565b73ffffffffffffffffffffffffffffffffffffffff16610f9b610c47565b73ffffffffffffffffffffffffffffffffffffffff1614610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890612761565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611061576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611058906126c1565b60405180910390fd5b61106a81611bc5565b50565b6110788383836110c5565b611080610a6a565b156110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b7906128a1565b60405180910390fd5b505050565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390612801565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611213906126e1565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112fa91906128c1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e906127e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de90612641565b60405180910390fd5b6113f2838383611d2e565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090612701565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150e919061291e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161157291906128c1565b60405180910390a3611585848484611d3e565b50505050565b6115958282610c71565b611624576115ba8173ffffffffffffffffffffffffffffffffffffffff166014611d43565b6115c88360001c6020611d43565b6040516020016115d9929190612574565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b91906125ff565b60405180910390fd5b5050565b6116328282610c71565b61170457600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116a9611134565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6117128282610c71565b156117e557600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061178a611134565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6117f1610a6a565b611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790612661565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611874611134565b60405161188191906125ae565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290612881565b60405180910390fd5b61190760008383611d2e565b8060046000828254611919919061291e565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461196f919061291e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119d491906128c1565b60405180910390a36119e860008383611d3e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a53906127c1565b60405180910390fd5b611a6882600083611d2e565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690612681565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160046000828254611b4791906129ce565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bac91906128c1565b60405180910390a3611bc083600084611d3e565b505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c93610a6a565b15611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca90612721565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d17611134565b604051611d2491906125ae565b60405180910390a1565b611d3983838361106d565b505050565b505050565b606060006002836002611d569190612974565b611d60919061291e565b67ffffffffffffffff811115611d7957611d78612ba9565b5b6040519080825280601f01601f191660200182016040528015611dab5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611de357611de2612b7a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611e4757611e46612b7a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611e879190612974565b611e91919061291e565b90505b6001811115611f31577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611ed357611ed2612b7a565b5b1a60f81b828281518110611eea57611ee9612b7a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611f2a90612ac0565b9050611e94565b5060008414611f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6c90612621565b60405180910390fd5b8091505092915050565b600081359050611f8e816131fd565b92915050565b600081359050611fa381613214565b92915050565b600081359050611fb88161322b565b92915050565b600081359050611fcd81613242565b92915050565b600060208284031215611fe957611fe8612bd8565b5b6000611ff784828501611f7f565b91505092915050565b6000806040838503121561201757612016612bd8565b5b600061202585828601611f7f565b925050602061203685828601611f7f565b9150509250929050565b60008060006060848603121561205957612058612bd8565b5b600061206786828701611f7f565b935050602061207886828701611f7f565b925050604061208986828701611fbe565b9150509250925092565b600080604083850312156120aa576120a9612bd8565b5b60006120b885828601611f7f565b92505060206120c985828601611fbe565b9150509250929050565b6000602082840312156120e9576120e8612bd8565b5b60006120f784828501611f94565b91505092915050565b6000806040838503121561211757612116612bd8565b5b600061212585828601611f94565b925050602061213685828601611f7f565b9150509250929050565b60006020828403121561215657612155612bd8565b5b600061216484828501611fa9565b91505092915050565b60006020828403121561218357612182612bd8565b5b600061219184828501611fbe565b91505092915050565b6121a381612a02565b82525050565b6121b281612a14565b82525050565b6121c181612a20565b82525050565b60006121d2826128f7565b6121dc8185612902565b93506121ec818560208601612a8d565b6121f581612bdd565b840191505092915050565b600061220b826128f7565b6122158185612913565b9350612225818560208601612a8d565b80840191505092915050565b600061223e602083612902565b915061224982612bee565b602082019050919050565b6000612261602383612902565b915061226c82612c17565b604082019050919050565b6000612284601483612902565b915061228f82612c66565b602082019050919050565b60006122a7602283612902565b91506122b282612c8f565b604082019050919050565b60006122ca603983612902565b91506122d582612cde565b604082019050919050565b60006122ed602683612902565b91506122f882612d2d565b604082019050919050565b6000612310602283612902565b915061231b82612d7c565b604082019050919050565b6000612333602683612902565b915061233e82612dcb565b604082019050919050565b6000612356601083612902565b915061236182612e1a565b602082019050919050565b6000612379602883612902565b915061238482612e43565b604082019050919050565b600061239c602083612902565b91506123a782612e92565b602082019050919050565b60006123bf603683612902565b91506123ca82612ebb565b604082019050919050565b60006123e2602483612902565b91506123ed82612f0a565b604082019050919050565b6000612405602183612902565b915061241082612f59565b604082019050919050565b6000612428602583612902565b915061243382612fa8565b604082019050919050565b600061244b602483612902565b915061245682612ff7565b604082019050919050565b600061246e603783612902565b915061247982613046565b604082019050919050565b6000612491601783612913565b915061249c82613095565b601782019050919050565b60006124b4602583612902565b91506124bf826130be565b604082019050919050565b60006124d7601183612913565b91506124e28261310d565b601182019050919050565b60006124fa602f83612902565b915061250582613136565b604082019050919050565b600061251d601f83612902565b915061252882613185565b602082019050919050565b6000612540602a83612902565b915061254b826131ae565b604082019050919050565b61255f81612a76565b82525050565b61256e81612a80565b82525050565b600061257f82612484565b915061258b8285612200565b9150612596826124ca565b91506125a28284612200565b91508190509392505050565b60006020820190506125c3600083018461219a565b92915050565b60006020820190506125de60008301846121a9565b92915050565b60006020820190506125f960008301846121b8565b92915050565b6000602082019050818103600083015261261981846121c7565b905092915050565b6000602082019050818103600083015261263a81612231565b9050919050565b6000602082019050818103600083015261265a81612254565b9050919050565b6000602082019050818103600083015261267a81612277565b9050919050565b6000602082019050818103600083015261269a8161229a565b9050919050565b600060208201905081810360008301526126ba816122bd565b9050919050565b600060208201905081810360008301526126da816122e0565b9050919050565b600060208201905081810360008301526126fa81612303565b9050919050565b6000602082019050818103600083015261271a81612326565b9050919050565b6000602082019050818103600083015261273a81612349565b9050919050565b6000602082019050818103600083015261275a8161236c565b9050919050565b6000602082019050818103600083015261277a8161238f565b9050919050565b6000602082019050818103600083015261279a816123b2565b9050919050565b600060208201905081810360008301526127ba816123d5565b9050919050565b600060208201905081810360008301526127da816123f8565b9050919050565b600060208201905081810360008301526127fa8161241b565b9050919050565b6000602082019050818103600083015261281a8161243e565b9050919050565b6000602082019050818103600083015261283a81612461565b9050919050565b6000602082019050818103600083015261285a816124a7565b9050919050565b6000602082019050818103600083015261287a816124ed565b9050919050565b6000602082019050818103600083015261289a81612510565b9050919050565b600060208201905081810360008301526128ba81612533565b9050919050565b60006020820190506128d66000830184612556565b92915050565b60006020820190506128f16000830184612565565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061292982612a76565b915061293483612a76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561296957612968612b1c565b5b828201905092915050565b600061297f82612a76565b915061298a83612a76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129c3576129c2612b1c565b5b828202905092915050565b60006129d982612a76565b91506129e483612a76565b9250828210156129f7576129f6612b1c565b5b828203905092915050565b6000612a0d82612a56565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612aab578082015181840152602081019050612a90565b83811115612aba576000848401525b50505050565b6000612acb82612a76565b91506000821415612adf57612ade612b1c565b5b600182039050919050565b60006002820490506001821680612b0257607f821691505b60208210811415612b1657612b15612b4b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61320681612a02565b811461321157600080fd5b50565b61321d81612a20565b811461322857600080fd5b50565b61323481612a2a565b811461323f57600080fd5b50565b61324b81612a76565b811461325657600080fd5b5056fea2646970667358221220d2d835ce0ed03edc2e525faf01f77cefcf73db9f183f6952c3c559e90e9c330e64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000002540be4000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000752656c74696d650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035254430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a217fddf116100a2578063d547741f11610071578063d547741f1461051e578063dd62ed3e1461053a578063e63ab1e91461056a578063f2fde38b14610588576101cf565b8063a217fddf14610482578063a457c2d7146104a0578063a9059cbb146104d0578063d539139314610500576101cf565b80638456cb59116100de5780638456cb591461040c5780638da5cb5b1461041657806391d148541461043457806395d89b4114610464576101cf565b806370a08231146103b6578063715018a6146103e657806379cc6790146103f0576101cf565b8063313ce567116101715780633f4ba83a1161014b5780633f4ba83a1461035657806340c10f191461036057806342966c681461037c5780635c975abb14610398576101cf565b8063313ce567146102ec57806336568abe1461030a5780633950935114610326576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd14610270578063248a9ca3146102a05780632f2ff15d146102d0576101cf565b806301ffc9a7146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e99190612140565b6105a4565b6040516101fb91906125c9565b60405180910390f35b61020c61061e565b60405161021991906125ff565b60405180910390f35b61023c60048036038101906102379190612093565b6106b0565b60405161024991906125c9565b60405180910390f35b61025a6106ce565b60405161026791906128c1565b60405180910390f35b61028a60048036038101906102859190612040565b6106d8565b60405161029791906125c9565b60405180910390f35b6102ba60048036038101906102b591906120d3565b6107d0565b6040516102c791906125e4565b60405180910390f35b6102ea60048036038101906102e59190612100565b6107ef565b005b6102f4610818565b60405161030191906128dc565b60405180910390f35b610324600480360381019061031f9190612100565b61082f565b005b610340600480360381019061033b9190612093565b6108b2565b60405161034d91906125c9565b60405180910390f35b61035e61095e565b005b61037a60048036038101906103759190612093565b6109d8565b005b6103966004803603810190610391919061216d565b610a56565b005b6103a0610a6a565b6040516103ad91906125c9565b60405180910390f35b6103d060048036038101906103cb9190611fd3565b610a81565b6040516103dd91906128c1565b60405180910390f35b6103ee610aca565b005b61040a60048036038101906104059190612093565b610b52565b005b610414610bcd565b005b61041e610c47565b60405161042b91906125ae565b60405180910390f35b61044e60048036038101906104499190612100565b610c71565b60405161045b91906125c9565b60405180910390f35b61046c610cdb565b60405161047991906125ff565b60405180910390f35b61048a610d6d565b60405161049791906125e4565b60405180910390f35b6104ba60048036038101906104b59190612093565b610d74565b6040516104c791906125c9565b60405180910390f35b6104ea60048036038101906104e59190612093565b610e5f565b6040516104f791906125c9565b60405180910390f35b610508610e7d565b60405161051591906125e4565b60405180910390f35b61053860048036038101906105339190612100565b610ea1565b005b610554600480360381019061054f9190612000565b610eca565b60405161056191906128c1565b60405180910390f35b610572610f51565b60405161057f91906125e4565b60405180910390f35b6105a2600480360381019061059d9190611fd3565b610f75565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106175750610616826110ca565b5b9050919050565b60606005805461062d90612aea565b80601f016020809104026020016040519081016040528092919081815260200182805461065990612aea565b80156106a65780601f1061067b576101008083540402835291602001916106a6565b820191906000526020600020905b81548152906001019060200180831161068957829003601f168201915b5050505050905090565b60006106c46106bd611134565b848461113c565b6001905092915050565b6000600454905090565b60006106e5848484611307565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610730611134565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a790612741565b60405180910390fd5b6107c4856107bc611134565b85840361113c565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6107f8826107d0565b61080981610804611134565b61158b565b6108138383611628565b505050565b6000600760019054906101000a900460ff16905090565b610837611134565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b90612861565b60405180910390fd5b6108ae8282611708565b5050565b60006109546108bf611134565b8484600360006108cd611134565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094f919061291e565b61113c565b6001905092915050565b61098f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61098a611134565b610c71565b6109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c5906126a1565b60405180910390fd5b6109d66117e9565b565b610a097f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a04611134565b610c71565b610a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3f90612781565b60405180910390fd5b610a52828261188b565b5050565b610a67610a61611134565b826119ec565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ad2611134565b73ffffffffffffffffffffffffffffffffffffffff16610af0610c47565b73ffffffffffffffffffffffffffffffffffffffff1614610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d90612761565b60405180910390fd5b610b506000611bc5565b565b6000610b6583610b60611134565b610eca565b905081811015610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba1906127a1565b60405180910390fd5b610bbe83610bb6611134565b84840361113c565b610bc883836119ec565b505050565b610bfe7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610bf9611134565b610c71565b610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490612821565b60405180910390fd5b610c45611c8b565b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610cea90612aea565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1690612aea565b8015610d635780601f10610d3857610100808354040283529160200191610d63565b820191906000526020600020905b815481529060010190602001808311610d4657829003601f168201915b5050505050905090565b6000801b81565b60008060036000610d83611134565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790612841565b60405180910390fd5b610e54610e4b611134565b8585840361113c565b600191505092915050565b6000610e73610e6c611134565b8484611307565b6001905092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610eaa826107d0565b610ebb81610eb6611134565b61158b565b610ec58383611708565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610f7d611134565b73ffffffffffffffffffffffffffffffffffffffff16610f9b610c47565b73ffffffffffffffffffffffffffffffffffffffff1614610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890612761565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611061576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611058906126c1565b60405180910390fd5b61106a81611bc5565b50565b6110788383836110c5565b611080610a6a565b156110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b7906128a1565b60405180910390fd5b505050565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390612801565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611213906126e1565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112fa91906128c1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e906127e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de90612641565b60405180910390fd5b6113f2838383611d2e565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090612701565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150e919061291e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161157291906128c1565b60405180910390a3611585848484611d3e565b50505050565b6115958282610c71565b611624576115ba8173ffffffffffffffffffffffffffffffffffffffff166014611d43565b6115c88360001c6020611d43565b6040516020016115d9929190612574565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b91906125ff565b60405180910390fd5b5050565b6116328282610c71565b61170457600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116a9611134565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6117128282610c71565b156117e557600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061178a611134565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6117f1610a6a565b611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790612661565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611874611134565b60405161188191906125ae565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290612881565b60405180910390fd5b61190760008383611d2e565b8060046000828254611919919061291e565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461196f919061291e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119d491906128c1565b60405180910390a36119e860008383611d3e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a53906127c1565b60405180910390fd5b611a6882600083611d2e565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690612681565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160046000828254611b4791906129ce565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bac91906128c1565b60405180910390a3611bc083600084611d3e565b505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c93610a6a565b15611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca90612721565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d17611134565b604051611d2491906125ae565b60405180910390a1565b611d3983838361106d565b505050565b505050565b606060006002836002611d569190612974565b611d60919061291e565b67ffffffffffffffff811115611d7957611d78612ba9565b5b6040519080825280601f01601f191660200182016040528015611dab5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611de357611de2612b7a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611e4757611e46612b7a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611e879190612974565b611e91919061291e565b90505b6001811115611f31577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611ed357611ed2612b7a565b5b1a60f81b828281518110611eea57611ee9612b7a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611f2a90612ac0565b9050611e94565b5060008414611f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6c90612621565b60405180910390fd5b8091505092915050565b600081359050611f8e816131fd565b92915050565b600081359050611fa381613214565b92915050565b600081359050611fb88161322b565b92915050565b600081359050611fcd81613242565b92915050565b600060208284031215611fe957611fe8612bd8565b5b6000611ff784828501611f7f565b91505092915050565b6000806040838503121561201757612016612bd8565b5b600061202585828601611f7f565b925050602061203685828601611f7f565b9150509250929050565b60008060006060848603121561205957612058612bd8565b5b600061206786828701611f7f565b935050602061207886828701611f7f565b925050604061208986828701611fbe565b9150509250925092565b600080604083850312156120aa576120a9612bd8565b5b60006120b885828601611f7f565b92505060206120c985828601611fbe565b9150509250929050565b6000602082840312156120e9576120e8612bd8565b5b60006120f784828501611f94565b91505092915050565b6000806040838503121561211757612116612bd8565b5b600061212585828601611f94565b925050602061213685828601611f7f565b9150509250929050565b60006020828403121561215657612155612bd8565b5b600061216484828501611fa9565b91505092915050565b60006020828403121561218357612182612bd8565b5b600061219184828501611fbe565b91505092915050565b6121a381612a02565b82525050565b6121b281612a14565b82525050565b6121c181612a20565b82525050565b60006121d2826128f7565b6121dc8185612902565b93506121ec818560208601612a8d565b6121f581612bdd565b840191505092915050565b600061220b826128f7565b6122158185612913565b9350612225818560208601612a8d565b80840191505092915050565b600061223e602083612902565b915061224982612bee565b602082019050919050565b6000612261602383612902565b915061226c82612c17565b604082019050919050565b6000612284601483612902565b915061228f82612c66565b602082019050919050565b60006122a7602283612902565b91506122b282612c8f565b604082019050919050565b60006122ca603983612902565b91506122d582612cde565b604082019050919050565b60006122ed602683612902565b91506122f882612d2d565b604082019050919050565b6000612310602283612902565b915061231b82612d7c565b604082019050919050565b6000612333602683612902565b915061233e82612dcb565b604082019050919050565b6000612356601083612902565b915061236182612e1a565b602082019050919050565b6000612379602883612902565b915061238482612e43565b604082019050919050565b600061239c602083612902565b91506123a782612e92565b602082019050919050565b60006123bf603683612902565b91506123ca82612ebb565b604082019050919050565b60006123e2602483612902565b91506123ed82612f0a565b604082019050919050565b6000612405602183612902565b915061241082612f59565b604082019050919050565b6000612428602583612902565b915061243382612fa8565b604082019050919050565b600061244b602483612902565b915061245682612ff7565b604082019050919050565b600061246e603783612902565b915061247982613046565b604082019050919050565b6000612491601783612913565b915061249c82613095565b601782019050919050565b60006124b4602583612902565b91506124bf826130be565b604082019050919050565b60006124d7601183612913565b91506124e28261310d565b601182019050919050565b60006124fa602f83612902565b915061250582613136565b604082019050919050565b600061251d601f83612902565b915061252882613185565b602082019050919050565b6000612540602a83612902565b915061254b826131ae565b604082019050919050565b61255f81612a76565b82525050565b61256e81612a80565b82525050565b600061257f82612484565b915061258b8285612200565b9150612596826124ca565b91506125a28284612200565b91508190509392505050565b60006020820190506125c3600083018461219a565b92915050565b60006020820190506125de60008301846121a9565b92915050565b60006020820190506125f960008301846121b8565b92915050565b6000602082019050818103600083015261261981846121c7565b905092915050565b6000602082019050818103600083015261263a81612231565b9050919050565b6000602082019050818103600083015261265a81612254565b9050919050565b6000602082019050818103600083015261267a81612277565b9050919050565b6000602082019050818103600083015261269a8161229a565b9050919050565b600060208201905081810360008301526126ba816122bd565b9050919050565b600060208201905081810360008301526126da816122e0565b9050919050565b600060208201905081810360008301526126fa81612303565b9050919050565b6000602082019050818103600083015261271a81612326565b9050919050565b6000602082019050818103600083015261273a81612349565b9050919050565b6000602082019050818103600083015261275a8161236c565b9050919050565b6000602082019050818103600083015261277a8161238f565b9050919050565b6000602082019050818103600083015261279a816123b2565b9050919050565b600060208201905081810360008301526127ba816123d5565b9050919050565b600060208201905081810360008301526127da816123f8565b9050919050565b600060208201905081810360008301526127fa8161241b565b9050919050565b6000602082019050818103600083015261281a8161243e565b9050919050565b6000602082019050818103600083015261283a81612461565b9050919050565b6000602082019050818103600083015261285a816124a7565b9050919050565b6000602082019050818103600083015261287a816124ed565b9050919050565b6000602082019050818103600083015261289a81612510565b9050919050565b600060208201905081810360008301526128ba81612533565b9050919050565b60006020820190506128d66000830184612556565b92915050565b60006020820190506128f16000830184612565565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061292982612a76565b915061293483612a76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561296957612968612b1c565b5b828201905092915050565b600061297f82612a76565b915061298a83612a76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129c3576129c2612b1c565b5b828202905092915050565b60006129d982612a76565b91506129e483612a76565b9250828210156129f7576129f6612b1c565b5b828203905092915050565b6000612a0d82612a56565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612aab578082015181840152602081019050612a90565b83811115612aba576000848401525b50505050565b6000612acb82612a76565b91506000821415612adf57612ade612b1c565b5b600182039050919050565b60006002820490506001821680612b0257607f821691505b60208210811415612b1657612b15612b4b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61320681612a02565b811461321157600080fd5b50565b61321d81612a20565b811461322857600080fd5b50565b61323481612a2a565b811461323f57600080fd5b50565b61324b81612a76565b811461325657600080fd5b5056fea2646970667358221220d2d835ce0ed03edc2e525faf01f77cefcf73db9f183f6952c3c559e90e9c330e64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000002540be4000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000752656c74696d650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035254430000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenName (string): Reltime
Arg [1] : tokenSymbol (string): RTC
Arg [2] : initialSupply (uint256): 10000000000
Arg [3] : decimal_ (uint8): 18

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000002540be400
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 52656c74696d6500000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5254430000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

37125:1641:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32428:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12547:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14714:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13667:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15365:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33839:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34224:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37882:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35272:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16266:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38394:178;;;:::i;:::-;;37992:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22999:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9288:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13838:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26305:94;;;:::i;:::-;;23409:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38208:172;;;:::i;:::-;;25654:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32724:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12766:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31815:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16984:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14178:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37229:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34616:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14416:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37298:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26554:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32428:204;32513:4;32552:32;32537:47;;;:11;:47;;;;:87;;;;32588:36;32612:11;32588:23;:36::i;:::-;32537:87;32530:94;;32428:204;;;:::o;12547:100::-;12601:13;12634:5;12627:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12547:100;:::o;14714:169::-;14797:4;14814:39;14823:12;:10;:12::i;:::-;14837:7;14846:6;14814:8;:39::i;:::-;14871:4;14864:11;;14714:169;;;;:::o;13667:108::-;13728:7;13755:12;;13748:19;;13667:108;:::o;15365:492::-;15505:4;15522:36;15532:6;15540:9;15551:6;15522:9;:36::i;:::-;15571:24;15598:11;:19;15610:6;15598:19;;;;;;;;;;;;;;;:33;15618:12;:10;:12::i;:::-;15598:33;;;;;;;;;;;;;;;;15571:60;;15670:6;15650:16;:26;;15642:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;15757:57;15766:6;15774:12;:10;:12::i;:::-;15807:6;15788:16;:25;15757:8;:57::i;:::-;15845:4;15838:11;;;15365:492;;;;;:::o;33839:123::-;33905:7;33932:6;:12;33939:4;33932:12;;;;;;;;;;;:22;;;33925:29;;33839:123;;;:::o;34224:147::-;34307:18;34320:4;34307:12;:18::i;:::-;32306:30;32317:4;32323:12;:10;:12::i;:::-;32306:10;:30::i;:::-;34338:25:::1;34349:4;34355:7;34338:10;:25::i;:::-;34224:147:::0;;;:::o;37882:98::-;37940:5;37965:7;;;;;;;;;;;37958:14;;37882:98;:::o;35272:218::-;35379:12;:10;:12::i;:::-;35368:23;;:7;:23;;;35360:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;35456:26;35468:4;35474:7;35456:11;:26::i;:::-;35272:218;;:::o;16266:215::-;16354:4;16371:80;16380:12;:10;:12::i;:::-;16394:7;16440:10;16403:11;:25;16415:12;:10;:12::i;:::-;16403:25;;;;;;;;;;;;;;;:34;16429:7;16403:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;16371:8;:80::i;:::-;16469:4;16462:11;;16266:215;;;;:::o;38394:178::-;38447:34;37336:24;38468:12;:10;:12::i;:::-;38447:7;:34::i;:::-;38439:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;38554:10;:8;:10::i;:::-;38394:178::o;37992:205::-;38068:34;37267:24;38089:12;:10;:12::i;:::-;38068:7;:34::i;:::-;38060:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;38172:17;38178:2;38182:6;38172:5;:17::i;:::-;37992:205;;:::o;22999:91::-;23055:27;23061:12;:10;:12::i;:::-;23075:6;23055:5;:27::i;:::-;22999:91;:::o;9288:86::-;9335:4;9359:7;;;;;;;;;;;9352:14;;9288:86;:::o;13838:127::-;13912:7;13939:9;:18;13949:7;13939:18;;;;;;;;;;;;;;;;13932:25;;13838:127;;;:::o;26305:94::-;25885:12;:10;:12::i;:::-;25874:23;;:7;:5;:7::i;:::-;:23;;;25866:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26370:21:::1;26388:1;26370:9;:21::i;:::-;26305:94::o:0;23409:368::-;23486:24;23513:32;23523:7;23532:12;:10;:12::i;:::-;23513:9;:32::i;:::-;23486:59;;23584:6;23564:16;:26;;23556:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;23667:58;23676:7;23685:12;:10;:12::i;:::-;23718:6;23699:16;:25;23667:8;:58::i;:::-;23747:22;23753:7;23762:6;23747:5;:22::i;:::-;23475:302;23409:368;;:::o;38208:172::-;38259:34;37336:24;38280:12;:10;:12::i;:::-;38259:7;:34::i;:::-;38251:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;38364:8;:6;:8::i;:::-;38208:172::o;25654:87::-;25700:7;25727:6;;;;;;;;;;;25720:13;;25654:87;:::o;32724:139::-;32802:4;32826:6;:12;32833:4;32826:12;;;;;;;;;;;:20;;:29;32847:7;32826:29;;;;;;;;;;;;;;;;;;;;;;;;;32819:36;;32724:139;;;;:::o;12766:104::-;12822:13;12855:7;12848:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12766:104;:::o;31815:49::-;31860:4;31815:49;;;:::o;16984:413::-;17077:4;17094:24;17121:11;:25;17133:12;:10;:12::i;:::-;17121:25;;;;;;;;;;;;;;;:34;17147:7;17121:34;;;;;;;;;;;;;;;;17094:61;;17194:15;17174:16;:35;;17166:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;17287:67;17296:12;:10;:12::i;:::-;17310:7;17338:15;17319:16;:34;17287:8;:67::i;:::-;17385:4;17378:11;;;16984:413;;;;:::o;14178:175::-;14264:4;14281:42;14291:12;:10;:12::i;:::-;14305:9;14316:6;14281:9;:42::i;:::-;14341:4;14334:11;;14178:175;;;;:::o;37229:62::-;37267:24;37229:62;:::o;34616:149::-;34700:18;34713:4;34700:12;:18::i;:::-;32306:30;32317:4;32323:12;:10;:12::i;:::-;32306:10;:30::i;:::-;34731:26:::1;34743:4;34749:7;34731:11;:26::i;:::-;34616:149:::0;;;:::o;14416:151::-;14505:7;14532:11;:18;14544:5;14532:18;;;;;;;;;;;;;;;:27;14551:7;14532:27;;;;;;;;;;;;;;;;14525:34;;14416:151;;;;:::o;37298:62::-;37336:24;37298:62;:::o;26554:192::-;25885:12;:10;:12::i;:::-;25874:23;;:7;:5;:7::i;:::-;:23;;;25866:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26663:1:::1;26643:22;;:8;:22;;;;26635:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26719:19;26729:8;26719:9;:19::i;:::-;26554:192:::0;:::o;24377:272::-;24520:44;24547:4;24553:2;24557:6;24520:26;:44::i;:::-;24586:8;:6;:8::i;:::-;24585:9;24577:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;24377:272;;;:::o;21648:125::-;;;;:::o;5141:157::-;5226:4;5265:25;5250:40;;;:11;:40;;;;5243:47;;5141:157;;;:::o;8000:98::-;8053:7;8080:10;8073:17;;8000:98;:::o;20668:380::-;20821:1;20804:19;;:5;:19;;;;20796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20902:1;20883:21;;:7;:21;;;;20875:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20986:6;20956:11;:18;20968:5;20956:18;;;;;;;;;;;;;;;:27;20975:7;20956:27;;;;;;;;;;;;;;;:36;;;;21024:7;21008:32;;21017:5;21008:32;;;21033:6;21008:32;;;;;;:::i;:::-;;;;;;;;20668:380;;;:::o;17887:733::-;18045:1;18027:20;;:6;:20;;;;18019:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;18129:1;18108:23;;:9;:23;;;;18100:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;18184:47;18205:6;18213:9;18224:6;18184:20;:47::i;:::-;18244:21;18268:9;:17;18278:6;18268:17;;;;;;;;;;;;;;;;18244:41;;18321:6;18304:13;:23;;18296:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;18442:6;18426:13;:22;18406:9;:17;18416:6;18406:17;;;;;;;;;;;;;;;:42;;;;18494:6;18470:9;:20;18480:9;18470:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;18535:9;18518:35;;18527:6;18518:35;;;18546:6;18518:35;;;;;;:::i;:::-;;;;;;;;18566:46;18586:6;18594:9;18605:6;18566:19;:46::i;:::-;18008:612;17887:733;;;:::o;33153:497::-;33234:22;33242:4;33248:7;33234;:22::i;:::-;33229:414;;33422:41;33450:7;33422:41;;33460:2;33422:19;:41::i;:::-;33536:38;33564:4;33556:13;;33571:2;33536:19;:38::i;:::-;33327:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33273:358;;;;;;;;;;;:::i;:::-;;;;;;;;33229:414;33153:497;;:::o;36576:229::-;36651:22;36659:4;36665:7;36651;:22::i;:::-;36646:152;;36722:4;36690:6;:12;36697:4;36690:12;;;;;;;;;;;:20;;:29;36711:7;36690:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;36773:12;:10;:12::i;:::-;36746:40;;36764:7;36746:40;;36758:4;36746:40;;;;;;;;;;36646:152;36576:229;;:::o;36813:230::-;36888:22;36896:4;36902:7;36888;:22::i;:::-;36884:152;;;36959:5;36927:6;:12;36934:4;36927:12;;;;;;;;;;;:20;;:29;36948:7;36927:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;37011:12;:10;:12::i;:::-;36984:40;;37002:7;36984:40;;36996:4;36984:40;;;;;;;;;;36884:152;36813:230;;:::o;10347:120::-;9891:8;:6;:8::i;:::-;9883:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;10416:5:::1;10406:7;;:15;;;;;;;;;;;;;;;;;;10437:22;10446:12;:10;:12::i;:::-;10437:22;;;;;;:::i;:::-;;;;;;;;10347:120::o:0;18907:399::-;19010:1;18991:21;;:7;:21;;;;18983:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;19061:49;19090:1;19094:7;19103:6;19061:20;:49::i;:::-;19139:6;19123:12;;:22;;;;;;;:::i;:::-;;;;;;;;19178:6;19156:9;:18;19166:7;19156:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;19221:7;19200:37;;19217:1;19200:37;;;19230:6;19200:37;;;;;;:::i;:::-;;;;;;;;19250:48;19278:1;19282:7;19291:6;19250:19;:48::i;:::-;18907:399;;:::o;19639:591::-;19742:1;19723:21;;:7;:21;;;;19715:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19795:49;19816:7;19833:1;19837:6;19795:20;:49::i;:::-;19857:22;19882:9;:18;19892:7;19882:18;;;;;;;;;;;;;;;;19857:43;;19937:6;19919:14;:24;;19911:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20056:6;20039:14;:23;20018:9;:18;20028:7;20018:18;;;;;;;;;;;;;;;:44;;;;20100:6;20084:12;;:22;;;;;;;:::i;:::-;;;;;;;;20150:1;20124:37;;20133:7;20124:37;;;20154:6;20124:37;;;;;;:::i;:::-;;;;;;;;20174:48;20194:7;20211:1;20215:6;20174:19;:48::i;:::-;19704:526;19639:591;;:::o;26754:173::-;26810:16;26829:6;;;;;;;;;;;26810:25;;26855:8;26846:6;;:17;;;;;;;;;;;;;;;;;;26910:8;26879:40;;26900:8;26879:40;;;;;;;;;;;;26799:128;26754:173;:::o;10088:118::-;9614:8;:6;:8::i;:::-;9613:9;9605:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;10158:4:::1;10148:7;;:14;;;;;;;;;;;;;;;;;;10178:20;10185:12;:10;:12::i;:::-;10178:20;;;;;;:::i;:::-;;;;;;;;10088:118::o:0;38580:183::-;38711:44;38738:4;38744:2;38748:6;38711:26;:44::i;:::-;38580:183;;;:::o;22377:124::-;;;;:::o;6917:451::-;6992:13;7018:19;7063:1;7054:6;7050:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;7040:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7018:47;;7076:15;:6;7083:1;7076:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;7102;:6;7109:1;7102:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;7133:9;7158:1;7149:6;7145:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;7133:26;;7128:135;7165:1;7161;:5;7128:135;;;7200:12;7221:3;7213:5;:11;7200:25;;;;;;;:::i;:::-;;;;;7188:6;7195:1;7188:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;7250:1;7240:11;;;;;7168:3;;;;:::i;:::-;;;7128:135;;;;7290:1;7281:5;:10;7273:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;7353:6;7339:21;;;6917:451;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:137::-;342:5;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;297:137;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;440:139;;;;:::o;585:329::-;644:6;693:2;681:9;672:7;668:23;664:32;661:119;;;699:79;;:::i;:::-;661:119;819:1;844:53;889:7;880:6;869:9;865:22;844:53;:::i;:::-;834:63;;790:117;585:329;;;;:::o;920:474::-;988:6;996;1045:2;1033:9;1024:7;1020:23;1016:32;1013:119;;;1051:79;;:::i;:::-;1013:119;1171:1;1196:53;1241:7;1232:6;1221:9;1217:22;1196:53;:::i;:::-;1186:63;;1142:117;1298:2;1324:53;1369:7;1360:6;1349:9;1345:22;1324:53;:::i;:::-;1314:63;;1269:118;920:474;;;;;:::o;1400:619::-;1477:6;1485;1493;1542:2;1530:9;1521:7;1517:23;1513:32;1510:119;;;1548:79;;:::i;:::-;1510:119;1668:1;1693:53;1738:7;1729:6;1718:9;1714:22;1693:53;:::i;:::-;1683:63;;1639:117;1795:2;1821:53;1866:7;1857:6;1846:9;1842:22;1821:53;:::i;:::-;1811:63;;1766:118;1923:2;1949:53;1994:7;1985:6;1974:9;1970:22;1949:53;:::i;:::-;1939:63;;1894:118;1400:619;;;;;:::o;2025:474::-;2093:6;2101;2150:2;2138:9;2129:7;2125:23;2121:32;2118:119;;;2156:79;;:::i;:::-;2118:119;2276:1;2301:53;2346:7;2337:6;2326:9;2322:22;2301:53;:::i;:::-;2291:63;;2247:117;2403:2;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2374:118;2025:474;;;;;:::o;2505:329::-;2564:6;2613:2;2601:9;2592:7;2588:23;2584:32;2581:119;;;2619:79;;:::i;:::-;2581:119;2739:1;2764:53;2809:7;2800:6;2789:9;2785:22;2764:53;:::i;:::-;2754:63;;2710:117;2505:329;;;;:::o;2840:474::-;2908:6;2916;2965:2;2953:9;2944:7;2940:23;2936:32;2933:119;;;2971:79;;:::i;:::-;2933:119;3091:1;3116:53;3161:7;3152:6;3141:9;3137:22;3116:53;:::i;:::-;3106:63;;3062:117;3218:2;3244:53;3289:7;3280:6;3269:9;3265:22;3244:53;:::i;:::-;3234:63;;3189:118;2840:474;;;;;:::o;3320:327::-;3378:6;3427:2;3415:9;3406:7;3402:23;3398:32;3395:119;;;3433:79;;:::i;:::-;3395:119;3553:1;3578:52;3622:7;3613:6;3602:9;3598:22;3578:52;:::i;:::-;3568:62;;3524:116;3320:327;;;;:::o;3653:329::-;3712:6;3761:2;3749:9;3740:7;3736:23;3732:32;3729:119;;;3767:79;;:::i;:::-;3729:119;3887:1;3912:53;3957:7;3948:6;3937:9;3933:22;3912:53;:::i;:::-;3902:63;;3858:117;3653:329;;;;:::o;3988:118::-;4075:24;4093:5;4075:24;:::i;:::-;4070:3;4063:37;3988:118;;:::o;4112:109::-;4193:21;4208:5;4193:21;:::i;:::-;4188:3;4181:34;4112:109;;:::o;4227:118::-;4314:24;4332:5;4314:24;:::i;:::-;4309:3;4302:37;4227:118;;:::o;4351:364::-;4439:3;4467:39;4500:5;4467:39;:::i;:::-;4522:71;4586:6;4581:3;4522:71;:::i;:::-;4515:78;;4602:52;4647:6;4642:3;4635:4;4628:5;4624:16;4602:52;:::i;:::-;4679:29;4701:6;4679:29;:::i;:::-;4674:3;4670:39;4663:46;;4443:272;4351:364;;;;:::o;4721:377::-;4827:3;4855:39;4888:5;4855:39;:::i;:::-;4910:89;4992:6;4987:3;4910:89;:::i;:::-;4903:96;;5008:52;5053:6;5048:3;5041:4;5034:5;5030:16;5008:52;:::i;:::-;5085:6;5080:3;5076:16;5069:23;;4831:267;4721:377;;;;:::o;5104:366::-;5246:3;5267:67;5331:2;5326:3;5267:67;:::i;:::-;5260:74;;5343:93;5432:3;5343:93;:::i;:::-;5461:2;5456:3;5452:12;5445:19;;5104:366;;;:::o;5476:::-;5618:3;5639:67;5703:2;5698:3;5639:67;:::i;:::-;5632:74;;5715:93;5804:3;5715:93;:::i;:::-;5833:2;5828:3;5824:12;5817:19;;5476:366;;;:::o;5848:::-;5990:3;6011:67;6075:2;6070:3;6011:67;:::i;:::-;6004:74;;6087:93;6176:3;6087:93;:::i;:::-;6205:2;6200:3;6196:12;6189:19;;5848:366;;;:::o;6220:::-;6362:3;6383:67;6447:2;6442:3;6383:67;:::i;:::-;6376:74;;6459:93;6548:3;6459:93;:::i;:::-;6577:2;6572:3;6568:12;6561:19;;6220:366;;;:::o;6592:::-;6734:3;6755:67;6819:2;6814:3;6755:67;:::i;:::-;6748:74;;6831:93;6920:3;6831:93;:::i;:::-;6949:2;6944:3;6940:12;6933:19;;6592:366;;;:::o;6964:::-;7106:3;7127:67;7191:2;7186:3;7127:67;:::i;:::-;7120:74;;7203:93;7292:3;7203:93;:::i;:::-;7321:2;7316:3;7312:12;7305:19;;6964:366;;;:::o;7336:::-;7478:3;7499:67;7563:2;7558:3;7499:67;:::i;:::-;7492:74;;7575:93;7664:3;7575:93;:::i;:::-;7693:2;7688:3;7684:12;7677:19;;7336:366;;;:::o;7708:::-;7850:3;7871:67;7935:2;7930:3;7871:67;:::i;:::-;7864:74;;7947:93;8036:3;7947:93;:::i;:::-;8065:2;8060:3;8056:12;8049:19;;7708:366;;;:::o;8080:::-;8222:3;8243:67;8307:2;8302:3;8243:67;:::i;:::-;8236:74;;8319:93;8408:3;8319:93;:::i;:::-;8437:2;8432:3;8428:12;8421:19;;8080:366;;;:::o;8452:::-;8594:3;8615:67;8679:2;8674:3;8615:67;:::i;:::-;8608:74;;8691:93;8780:3;8691:93;:::i;:::-;8809:2;8804:3;8800:12;8793:19;;8452:366;;;:::o;8824:::-;8966:3;8987:67;9051:2;9046:3;8987:67;:::i;:::-;8980:74;;9063:93;9152:3;9063:93;:::i;:::-;9181:2;9176:3;9172:12;9165:19;;8824:366;;;:::o;9196:::-;9338:3;9359:67;9423:2;9418:3;9359:67;:::i;:::-;9352:74;;9435:93;9524:3;9435:93;:::i;:::-;9553:2;9548:3;9544:12;9537:19;;9196:366;;;:::o;9568:::-;9710:3;9731:67;9795:2;9790:3;9731:67;:::i;:::-;9724:74;;9807:93;9896:3;9807:93;:::i;:::-;9925:2;9920:3;9916:12;9909:19;;9568:366;;;:::o;9940:::-;10082:3;10103:67;10167:2;10162:3;10103:67;:::i;:::-;10096:74;;10179:93;10268:3;10179:93;:::i;:::-;10297:2;10292:3;10288:12;10281:19;;9940:366;;;:::o;10312:::-;10454:3;10475:67;10539:2;10534:3;10475:67;:::i;:::-;10468:74;;10551:93;10640:3;10551:93;:::i;:::-;10669:2;10664:3;10660:12;10653:19;;10312:366;;;:::o;10684:::-;10826:3;10847:67;10911:2;10906:3;10847:67;:::i;:::-;10840:74;;10923:93;11012:3;10923:93;:::i;:::-;11041:2;11036:3;11032:12;11025:19;;10684:366;;;:::o;11056:::-;11198:3;11219:67;11283:2;11278:3;11219:67;:::i;:::-;11212:74;;11295:93;11384:3;11295:93;:::i;:::-;11413:2;11408:3;11404:12;11397:19;;11056:366;;;:::o;11428:402::-;11588:3;11609:85;11691:2;11686:3;11609:85;:::i;:::-;11602:92;;11703:93;11792:3;11703:93;:::i;:::-;11821:2;11816:3;11812:12;11805:19;;11428:402;;;:::o;11836:366::-;11978:3;11999:67;12063:2;12058:3;11999:67;:::i;:::-;11992:74;;12075:93;12164:3;12075:93;:::i;:::-;12193:2;12188:3;12184:12;12177:19;;11836:366;;;:::o;12208:402::-;12368:3;12389:85;12471:2;12466:3;12389:85;:::i;:::-;12382:92;;12483:93;12572:3;12483:93;:::i;:::-;12601:2;12596:3;12592:12;12585:19;;12208:402;;;:::o;12616:366::-;12758:3;12779:67;12843:2;12838:3;12779:67;:::i;:::-;12772:74;;12855:93;12944:3;12855:93;:::i;:::-;12973:2;12968:3;12964:12;12957:19;;12616:366;;;:::o;12988:::-;13130:3;13151:67;13215:2;13210:3;13151:67;:::i;:::-;13144:74;;13227:93;13316:3;13227:93;:::i;:::-;13345:2;13340:3;13336:12;13329:19;;12988:366;;;:::o;13360:::-;13502:3;13523:67;13587:2;13582:3;13523:67;:::i;:::-;13516:74;;13599:93;13688:3;13599:93;:::i;:::-;13717:2;13712:3;13708:12;13701:19;;13360:366;;;:::o;13732:118::-;13819:24;13837:5;13819:24;:::i;:::-;13814:3;13807:37;13732:118;;:::o;13856:112::-;13939:22;13955:5;13939:22;:::i;:::-;13934:3;13927:35;13856:112;;:::o;13974:967::-;14356:3;14378:148;14522:3;14378:148;:::i;:::-;14371:155;;14543:95;14634:3;14625:6;14543:95;:::i;:::-;14536:102;;14655:148;14799:3;14655:148;:::i;:::-;14648:155;;14820:95;14911:3;14902:6;14820:95;:::i;:::-;14813:102;;14932:3;14925:10;;13974:967;;;;;:::o;14947:222::-;15040:4;15078:2;15067:9;15063:18;15055:26;;15091:71;15159:1;15148:9;15144:17;15135:6;15091:71;:::i;:::-;14947:222;;;;:::o;15175:210::-;15262:4;15300:2;15289:9;15285:18;15277:26;;15313:65;15375:1;15364:9;15360:17;15351:6;15313:65;:::i;:::-;15175:210;;;;:::o;15391:222::-;15484:4;15522:2;15511:9;15507:18;15499:26;;15535:71;15603:1;15592:9;15588:17;15579:6;15535:71;:::i;:::-;15391:222;;;;:::o;15619:313::-;15732:4;15770:2;15759:9;15755:18;15747:26;;15819:9;15813:4;15809:20;15805:1;15794:9;15790:17;15783:47;15847:78;15920:4;15911:6;15847:78;:::i;:::-;15839:86;;15619:313;;;;:::o;15938:419::-;16104:4;16142:2;16131:9;16127:18;16119:26;;16191:9;16185:4;16181:20;16177:1;16166:9;16162:17;16155:47;16219:131;16345:4;16219:131;:::i;:::-;16211:139;;15938:419;;;:::o;16363:::-;16529:4;16567:2;16556:9;16552:18;16544:26;;16616:9;16610:4;16606:20;16602:1;16591:9;16587:17;16580:47;16644:131;16770:4;16644:131;:::i;:::-;16636:139;;16363:419;;;:::o;16788:::-;16954:4;16992:2;16981:9;16977:18;16969:26;;17041:9;17035:4;17031:20;17027:1;17016:9;17012:17;17005:47;17069:131;17195:4;17069:131;:::i;:::-;17061:139;;16788:419;;;:::o;17213:::-;17379:4;17417:2;17406:9;17402:18;17394:26;;17466:9;17460:4;17456:20;17452:1;17441:9;17437:17;17430:47;17494:131;17620:4;17494:131;:::i;:::-;17486:139;;17213:419;;;:::o;17638:::-;17804:4;17842:2;17831:9;17827:18;17819:26;;17891:9;17885:4;17881:20;17877:1;17866:9;17862:17;17855:47;17919:131;18045:4;17919:131;:::i;:::-;17911:139;;17638:419;;;:::o;18063:::-;18229:4;18267:2;18256:9;18252:18;18244:26;;18316:9;18310:4;18306:20;18302:1;18291:9;18287:17;18280:47;18344:131;18470:4;18344:131;:::i;:::-;18336:139;;18063:419;;;:::o;18488:::-;18654:4;18692:2;18681:9;18677:18;18669:26;;18741:9;18735:4;18731:20;18727:1;18716:9;18712:17;18705:47;18769:131;18895:4;18769:131;:::i;:::-;18761:139;;18488:419;;;:::o;18913:::-;19079:4;19117:2;19106:9;19102:18;19094:26;;19166:9;19160:4;19156:20;19152:1;19141:9;19137:17;19130:47;19194:131;19320:4;19194:131;:::i;:::-;19186:139;;18913:419;;;:::o;19338:::-;19504:4;19542:2;19531:9;19527:18;19519:26;;19591:9;19585:4;19581:20;19577:1;19566:9;19562:17;19555:47;19619:131;19745:4;19619:131;:::i;:::-;19611:139;;19338:419;;;:::o;19763:::-;19929:4;19967:2;19956:9;19952:18;19944:26;;20016:9;20010:4;20006:20;20002:1;19991:9;19987:17;19980:47;20044:131;20170:4;20044:131;:::i;:::-;20036:139;;19763:419;;;:::o;20188:::-;20354:4;20392:2;20381:9;20377:18;20369:26;;20441:9;20435:4;20431:20;20427:1;20416:9;20412:17;20405:47;20469:131;20595:4;20469:131;:::i;:::-;20461:139;;20188:419;;;:::o;20613:::-;20779:4;20817:2;20806:9;20802:18;20794:26;;20866:9;20860:4;20856:20;20852:1;20841:9;20837:17;20830:47;20894:131;21020:4;20894:131;:::i;:::-;20886:139;;20613:419;;;:::o;21038:::-;21204:4;21242:2;21231:9;21227:18;21219:26;;21291:9;21285:4;21281:20;21277:1;21266:9;21262:17;21255:47;21319:131;21445:4;21319:131;:::i;:::-;21311:139;;21038:419;;;:::o;21463:::-;21629:4;21667:2;21656:9;21652:18;21644:26;;21716:9;21710:4;21706:20;21702:1;21691:9;21687:17;21680:47;21744:131;21870:4;21744:131;:::i;:::-;21736:139;;21463:419;;;:::o;21888:::-;22054:4;22092:2;22081:9;22077:18;22069:26;;22141:9;22135:4;22131:20;22127:1;22116:9;22112:17;22105:47;22169:131;22295:4;22169:131;:::i;:::-;22161:139;;21888:419;;;:::o;22313:::-;22479:4;22517:2;22506:9;22502:18;22494:26;;22566:9;22560:4;22556:20;22552:1;22541:9;22537:17;22530:47;22594:131;22720:4;22594:131;:::i;:::-;22586:139;;22313:419;;;:::o;22738:::-;22904:4;22942:2;22931:9;22927:18;22919:26;;22991:9;22985:4;22981:20;22977:1;22966:9;22962:17;22955:47;23019:131;23145:4;23019:131;:::i;:::-;23011:139;;22738:419;;;:::o;23163:::-;23329:4;23367:2;23356:9;23352:18;23344:26;;23416:9;23410:4;23406:20;23402:1;23391:9;23387:17;23380:47;23444:131;23570:4;23444:131;:::i;:::-;23436:139;;23163:419;;;:::o;23588:::-;23754:4;23792:2;23781:9;23777:18;23769:26;;23841:9;23835:4;23831:20;23827:1;23816:9;23812:17;23805:47;23869:131;23995:4;23869:131;:::i;:::-;23861:139;;23588:419;;;:::o;24013:::-;24179:4;24217:2;24206:9;24202:18;24194:26;;24266:9;24260:4;24256:20;24252:1;24241:9;24237:17;24230:47;24294:131;24420:4;24294:131;:::i;:::-;24286:139;;24013:419;;;:::o;24438:::-;24604:4;24642:2;24631:9;24627:18;24619:26;;24691:9;24685:4;24681:20;24677:1;24666:9;24662:17;24655:47;24719:131;24845:4;24719:131;:::i;:::-;24711:139;;24438:419;;;:::o;24863:222::-;24956:4;24994:2;24983:9;24979:18;24971:26;;25007:71;25075:1;25064:9;25060:17;25051:6;25007:71;:::i;:::-;24863:222;;;;:::o;25091:214::-;25180:4;25218:2;25207:9;25203:18;25195:26;;25231:67;25295:1;25284:9;25280:17;25271:6;25231:67;:::i;:::-;25091:214;;;;:::o;25392:99::-;25444:6;25478:5;25472:12;25462:22;;25392:99;;;:::o;25497:169::-;25581:11;25615:6;25610:3;25603:19;25655:4;25650:3;25646:14;25631:29;;25497:169;;;;:::o;25672:148::-;25774:11;25811:3;25796:18;;25672:148;;;;:::o;25826:305::-;25866:3;25885:20;25903:1;25885:20;:::i;:::-;25880:25;;25919:20;25937:1;25919:20;:::i;:::-;25914:25;;26073:1;26005:66;26001:74;25998:1;25995:81;25992:107;;;26079:18;;:::i;:::-;25992:107;26123:1;26120;26116:9;26109:16;;25826:305;;;;:::o;26137:348::-;26177:7;26200:20;26218:1;26200:20;:::i;:::-;26195:25;;26234:20;26252:1;26234:20;:::i;:::-;26229:25;;26422:1;26354:66;26350:74;26347:1;26344:81;26339:1;26332:9;26325:17;26321:105;26318:131;;;26429:18;;:::i;:::-;26318:131;26477:1;26474;26470:9;26459:20;;26137:348;;;;:::o;26491:191::-;26531:4;26551:20;26569:1;26551:20;:::i;:::-;26546:25;;26585:20;26603:1;26585:20;:::i;:::-;26580:25;;26624:1;26621;26618:8;26615:34;;;26629:18;;:::i;:::-;26615:34;26674:1;26671;26667:9;26659:17;;26491:191;;;;:::o;26688:96::-;26725:7;26754:24;26772:5;26754:24;:::i;:::-;26743:35;;26688:96;;;:::o;26790:90::-;26824:7;26867:5;26860:13;26853:21;26842:32;;26790:90;;;:::o;26886:77::-;26923:7;26952:5;26941:16;;26886:77;;;:::o;26969:149::-;27005:7;27045:66;27038:5;27034:78;27023:89;;26969:149;;;:::o;27124:126::-;27161:7;27201:42;27194:5;27190:54;27179:65;;27124:126;;;:::o;27256:77::-;27293:7;27322:5;27311:16;;27256:77;;;:::o;27339:86::-;27374:7;27414:4;27407:5;27403:16;27392:27;;27339:86;;;:::o;27431:307::-;27499:1;27509:113;27523:6;27520:1;27517:13;27509:113;;;27608:1;27603:3;27599:11;27593:18;27589:1;27584:3;27580:11;27573:39;27545:2;27542:1;27538:10;27533:15;;27509:113;;;27640:6;27637:1;27634:13;27631:101;;;27720:1;27711:6;27706:3;27702:16;27695:27;27631:101;27480:258;27431:307;;;:::o;27744:171::-;27783:3;27806:24;27824:5;27806:24;:::i;:::-;27797:33;;27852:4;27845:5;27842:15;27839:41;;;27860:18;;:::i;:::-;27839:41;27907:1;27900:5;27896:13;27889:20;;27744:171;;;:::o;27921:320::-;27965:6;28002:1;27996:4;27992:12;27982:22;;28049:1;28043:4;28039:12;28070:18;28060:81;;28126:4;28118:6;28114:17;28104:27;;28060:81;28188:2;28180:6;28177:14;28157:18;28154:38;28151:84;;;28207:18;;:::i;:::-;28151:84;27972:269;27921:320;;;:::o;28247:180::-;28295:77;28292:1;28285:88;28392:4;28389:1;28382:15;28416:4;28413:1;28406:15;28433:180;28481:77;28478:1;28471:88;28578:4;28575:1;28568:15;28602:4;28599:1;28592:15;28619:180;28667:77;28664:1;28657:88;28764:4;28761:1;28754:15;28788:4;28785:1;28778:15;28805:180;28853:77;28850:1;28843:88;28950:4;28947:1;28940:15;28974:4;28971:1;28964:15;29114:117;29223:1;29220;29213:12;29237:102;29278:6;29329:2;29325:7;29320:2;29313:5;29309:14;29305:28;29295:38;;29237:102;;;:::o;29345:182::-;29485:34;29481:1;29473:6;29469:14;29462:58;29345:182;:::o;29533:222::-;29673:34;29669:1;29661:6;29657:14;29650:58;29742:5;29737:2;29729:6;29725:15;29718:30;29533:222;:::o;29761:170::-;29901:22;29897:1;29889:6;29885:14;29878:46;29761:170;:::o;29937:221::-;30077:34;30073:1;30065:6;30061:14;30054:58;30146:4;30141:2;30133:6;30129:15;30122:29;29937:221;:::o;30164:244::-;30304:34;30300:1;30292:6;30288:14;30281:58;30373:27;30368:2;30360:6;30356:15;30349:52;30164:244;:::o;30414:225::-;30554:34;30550:1;30542:6;30538:14;30531:58;30623:8;30618:2;30610:6;30606:15;30599:33;30414:225;:::o;30645:221::-;30785:34;30781:1;30773:6;30769:14;30762:58;30854:4;30849:2;30841:6;30837:15;30830:29;30645:221;:::o;30872:225::-;31012:34;31008:1;31000:6;30996:14;30989:58;31081:8;31076:2;31068:6;31064:15;31057:33;30872:225;:::o;31103:166::-;31243:18;31239:1;31231:6;31227:14;31220:42;31103:166;:::o;31275:227::-;31415:34;31411:1;31403:6;31399:14;31392:58;31484:10;31479:2;31471:6;31467:15;31460:35;31275:227;:::o;31508:182::-;31648:34;31644:1;31636:6;31632:14;31625:58;31508:182;:::o;31696:241::-;31836:34;31832:1;31824:6;31820:14;31813:58;31905:24;31900:2;31892:6;31888:15;31881:49;31696:241;:::o;31943:223::-;32083:34;32079:1;32071:6;32067:14;32060:58;32152:6;32147:2;32139:6;32135:15;32128:31;31943:223;:::o;32172:220::-;32312:34;32308:1;32300:6;32296:14;32289:58;32381:3;32376:2;32368:6;32364:15;32357:28;32172:220;:::o;32398:224::-;32538:34;32534:1;32526:6;32522:14;32515:58;32607:7;32602:2;32594:6;32590:15;32583:32;32398:224;:::o;32628:223::-;32768:34;32764:1;32756:6;32752:14;32745:58;32837:6;32832:2;32824:6;32820:15;32813:31;32628:223;:::o;32857:242::-;32997:34;32993:1;32985:6;32981:14;32974:58;33066:25;33061:2;33053:6;33049:15;33042:50;32857:242;:::o;33105:173::-;33245:25;33241:1;33233:6;33229:14;33222:49;33105:173;:::o;33284:224::-;33424:34;33420:1;33412:6;33408:14;33401:58;33493:7;33488:2;33480:6;33476:15;33469:32;33284:224;:::o;33514:167::-;33654:19;33650:1;33642:6;33638:14;33631:43;33514:167;:::o;33687:234::-;33827:34;33823:1;33815:6;33811:14;33804:58;33896:17;33891:2;33883:6;33879:15;33872:42;33687:234;:::o;33927:181::-;34067:33;34063:1;34055:6;34051:14;34044:57;33927:181;:::o;34114:229::-;34254:34;34250:1;34242:6;34238:14;34231:58;34323:12;34318:2;34310:6;34306:15;34299:37;34114:229;:::o;34349:122::-;34422:24;34440:5;34422:24;:::i;:::-;34415:5;34412:35;34402:63;;34461:1;34458;34451:12;34402:63;34349:122;:::o;34477:::-;34550:24;34568:5;34550:24;:::i;:::-;34543:5;34540:35;34530:63;;34589:1;34586;34579:12;34530:63;34477:122;:::o;34605:120::-;34677:23;34694:5;34677:23;:::i;:::-;34670:5;34667:34;34657:62;;34715:1;34712;34705:12;34657:62;34605:120;:::o;34731:122::-;34804:24;34822:5;34804:24;:::i;:::-;34797:5;34794:35;34784:63;;34843:1;34840;34833:12;34784:63;34731:122;:::o

Swarm Source

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