ETH Price: $2,878.87 (-9.12%)
Gas: 9 Gwei

Token

Deepbrainchain Token (DBC)
 

Overview

Max Total Supply

800,000,000 DBC

Holders

1,134

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 15 Decimals)

Balance
13,508.045407097133495 DBC

Value
$0.00
0x95665a79b80c5b58ce5977ef84ed051867389968
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:
DBCERC20

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity Multiple files format)

File 4 of 15: dbc_erc20.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.0;

import "./ERC20PresetMinterPauser.sol";

contract DBCERC20 is ERC20PresetMinterPauser {
    bytes32 public constant BURN_ROLE = keccak256("BURN_ROLE");

    constructor() ERC20PresetMinterPauser("Deepbrainchain Token", "DBC") {
        _setupRole(BURN_ROLE, _msgSender());
    }

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

    function sudo_burn(address account, uint256 amount) public {
        require(
            hasRole(BURN_ROLE, _msgSender()),
            "DBCERC20: must have burn role to burn"
        );
        _burn(account, amount);
    }
}

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

pragma solidity ^0.8.0;

import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

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

    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    function grantRole(bytes32 role, address account) external;

    function revokeRole(bytes32 role, address account) external;

    function renounceRole(bytes32 role, address account) external;
}

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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

    /**
     * @dev 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]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

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

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

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

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

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account)
        public
        virtual
        override
        onlyRole(getRoleAdmin(role))
    {
        _revokeRole(role, account);
    }

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

        _revokeRole(role, account);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

import "./AccessControl.sol";
import "./EnumerableSet.sol";

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index)
        external
        view
        returns (address);

    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is
    IAccessControlEnumerable,
    AccessControl
{
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index)
        public
        view
        override
        returns (address)
    {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role)
        public
        view
        override
        returns (uint256)
    {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account)
        public
        virtual
        override
    {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account)
        internal
        virtual
        override
    {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./Pausable.sol";

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

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

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

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./ERC20Burnable.sol";
import "./ERC20Pausable.sol";
import "./AccessControlEnumerable.sol";
import "./Context.sol";

/**
 * @dev {ERC20} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract ERC20PresetMinterPauser is
    Context,
    AccessControlEnumerable,
    ERC20Burnable,
    ERC20Pausable
{
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC20-constructor}.
     */
    constructor(string memory name, string memory symbol) ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev Creates `amount` new tokens for `to`.
     *
     * See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 amount) public virtual {
        require(
            hasRole(MINTER_ROLE, _msgSender()),
            "ERC20PresetMinterPauser: must have minter role to mint"
        );
        _mint(to, amount);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(
            hasRole(PAUSER_ROLE, _msgSender()),
            "ERC20PresetMinterPauser: must have pauser role to pause"
        );
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(
            hasRole(PAUSER_ROLE, _msgSender()),
            "ERC20PresetMinterPauser: must have pauser role to unpause"
        );
        _unpause();
    }

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    bool private _paused;

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

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

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

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

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

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

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

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

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":"BURN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sudo_burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601481526020017f44656570627261696e636861696e20546f6b656e0000000000000000000000008152506040518060400160405280600381526020017f4442430000000000000000000000000000000000000000000000000000000000815250818181600590805190602001906200009892919062000454565b508060069080519060200190620000b192919062000454565b5050506000600760006101000a81548160ff021916908315150217905550620000f36000801b620000e7620001be60201b60201c565b620001c660201b60201c565b620001347f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a662000128620001be60201b60201c565b620001c660201b60201c565b620001757f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a62000169620001be60201b60201c565b620001c660201b60201c565b5050620001b87fe97b137254058bd94f28d2f3eb79e2d34074ffb488d042e3bc958e0a57d2fa22620001ac620001be60201b60201c565b620001c660201b60201c565b62000569565b600033905090565b620001dd82826200020e60201b62000fd21760201c565b6200020981600160008581526020019081526020016000206200022460201b62000fe01790919060201c565b505050565b6200022082826200025c60201b60201c565b5050565b600062000254836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200034d60201b60201c565b905092915050565b6200026e8282620003c760201b60201c565b6200034957600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002ee620001be60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006200036183836200043160201b60201c565b620003bc578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050620003c1565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054620004629062000504565b90600052602060002090601f016020900481019282620004865760008555620004d2565b82601f10620004a157805160ff1916838001178555620004d2565b82800160010185558215620004d2579182015b82811115620004d1578251825591602001919060010190620004b4565b5b509050620004e19190620004e5565b5090565b5b8082111562000500576000816000905550600101620004e6565b5090565b600060028204905060018216806200051d57607f821691505b602082108114156200053457620005336200053a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6135a080620005796000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a457c2d7116100a2578063d539139311610071578063d53913931461057d578063d547741f1461059b578063dd62ed3e146105b7578063e63ab1e9146105e7576101da565b8063a457c2d7146104cf578063a9059cbb146104ff578063b930908f1461052f578063ca15c8731461054d576101da565b80639010d07c116100de5780639010d07c1461043357806391d148541461046357806395d89b4114610493578063a217fddf146104b1576101da565b806370a08231146103dd57806379cc67901461040d5780638456cb5914610429576101da565b8063313ce5671161017c57806340c10f191161014b57806340c10f191461036b57806342966c6814610387578063564b1b18146103a35780635c975abb146103bf576101da565b8063313ce567146102f757806336568abe1461031557806339509351146103315780633f4ba83a14610361576101da565b806318160ddd116101b857806318160ddd1461025d57806323b872dd1461027b578063248a9ca3146102ab5780632f2ff15d146102db576101da565b806301ffc9a7146101df57806306fdde031461020f578063095ea7b31461022d575b600080fd5b6101f960048036038101906101f49190612528565b610605565b6040516102069190612986565b60405180910390f35b61021761067f565b60405161022491906129bc565b60405180910390f35b6102476004803603810190610242919061244b565b610711565b6040516102549190612986565b60405180910390f35b61026561072f565b6040516102729190612c5e565b60405180910390f35b610295600480360381019061029091906123fc565b610739565b6040516102a29190612986565b60405180910390f35b6102c560048036038101906102c09190612487565b610831565b6040516102d291906129a1565b60405180910390f35b6102f560048036038101906102f091906124b0565b610850565b005b6102ff610884565b60405161030c9190612c79565b60405180910390f35b61032f600480360381019061032a91906124b0565b61088d565b005b61034b6004803603810190610346919061244b565b6108c1565b6040516103589190612986565b60405180910390f35b61036961096d565b005b6103856004803603810190610380919061244b565b6109e7565b005b6103a1600480360381019061039c9190612551565b610a65565b005b6103bd60048036038101906103b8919061244b565b610a79565b005b6103c7610af7565b6040516103d49190612986565b60405180910390f35b6103f760048036038101906103f29190612397565b610b0e565b6040516104049190612c5e565b60405180910390f35b6104276004803603810190610422919061244b565b610b57565b005b610431610bd2565b005b61044d600480360381019061044891906124ec565b610c4c565b60405161045a919061296b565b60405180910390f35b61047d600480360381019061047891906124b0565b610c7b565b60405161048a9190612986565b60405180910390f35b61049b610ce5565b6040516104a891906129bc565b60405180910390f35b6104b9610d77565b6040516104c691906129a1565b60405180910390f35b6104e960048036038101906104e4919061244b565b610d7e565b6040516104f69190612986565b60405180910390f35b6105196004803603810190610514919061244b565b610e69565b6040516105269190612986565b60405180910390f35b610537610e87565b60405161054491906129a1565b60405180910390f35b61056760048036038101906105629190612487565b610eab565b6040516105749190612c5e565b60405180910390f35b610585610ecf565b60405161059291906129a1565b60405180910390f35b6105b560048036038101906105b091906124b0565b610ef3565b005b6105d160048036038101906105cc91906123c0565b610f27565b6040516105de9190612c5e565b60405180910390f35b6105ef610fae565b6040516105fc91906129a1565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610678575061067782611010565b5b9050919050565b60606005805461068e90612e87565b80601f01602080910402602001604051908101604052809291908181526020018280546106ba90612e87565b80156107075780601f106106dc57610100808354040283529160200191610707565b820191906000526020600020905b8154815290600101906020018083116106ea57829003601f168201915b5050505050905090565b600061072561071e61108a565b8484611092565b6001905092915050565b6000600454905090565b600061074684848461125d565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061079161108a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080890612afe565b60405180910390fd5b6108258561081d61108a565b858403611092565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b61085a82826114e1565b61087f8160016000858152602001908152602001600020610fe090919063ffffffff16565b505050565b6000600f905090565b610897828261150a565b6108bc816001600085815260200190815260200160002061158d90919063ffffffff16565b505050565b60006109636108ce61108a565b8484600360006108dc61108a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461095e9190612cbb565b611092565b6001905092915050565b61099e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61099961108a565b610c7b565b6109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490612a5e565b60405180910390fd5b6109e56115bd565b565b610a187f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a1361108a565b610c7b565b610a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4e90612b1e565b60405180910390fd5b610a61828261165f565b5050565b610a76610a7061108a565b826117c0565b50565b610aaa7fe97b137254058bd94f28d2f3eb79e2d34074ffb488d042e3bc958e0a57d2fa22610aa561108a565b610c7b565b610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae090612abe565b60405180910390fd5b610af382826117c0565b5050565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610b6a83610b6561108a565b610f27565b905081811015610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690612b3e565b60405180910390fd5b610bc383610bbb61108a565b848403611092565b610bcd83836117c0565b505050565b610c037f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610bfe61108a565b610c7b565b610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990612bbe565b60405180910390fd5b610c4a611999565b565b6000610c738260016000868152602001908152602001600020611a3c90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610cf490612e87565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2090612e87565b8015610d6d5780601f10610d4257610100808354040283529160200191610d6d565b820191906000526020600020905b815481529060010190602001808311610d5057829003601f168201915b5050505050905090565b6000801b81565b60008060036000610d8d61108a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190612bde565b60405180910390fd5b610e5e610e5561108a565b85858403611092565b600191505092915050565b6000610e7d610e7661108a565b848461125d565b6001905092915050565b7fe97b137254058bd94f28d2f3eb79e2d34074ffb488d042e3bc958e0a57d2fa2281565b6000610ec860016000848152602001908152602001600020611a56565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610efd8282611a6b565b610f22816001600085815260200190815260200160002061158d90919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610fdc8282611a94565b5050565b6000611008836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611b74565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611083575061108282611be4565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990612b9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116990612a7e565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112509190612c5e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490612b7e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611334906129fe565b60405180910390fd5b611348838383611c4e565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690612a9e565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114649190612cbb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114c89190612c5e565b60405180910390a36114db848484611c5e565b50505050565b6114ea82610831565b6114fb816114f661108a565b611c63565b6115058383611a94565b505050565b61151261108a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690612bfe565b60405180910390fd5b6115898282611d00565b5050565b60006115b5836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611de1565b905092915050565b6115c5610af7565b611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb90612a1e565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61164861108a565b604051611655919061296b565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690612c1e565b60405180910390fd5b6116db60008383611c4e565b80600460008282546116ed9190612cbb565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117439190612cbb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117a89190612c5e565b60405180910390a36117bc60008383611c5e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790612b5e565b60405180910390fd5b61183c82600083611c4e565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba90612a3e565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816004600082825461191b9190612d6b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119809190612c5e565b60405180910390a361199483600084611c5e565b505050565b6119a1610af7565b156119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d890612ade565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a2561108a565b604051611a32919061296b565b60405180910390a1565b6000611a4b8360000183611f67565b60001c905092915050565b6000611a6482600001611fb8565b9050919050565b611a7482610831565b611a8581611a8061108a565b611c63565b611a8f8383611d00565b505050565b611a9e8282610c7b565b611b7057600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611b1561108a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611b808383611fc9565b611bd9578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611bde565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c59838383611fec565b505050565b505050565b611c6d8282610c7b565b611cfc57611c928173ffffffffffffffffffffffffffffffffffffffff166014612044565b611ca08360001c6020612044565b604051602001611cb1929190612931565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf391906129bc565b60405180910390fd5b5050565b611d0a8282610c7b565b15611ddd57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611d8261108a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114611f5b576000600182611e139190612d6b565b9050600060018660000180549050611e2b9190612d6b565b9050818114611ee6576000866000018281548110611e72577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110611ebc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611f20577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611f61565b60009150505b92915050565b6000826000018281548110611fa5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b611ff783838361233e565b611fff610af7565b1561203f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203690612c3e565b60405180910390fd5b505050565b6060600060028360026120579190612d11565b6120619190612cbb565b67ffffffffffffffff8111156120a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120d25781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612130577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106121ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026121fa9190612d11565b6122049190612cbb565b90505b60018111156122f0577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061226c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106122a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806122e990612e5d565b9050612207565b5060008414612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232b906129de565b60405180910390fd5b8091505092915050565b505050565b6000813590506123528161350e565b92915050565b60008135905061236781613525565b92915050565b60008135905061237c8161353c565b92915050565b60008135905061239181613553565b92915050565b6000602082840312156123a957600080fd5b60006123b784828501612343565b91505092915050565b600080604083850312156123d357600080fd5b60006123e185828601612343565b92505060206123f285828601612343565b9150509250929050565b60008060006060848603121561241157600080fd5b600061241f86828701612343565b935050602061243086828701612343565b925050604061244186828701612382565b9150509250925092565b6000806040838503121561245e57600080fd5b600061246c85828601612343565b925050602061247d85828601612382565b9150509250929050565b60006020828403121561249957600080fd5b60006124a784828501612358565b91505092915050565b600080604083850312156124c357600080fd5b60006124d185828601612358565b92505060206124e285828601612343565b9150509250929050565b600080604083850312156124ff57600080fd5b600061250d85828601612358565b925050602061251e85828601612382565b9150509250929050565b60006020828403121561253a57600080fd5b60006125488482850161236d565b91505092915050565b60006020828403121561256357600080fd5b600061257184828501612382565b91505092915050565b61258381612d9f565b82525050565b61259281612db1565b82525050565b6125a181612dbd565b82525050565b60006125b282612c94565b6125bc8185612c9f565b93506125cc818560208601612e2a565b6125d581612f17565b840191505092915050565b60006125eb82612c94565b6125f58185612cb0565b9350612605818560208601612e2a565b80840191505092915050565b600061261e602083612c9f565b915061262982612f28565b602082019050919050565b6000612641602383612c9f565b915061264c82612f51565b604082019050919050565b6000612664601483612c9f565b915061266f82612fa0565b602082019050919050565b6000612687602283612c9f565b915061269282612fc9565b604082019050919050565b60006126aa603983612c9f565b91506126b582613018565b604082019050919050565b60006126cd602283612c9f565b91506126d882613067565b604082019050919050565b60006126f0602683612c9f565b91506126fb826130b6565b604082019050919050565b6000612713602583612c9f565b915061271e82613105565b604082019050919050565b6000612736601083612c9f565b915061274182613154565b602082019050919050565b6000612759602883612c9f565b91506127648261317d565b604082019050919050565b600061277c603683612c9f565b9150612787826131cc565b604082019050919050565b600061279f602483612c9f565b91506127aa8261321b565b604082019050919050565b60006127c2602183612c9f565b91506127cd8261326a565b604082019050919050565b60006127e5602583612c9f565b91506127f0826132b9565b604082019050919050565b6000612808602483612c9f565b915061281382613308565b604082019050919050565b600061282b603783612c9f565b915061283682613357565b604082019050919050565b600061284e601783612cb0565b9150612859826133a6565b601782019050919050565b6000612871602583612c9f565b915061287c826133cf565b604082019050919050565b6000612894601183612cb0565b915061289f8261341e565b601182019050919050565b60006128b7602f83612c9f565b91506128c282613447565b604082019050919050565b60006128da601f83612c9f565b91506128e582613496565b602082019050919050565b60006128fd602a83612c9f565b9150612908826134bf565b604082019050919050565b61291c81612e13565b82525050565b61292b81612e1d565b82525050565b600061293c82612841565b915061294882856125e0565b915061295382612887565b915061295f82846125e0565b91508190509392505050565b6000602082019050612980600083018461257a565b92915050565b600060208201905061299b6000830184612589565b92915050565b60006020820190506129b66000830184612598565b92915050565b600060208201905081810360008301526129d681846125a7565b905092915050565b600060208201905081810360008301526129f781612611565b9050919050565b60006020820190508181036000830152612a1781612634565b9050919050565b60006020820190508181036000830152612a3781612657565b9050919050565b60006020820190508181036000830152612a578161267a565b9050919050565b60006020820190508181036000830152612a778161269d565b9050919050565b60006020820190508181036000830152612a97816126c0565b9050919050565b60006020820190508181036000830152612ab7816126e3565b9050919050565b60006020820190508181036000830152612ad781612706565b9050919050565b60006020820190508181036000830152612af781612729565b9050919050565b60006020820190508181036000830152612b178161274c565b9050919050565b60006020820190508181036000830152612b378161276f565b9050919050565b60006020820190508181036000830152612b5781612792565b9050919050565b60006020820190508181036000830152612b77816127b5565b9050919050565b60006020820190508181036000830152612b97816127d8565b9050919050565b60006020820190508181036000830152612bb7816127fb565b9050919050565b60006020820190508181036000830152612bd78161281e565b9050919050565b60006020820190508181036000830152612bf781612864565b9050919050565b60006020820190508181036000830152612c17816128aa565b9050919050565b60006020820190508181036000830152612c37816128cd565b9050919050565b60006020820190508181036000830152612c57816128f0565b9050919050565b6000602082019050612c736000830184612913565b92915050565b6000602082019050612c8e6000830184612922565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612cc682612e13565b9150612cd183612e13565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d0657612d05612eb9565b5b828201905092915050565b6000612d1c82612e13565b9150612d2783612e13565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d6057612d5f612eb9565b5b828202905092915050565b6000612d7682612e13565b9150612d8183612e13565b925082821015612d9457612d93612eb9565b5b828203905092915050565b6000612daa82612df3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612e48578082015181840152602081019050612e2d565b83811115612e57576000848401525b50505050565b6000612e6882612e13565b91506000821415612e7c57612e7b612eb9565b5b600182039050919050565b60006002820490506001821680612e9f57607f821691505b60208210811415612eb357612eb2612ee8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f44424345524332303a206d7573742068617665206275726e20726f6c6520746f60008201527f206275726e000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61351781612d9f565b811461352257600080fd5b50565b61352e81612dbd565b811461353957600080fd5b50565b61354581612dc7565b811461355057600080fd5b50565b61355c81612e13565b811461356757600080fd5b5056fea2646970667358221220809d168b5d25948c116928f46925c0cdd7cc64b108bcc0703d5d5069909a753864736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a457c2d7116100a2578063d539139311610071578063d53913931461057d578063d547741f1461059b578063dd62ed3e146105b7578063e63ab1e9146105e7576101da565b8063a457c2d7146104cf578063a9059cbb146104ff578063b930908f1461052f578063ca15c8731461054d576101da565b80639010d07c116100de5780639010d07c1461043357806391d148541461046357806395d89b4114610493578063a217fddf146104b1576101da565b806370a08231146103dd57806379cc67901461040d5780638456cb5914610429576101da565b8063313ce5671161017c57806340c10f191161014b57806340c10f191461036b57806342966c6814610387578063564b1b18146103a35780635c975abb146103bf576101da565b8063313ce567146102f757806336568abe1461031557806339509351146103315780633f4ba83a14610361576101da565b806318160ddd116101b857806318160ddd1461025d57806323b872dd1461027b578063248a9ca3146102ab5780632f2ff15d146102db576101da565b806301ffc9a7146101df57806306fdde031461020f578063095ea7b31461022d575b600080fd5b6101f960048036038101906101f49190612528565b610605565b6040516102069190612986565b60405180910390f35b61021761067f565b60405161022491906129bc565b60405180910390f35b6102476004803603810190610242919061244b565b610711565b6040516102549190612986565b60405180910390f35b61026561072f565b6040516102729190612c5e565b60405180910390f35b610295600480360381019061029091906123fc565b610739565b6040516102a29190612986565b60405180910390f35b6102c560048036038101906102c09190612487565b610831565b6040516102d291906129a1565b60405180910390f35b6102f560048036038101906102f091906124b0565b610850565b005b6102ff610884565b60405161030c9190612c79565b60405180910390f35b61032f600480360381019061032a91906124b0565b61088d565b005b61034b6004803603810190610346919061244b565b6108c1565b6040516103589190612986565b60405180910390f35b61036961096d565b005b6103856004803603810190610380919061244b565b6109e7565b005b6103a1600480360381019061039c9190612551565b610a65565b005b6103bd60048036038101906103b8919061244b565b610a79565b005b6103c7610af7565b6040516103d49190612986565b60405180910390f35b6103f760048036038101906103f29190612397565b610b0e565b6040516104049190612c5e565b60405180910390f35b6104276004803603810190610422919061244b565b610b57565b005b610431610bd2565b005b61044d600480360381019061044891906124ec565b610c4c565b60405161045a919061296b565b60405180910390f35b61047d600480360381019061047891906124b0565b610c7b565b60405161048a9190612986565b60405180910390f35b61049b610ce5565b6040516104a891906129bc565b60405180910390f35b6104b9610d77565b6040516104c691906129a1565b60405180910390f35b6104e960048036038101906104e4919061244b565b610d7e565b6040516104f69190612986565b60405180910390f35b6105196004803603810190610514919061244b565b610e69565b6040516105269190612986565b60405180910390f35b610537610e87565b60405161054491906129a1565b60405180910390f35b61056760048036038101906105629190612487565b610eab565b6040516105749190612c5e565b60405180910390f35b610585610ecf565b60405161059291906129a1565b60405180910390f35b6105b560048036038101906105b091906124b0565b610ef3565b005b6105d160048036038101906105cc91906123c0565b610f27565b6040516105de9190612c5e565b60405180910390f35b6105ef610fae565b6040516105fc91906129a1565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610678575061067782611010565b5b9050919050565b60606005805461068e90612e87565b80601f01602080910402602001604051908101604052809291908181526020018280546106ba90612e87565b80156107075780601f106106dc57610100808354040283529160200191610707565b820191906000526020600020905b8154815290600101906020018083116106ea57829003601f168201915b5050505050905090565b600061072561071e61108a565b8484611092565b6001905092915050565b6000600454905090565b600061074684848461125d565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061079161108a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080890612afe565b60405180910390fd5b6108258561081d61108a565b858403611092565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b61085a82826114e1565b61087f8160016000858152602001908152602001600020610fe090919063ffffffff16565b505050565b6000600f905090565b610897828261150a565b6108bc816001600085815260200190815260200160002061158d90919063ffffffff16565b505050565b60006109636108ce61108a565b8484600360006108dc61108a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461095e9190612cbb565b611092565b6001905092915050565b61099e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61099961108a565b610c7b565b6109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490612a5e565b60405180910390fd5b6109e56115bd565b565b610a187f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a1361108a565b610c7b565b610a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4e90612b1e565b60405180910390fd5b610a61828261165f565b5050565b610a76610a7061108a565b826117c0565b50565b610aaa7fe97b137254058bd94f28d2f3eb79e2d34074ffb488d042e3bc958e0a57d2fa22610aa561108a565b610c7b565b610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae090612abe565b60405180910390fd5b610af382826117c0565b5050565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610b6a83610b6561108a565b610f27565b905081811015610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690612b3e565b60405180910390fd5b610bc383610bbb61108a565b848403611092565b610bcd83836117c0565b505050565b610c037f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610bfe61108a565b610c7b565b610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990612bbe565b60405180910390fd5b610c4a611999565b565b6000610c738260016000868152602001908152602001600020611a3c90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610cf490612e87565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2090612e87565b8015610d6d5780601f10610d4257610100808354040283529160200191610d6d565b820191906000526020600020905b815481529060010190602001808311610d5057829003601f168201915b5050505050905090565b6000801b81565b60008060036000610d8d61108a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190612bde565b60405180910390fd5b610e5e610e5561108a565b85858403611092565b600191505092915050565b6000610e7d610e7661108a565b848461125d565b6001905092915050565b7fe97b137254058bd94f28d2f3eb79e2d34074ffb488d042e3bc958e0a57d2fa2281565b6000610ec860016000848152602001908152602001600020611a56565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610efd8282611a6b565b610f22816001600085815260200190815260200160002061158d90919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610fdc8282611a94565b5050565b6000611008836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611b74565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611083575061108282611be4565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990612b9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116990612a7e565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112509190612c5e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490612b7e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611334906129fe565b60405180910390fd5b611348838383611c4e565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690612a9e565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114649190612cbb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114c89190612c5e565b60405180910390a36114db848484611c5e565b50505050565b6114ea82610831565b6114fb816114f661108a565b611c63565b6115058383611a94565b505050565b61151261108a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690612bfe565b60405180910390fd5b6115898282611d00565b5050565b60006115b5836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611de1565b905092915050565b6115c5610af7565b611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb90612a1e565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61164861108a565b604051611655919061296b565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690612c1e565b60405180910390fd5b6116db60008383611c4e565b80600460008282546116ed9190612cbb565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117439190612cbb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117a89190612c5e565b60405180910390a36117bc60008383611c5e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790612b5e565b60405180910390fd5b61183c82600083611c4e565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba90612a3e565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816004600082825461191b9190612d6b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119809190612c5e565b60405180910390a361199483600084611c5e565b505050565b6119a1610af7565b156119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d890612ade565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a2561108a565b604051611a32919061296b565b60405180910390a1565b6000611a4b8360000183611f67565b60001c905092915050565b6000611a6482600001611fb8565b9050919050565b611a7482610831565b611a8581611a8061108a565b611c63565b611a8f8383611d00565b505050565b611a9e8282610c7b565b611b7057600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611b1561108a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611b808383611fc9565b611bd9578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611bde565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c59838383611fec565b505050565b505050565b611c6d8282610c7b565b611cfc57611c928173ffffffffffffffffffffffffffffffffffffffff166014612044565b611ca08360001c6020612044565b604051602001611cb1929190612931565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf391906129bc565b60405180910390fd5b5050565b611d0a8282610c7b565b15611ddd57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611d8261108a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114611f5b576000600182611e139190612d6b565b9050600060018660000180549050611e2b9190612d6b565b9050818114611ee6576000866000018281548110611e72577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110611ebc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611f20577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611f61565b60009150505b92915050565b6000826000018281548110611fa5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b611ff783838361233e565b611fff610af7565b1561203f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203690612c3e565b60405180910390fd5b505050565b6060600060028360026120579190612d11565b6120619190612cbb565b67ffffffffffffffff8111156120a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120d25781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612130577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106121ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026121fa9190612d11565b6122049190612cbb565b90505b60018111156122f0577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061226c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106122a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806122e990612e5d565b9050612207565b5060008414612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232b906129de565b60405180910390fd5b8091505092915050565b505050565b6000813590506123528161350e565b92915050565b60008135905061236781613525565b92915050565b60008135905061237c8161353c565b92915050565b60008135905061239181613553565b92915050565b6000602082840312156123a957600080fd5b60006123b784828501612343565b91505092915050565b600080604083850312156123d357600080fd5b60006123e185828601612343565b92505060206123f285828601612343565b9150509250929050565b60008060006060848603121561241157600080fd5b600061241f86828701612343565b935050602061243086828701612343565b925050604061244186828701612382565b9150509250925092565b6000806040838503121561245e57600080fd5b600061246c85828601612343565b925050602061247d85828601612382565b9150509250929050565b60006020828403121561249957600080fd5b60006124a784828501612358565b91505092915050565b600080604083850312156124c357600080fd5b60006124d185828601612358565b92505060206124e285828601612343565b9150509250929050565b600080604083850312156124ff57600080fd5b600061250d85828601612358565b925050602061251e85828601612382565b9150509250929050565b60006020828403121561253a57600080fd5b60006125488482850161236d565b91505092915050565b60006020828403121561256357600080fd5b600061257184828501612382565b91505092915050565b61258381612d9f565b82525050565b61259281612db1565b82525050565b6125a181612dbd565b82525050565b60006125b282612c94565b6125bc8185612c9f565b93506125cc818560208601612e2a565b6125d581612f17565b840191505092915050565b60006125eb82612c94565b6125f58185612cb0565b9350612605818560208601612e2a565b80840191505092915050565b600061261e602083612c9f565b915061262982612f28565b602082019050919050565b6000612641602383612c9f565b915061264c82612f51565b604082019050919050565b6000612664601483612c9f565b915061266f82612fa0565b602082019050919050565b6000612687602283612c9f565b915061269282612fc9565b604082019050919050565b60006126aa603983612c9f565b91506126b582613018565b604082019050919050565b60006126cd602283612c9f565b91506126d882613067565b604082019050919050565b60006126f0602683612c9f565b91506126fb826130b6565b604082019050919050565b6000612713602583612c9f565b915061271e82613105565b604082019050919050565b6000612736601083612c9f565b915061274182613154565b602082019050919050565b6000612759602883612c9f565b91506127648261317d565b604082019050919050565b600061277c603683612c9f565b9150612787826131cc565b604082019050919050565b600061279f602483612c9f565b91506127aa8261321b565b604082019050919050565b60006127c2602183612c9f565b91506127cd8261326a565b604082019050919050565b60006127e5602583612c9f565b91506127f0826132b9565b604082019050919050565b6000612808602483612c9f565b915061281382613308565b604082019050919050565b600061282b603783612c9f565b915061283682613357565b604082019050919050565b600061284e601783612cb0565b9150612859826133a6565b601782019050919050565b6000612871602583612c9f565b915061287c826133cf565b604082019050919050565b6000612894601183612cb0565b915061289f8261341e565b601182019050919050565b60006128b7602f83612c9f565b91506128c282613447565b604082019050919050565b60006128da601f83612c9f565b91506128e582613496565b602082019050919050565b60006128fd602a83612c9f565b9150612908826134bf565b604082019050919050565b61291c81612e13565b82525050565b61292b81612e1d565b82525050565b600061293c82612841565b915061294882856125e0565b915061295382612887565b915061295f82846125e0565b91508190509392505050565b6000602082019050612980600083018461257a565b92915050565b600060208201905061299b6000830184612589565b92915050565b60006020820190506129b66000830184612598565b92915050565b600060208201905081810360008301526129d681846125a7565b905092915050565b600060208201905081810360008301526129f781612611565b9050919050565b60006020820190508181036000830152612a1781612634565b9050919050565b60006020820190508181036000830152612a3781612657565b9050919050565b60006020820190508181036000830152612a578161267a565b9050919050565b60006020820190508181036000830152612a778161269d565b9050919050565b60006020820190508181036000830152612a97816126c0565b9050919050565b60006020820190508181036000830152612ab7816126e3565b9050919050565b60006020820190508181036000830152612ad781612706565b9050919050565b60006020820190508181036000830152612af781612729565b9050919050565b60006020820190508181036000830152612b178161274c565b9050919050565b60006020820190508181036000830152612b378161276f565b9050919050565b60006020820190508181036000830152612b5781612792565b9050919050565b60006020820190508181036000830152612b77816127b5565b9050919050565b60006020820190508181036000830152612b97816127d8565b9050919050565b60006020820190508181036000830152612bb7816127fb565b9050919050565b60006020820190508181036000830152612bd78161281e565b9050919050565b60006020820190508181036000830152612bf781612864565b9050919050565b60006020820190508181036000830152612c17816128aa565b9050919050565b60006020820190508181036000830152612c37816128cd565b9050919050565b60006020820190508181036000830152612c57816128f0565b9050919050565b6000602082019050612c736000830184612913565b92915050565b6000602082019050612c8e6000830184612922565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612cc682612e13565b9150612cd183612e13565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d0657612d05612eb9565b5b828201905092915050565b6000612d1c82612e13565b9150612d2783612e13565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d6057612d5f612eb9565b5b828202905092915050565b6000612d7682612e13565b9150612d8183612e13565b925082821015612d9457612d93612eb9565b5b828203905092915050565b6000612daa82612df3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612e48578082015181840152602081019050612e2d565b83811115612e57576000848401525b50505050565b6000612e6882612e13565b91506000821415612e7c57612e7b612eb9565b5b600182039050919050565b60006002820490506001821680612e9f57607f821691505b60208210811415612eb357612eb2612ee8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f44424345524332303a206d7573742068617665206275726e20726f6c6520746f60008201527f206275726e000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61351781612d9f565b811461352257600080fd5b50565b61352e81612dbd565b811461353957600080fd5b50565b61354581612dc7565b811461355057600080fd5b50565b61355c81612e13565b811461356757600080fd5b5056fea2646970667358221220809d168b5d25948c116928f46925c0cdd7cc64b108bcc0703d5d5069909a753864736f6c63430008040033

Deployed Bytecode Sourcemap

103:566:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;834:280:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2053:98:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4274:202;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3141:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4943:512;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5630:121:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2301:162:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;346:91:14;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2808:199:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5850:286:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2475:209:7;;;:::i;:::-;;1626:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;473:89:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;443:224:14;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1034:84:12;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3305:169:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;868:395:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2065:203:7;;;:::i;:::-;;1699:179:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4511:173:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2264:102:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2385:49:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6623:467:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3677:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;154:58:14;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2046:168:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;893:62:7;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2551:167:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3943:193:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;961:62:7;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;834:280:1;959:4;1013:42;998:57;;;:11;:57;;;;:109;;;;1071:36;1095:11;1071:23;:36::i;:::-;998:109;979:128;;834:280;;;:::o;2053:98:4:-;2107:13;2139:5;2132:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2053:98;:::o;4274:202::-;4389:4;4409:39;4418:12;:10;:12::i;:::-;4432:7;4441:6;4409:8;:39::i;:::-;4465:4;4458:11;;4274:202;;;;:::o;3141:106::-;3202:7;3228:12;;3221:19;;3141:106;:::o;4943:512::-;5079:4;5095:36;5105:6;5113:9;5124:6;5095:9;:36::i;:::-;5142:24;5169:11;:19;5181:6;5169:19;;;;;;;;;;;;;;;:33;5189:12;:10;:12::i;:::-;5169:33;;;;;;;;;;;;;;;;5142:60;;5253:6;5233:16;:26;;5212:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;5359:57;5368:6;5376:12;:10;:12::i;:::-;5409:6;5390:16;:25;5359:8;:57::i;:::-;5444:4;5437:11;;;4943:512;;;;;:::o;5630:121:0:-;5696:7;5722:6;:12;5729:4;5722:12;;;;;;;;;;;:22;;;5715:29;;5630:121;;;:::o;2301:162:1:-;2385:30;2401:4;2407:7;2385:15;:30::i;:::-;2425:31;2448:7;2425:12;:18;2438:4;2425:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;2301:162;;:::o;346:91:14:-;404:5;428:2;421:9;;346:91;:::o;2808:199:1:-;2923:33;2942:4;2948:7;2923:18;:33::i;:::-;2966:34;2992:7;2966:12;:18;2979:4;2966:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2808:199;;:::o;5850:286:4:-;5962:4;5982:126;6004:12;:10;:12::i;:::-;6030:7;6088:10;6051:11;:25;6063:12;:10;:12::i;:::-;6051:25;;;;;;;;;;;;;;;:34;6077:7;6051:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5982:8;:126::i;:::-;6125:4;6118:11;;5850:286;;;;:::o;2475:209:7:-;2540:34;999:24;2561:12;:10;:12::i;:::-;2540:7;:34::i;:::-;2519:138;;;;;;;;;;;;:::i;:::-;;;;;;;;;2667:10;:8;:10::i;:::-;2475:209::o;1626:236::-;1714:34;931:24;1735:12;:10;:12::i;:::-;1714:7;:34::i;:::-;1693:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;1838:17;1844:2;1848:6;1838:5;:17::i;:::-;1626:236;;:::o;473:89:5:-;528:27;534:12;:10;:12::i;:::-;548:6;528:5;:27::i;:::-;473:89;:::o;443:224:14:-;533:32;190:22;552:12;:10;:12::i;:::-;533:7;:32::i;:::-;512:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;638:22;644:7;653:6;638:5;:22::i;:::-;443:224;;:::o;1034:84:12:-;1081:4;1104:7;;;;;;;;;;;1097:14;;1034:84;:::o;3305:169:4:-;3419:7;3449:9;:18;3459:7;3449:18;;;;;;;;;;;;;;;;3442:25;;3305:169;;;:::o;868:395:5:-;944:24;971:32;981:7;990:12;:10;:12::i;:::-;971:9;:32::i;:::-;944:59;;1054:6;1034:16;:26;;1013:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;1156:58;1165:7;1174:12;:10;:12::i;:::-;1207:6;1188:16;:25;1156:8;:58::i;:::-;1234:22;1240:7;1249:6;1234:5;:22::i;:::-;868:395;;;:::o;2065:203:7:-;2128:34;999:24;2149:12;:10;:12::i;:::-;2128:7;:34::i;:::-;2107:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;2253:8;:6;:8::i;:::-;2065:203::o;1699:179:1:-;1813:7;1843:28;1865:5;1843:12;:18;1856:4;1843:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;1836:35;;1699:179;;;;:::o;4511:173:0:-;4621:4;4648:6;:12;4655:4;4648:12;;;;;;;;;;;:20;;:29;4669:7;4648:29;;;;;;;;;;;;;;;;;;;;;;;;;4641:36;;4511:173;;;;:::o;2264:102:4:-;2320:13;2352:7;2345:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2264:102;:::o;2385:49:0:-;2430:4;2385:49;;;:::o;6623:467:4:-;6740:4;6760:24;6787:11;:25;6799:12;:10;:12::i;:::-;6787:25;;;;;;;;;;;;;;;:34;6813:7;6787:34;;;;;;;;;;;;;;;;6760:61;;6872:15;6852:16;:35;;6831:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;6984:67;6993:12;:10;:12::i;:::-;7007:7;7035:15;7016:16;:34;6984:8;:67::i;:::-;7079:4;7072:11;;;6623:467;;;;:::o;3677:208::-;3795:4;3815:42;3825:12;:10;:12::i;:::-;3839:9;3850:6;3815:9;:42::i;:::-;3874:4;3867:11;;3677:208;;;;:::o;154:58:14:-;190:22;154:58;:::o;2046:168:1:-;2150:7;2180:27;:12;:18;2193:4;2180:18;;;;;;;;;;;:25;:27::i;:::-;2173:34;;2046:168;;;:::o;893:62:7:-;931:24;893:62;:::o;2551:167:1:-;2636:31;2653:4;2659:7;2636:16;:31::i;:::-;2677:34;2703:7;2677:12;:18;2690:4;2677:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2551:167;;:::o;3943:193:4:-;4072:7;4102:11;:18;4114:5;4102:18;;;;;;;;;;;;;;;:27;4121:7;4102:27;;;;;;;;;;;;;;;;4095:34;;3943:193;;;;:::o;961:62:7:-;999:24;961:62;:::o;7931:110:0:-;8009:25;8020:4;8026:7;8009:10;:25::i;:::-;7931:110;;:::o;6232:150:8:-;6302:4;6325:50;6330:3;:10;;6366:5;6350:23;;6342:32;;6325:4;:50::i;:::-;6318:57;;6232:150;;;;:::o;4154:270:0:-;4279:4;4333:32;4318:47;;;:11;:47;;;;:99;;;;4381:36;4405:11;4381:23;:36::i;:::-;4318:99;4299:118;;4154:270;;;:::o;586:96:2:-;639:7;665:10;658:17;;586:96;:::o;10295:370:4:-;10443:1;10426:19;;:5;:19;;;;10418:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10523:1;10504:21;;:7;:21;;;;10496:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10605:6;10575:11;:18;10587:5;10575:18;;;;;;;;;;;;;;;:27;10594:7;10575:27;;;;;;;;;;;;;;;:36;;;;10642:7;10626:32;;10635:5;10626:32;;;10651:6;10626:32;;;;;;:::i;:::-;;;;;;;;10295:370;;;:::o;7564:747::-;7717:1;7699:20;;:6;:20;;;;7691:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7800:1;7779:23;;:9;:23;;;;7771:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7853:47;7874:6;7882:9;7893:6;7853:20;:47::i;:::-;7911:21;7935:9;:17;7945:6;7935:17;;;;;;;;;;;;;;;;7911:41;;8000:6;7983:13;:23;;7962:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;8140:6;8124:13;:22;8104:9;:17;8114:6;8104:17;;;;;;;;;;;;;;;:42;;;;8190:6;8166:9;:20;8176:9;8166:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;8229:9;8212:35;;8221:6;8212:35;;;8240:6;8212:35;;;;;;:::i;:::-;;;;;;;;8258:46;8278:6;8286:9;8297:6;8258:19;:46::i;:::-;7564:747;;;;:::o;6001:181:0:-;6116:18;6129:4;6116:12;:18::i;:::-;4039:30;4050:4;4056:12;:10;:12::i;:::-;4039:10;:30::i;:::-;6150:25:::1;6161:4;6167:7;6150:10;:25::i;:::-;6001:181:::0;;;:::o;7090:276::-;7237:12;:10;:12::i;:::-;7226:23;;:7;:23;;;7205:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;7333:26;7345:4;7351:7;7333:11;:26::i;:::-;7090:276;;:::o;6550:156:8:-;6623:4;6646:53;6654:3;:10;;6690:5;6674:23;;6666:32;;6646:7;:53::i;:::-;6639:60;;6550:156;;;;:::o;2046:117:12:-;1613:8;:6;:8::i;:::-;1605:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2114:5:::1;2104:7;;:15;;;;;;;;;;;;;;;;;;2134:22;2143:12;:10;:12::i;:::-;2134:22;;;;;;:::i;:::-;;;;;;;;2046:117::o:0;8587:389:4:-;8689:1;8670:21;;:7;:21;;;;8662:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8738:49;8767:1;8771:7;8780:6;8738:20;:49::i;:::-;8814:6;8798:12;;:22;;;;;;;:::i;:::-;;;;;;;;8852:6;8830:9;:18;8840:7;8830:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8894:7;8873:37;;8890:1;8873:37;;;8903:6;8873:37;;;;;;:::i;:::-;;;;;;;;8921:48;8949:1;8953:7;8962:6;8921:19;:48::i;:::-;8587:389;;:::o;9296:576::-;9398:1;9379:21;;:7;:21;;;;9371:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9449:49;9470:7;9487:1;9491:6;9449:20;:49::i;:::-;9509:22;9534:9;:18;9544:7;9534:18;;;;;;;;;;;;;;;;9509:43;;9588:6;9570:14;:24;;9562:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9705:6;9688:14;:23;9667:9;:18;9677:7;9667:18;;;;;;;;;;;;;;;:44;;;;9747:6;9731:12;;:22;;;;;;;:::i;:::-;;;;;;;;9795:1;9769:37;;9778:7;9769:37;;;9799:6;9769:37;;;;;;:::i;:::-;;;;;;;;9817:48;9837:7;9854:1;9858:6;9817:19;:48::i;:::-;9296:576;;;:::o;1799:115:12:-;1348:8;:6;:8::i;:::-;1347:9;1339:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1868:4:::1;1858:7;;:14;;;;;;;;;;;;;;;;;;1887:20;1894:12;:10;:12::i;:::-;1887:20;;;;;;:::i;:::-;;;;;;;;1799:115::o:0;7490:156:8:-;7564:7;7614:22;7618:3;:10;;7630:5;7614:3;:22::i;:::-;7606:31;;7583:56;;7490:156;;;;:::o;7033:115::-;7096:7;7122:19;7130:3;:10;;7122:7;:19::i;:::-;7115:26;;7033:115;;;:::o;6416:183:0:-;6532:18;6545:4;6532:12;:18::i;:::-;4039:30;4050:4;4056:12;:10;:12::i;:::-;4039:10;:30::i;:::-;6566:26:::1;6578:4;6584:7;6566:11;:26::i;:::-;6416:183:::0;;;:::o;8364:224::-;8438:22;8446:4;8452:7;8438;:22::i;:::-;8433:149;;8508:4;8476:6;:12;8483:4;8476:12;;;;;;;;;;;:20;;:29;8497:7;8476:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;8558:12;:10;:12::i;:::-;8531:40;;8549:7;8531:40;;8543:4;8531:40;;;;;;;;;;8433:149;8364:224;;:::o;1630:404:8:-;1693:4;1714:21;1724:3;1729:5;1714:9;:21::i;:::-;1709:319;;1751:3;:11;;1768:5;1751:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1931:3;:11;;:18;;;;1909:3;:12;;:19;1922:5;1909:19;;;;;;;;;;;:40;;;;1970:4;1963:11;;;;1709:319;2012:5;2005:12;;1630:404;;;;;:::o;763:155:3:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;2690:211:7:-;2850:44;2877:4;2883:2;2887:6;2850:26;:44::i;:::-;2690:211;;;:::o;11958:120:4:-;;;;:::o;4965:484:0:-;5045:22;5053:4;5059:7;5045;:22::i;:::-;5040:403;;5228:41;5256:7;5228:41;;5266:2;5228:19;:41::i;:::-;5340:38;5368:4;5360:13;;5375:2;5340:19;:38::i;:::-;5135:265;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5083:349;;;;;;;;;;;:::i;:::-;;;;;;;;5040:403;4965:484;;:::o;8594:225::-;8668:22;8676:4;8682:7;8668;:22::i;:::-;8664:149;;;8738:5;8706:6;:12;8713:4;8706:12;;;;;;;;;;;:20;;:29;8727:7;8706:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;8789:12;:10;:12::i;:::-;8762:40;;8780:7;8762:40;;8774:4;8762:40;;;;;;;;;;8664:149;8594:225;;:::o;2202:1388:8:-;2268:4;2384:18;2405:3;:12;;:19;2418:5;2405:19;;;;;;;;;;;;2384:40;;2453:1;2439:10;:15;2435:1149;;2808:21;2845:1;2832:10;:14;;;;:::i;:::-;2808:38;;2860:17;2901:1;2880:3;:11;;:18;;;;:22;;;;:::i;:::-;2860:42;;2934:13;2921:9;:26;2917:398;;2967:17;2987:3;:11;;2999:9;2987:22;;;;;;;;;;;;;;;;;;;;;;;;2967:42;;3138:9;3109:3;:11;;3121:13;3109:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;3247:10;3221:3;:12;;:23;3234:9;3221:23;;;;;;;;;;;:36;;;;2917:398;;3393:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3485:3;:12;;:19;3498:5;3485:19;;;;;;;;;;;3478:26;;;3526:4;3519:11;;;;;;;2435:1149;3568:5;3561:12;;;2202:1388;;;;;:::o;4328:118::-;4395:7;4421:3;:11;;4433:5;4421:18;;;;;;;;;;;;;;;;;;;;;;;;4414:25;;4328:118;;;;:::o;3879:107::-;3935:7;3961:3;:11;;:18;;;;3954:25;;3879:107;;;:::o;3671:127::-;3744:4;3790:1;3767:3;:12;;:19;3780:5;3767:19;;;;;;;;;;;;:24;;3760:31;;3671:127;;;;:::o;572:264:6:-;710:44;737:4;743:2;747:6;710:26;:44::i;:::-;774:8;:6;:8::i;:::-;773:9;765:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;572:264;;;:::o;1535:441:13:-;1610:13;1635:19;1680:1;1671:6;1667:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1657:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1635:47;;1692:15;:6;1699:1;1692:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;1717;:6;1724:1;1717:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;1747:9;1772:1;1763:6;1759:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1747:26;;1742:132;1779:1;1775;:5;1742:132;;;1813:12;1834:3;1826:5;:11;1813:25;;;;;;;;;;;;;;;;;;1801:6;1808:1;1801:9;;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;1862:1;1852:11;;;;;1782:3;;;;:::i;:::-;;;1742:132;;;;1900:1;1891:5;:10;1883:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;1962:6;1948:21;;;1535:441;;;;:::o;11249:121:4:-;;;;:::o;7:139:15:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:137::-;342:5;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;348:86;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:262::-;644:6;693:2;681:9;672:7;668:23;664:32;661:2;;;709:1;706;699:12;661:2;752:1;777:53;822:7;813:6;802:9;798:22;777:53;:::i;:::-;767:63;;723:117;651:196;;;;:::o;853:407::-;921:6;929;978:2;966:9;957:7;953:23;949:32;946:2;;;994:1;991;984:12;946:2;1037:1;1062:53;1107:7;1098:6;1087:9;1083:22;1062:53;:::i;:::-;1052:63;;1008:117;1164:2;1190:53;1235:7;1226:6;1215:9;1211:22;1190:53;:::i;:::-;1180:63;;1135:118;936:324;;;;;:::o;1266:552::-;1343:6;1351;1359;1408:2;1396:9;1387:7;1383:23;1379:32;1376:2;;;1424:1;1421;1414:12;1376:2;1467:1;1492:53;1537:7;1528:6;1517:9;1513:22;1492:53;:::i;:::-;1482:63;;1438:117;1594:2;1620:53;1665:7;1656:6;1645:9;1641:22;1620:53;:::i;:::-;1610:63;;1565:118;1722:2;1748:53;1793:7;1784:6;1773:9;1769:22;1748:53;:::i;:::-;1738:63;;1693:118;1366:452;;;;;:::o;1824:407::-;1892:6;1900;1949:2;1937:9;1928:7;1924:23;1920:32;1917:2;;;1965:1;1962;1955:12;1917:2;2008:1;2033:53;2078:7;2069:6;2058:9;2054:22;2033:53;:::i;:::-;2023:63;;1979:117;2135:2;2161:53;2206:7;2197:6;2186:9;2182:22;2161:53;:::i;:::-;2151:63;;2106:118;1907:324;;;;;:::o;2237:262::-;2296:6;2345:2;2333:9;2324:7;2320:23;2316:32;2313:2;;;2361:1;2358;2351:12;2313:2;2404:1;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2375:117;2303:196;;;;:::o;2505:407::-;2573:6;2581;2630:2;2618:9;2609:7;2605:23;2601:32;2598:2;;;2646:1;2643;2636:12;2598:2;2689:1;2714:53;2759:7;2750:6;2739:9;2735:22;2714:53;:::i;:::-;2704:63;;2660:117;2816:2;2842:53;2887:7;2878:6;2867:9;2863:22;2842:53;:::i;:::-;2832:63;;2787:118;2588:324;;;;;:::o;2918:407::-;2986:6;2994;3043:2;3031:9;3022:7;3018:23;3014:32;3011:2;;;3059:1;3056;3049:12;3011:2;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;3229:2;3255:53;3300:7;3291:6;3280:9;3276:22;3255:53;:::i;:::-;3245:63;;3200:118;3001:324;;;;;:::o;3331:260::-;3389:6;3438:2;3426:9;3417:7;3413:23;3409:32;3406:2;;;3454:1;3451;3444:12;3406:2;3497:1;3522:52;3566:7;3557:6;3546:9;3542:22;3522:52;:::i;:::-;3512:62;;3468:116;3396:195;;;;:::o;3597:262::-;3656:6;3705:2;3693:9;3684:7;3680:23;3676:32;3673:2;;;3721:1;3718;3711:12;3673:2;3764:1;3789:53;3834:7;3825:6;3814:9;3810:22;3789:53;:::i;:::-;3779:63;;3735:117;3663:196;;;;:::o;3865:118::-;3952:24;3970:5;3952:24;:::i;:::-;3947:3;3940:37;3930:53;;:::o;3989:109::-;4070:21;4085:5;4070:21;:::i;:::-;4065:3;4058:34;4048:50;;:::o;4104:118::-;4191:24;4209:5;4191:24;:::i;:::-;4186:3;4179:37;4169:53;;:::o;4228:364::-;4316:3;4344:39;4377:5;4344:39;:::i;:::-;4399:71;4463:6;4458:3;4399:71;:::i;:::-;4392:78;;4479:52;4524:6;4519:3;4512:4;4505:5;4501:16;4479:52;:::i;:::-;4556:29;4578:6;4556:29;:::i;:::-;4551:3;4547:39;4540:46;;4320:272;;;;;:::o;4598:377::-;4704:3;4732:39;4765:5;4732:39;:::i;:::-;4787:89;4869:6;4864:3;4787:89;:::i;:::-;4780:96;;4885:52;4930:6;4925:3;4918:4;4911:5;4907:16;4885:52;:::i;:::-;4962:6;4957:3;4953:16;4946:23;;4708:267;;;;;:::o;4981:366::-;5123:3;5144:67;5208:2;5203:3;5144:67;:::i;:::-;5137:74;;5220:93;5309:3;5220:93;:::i;:::-;5338:2;5333:3;5329:12;5322:19;;5127:220;;;:::o;5353:366::-;5495:3;5516:67;5580:2;5575:3;5516:67;:::i;:::-;5509:74;;5592:93;5681:3;5592:93;:::i;:::-;5710:2;5705:3;5701:12;5694:19;;5499:220;;;:::o;5725:366::-;5867:3;5888:67;5952:2;5947:3;5888:67;:::i;:::-;5881:74;;5964:93;6053:3;5964:93;:::i;:::-;6082:2;6077:3;6073:12;6066:19;;5871:220;;;:::o;6097:366::-;6239:3;6260:67;6324:2;6319:3;6260:67;:::i;:::-;6253:74;;6336:93;6425:3;6336:93;:::i;:::-;6454:2;6449:3;6445:12;6438:19;;6243:220;;;:::o;6469:366::-;6611:3;6632:67;6696:2;6691:3;6632:67;:::i;:::-;6625:74;;6708:93;6797:3;6708:93;:::i;:::-;6826:2;6821:3;6817:12;6810:19;;6615:220;;;:::o;6841:366::-;6983:3;7004:67;7068:2;7063:3;7004:67;:::i;:::-;6997:74;;7080:93;7169:3;7080:93;:::i;:::-;7198:2;7193:3;7189:12;7182:19;;6987:220;;;:::o;7213:366::-;7355:3;7376:67;7440:2;7435:3;7376:67;:::i;:::-;7369:74;;7452:93;7541:3;7452:93;:::i;:::-;7570:2;7565:3;7561:12;7554:19;;7359:220;;;:::o;7585:366::-;7727:3;7748:67;7812:2;7807:3;7748:67;:::i;:::-;7741:74;;7824:93;7913:3;7824:93;:::i;:::-;7942:2;7937:3;7933:12;7926:19;;7731:220;;;:::o;7957:366::-;8099:3;8120:67;8184:2;8179:3;8120:67;:::i;:::-;8113:74;;8196:93;8285:3;8196:93;:::i;:::-;8314:2;8309:3;8305:12;8298:19;;8103:220;;;:::o;8329:366::-;8471:3;8492:67;8556:2;8551:3;8492:67;:::i;:::-;8485:74;;8568:93;8657:3;8568:93;:::i;:::-;8686:2;8681:3;8677:12;8670:19;;8475:220;;;:::o;8701:366::-;8843:3;8864:67;8928:2;8923:3;8864:67;:::i;:::-;8857:74;;8940:93;9029:3;8940:93;:::i;:::-;9058:2;9053:3;9049:12;9042:19;;8847:220;;;:::o;9073:366::-;9215:3;9236:67;9300:2;9295:3;9236:67;:::i;:::-;9229:74;;9312:93;9401:3;9312:93;:::i;:::-;9430:2;9425:3;9421:12;9414:19;;9219:220;;;:::o;9445:366::-;9587:3;9608:67;9672:2;9667:3;9608:67;:::i;:::-;9601:74;;9684:93;9773:3;9684:93;:::i;:::-;9802:2;9797:3;9793:12;9786:19;;9591:220;;;:::o;9817:366::-;9959:3;9980:67;10044:2;10039:3;9980:67;:::i;:::-;9973:74;;10056:93;10145:3;10056:93;:::i;:::-;10174:2;10169:3;10165:12;10158:19;;9963:220;;;:::o;10189:366::-;10331:3;10352:67;10416:2;10411:3;10352:67;:::i;:::-;10345:74;;10428:93;10517:3;10428:93;:::i;:::-;10546:2;10541:3;10537:12;10530:19;;10335:220;;;:::o;10561:366::-;10703:3;10724:67;10788:2;10783:3;10724:67;:::i;:::-;10717:74;;10800:93;10889:3;10800:93;:::i;:::-;10918:2;10913:3;10909:12;10902:19;;10707:220;;;:::o;10933:402::-;11093:3;11114:85;11196:2;11191:3;11114:85;:::i;:::-;11107:92;;11208:93;11297:3;11208:93;:::i;:::-;11326:2;11321:3;11317:12;11310:19;;11097:238;;;:::o;11341:366::-;11483:3;11504:67;11568:2;11563:3;11504:67;:::i;:::-;11497:74;;11580:93;11669:3;11580:93;:::i;:::-;11698:2;11693:3;11689:12;11682:19;;11487:220;;;:::o;11713:402::-;11873:3;11894:85;11976:2;11971:3;11894:85;:::i;:::-;11887:92;;11988:93;12077:3;11988:93;:::i;:::-;12106:2;12101:3;12097:12;12090:19;;11877:238;;;:::o;12121:366::-;12263:3;12284:67;12348:2;12343:3;12284:67;:::i;:::-;12277:74;;12360:93;12449:3;12360:93;:::i;:::-;12478:2;12473:3;12469:12;12462:19;;12267:220;;;:::o;12493:366::-;12635:3;12656:67;12720:2;12715:3;12656:67;:::i;:::-;12649:74;;12732:93;12821:3;12732:93;:::i;:::-;12850:2;12845:3;12841:12;12834:19;;12639:220;;;:::o;12865:366::-;13007:3;13028:67;13092:2;13087:3;13028:67;:::i;:::-;13021:74;;13104:93;13193:3;13104:93;:::i;:::-;13222:2;13217:3;13213:12;13206:19;;13011:220;;;:::o;13237:118::-;13324:24;13342:5;13324:24;:::i;:::-;13319:3;13312:37;13302:53;;:::o;13361:112::-;13444:22;13460:5;13444:22;:::i;:::-;13439:3;13432:35;13422:51;;:::o;13479:967::-;13861:3;13883:148;14027:3;13883:148;:::i;:::-;13876:155;;14048:95;14139:3;14130:6;14048:95;:::i;:::-;14041:102;;14160:148;14304:3;14160:148;:::i;:::-;14153:155;;14325:95;14416:3;14407:6;14325:95;:::i;:::-;14318:102;;14437:3;14430:10;;13865:581;;;;;:::o;14452:222::-;14545:4;14583:2;14572:9;14568:18;14560:26;;14596:71;14664:1;14653:9;14649:17;14640:6;14596:71;:::i;:::-;14550:124;;;;:::o;14680:210::-;14767:4;14805:2;14794:9;14790:18;14782:26;;14818:65;14880:1;14869:9;14865:17;14856:6;14818:65;:::i;:::-;14772:118;;;;:::o;14896:222::-;14989:4;15027:2;15016:9;15012:18;15004:26;;15040:71;15108:1;15097:9;15093:17;15084:6;15040:71;:::i;:::-;14994:124;;;;:::o;15124:313::-;15237:4;15275:2;15264:9;15260:18;15252:26;;15324:9;15318:4;15314:20;15310:1;15299:9;15295:17;15288:47;15352:78;15425:4;15416:6;15352:78;:::i;:::-;15344:86;;15242:195;;;;:::o;15443:419::-;15609:4;15647:2;15636:9;15632:18;15624:26;;15696:9;15690:4;15686:20;15682:1;15671:9;15667:17;15660:47;15724:131;15850:4;15724:131;:::i;:::-;15716:139;;15614:248;;;:::o;15868:419::-;16034:4;16072:2;16061:9;16057:18;16049:26;;16121:9;16115:4;16111:20;16107:1;16096:9;16092:17;16085:47;16149:131;16275:4;16149:131;:::i;:::-;16141:139;;16039:248;;;:::o;16293:419::-;16459:4;16497:2;16486:9;16482:18;16474:26;;16546:9;16540:4;16536:20;16532:1;16521:9;16517:17;16510:47;16574:131;16700:4;16574:131;:::i;:::-;16566:139;;16464:248;;;:::o;16718:419::-;16884:4;16922:2;16911:9;16907:18;16899:26;;16971:9;16965:4;16961:20;16957:1;16946:9;16942:17;16935:47;16999:131;17125:4;16999:131;:::i;:::-;16991:139;;16889:248;;;:::o;17143:419::-;17309:4;17347:2;17336:9;17332:18;17324:26;;17396:9;17390:4;17386:20;17382:1;17371:9;17367:17;17360:47;17424:131;17550:4;17424:131;:::i;:::-;17416:139;;17314:248;;;:::o;17568:419::-;17734:4;17772:2;17761:9;17757:18;17749:26;;17821:9;17815:4;17811:20;17807:1;17796:9;17792:17;17785:47;17849:131;17975:4;17849:131;:::i;:::-;17841:139;;17739:248;;;:::o;17993:419::-;18159:4;18197:2;18186:9;18182:18;18174:26;;18246:9;18240:4;18236:20;18232:1;18221:9;18217:17;18210:47;18274:131;18400:4;18274:131;:::i;:::-;18266:139;;18164:248;;;:::o;18418:419::-;18584:4;18622:2;18611:9;18607:18;18599:26;;18671:9;18665:4;18661:20;18657:1;18646:9;18642:17;18635:47;18699:131;18825:4;18699:131;:::i;:::-;18691:139;;18589:248;;;:::o;18843:419::-;19009:4;19047:2;19036:9;19032:18;19024:26;;19096:9;19090:4;19086:20;19082:1;19071:9;19067:17;19060:47;19124:131;19250:4;19124:131;:::i;:::-;19116:139;;19014:248;;;:::o;19268:419::-;19434:4;19472:2;19461:9;19457:18;19449:26;;19521:9;19515:4;19511:20;19507:1;19496:9;19492:17;19485:47;19549:131;19675:4;19549:131;:::i;:::-;19541:139;;19439:248;;;:::o;19693:419::-;19859:4;19897:2;19886:9;19882:18;19874:26;;19946:9;19940:4;19936:20;19932:1;19921:9;19917:17;19910:47;19974:131;20100:4;19974:131;:::i;:::-;19966:139;;19864:248;;;:::o;20118:419::-;20284:4;20322:2;20311:9;20307:18;20299:26;;20371:9;20365:4;20361:20;20357:1;20346:9;20342:17;20335:47;20399:131;20525:4;20399:131;:::i;:::-;20391:139;;20289:248;;;:::o;20543:419::-;20709:4;20747:2;20736:9;20732:18;20724:26;;20796:9;20790:4;20786:20;20782:1;20771:9;20767:17;20760:47;20824:131;20950:4;20824:131;:::i;:::-;20816:139;;20714:248;;;:::o;20968:419::-;21134:4;21172:2;21161:9;21157:18;21149:26;;21221:9;21215:4;21211:20;21207:1;21196:9;21192:17;21185:47;21249:131;21375:4;21249:131;:::i;:::-;21241:139;;21139:248;;;:::o;21393:419::-;21559:4;21597:2;21586:9;21582:18;21574:26;;21646:9;21640:4;21636:20;21632:1;21621:9;21617:17;21610:47;21674:131;21800:4;21674:131;:::i;:::-;21666:139;;21564:248;;;:::o;21818:419::-;21984:4;22022:2;22011:9;22007:18;21999:26;;22071:9;22065:4;22061:20;22057:1;22046:9;22042:17;22035:47;22099:131;22225:4;22099:131;:::i;:::-;22091:139;;21989:248;;;:::o;22243:419::-;22409:4;22447:2;22436:9;22432:18;22424:26;;22496:9;22490:4;22486:20;22482:1;22471:9;22467:17;22460:47;22524:131;22650:4;22524:131;:::i;:::-;22516:139;;22414:248;;;:::o;22668:419::-;22834:4;22872:2;22861:9;22857:18;22849:26;;22921:9;22915:4;22911:20;22907:1;22896:9;22892:17;22885:47;22949:131;23075:4;22949:131;:::i;:::-;22941:139;;22839:248;;;:::o;23093:419::-;23259:4;23297:2;23286:9;23282:18;23274:26;;23346:9;23340:4;23336:20;23332:1;23321:9;23317:17;23310:47;23374:131;23500:4;23374:131;:::i;:::-;23366:139;;23264:248;;;:::o;23518:419::-;23684:4;23722:2;23711:9;23707:18;23699:26;;23771:9;23765:4;23761:20;23757:1;23746:9;23742:17;23735:47;23799:131;23925:4;23799:131;:::i;:::-;23791:139;;23689:248;;;:::o;23943:222::-;24036:4;24074:2;24063:9;24059:18;24051:26;;24087:71;24155:1;24144:9;24140:17;24131:6;24087:71;:::i;:::-;24041:124;;;;:::o;24171:214::-;24260:4;24298:2;24287:9;24283:18;24275:26;;24311:67;24375:1;24364:9;24360:17;24351:6;24311:67;:::i;:::-;24265:120;;;;:::o;24391:99::-;24443:6;24477:5;24471:12;24461:22;;24450:40;;;:::o;24496:169::-;24580:11;24614:6;24609:3;24602:19;24654:4;24649:3;24645:14;24630:29;;24592:73;;;;:::o;24671:148::-;24773:11;24810:3;24795:18;;24785:34;;;;:::o;24825:305::-;24865:3;24884:20;24902:1;24884:20;:::i;:::-;24879:25;;24918:20;24936:1;24918:20;:::i;:::-;24913:25;;25072:1;25004:66;25000:74;24997:1;24994:81;24991:2;;;25078:18;;:::i;:::-;24991:2;25122:1;25119;25115:9;25108:16;;24869:261;;;;:::o;25136:348::-;25176:7;25199:20;25217:1;25199:20;:::i;:::-;25194:25;;25233:20;25251:1;25233:20;:::i;:::-;25228:25;;25421:1;25353:66;25349:74;25346:1;25343:81;25338:1;25331:9;25324:17;25320:105;25317:2;;;25428:18;;:::i;:::-;25317:2;25476:1;25473;25469:9;25458:20;;25184:300;;;;:::o;25490:191::-;25530:4;25550:20;25568:1;25550:20;:::i;:::-;25545:25;;25584:20;25602:1;25584:20;:::i;:::-;25579:25;;25623:1;25620;25617:8;25614:2;;;25628:18;;:::i;:::-;25614:2;25673:1;25670;25666:9;25658:17;;25535:146;;;;:::o;25687:96::-;25724:7;25753:24;25771:5;25753:24;:::i;:::-;25742:35;;25732:51;;;:::o;25789:90::-;25823:7;25866:5;25859:13;25852:21;25841:32;;25831:48;;;:::o;25885:77::-;25922:7;25951:5;25940:16;;25930:32;;;:::o;25968:149::-;26004:7;26044:66;26037:5;26033:78;26022:89;;26012:105;;;:::o;26123:126::-;26160:7;26200:42;26193:5;26189:54;26178:65;;26168:81;;;:::o;26255:77::-;26292:7;26321:5;26310:16;;26300:32;;;:::o;26338:86::-;26373:7;26413:4;26406:5;26402:16;26391:27;;26381:43;;;:::o;26430:307::-;26498:1;26508:113;26522:6;26519:1;26516:13;26508:113;;;26607:1;26602:3;26598:11;26592:18;26588:1;26583:3;26579:11;26572:39;26544:2;26541:1;26537:10;26532:15;;26508:113;;;26639:6;26636:1;26633:13;26630:2;;;26719:1;26710:6;26705:3;26701:16;26694:27;26630:2;26479:258;;;;:::o;26743:171::-;26782:3;26805:24;26823:5;26805:24;:::i;:::-;26796:33;;26851:4;26844:5;26841:15;26838:2;;;26859:18;;:::i;:::-;26838:2;26906:1;26899:5;26895:13;26888:20;;26786:128;;;:::o;26920:320::-;26964:6;27001:1;26995:4;26991:12;26981:22;;27048:1;27042:4;27038:12;27069:18;27059:2;;27125:4;27117:6;27113:17;27103:27;;27059:2;27187;27179:6;27176:14;27156:18;27153:38;27150:2;;;27206:18;;:::i;:::-;27150:2;26971:269;;;;:::o;27246:180::-;27294:77;27291:1;27284:88;27391:4;27388:1;27381:15;27415:4;27412:1;27405:15;27432:180;27480:77;27477:1;27470:88;27577:4;27574:1;27567:15;27601:4;27598:1;27591:15;27618:102;27659:6;27710:2;27706:7;27701:2;27694:5;27690:14;27686:28;27676:38;;27666:54;;;:::o;27726:182::-;27866:34;27862:1;27854:6;27850:14;27843:58;27832:76;:::o;27914:222::-;28054:34;28050:1;28042:6;28038:14;28031:58;28123:5;28118:2;28110:6;28106:15;28099:30;28020:116;:::o;28142:170::-;28282:22;28278:1;28270:6;28266:14;28259:46;28248:64;:::o;28318:221::-;28458:34;28454:1;28446:6;28442:14;28435:58;28527:4;28522:2;28514:6;28510:15;28503:29;28424:115;:::o;28545:244::-;28685:34;28681:1;28673:6;28669:14;28662:58;28754:27;28749:2;28741:6;28737:15;28730:52;28651:138;:::o;28795:221::-;28935:34;28931:1;28923:6;28919:14;28912:58;29004:4;28999:2;28991:6;28987:15;28980:29;28901:115;:::o;29022:225::-;29162:34;29158:1;29150:6;29146:14;29139:58;29231:8;29226:2;29218:6;29214:15;29207:33;29128:119;:::o;29253:224::-;29393:34;29389:1;29381:6;29377:14;29370:58;29462:7;29457:2;29449:6;29445:15;29438:32;29359:118;:::o;29483:166::-;29623:18;29619:1;29611:6;29607:14;29600:42;29589:60;:::o;29655:227::-;29795:34;29791:1;29783:6;29779:14;29772:58;29864:10;29859:2;29851:6;29847:15;29840:35;29761:121;:::o;29888:241::-;30028:34;30024:1;30016:6;30012:14;30005:58;30097:24;30092:2;30084:6;30080:15;30073:49;29994:135;:::o;30135:223::-;30275:34;30271:1;30263:6;30259:14;30252:58;30344:6;30339:2;30331:6;30327:15;30320:31;30241:117;:::o;30364:220::-;30504:34;30500:1;30492:6;30488:14;30481:58;30573:3;30568:2;30560:6;30556:15;30549:28;30470:114;:::o;30590:224::-;30730:34;30726:1;30718:6;30714:14;30707:58;30799:7;30794:2;30786:6;30782:15;30775:32;30696:118;:::o;30820:223::-;30960:34;30956:1;30948:6;30944:14;30937:58;31029:6;31024:2;31016:6;31012:15;31005:31;30926:117;:::o;31049:242::-;31189:34;31185:1;31177:6;31173:14;31166:58;31258:25;31253:2;31245:6;31241:15;31234:50;31155:136;:::o;31297:173::-;31437:25;31433:1;31425:6;31421:14;31414:49;31403:67;:::o;31476:224::-;31616:34;31612:1;31604:6;31600:14;31593:58;31685:7;31680:2;31672:6;31668:15;31661:32;31582:118;:::o;31706:167::-;31846:19;31842:1;31834:6;31830:14;31823:43;31812:61;:::o;31879:234::-;32019:34;32015:1;32007:6;32003:14;31996:58;32088:17;32083:2;32075:6;32071:15;32064:42;31985:128;:::o;32119:181::-;32259:33;32255:1;32247:6;32243:14;32236:57;32225:75;:::o;32306:229::-;32446:34;32442:1;32434:6;32430:14;32423:58;32515:12;32510:2;32502:6;32498:15;32491:37;32412:123;:::o;32541:122::-;32614:24;32632:5;32614:24;:::i;:::-;32607:5;32604:35;32594:2;;32653:1;32650;32643:12;32594:2;32584:79;:::o;32669:122::-;32742:24;32760:5;32742:24;:::i;:::-;32735:5;32732:35;32722:2;;32781:1;32778;32771:12;32722:2;32712:79;:::o;32797:120::-;32869:23;32886:5;32869:23;:::i;:::-;32862:5;32859:34;32849:2;;32907:1;32904;32897:12;32849:2;32839:78;:::o;32923:122::-;32996:24;33014:5;32996:24;:::i;:::-;32989:5;32986:35;32976:2;;33035:1;33032;33025:12;32976:2;32966:79;:::o

Swarm Source

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