ETH Price: $3,481.87 (+2.17%)
Gas: 8 Gwei

Token

DAO Masters (DMSTR)
 

Overview

Max Total Supply

10,000,000 DMSTR

Holders

346

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
16.49205701 DMSTR

Value
$0.00
0x132775668e100edc1e3a85f2948e9a8138b47320
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:
DAOMasters

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 2022-04-26
*/

// File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (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/[email protected]/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (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/[email protected]/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/[email protected]/access/IAccessControl.sol


// OpenZeppelin Contracts v4.4.1 (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/[email protected]/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/access/AccessControl.sol


// OpenZeppelin Contracts (last updated v4.5.0) (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 virtual 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 virtual {
        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 virtual 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 revoked `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}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    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);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin/[email protected]/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (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/[email protected]/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/[email protected]/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: dao_master_test_token_contract.sol


pragma solidity ^0.8.4;





contract DAOMasters is ERC20, ERC20Burnable, Pausable, AccessControl {
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    constructor() ERC20("DAO Masters", "DMSTR") {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(PAUSER_ROLE, msg.sender);
        _grantRole(MINTER_ROLE, msg.sender);
    }

    function pause() public onlyRole(PAUSER_ROLE) {
        _pause();
    }

    function unpause() public onlyRole(PAUSER_ROLE) {
        _unpause();
    }

    function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) {
        _mint(to, amount);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f44414f204d6173746572730000000000000000000000000000000000000000008152506040518060400160405280600581526020017f444d535452000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620002b1565b508060049080519060200190620000af929190620002b1565b5050506000600560006101000a81548160ff021916908315150217905550620000e26000801b336200014c60201b60201c565b620001147f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336200014c60201b60201c565b620001467f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200014c60201b60201c565b620003c6565b6200015e82826200023e60201b60201c565b6200023a5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001df620002a960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620002bf9062000361565b90600052602060002090601f016020900481019282620002e357600085556200032f565b82601f10620002fe57805160ff19168380011785556200032f565b828001600101855582156200032f579182015b828111156200032e57825182559160200191906001019062000311565b5b5090506200033e919062000342565b5090565b5b808211156200035d57600081600090555060010162000343565b5090565b600060028204905060018216806200037a57607f821691505b6020821081141562000391576200039062000397565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612a3380620003d66000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80635c975abb116100de578063a217fddf11610097578063d539139311610071578063d539139314610497578063d547741f146104b5578063dd62ed3e146104d1578063e63ab1e9146105015761018e565b8063a217fddf14610419578063a457c2d714610437578063a9059cbb146104675761018e565b80635c975abb1461035757806370a082311461037557806379cc6790146103a55780638456cb59146103c157806391d14854146103cb57806395d89b41146103fb5761018e565b80632f2ff15d1161014b578063395093511161012557806339509351146102e55780633f4ba83a1461031557806340c10f191461031f57806342966c681461033b5761018e565b80632f2ff15d1461028f578063313ce567146102ab57806336568abe146102c95761018e565b806301ffc9a71461019357806306fdde03146101c3578063095ea7b3146101e157806318160ddd1461021157806323b872dd1461022f578063248a9ca31461025f575b600080fd5b6101ad60048036038101906101a89190611ce2565b61051f565b6040516101ba9190612076565b60405180910390f35b6101cb610599565b6040516101d891906120ac565b60405180910390f35b6101fb60048036038101906101f69190611c35565b61062b565b6040516102089190612076565b60405180910390f35b61021961064e565b604051610226919061228e565b60405180910390f35b61024960048036038101906102449190611be2565b610658565b6040516102569190612076565b60405180910390f35b61027960048036038101906102749190611c75565b610687565b6040516102869190612091565b60405180910390f35b6102a960048036038101906102a49190611ca2565b6106a7565b005b6102b36106d0565b6040516102c091906122a9565b60405180910390f35b6102e360048036038101906102de9190611ca2565b6106d9565b005b6102ff60048036038101906102fa9190611c35565b61075c565b60405161030c9190612076565b60405180910390f35b61031d610806565b005b61033960048036038101906103349190611c35565b610843565b005b61035560048036038101906103509190611d0f565b610884565b005b61035f610898565b60405161036c9190612076565b60405180910390f35b61038f600480360381019061038a9190611b75565b6108af565b60405161039c919061228e565b60405180910390f35b6103bf60048036038101906103ba9190611c35565b6108f7565b005b6103c9610917565b005b6103e560048036038101906103e09190611ca2565b610954565b6040516103f29190612076565b60405180910390f35b6104036109bf565b60405161041091906120ac565b60405180910390f35b610421610a51565b60405161042e9190612091565b60405180910390f35b610451600480360381019061044c9190611c35565b610a58565b60405161045e9190612076565b60405180910390f35b610481600480360381019061047c9190611c35565b610b42565b60405161048e9190612076565b60405180910390f35b61049f610b65565b6040516104ac9190612091565b60405180910390f35b6104cf60048036038101906104ca9190611ca2565b610b89565b005b6104eb60048036038101906104e69190611ba2565b610bb2565b6040516104f8919061228e565b60405180910390f35b610509610c39565b6040516105169190612091565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610592575061059182610c5d565b5b9050919050565b6060600380546105a8906124b7565b80601f01602080910402602001604051908101604052809291908181526020018280546105d4906124b7565b80156106215780601f106105f657610100808354040283529160200191610621565b820191906000526020600020905b81548152906001019060200180831161060457829003601f168201915b5050505050905090565b600080610636610cc7565b9050610643818585610ccf565b600191505092915050565b6000600254905090565b600080610663610cc7565b9050610670858285610e9a565b61067b858585610f26565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b6106b082610687565b6106c1816106bc610cc7565b6111a7565b6106cb8383611244565b505050565b60006012905090565b6106e1610cc7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461074e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107459061224e565b60405180910390fd5b6107588282611325565b5050565b600080610767610cc7565b90506107fb818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107f691906122eb565b610ccf565b600191505092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61083881610833610cc7565b6111a7565b610840611407565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661087581610870610cc7565b6111a7565b61087f83836114a9565b505050565b61089561088f610cc7565b82611609565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61090982610903610cc7565b83610e9a565b6109138282611609565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61094981610944610cc7565b6111a7565b6109516117e0565b50565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546109ce906124b7565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa906124b7565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b6000801b81565b600080610a63610cc7565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b209061222e565b60405180910390fd5b610b368286868403610ccf565b60019250505092915050565b600080610b4d610cc7565b9050610b5a818585610f26565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610b9282610687565b610ba381610b9e610cc7565b6111a7565b610bad8383611325565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d369061220e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da69061214e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e8d919061228e565b60405180910390a3505050565b6000610ea68484610bb2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f205781811015610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f099061216e565b60405180910390fd5b610f1f8484848403610ccf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d906121ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd906120ee565b60405180910390fd5b611011838383611883565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e9061218e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461112a91906122eb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161118e919061228e565b60405180910390a36111a18484846118db565b50505050565b6111b18282610954565b611240576111d68173ffffffffffffffffffffffffffffffffffffffff1660146118e0565b6111e48360001c60206118e0565b6040516020016111f5929190612021565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123791906120ac565b60405180910390fd5b5050565b61124e8282610954565b6113215760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506112c6610cc7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61132f8282610954565b156114035760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113a8610cc7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61140f610898565b61144e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114459061210e565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611492610cc7565b60405161149f919061205b565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115109061226e565b60405180910390fd5b61152560008383611883565b806002600082825461153791906122eb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461158c91906122eb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f1919061228e565b60405180910390a3611605600083836118db565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611679576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611670906121ce565b60405180910390fd5b61168582600083611883565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561170b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117029061212e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611762919061239b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117c7919061228e565b60405180910390a36117db836000846118db565b505050565b6117e8610898565b15611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f906121ae565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861186c610cc7565b604051611879919061205b565b60405180910390a1565b61188b610898565b156118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c2906121ae565b60405180910390fd5b6118d6838383611b1c565b505050565b505050565b6060600060028360026118f39190612341565b6118fd91906122eb565b67ffffffffffffffff81111561191657611915612576565b5b6040519080825280601f01601f1916602001820160405280156119485781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106119805761197f612547565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106119e4576119e3612547565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611a249190612341565b611a2e91906122eb565b90505b6001811115611ace577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611a7057611a6f612547565b5b1a60f81b828281518110611a8757611a86612547565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611ac79061248d565b9050611a31565b5060008414611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b09906120ce565b60405180910390fd5b8091505092915050565b505050565b600081359050611b30816129a1565b92915050565b600081359050611b45816129b8565b92915050565b600081359050611b5a816129cf565b92915050565b600081359050611b6f816129e6565b92915050565b600060208284031215611b8b57611b8a6125a5565b5b6000611b9984828501611b21565b91505092915050565b60008060408385031215611bb957611bb86125a5565b5b6000611bc785828601611b21565b9250506020611bd885828601611b21565b9150509250929050565b600080600060608486031215611bfb57611bfa6125a5565b5b6000611c0986828701611b21565b9350506020611c1a86828701611b21565b9250506040611c2b86828701611b60565b9150509250925092565b60008060408385031215611c4c57611c4b6125a5565b5b6000611c5a85828601611b21565b9250506020611c6b85828601611b60565b9150509250929050565b600060208284031215611c8b57611c8a6125a5565b5b6000611c9984828501611b36565b91505092915050565b60008060408385031215611cb957611cb86125a5565b5b6000611cc785828601611b36565b9250506020611cd885828601611b21565b9150509250929050565b600060208284031215611cf857611cf76125a5565b5b6000611d0684828501611b4b565b91505092915050565b600060208284031215611d2557611d246125a5565b5b6000611d3384828501611b60565b91505092915050565b611d45816123cf565b82525050565b611d54816123e1565b82525050565b611d63816123ed565b82525050565b6000611d74826122c4565b611d7e81856122cf565b9350611d8e81856020860161245a565b611d97816125aa565b840191505092915050565b6000611dad826122c4565b611db781856122e0565b9350611dc781856020860161245a565b80840191505092915050565b6000611de06020836122cf565b9150611deb826125bb565b602082019050919050565b6000611e036023836122cf565b9150611e0e826125e4565b604082019050919050565b6000611e266014836122cf565b9150611e3182612633565b602082019050919050565b6000611e496022836122cf565b9150611e548261265c565b604082019050919050565b6000611e6c6022836122cf565b9150611e77826126ab565b604082019050919050565b6000611e8f601d836122cf565b9150611e9a826126fa565b602082019050919050565b6000611eb26026836122cf565b9150611ebd82612723565b604082019050919050565b6000611ed56010836122cf565b9150611ee082612772565b602082019050919050565b6000611ef86021836122cf565b9150611f038261279b565b604082019050919050565b6000611f1b6025836122cf565b9150611f26826127ea565b604082019050919050565b6000611f3e6024836122cf565b9150611f4982612839565b604082019050919050565b6000611f616017836122e0565b9150611f6c82612888565b601782019050919050565b6000611f846025836122cf565b9150611f8f826128b1565b604082019050919050565b6000611fa76011836122e0565b9150611fb282612900565b601182019050919050565b6000611fca602f836122cf565b9150611fd582612929565b604082019050919050565b6000611fed601f836122cf565b9150611ff882612978565b602082019050919050565b61200c81612443565b82525050565b61201b8161244d565b82525050565b600061202c82611f54565b91506120388285611da2565b915061204382611f9a565b915061204f8284611da2565b91508190509392505050565b60006020820190506120706000830184611d3c565b92915050565b600060208201905061208b6000830184611d4b565b92915050565b60006020820190506120a66000830184611d5a565b92915050565b600060208201905081810360008301526120c68184611d69565b905092915050565b600060208201905081810360008301526120e781611dd3565b9050919050565b6000602082019050818103600083015261210781611df6565b9050919050565b6000602082019050818103600083015261212781611e19565b9050919050565b6000602082019050818103600083015261214781611e3c565b9050919050565b6000602082019050818103600083015261216781611e5f565b9050919050565b6000602082019050818103600083015261218781611e82565b9050919050565b600060208201905081810360008301526121a781611ea5565b9050919050565b600060208201905081810360008301526121c781611ec8565b9050919050565b600060208201905081810360008301526121e781611eeb565b9050919050565b6000602082019050818103600083015261220781611f0e565b9050919050565b6000602082019050818103600083015261222781611f31565b9050919050565b6000602082019050818103600083015261224781611f77565b9050919050565b6000602082019050818103600083015261226781611fbd565b9050919050565b6000602082019050818103600083015261228781611fe0565b9050919050565b60006020820190506122a36000830184612003565b92915050565b60006020820190506122be6000830184612012565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006122f682612443565b915061230183612443565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612336576123356124e9565b5b828201905092915050565b600061234c82612443565b915061235783612443565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156123905761238f6124e9565b5b828202905092915050565b60006123a682612443565b91506123b183612443565b9250828210156123c4576123c36124e9565b5b828203905092915050565b60006123da82612423565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561247857808201518184015260208101905061245d565b83811115612487576000848401525b50505050565b600061249882612443565b915060008214156124ac576124ab6124e9565b5b600182039050919050565b600060028204905060018216806124cf57607f821691505b602082108114156124e3576124e2612518565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6129aa816123cf565b81146129b557600080fd5b50565b6129c1816123ed565b81146129cc57600080fd5b50565b6129d8816123f7565b81146129e357600080fd5b50565b6129ef81612443565b81146129fa57600080fd5b5056fea264697066735822122077f3b97244384ac59c39292830a24e6d3744076ea6baaea8856c6b3287dcd7cf64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80635c975abb116100de578063a217fddf11610097578063d539139311610071578063d539139314610497578063d547741f146104b5578063dd62ed3e146104d1578063e63ab1e9146105015761018e565b8063a217fddf14610419578063a457c2d714610437578063a9059cbb146104675761018e565b80635c975abb1461035757806370a082311461037557806379cc6790146103a55780638456cb59146103c157806391d14854146103cb57806395d89b41146103fb5761018e565b80632f2ff15d1161014b578063395093511161012557806339509351146102e55780633f4ba83a1461031557806340c10f191461031f57806342966c681461033b5761018e565b80632f2ff15d1461028f578063313ce567146102ab57806336568abe146102c95761018e565b806301ffc9a71461019357806306fdde03146101c3578063095ea7b3146101e157806318160ddd1461021157806323b872dd1461022f578063248a9ca31461025f575b600080fd5b6101ad60048036038101906101a89190611ce2565b61051f565b6040516101ba9190612076565b60405180910390f35b6101cb610599565b6040516101d891906120ac565b60405180910390f35b6101fb60048036038101906101f69190611c35565b61062b565b6040516102089190612076565b60405180910390f35b61021961064e565b604051610226919061228e565b60405180910390f35b61024960048036038101906102449190611be2565b610658565b6040516102569190612076565b60405180910390f35b61027960048036038101906102749190611c75565b610687565b6040516102869190612091565b60405180910390f35b6102a960048036038101906102a49190611ca2565b6106a7565b005b6102b36106d0565b6040516102c091906122a9565b60405180910390f35b6102e360048036038101906102de9190611ca2565b6106d9565b005b6102ff60048036038101906102fa9190611c35565b61075c565b60405161030c9190612076565b60405180910390f35b61031d610806565b005b61033960048036038101906103349190611c35565b610843565b005b61035560048036038101906103509190611d0f565b610884565b005b61035f610898565b60405161036c9190612076565b60405180910390f35b61038f600480360381019061038a9190611b75565b6108af565b60405161039c919061228e565b60405180910390f35b6103bf60048036038101906103ba9190611c35565b6108f7565b005b6103c9610917565b005b6103e560048036038101906103e09190611ca2565b610954565b6040516103f29190612076565b60405180910390f35b6104036109bf565b60405161041091906120ac565b60405180910390f35b610421610a51565b60405161042e9190612091565b60405180910390f35b610451600480360381019061044c9190611c35565b610a58565b60405161045e9190612076565b60405180910390f35b610481600480360381019061047c9190611c35565b610b42565b60405161048e9190612076565b60405180910390f35b61049f610b65565b6040516104ac9190612091565b60405180910390f35b6104cf60048036038101906104ca9190611ca2565b610b89565b005b6104eb60048036038101906104e69190611ba2565b610bb2565b6040516104f8919061228e565b60405180910390f35b610509610c39565b6040516105169190612091565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610592575061059182610c5d565b5b9050919050565b6060600380546105a8906124b7565b80601f01602080910402602001604051908101604052809291908181526020018280546105d4906124b7565b80156106215780601f106105f657610100808354040283529160200191610621565b820191906000526020600020905b81548152906001019060200180831161060457829003601f168201915b5050505050905090565b600080610636610cc7565b9050610643818585610ccf565b600191505092915050565b6000600254905090565b600080610663610cc7565b9050610670858285610e9a565b61067b858585610f26565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b6106b082610687565b6106c1816106bc610cc7565b6111a7565b6106cb8383611244565b505050565b60006012905090565b6106e1610cc7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461074e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107459061224e565b60405180910390fd5b6107588282611325565b5050565b600080610767610cc7565b90506107fb818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107f691906122eb565b610ccf565b600191505092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61083881610833610cc7565b6111a7565b610840611407565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661087581610870610cc7565b6111a7565b61087f83836114a9565b505050565b61089561088f610cc7565b82611609565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61090982610903610cc7565b83610e9a565b6109138282611609565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61094981610944610cc7565b6111a7565b6109516117e0565b50565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546109ce906124b7565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa906124b7565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b6000801b81565b600080610a63610cc7565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b209061222e565b60405180910390fd5b610b368286868403610ccf565b60019250505092915050565b600080610b4d610cc7565b9050610b5a818585610f26565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610b9282610687565b610ba381610b9e610cc7565b6111a7565b610bad8383611325565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d369061220e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da69061214e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e8d919061228e565b60405180910390a3505050565b6000610ea68484610bb2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f205781811015610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f099061216e565b60405180910390fd5b610f1f8484848403610ccf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d906121ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd906120ee565b60405180910390fd5b611011838383611883565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e9061218e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461112a91906122eb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161118e919061228e565b60405180910390a36111a18484846118db565b50505050565b6111b18282610954565b611240576111d68173ffffffffffffffffffffffffffffffffffffffff1660146118e0565b6111e48360001c60206118e0565b6040516020016111f5929190612021565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123791906120ac565b60405180910390fd5b5050565b61124e8282610954565b6113215760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506112c6610cc7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61132f8282610954565b156114035760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113a8610cc7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61140f610898565b61144e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114459061210e565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611492610cc7565b60405161149f919061205b565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115109061226e565b60405180910390fd5b61152560008383611883565b806002600082825461153791906122eb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461158c91906122eb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f1919061228e565b60405180910390a3611605600083836118db565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611679576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611670906121ce565b60405180910390fd5b61168582600083611883565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561170b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117029061212e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611762919061239b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117c7919061228e565b60405180910390a36117db836000846118db565b505050565b6117e8610898565b15611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f906121ae565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861186c610cc7565b604051611879919061205b565b60405180910390a1565b61188b610898565b156118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c2906121ae565b60405180910390fd5b6118d6838383611b1c565b505050565b505050565b6060600060028360026118f39190612341565b6118fd91906122eb565b67ffffffffffffffff81111561191657611915612576565b5b6040519080825280601f01601f1916602001820160405280156119485781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106119805761197f612547565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106119e4576119e3612547565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611a249190612341565b611a2e91906122eb565b90505b6001811115611ace577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611a7057611a6f612547565b5b1a60f81b828281518110611a8757611a86612547565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611ac79061248d565b9050611a31565b5060008414611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b09906120ce565b60405180910390fd5b8091505092915050565b505050565b600081359050611b30816129a1565b92915050565b600081359050611b45816129b8565b92915050565b600081359050611b5a816129cf565b92915050565b600081359050611b6f816129e6565b92915050565b600060208284031215611b8b57611b8a6125a5565b5b6000611b9984828501611b21565b91505092915050565b60008060408385031215611bb957611bb86125a5565b5b6000611bc785828601611b21565b9250506020611bd885828601611b21565b9150509250929050565b600080600060608486031215611bfb57611bfa6125a5565b5b6000611c0986828701611b21565b9350506020611c1a86828701611b21565b9250506040611c2b86828701611b60565b9150509250925092565b60008060408385031215611c4c57611c4b6125a5565b5b6000611c5a85828601611b21565b9250506020611c6b85828601611b60565b9150509250929050565b600060208284031215611c8b57611c8a6125a5565b5b6000611c9984828501611b36565b91505092915050565b60008060408385031215611cb957611cb86125a5565b5b6000611cc785828601611b36565b9250506020611cd885828601611b21565b9150509250929050565b600060208284031215611cf857611cf76125a5565b5b6000611d0684828501611b4b565b91505092915050565b600060208284031215611d2557611d246125a5565b5b6000611d3384828501611b60565b91505092915050565b611d45816123cf565b82525050565b611d54816123e1565b82525050565b611d63816123ed565b82525050565b6000611d74826122c4565b611d7e81856122cf565b9350611d8e81856020860161245a565b611d97816125aa565b840191505092915050565b6000611dad826122c4565b611db781856122e0565b9350611dc781856020860161245a565b80840191505092915050565b6000611de06020836122cf565b9150611deb826125bb565b602082019050919050565b6000611e036023836122cf565b9150611e0e826125e4565b604082019050919050565b6000611e266014836122cf565b9150611e3182612633565b602082019050919050565b6000611e496022836122cf565b9150611e548261265c565b604082019050919050565b6000611e6c6022836122cf565b9150611e77826126ab565b604082019050919050565b6000611e8f601d836122cf565b9150611e9a826126fa565b602082019050919050565b6000611eb26026836122cf565b9150611ebd82612723565b604082019050919050565b6000611ed56010836122cf565b9150611ee082612772565b602082019050919050565b6000611ef86021836122cf565b9150611f038261279b565b604082019050919050565b6000611f1b6025836122cf565b9150611f26826127ea565b604082019050919050565b6000611f3e6024836122cf565b9150611f4982612839565b604082019050919050565b6000611f616017836122e0565b9150611f6c82612888565b601782019050919050565b6000611f846025836122cf565b9150611f8f826128b1565b604082019050919050565b6000611fa76011836122e0565b9150611fb282612900565b601182019050919050565b6000611fca602f836122cf565b9150611fd582612929565b604082019050919050565b6000611fed601f836122cf565b9150611ff882612978565b602082019050919050565b61200c81612443565b82525050565b61201b8161244d565b82525050565b600061202c82611f54565b91506120388285611da2565b915061204382611f9a565b915061204f8284611da2565b91508190509392505050565b60006020820190506120706000830184611d3c565b92915050565b600060208201905061208b6000830184611d4b565b92915050565b60006020820190506120a66000830184611d5a565b92915050565b600060208201905081810360008301526120c68184611d69565b905092915050565b600060208201905081810360008301526120e781611dd3565b9050919050565b6000602082019050818103600083015261210781611df6565b9050919050565b6000602082019050818103600083015261212781611e19565b9050919050565b6000602082019050818103600083015261214781611e3c565b9050919050565b6000602082019050818103600083015261216781611e5f565b9050919050565b6000602082019050818103600083015261218781611e82565b9050919050565b600060208201905081810360008301526121a781611ea5565b9050919050565b600060208201905081810360008301526121c781611ec8565b9050919050565b600060208201905081810360008301526121e781611eeb565b9050919050565b6000602082019050818103600083015261220781611f0e565b9050919050565b6000602082019050818103600083015261222781611f31565b9050919050565b6000602082019050818103600083015261224781611f77565b9050919050565b6000602082019050818103600083015261226781611fbd565b9050919050565b6000602082019050818103600083015261228781611fe0565b9050919050565b60006020820190506122a36000830184612003565b92915050565b60006020820190506122be6000830184612012565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006122f682612443565b915061230183612443565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612336576123356124e9565b5b828201905092915050565b600061234c82612443565b915061235783612443565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156123905761238f6124e9565b5b828202905092915050565b60006123a682612443565b91506123b183612443565b9250828210156123c4576123c36124e9565b5b828203905092915050565b60006123da82612423565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561247857808201518184015260208101905061245d565b83811115612487576000848401525b50505050565b600061249882612443565b915060008214156124ac576124ab6124e9565b5b600182039050919050565b600060028204905060018216806124cf57607f821691505b602082108114156124e3576124e2612518565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6129aa816123cf565b81146129b557600080fd5b50565b6129c1816123ed565b81146129cc57600080fd5b50565b6129d8816123f7565b81146129e357600080fd5b50565b6129ef81612443565b81146129fa57600080fd5b5056fea264697066735822122077f3b97244384ac59c39292830a24e6d3744076ea6baaea8856c6b3287dcd7cf64736f6c63430008070033

Deployed Bytecode Sourcemap

35767:904:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10631:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23718:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26069:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24838:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26850:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12058:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12451:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24680:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13499:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27554:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36269:77;;;:::i;:::-;;36354:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35102:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16754:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25009:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35512:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36188:73;;;:::i;:::-;;10927:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23937:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10018:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28297:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25342:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35912:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12843:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25598:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35843:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10631:204;10716:4;10755:32;10740:47;;;:11;:47;;;;:87;;;;10791:36;10815:11;10791:23;:36::i;:::-;10740:87;10733:94;;10631:204;;;:::o;23718:100::-;23772:13;23805:5;23798:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23718:100;:::o;26069:201::-;26152:4;26169:13;26185:12;:10;:12::i;:::-;26169:28;;26208:32;26217:5;26224:7;26233:6;26208:8;:32::i;:::-;26258:4;26251:11;;;26069:201;;;;:::o;24838:108::-;24899:7;24926:12;;24919:19;;24838:108;:::o;26850:295::-;26981:4;26998:15;27016:12;:10;:12::i;:::-;26998:30;;27039:38;27055:4;27061:7;27070:6;27039:15;:38::i;:::-;27088:27;27098:4;27104:2;27108:6;27088:9;:27::i;:::-;27133:4;27126:11;;;26850:295;;;;;:::o;12058:131::-;12132:7;12159:6;:12;12166:4;12159:12;;;;;;;;;;;:22;;;12152:29;;12058:131;;;:::o;12451:147::-;12534:18;12547:4;12534:12;:18::i;:::-;10509:30;10520:4;10526:12;:10;:12::i;:::-;10509:10;:30::i;:::-;12565:25:::1;12576:4;12582:7;12565:10;:25::i;:::-;12451:147:::0;;;:::o;24680:93::-;24738:5;24763:2;24756:9;;24680:93;:::o;13499:218::-;13606:12;:10;:12::i;:::-;13595:23;;:7;:23;;;13587:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;13683:26;13695:4;13701:7;13683:11;:26::i;:::-;13499:218;;:::o;27554:240::-;27642:4;27659:13;27675:12;:10;:12::i;:::-;27659:28;;27698:66;27707:5;27714:7;27753:10;27723:11;:18;27735:5;27723:18;;;;;;;;;;;;;;;:27;27742:7;27723:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;27698:8;:66::i;:::-;27782:4;27775:11;;;27554:240;;;;:::o;36269:77::-;35881:24;10509:30;10520:4;10526:12;:10;:12::i;:::-;10509:10;:30::i;:::-;36328:10:::1;:8;:10::i;:::-;36269:77:::0;:::o;36354:107::-;35950:24;10509:30;10520:4;10526:12;:10;:12::i;:::-;10509:10;:30::i;:::-;36436:17:::1;36442:2;36446:6;36436:5;:17::i;:::-;36354:107:::0;;;:::o;35102:91::-;35158:27;35164:12;:10;:12::i;:::-;35178:6;35158:5;:27::i;:::-;35102:91;:::o;16754:86::-;16801:4;16825:7;;;;;;;;;;;16818:14;;16754:86;:::o;25009:127::-;25083:7;25110:9;:18;25120:7;25110:18;;;;;;;;;;;;;;;;25103:25;;25009:127;;;:::o;35512:164::-;35589:46;35605:7;35614:12;:10;:12::i;:::-;35628:6;35589:15;:46::i;:::-;35646:22;35652:7;35661:6;35646:5;:22::i;:::-;35512:164;;:::o;36188:73::-;35881:24;10509:30;10520:4;10526:12;:10;:12::i;:::-;10509:10;:30::i;:::-;36245:8:::1;:6;:8::i;:::-;36188:73:::0;:::o;10927:147::-;11013:4;11037:6;:12;11044:4;11037:12;;;;;;;;;;;:20;;:29;11058:7;11037:29;;;;;;;;;;;;;;;;;;;;;;;;;11030:36;;10927:147;;;;:::o;23937:104::-;23993:13;24026:7;24019:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23937:104;:::o;10018:49::-;10063:4;10018:49;;;:::o;28297:438::-;28390:4;28407:13;28423:12;:10;:12::i;:::-;28407:28;;28446:24;28473:11;:18;28485:5;28473:18;;;;;;;;;;;;;;;:27;28492:7;28473:27;;;;;;;;;;;;;;;;28446:54;;28539:15;28519:16;:35;;28511:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;28632:60;28641:5;28648:7;28676:15;28657:16;:34;28632:8;:60::i;:::-;28723:4;28716:11;;;;28297:438;;;;:::o;25342:193::-;25421:4;25438:13;25454:12;:10;:12::i;:::-;25438:28;;25477;25487:5;25494:2;25498:6;25477:9;:28::i;:::-;25523:4;25516:11;;;25342:193;;;;:::o;35912:62::-;35950:24;35912:62;:::o;12843:149::-;12927:18;12940:4;12927:12;:18::i;:::-;10509:30;10520:4;10526:12;:10;:12::i;:::-;10509:10;:30::i;:::-;12958:26:::1;12970:4;12976:7;12958:11;:26::i;:::-;12843:149:::0;;;:::o;25598:151::-;25687:7;25714:11;:18;25726:5;25714:18;;;;;;;;;;;;;;;:27;25733:7;25714:27;;;;;;;;;;;;;;;;25707:34;;25598:151;;;;:::o;35843:62::-;35881:24;35843:62;:::o;1794:157::-;1879:4;1918:25;1903:40;;;:11;:40;;;;1896:47;;1794:157;;;:::o;7820:98::-;7873:7;7900:10;7893:17;;7820:98;:::o;31933:380::-;32086:1;32069:19;;:5;:19;;;;32061:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32167:1;32148:21;;:7;:21;;;;32140:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32251:6;32221:11;:18;32233:5;32221:18;;;;;;;;;;;;;;;:27;32240:7;32221:27;;;;;;;;;;;;;;;:36;;;;32289:7;32273:32;;32282:5;32273:32;;;32298:6;32273:32;;;;;;:::i;:::-;;;;;;;;31933:380;;;:::o;32600:453::-;32735:24;32762:25;32772:5;32779:7;32762:9;:25::i;:::-;32735:52;;32822:17;32802:16;:37;32798:248;;32884:6;32864:16;:26;;32856:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32968:51;32977:5;32984:7;33012:6;32993:16;:25;32968:8;:51::i;:::-;32798:248;32724:329;32600:453;;;:::o;29214:671::-;29361:1;29345:18;;:4;:18;;;;29337:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29438:1;29424:16;;:2;:16;;;;29416:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29493:38;29514:4;29520:2;29524:6;29493:20;:38::i;:::-;29544:19;29566:9;:15;29576:4;29566:15;;;;;;;;;;;;;;;;29544:37;;29615:6;29600:11;:21;;29592:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;29732:6;29718:11;:20;29700:9;:15;29710:4;29700:15;;;;;;;;;;;;;;;:38;;;;29777:6;29760:9;:13;29770:2;29760:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;29816:2;29801:26;;29810:4;29801:26;;;29820:6;29801:26;;;;;;:::i;:::-;;;;;;;;29840:37;29860:4;29866:2;29870:6;29840:19;:37::i;:::-;29326:559;29214:671;;;:::o;11364:505::-;11453:22;11461:4;11467:7;11453;:22::i;:::-;11448:414;;11641:41;11669:7;11641:41;;11679:2;11641:19;:41::i;:::-;11755:38;11783:4;11775:13;;11790:2;11755:19;:38::i;:::-;11546:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11492:358;;;;;;;;;;;:::i;:::-;;;;;;;;11448:414;11364:505;;:::o;15000:238::-;15084:22;15092:4;15098:7;15084;:22::i;:::-;15079:152;;15155:4;15123:6;:12;15130:4;15123:12;;;;;;;;;;;:20;;:29;15144:7;15123:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;15206:12;:10;:12::i;:::-;15179:40;;15197:7;15179:40;;15191:4;15179:40;;;;;;;;;;15079:152;15000:238;;:::o;15370:239::-;15454:22;15462:4;15468:7;15454;:22::i;:::-;15450:152;;;15525:5;15493:6;:12;15500:4;15493:12;;;;;;;;;;;:20;;:29;15514:7;15493:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;15577:12;:10;:12::i;:::-;15550:40;;15568:7;15550:40;;15562:4;15550:40;;;;;;;;;;15450:152;15370:239;;:::o;17813:120::-;17357:8;:6;:8::i;:::-;17349:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;17882:5:::1;17872:7;;:15;;;;;;;;;;;;;;;;;;17903:22;17912:12;:10;:12::i;:::-;17903:22;;;;;;:::i;:::-;;;;;;;;17813:120::o:0;30172:399::-;30275:1;30256:21;;:7;:21;;;;30248:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30326:49;30355:1;30359:7;30368:6;30326:20;:49::i;:::-;30404:6;30388:12;;:22;;;;;;;:::i;:::-;;;;;;;;30443:6;30421:9;:18;30431:7;30421:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;30486:7;30465:37;;30482:1;30465:37;;;30495:6;30465:37;;;;;;:::i;:::-;;;;;;;;30515:48;30543:1;30547:7;30556:6;30515:19;:48::i;:::-;30172:399;;:::o;30904:591::-;31007:1;30988:21;;:7;:21;;;;30980:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31060:49;31081:7;31098:1;31102:6;31060:20;:49::i;:::-;31122:22;31147:9;:18;31157:7;31147:18;;;;;;;;;;;;;;;;31122:43;;31202:6;31184:14;:24;;31176:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31321:6;31304:14;:23;31283:9;:18;31293:7;31283:18;;;;;;;;;;;;;;;:44;;;;31365:6;31349:12;;:22;;;;;;;:::i;:::-;;;;;;;;31415:1;31389:37;;31398:7;31389:37;;;31419:6;31389:37;;;;;;:::i;:::-;;;;;;;;31439:48;31459:7;31476:1;31480:6;31439:19;:48::i;:::-;30969:526;30904:591;;:::o;17554:118::-;17080:8;:6;:8::i;:::-;17079:9;17071:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;17624:4:::1;17614:7;;:14;;;;;;;;;;;;;;;;;;17644:20;17651:12;:10;:12::i;:::-;17644:20;;;;;;:::i;:::-;;;;;;;;17554:118::o:0;36469:199::-;17080:8;:6;:8::i;:::-;17079:9;17071:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;36616:44:::1;36643:4;36649:2;36653:6;36616:26;:44::i;:::-;36469:199:::0;;;:::o;34382:124::-;;;;:::o;3630:451::-;3705:13;3731:19;3776:1;3767:6;3763:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;3753:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3731:47;;3789:15;:6;3796:1;3789:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;3815;:6;3822:1;3815:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;3846:9;3871:1;3862:6;3858:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;3846:26;;3841:135;3878:1;3874;:5;3841:135;;;3913:12;3934:3;3926:5;:11;3913:25;;;;;;;:::i;:::-;;;;;3901:6;3908:1;3901:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;3963:1;3953:11;;;;;3881:3;;;;:::i;:::-;;;3841:135;;;;4003:1;3994:5;:10;3986:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;4066:6;4052:21;;;3630:451;;;;:::o;33653:125::-;;;;:::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:402::-;9356:3;9377:85;9459:2;9454:3;9377:85;:::i;:::-;9370:92;;9471:93;9560:3;9471:93;:::i;:::-;9589:2;9584:3;9580:12;9573:19;;9196:402;;;:::o;9604:366::-;9746:3;9767:67;9831:2;9826:3;9767:67;:::i;:::-;9760:74;;9843:93;9932:3;9843:93;:::i;:::-;9961:2;9956:3;9952:12;9945:19;;9604:366;;;:::o;9976:402::-;10136:3;10157:85;10239:2;10234:3;10157:85;:::i;:::-;10150:92;;10251:93;10340:3;10251:93;:::i;:::-;10369:2;10364:3;10360:12;10353:19;;9976:402;;;:::o;10384:366::-;10526:3;10547:67;10611:2;10606:3;10547:67;:::i;:::-;10540:74;;10623:93;10712:3;10623:93;:::i;:::-;10741:2;10736:3;10732:12;10725:19;;10384:366;;;:::o;10756:::-;10898:3;10919:67;10983:2;10978:3;10919:67;:::i;:::-;10912:74;;10995:93;11084:3;10995:93;:::i;:::-;11113:2;11108:3;11104:12;11097:19;;10756:366;;;:::o;11128:118::-;11215:24;11233:5;11215:24;:::i;:::-;11210:3;11203:37;11128:118;;:::o;11252:112::-;11335:22;11351:5;11335:22;:::i;:::-;11330:3;11323:35;11252:112;;:::o;11370:967::-;11752:3;11774:148;11918:3;11774:148;:::i;:::-;11767:155;;11939:95;12030:3;12021:6;11939:95;:::i;:::-;11932:102;;12051:148;12195:3;12051:148;:::i;:::-;12044:155;;12216:95;12307:3;12298:6;12216:95;:::i;:::-;12209:102;;12328:3;12321:10;;11370:967;;;;;:::o;12343:222::-;12436:4;12474:2;12463:9;12459:18;12451:26;;12487:71;12555:1;12544:9;12540:17;12531:6;12487:71;:::i;:::-;12343:222;;;;:::o;12571:210::-;12658:4;12696:2;12685:9;12681:18;12673:26;;12709:65;12771:1;12760:9;12756:17;12747:6;12709:65;:::i;:::-;12571:210;;;;:::o;12787:222::-;12880:4;12918:2;12907:9;12903:18;12895:26;;12931:71;12999:1;12988:9;12984:17;12975:6;12931:71;:::i;:::-;12787:222;;;;:::o;13015:313::-;13128:4;13166:2;13155:9;13151:18;13143:26;;13215:9;13209:4;13205:20;13201:1;13190:9;13186:17;13179:47;13243:78;13316:4;13307:6;13243:78;:::i;:::-;13235:86;;13015:313;;;;:::o;13334:419::-;13500:4;13538:2;13527:9;13523:18;13515:26;;13587:9;13581:4;13577:20;13573:1;13562:9;13558:17;13551:47;13615:131;13741:4;13615:131;:::i;:::-;13607:139;;13334:419;;;:::o;13759:::-;13925:4;13963:2;13952:9;13948:18;13940:26;;14012:9;14006:4;14002:20;13998:1;13987:9;13983:17;13976:47;14040:131;14166:4;14040:131;:::i;:::-;14032:139;;13759:419;;;:::o;14184:::-;14350:4;14388:2;14377:9;14373:18;14365:26;;14437:9;14431:4;14427:20;14423:1;14412:9;14408:17;14401:47;14465:131;14591:4;14465:131;:::i;:::-;14457:139;;14184:419;;;:::o;14609:::-;14775:4;14813:2;14802:9;14798:18;14790:26;;14862:9;14856:4;14852:20;14848:1;14837:9;14833:17;14826:47;14890:131;15016:4;14890:131;:::i;:::-;14882:139;;14609:419;;;:::o;15034:::-;15200:4;15238:2;15227:9;15223:18;15215:26;;15287:9;15281:4;15277:20;15273:1;15262:9;15258:17;15251:47;15315:131;15441:4;15315:131;:::i;:::-;15307:139;;15034:419;;;:::o;15459:::-;15625:4;15663:2;15652:9;15648:18;15640:26;;15712:9;15706:4;15702:20;15698:1;15687:9;15683:17;15676:47;15740:131;15866:4;15740:131;:::i;:::-;15732:139;;15459:419;;;:::o;15884:::-;16050:4;16088:2;16077:9;16073:18;16065:26;;16137:9;16131:4;16127:20;16123:1;16112:9;16108:17;16101:47;16165:131;16291:4;16165:131;:::i;:::-;16157:139;;15884:419;;;:::o;16309:::-;16475:4;16513:2;16502:9;16498:18;16490:26;;16562:9;16556:4;16552:20;16548:1;16537:9;16533:17;16526:47;16590:131;16716:4;16590:131;:::i;:::-;16582:139;;16309:419;;;:::o;16734:::-;16900:4;16938:2;16927:9;16923:18;16915:26;;16987:9;16981:4;16977:20;16973:1;16962:9;16958:17;16951:47;17015:131;17141:4;17015:131;:::i;:::-;17007:139;;16734:419;;;:::o;17159:::-;17325:4;17363:2;17352:9;17348:18;17340:26;;17412:9;17406:4;17402:20;17398:1;17387:9;17383:17;17376:47;17440:131;17566:4;17440:131;:::i;:::-;17432:139;;17159:419;;;:::o;17584:::-;17750:4;17788:2;17777:9;17773:18;17765:26;;17837:9;17831:4;17827:20;17823:1;17812:9;17808:17;17801:47;17865:131;17991:4;17865:131;:::i;:::-;17857:139;;17584:419;;;:::o;18009:::-;18175:4;18213:2;18202:9;18198:18;18190:26;;18262:9;18256:4;18252:20;18248:1;18237:9;18233:17;18226:47;18290:131;18416:4;18290:131;:::i;:::-;18282:139;;18009:419;;;:::o;18434:::-;18600:4;18638:2;18627:9;18623:18;18615:26;;18687:9;18681:4;18677:20;18673:1;18662:9;18658:17;18651:47;18715:131;18841:4;18715:131;:::i;:::-;18707:139;;18434:419;;;:::o;18859:::-;19025:4;19063:2;19052:9;19048:18;19040:26;;19112:9;19106:4;19102:20;19098:1;19087:9;19083:17;19076:47;19140:131;19266:4;19140:131;:::i;:::-;19132:139;;18859:419;;;:::o;19284:222::-;19377:4;19415:2;19404:9;19400:18;19392:26;;19428:71;19496:1;19485:9;19481:17;19472:6;19428:71;:::i;:::-;19284:222;;;;:::o;19512:214::-;19601:4;19639:2;19628:9;19624:18;19616:26;;19652:67;19716:1;19705:9;19701:17;19692:6;19652:67;:::i;:::-;19512:214;;;;:::o;19813:99::-;19865:6;19899:5;19893:12;19883:22;;19813:99;;;:::o;19918:169::-;20002:11;20036:6;20031:3;20024:19;20076:4;20071:3;20067:14;20052:29;;19918:169;;;;:::o;20093:148::-;20195:11;20232:3;20217:18;;20093:148;;;;:::o;20247:305::-;20287:3;20306:20;20324:1;20306:20;:::i;:::-;20301:25;;20340:20;20358:1;20340:20;:::i;:::-;20335:25;;20494:1;20426:66;20422:74;20419:1;20416:81;20413:107;;;20500:18;;:::i;:::-;20413:107;20544:1;20541;20537:9;20530:16;;20247:305;;;;:::o;20558:348::-;20598:7;20621:20;20639:1;20621:20;:::i;:::-;20616:25;;20655:20;20673:1;20655:20;:::i;:::-;20650:25;;20843:1;20775:66;20771:74;20768:1;20765:81;20760:1;20753:9;20746:17;20742:105;20739:131;;;20850:18;;:::i;:::-;20739:131;20898:1;20895;20891:9;20880:20;;20558:348;;;;:::o;20912:191::-;20952:4;20972:20;20990:1;20972:20;:::i;:::-;20967:25;;21006:20;21024:1;21006:20;:::i;:::-;21001:25;;21045:1;21042;21039:8;21036:34;;;21050:18;;:::i;:::-;21036:34;21095:1;21092;21088:9;21080:17;;20912:191;;;;:::o;21109:96::-;21146:7;21175:24;21193:5;21175:24;:::i;:::-;21164:35;;21109:96;;;:::o;21211:90::-;21245:7;21288:5;21281:13;21274:21;21263:32;;21211:90;;;:::o;21307:77::-;21344:7;21373:5;21362:16;;21307:77;;;:::o;21390:149::-;21426:7;21466:66;21459:5;21455:78;21444:89;;21390:149;;;:::o;21545:126::-;21582:7;21622:42;21615:5;21611:54;21600:65;;21545:126;;;:::o;21677:77::-;21714:7;21743:5;21732:16;;21677:77;;;:::o;21760:86::-;21795:7;21835:4;21828:5;21824:16;21813:27;;21760:86;;;:::o;21852:307::-;21920:1;21930:113;21944:6;21941:1;21938:13;21930:113;;;22029:1;22024:3;22020:11;22014:18;22010:1;22005:3;22001:11;21994:39;21966:2;21963:1;21959:10;21954:15;;21930:113;;;22061:6;22058:1;22055:13;22052:101;;;22141:1;22132:6;22127:3;22123:16;22116:27;22052:101;21901:258;21852:307;;;:::o;22165:171::-;22204:3;22227:24;22245:5;22227:24;:::i;:::-;22218:33;;22273:4;22266:5;22263:15;22260:41;;;22281:18;;:::i;:::-;22260:41;22328:1;22321:5;22317:13;22310:20;;22165:171;;;:::o;22342:320::-;22386:6;22423:1;22417:4;22413:12;22403:22;;22470:1;22464:4;22460:12;22491:18;22481:81;;22547:4;22539:6;22535:17;22525:27;;22481:81;22609:2;22601:6;22598:14;22578:18;22575:38;22572:84;;;22628:18;;:::i;:::-;22572:84;22393:269;22342:320;;;:::o;22668:180::-;22716:77;22713:1;22706:88;22813:4;22810:1;22803:15;22837:4;22834:1;22827:15;22854:180;22902:77;22899:1;22892:88;22999:4;22996:1;22989:15;23023:4;23020:1;23013:15;23040:180;23088:77;23085:1;23078:88;23185:4;23182:1;23175:15;23209:4;23206:1;23199:15;23226:180;23274:77;23271:1;23264:88;23371:4;23368:1;23361:15;23395:4;23392:1;23385:15;23535:117;23644:1;23641;23634:12;23658:102;23699:6;23750:2;23746:7;23741:2;23734:5;23730:14;23726:28;23716:38;;23658:102;;;:::o;23766:182::-;23906:34;23902:1;23894:6;23890:14;23883:58;23766:182;:::o;23954:222::-;24094:34;24090:1;24082:6;24078:14;24071:58;24163:5;24158:2;24150:6;24146:15;24139:30;23954:222;:::o;24182:170::-;24322:22;24318:1;24310:6;24306:14;24299:46;24182:170;:::o;24358:221::-;24498:34;24494:1;24486:6;24482:14;24475:58;24567:4;24562:2;24554:6;24550:15;24543:29;24358:221;:::o;24585:::-;24725:34;24721:1;24713:6;24709:14;24702:58;24794:4;24789:2;24781:6;24777:15;24770:29;24585:221;:::o;24812:179::-;24952:31;24948:1;24940:6;24936:14;24929:55;24812:179;:::o;24997:225::-;25137:34;25133:1;25125:6;25121:14;25114:58;25206:8;25201:2;25193:6;25189:15;25182:33;24997:225;:::o;25228:166::-;25368:18;25364:1;25356:6;25352:14;25345:42;25228:166;:::o;25400:220::-;25540:34;25536:1;25528:6;25524:14;25517:58;25609:3;25604:2;25596:6;25592:15;25585:28;25400:220;:::o;25626:224::-;25766:34;25762:1;25754:6;25750:14;25743:58;25835:7;25830:2;25822:6;25818:15;25811:32;25626:224;:::o;25856:223::-;25996:34;25992:1;25984:6;25980:14;25973:58;26065:6;26060:2;26052:6;26048:15;26041:31;25856:223;:::o;26085:173::-;26225:25;26221:1;26213:6;26209:14;26202:49;26085:173;:::o;26264:224::-;26404:34;26400:1;26392:6;26388:14;26381:58;26473:7;26468:2;26460:6;26456:15;26449:32;26264:224;:::o;26494:167::-;26634:19;26630:1;26622:6;26618:14;26611:43;26494:167;:::o;26667:234::-;26807:34;26803:1;26795:6;26791:14;26784:58;26876:17;26871:2;26863:6;26859:15;26852:42;26667:234;:::o;26907:181::-;27047:33;27043:1;27035:6;27031:14;27024:57;26907:181;:::o;27094:122::-;27167:24;27185:5;27167:24;:::i;:::-;27160:5;27157:35;27147:63;;27206:1;27203;27196:12;27147:63;27094:122;:::o;27222:::-;27295:24;27313:5;27295:24;:::i;:::-;27288:5;27285:35;27275:63;;27334:1;27331;27324:12;27275:63;27222:122;:::o;27350:120::-;27422:23;27439:5;27422:23;:::i;:::-;27415:5;27412:34;27402:62;;27460:1;27457;27450:12;27402:62;27350:120;:::o;27476:122::-;27549:24;27567:5;27549:24;:::i;:::-;27542:5;27539:35;27529:63;;27588:1;27585;27578:12;27529:63;27476:122;:::o

Swarm Source

ipfs://77f3b97244384ac59c39292830a24e6d3744076ea6baaea8856c6b3287dcd7cf
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.