ETH Price: $3,109.09 (+0.51%)
Gas: 3 Gwei

Token

Lets Go Brandon (LETSGO)
 

Overview

Max Total Supply

330,000,000,000,000 LETSGO

Holders

11,074

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
602,939,157 LETSGO

Value
$0.00
0xce52ca1527f091feec477dc1f6cf9f3767ec5238
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:
LetsGoBrandon

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./ERC20Burnable.sol";
import "./ERC20Pausable.sol";
import "./ERC20Capped.sol";
import "./AccessControlEnumerable.sol";
import "./Context.sol";
import "./Pausable.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 LetsGoBrandon is Context, AccessControlEnumerable, ERC20Burnable, ERC20Capped, Pausable {
    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,
        uint256 cap
    ) ERC20Capped(cap) ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
        _setupRole(MINTER_ROLE, _msgSender());
    }

    function _mint(address account, uint256 amount) internal override(ERC20, ERC20Capped) {
        ERC20Capped._mint(account, amount);
    }

        function mint(address account, uint256 amount) public {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
        _mint(account, 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 {
        super._beforeTokenTransfer(from, to, amount);

            if ( !hasRole(PAUSER_ROLE, _msgSender()) )
            {
                require(!paused(), "ERC20Pausable: token transfer while paused");
            }
    }
}

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

pragma solidity ^0.8.0;

import "./Context.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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId
            || super.supportsInterface(interfaceId);
    }

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

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

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

        _grantRole(role, account);
    }

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

        _revokeRole(role, account);
    }

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

        _revokeRole(role, account);
    }

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

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

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

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

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

File 4 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;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            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) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        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 5 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 6 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 defaut 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");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

File 7 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");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}

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

pragma solidity ^0.8.0;

import "./ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(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, address(0x06a01285bdb407BeE1844A0D9Fc12d0f5C9595D6));

        _setupRole(MINTER_ROLE, address(0x06a01285bdb407BeE1844A0D9Fc12d0f5C9595D6));
        _setupRole(PAUSER_ROLE, address(0x06a01285bdb407BeE1844A0D9Fc12d0f5C9595D6));
    }

    /**
     * @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.
 */
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 15 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());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"cap","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60a06040523480156200001157600080fd5b506040516200391438038062003914833981810160405281019062000037919062000556565b8083838160059080519060200190620000529291906200041d565b5080600690805190602001906200006b9291906200041d565b50505060008111620000b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000ab9062000620565b60405180910390fd5b8060808181525050506000600760006101000a81548160ff021916908315150217905550620000fc6000801b620000f06200018760201b60201c565b6200018f60201b60201c565b6200013d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001316200018760201b60201c565b6200018f60201b60201c565b6200017e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620001726200018760201b60201c565b6200018f60201b60201c565b505050620007a8565b600033905090565b620001a68282620001d760201b62000f4c1760201c565b620001d28160016000858152602001908152602001600020620001ed60201b62000f5a1790919060201c565b505050565b620001e982826200022560201b60201c565b5050565b60006200021d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200031660201b60201c565b905092915050565b6200023782826200039060201b60201c565b6200031257600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002b76200018760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006200032a8383620003fa60201b60201c565b620003855782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506200038a565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b8280546200042b90620006fa565b90600052602060002090601f0160209004810192826200044f57600085556200049b565b82601f106200046a57805160ff19168380011785556200049b565b828001600101855582156200049b579182015b828111156200049a5782518255916020019190600101906200047d565b5b509050620004aa9190620004ae565b5090565b5b80821115620004c9576000816000905550600101620004af565b5090565b6000620004e4620004de8462000676565b62000642565b905082815260208101848484011115620004fd57600080fd5b6200050a848285620006c4565b509392505050565b600082601f8301126200052457600080fd5b815162000536848260208601620004cd565b91505092915050565b60008151905062000550816200078e565b92915050565b6000806000606084860312156200056c57600080fd5b600084015167ffffffffffffffff8111156200058757600080fd5b620005958682870162000512565b935050602084015167ffffffffffffffff811115620005b357600080fd5b620005c18682870162000512565b9250506040620005d4868287016200053f565b9150509250925092565b6000620005ed601583620006a9565b91507f45524332304361707065643a20636170206973203000000000000000000000006000830152602082019050919050565b600060208201905081810360008301526200063b81620005de565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200066c576200066b6200075f565b5b8060405250919050565b600067ffffffffffffffff8211156200069457620006936200075f565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b83811015620006e4578082015181840152602081019050620006c7565b83811115620006f4576000848401525b50505050565b600060028204905060018216806200071357607f821691505b602082108114156200072a576200072962000730565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200079981620006ba565b8114620007a557600080fd5b50565b608051613150620007c4600039600061087301526131506000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635c975abb11610104578063a217fddf116100a2578063d539139311610071578063d539139314610556578063d547741f14610574578063dd62ed3e14610590578063e63ab1e9146105c0576101cf565b8063a217fddf146104a8578063a457c2d7146104c6578063a9059cbb146104f6578063ca15c87314610526576101cf565b80638456cb59116100de5780638456cb59146104205780639010d07c1461042a57806391d148541461045a57806395d89b411461048a576101cf565b80635c975abb146103b657806370a08231146103d457806379cc679014610404576101cf565b8063313ce56711610171578063395093511161014b57806339509351146103445780633f4ba83a1461037457806340c10f191461037e57806342966c681461039a576101cf565b8063313ce567146102ec578063355274ea1461030a57806336568abe14610328576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd14610270578063248a9ca3146102a05780632f2ff15d146102d0576101cf565b806301ffc9a7146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e9919061224e565b6105de565b6040516101fb9190612b6b565b60405180910390f35b61020c610658565b6040516102199190612ba1565b60405180910390f35b61023c60048036038101906102379190612171565b6106ea565b6040516102499190612b6b565b60405180910390f35b61025a610708565b6040516102679190612e83565b60405180910390f35b61028a60048036038101906102859190612122565b610712565b6040516102979190612b6b565b60405180910390f35b6102ba60048036038101906102b591906121ad565b610813565b6040516102c79190612b86565b60405180910390f35b6102ea60048036038101906102e591906121d6565b610832565b005b6102f4610866565b6040516103019190612e9e565b60405180910390f35b61031261086f565b60405161031f9190612e83565b60405180910390f35b610342600480360381019061033d91906121d6565b610897565b005b61035e60048036038101906103599190612171565b6108cb565b60405161036b9190612b6b565b60405180910390f35b61037c610977565b005b61039860048036038101906103939190612171565b6109f1565b005b6103b460048036038101906103af9190612277565b610a6f565b005b6103be610a83565b6040516103cb9190612b6b565b60405180910390f35b6103ee60048036038101906103e991906120bd565b610a9a565b6040516103fb9190612e83565b60405180910390f35b61041e60048036038101906104199190612171565b610ae3565b005b610428610b67565b005b610444600480360381019061043f9190612212565b610be1565b6040516104519190612b50565b60405180910390f35b610474600480360381019061046f91906121d6565b610c10565b6040516104819190612b6b565b60405180910390f35b610492610c7a565b60405161049f9190612ba1565b60405180910390f35b6104b0610d0c565b6040516104bd9190612b86565b60405180910390f35b6104e060048036038101906104db9190612171565b610d13565b6040516104ed9190612b6b565b60405180910390f35b610510600480360381019061050b9190612171565b610e07565b60405161051d9190612b6b565b60405180910390f35b610540600480360381019061053b91906121ad565b610e25565b60405161054d9190612e83565b60405180910390f35b61055e610e49565b60405161056b9190612b86565b60405180910390f35b61058e600480360381019061058991906121d6565b610e6d565b005b6105aa60048036038101906105a591906120e6565b610ea1565b6040516105b79190612e83565b60405180910390f35b6105c8610f28565b6040516105d59190612b86565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610651575061065082610f8a565b5b9050919050565b6060600580546106679061301d565b80601f01602080910402602001604051908101604052809291908181526020018280546106939061301d565b80156106e05780601f106106b5576101008083540402835291602001916106e0565b820191906000526020600020905b8154815290600101906020018083116106c357829003601f168201915b5050505050905090565b60006106fe6106f7611004565b848461100c565b6001905092915050565b6000600454905090565b600061071f8484846111d7565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061076a611004565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190612d03565b60405180910390fd5b610807856107f6611004565b85846108029190612f2b565b61100c565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b61083c8282611459565b6108618160016000858152602001908152602001600020610f5a90919063ffffffff16565b505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6108a182826114bf565b6108c6816001600085815260200190815260200160002061154290919063ffffffff16565b505050565b600061096d6108d8611004565b8484600360006108e6611004565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109689190612ed5565b61100c565b6001905092915050565b6109a87f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6109a3611004565b610c10565b6109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de90612c63565b60405180910390fd5b6109ef611572565b565b610a227f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a1d611004565b610c10565b610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5890612d23565b60405180910390fd5b610a6b8282611614565b5050565b610a80610a7a611004565b82611622565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610af683610af1611004565b610ea1565b905081811015610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3290612d43565b60405180910390fd5b610b5883610b47611004565b8484610b539190612f2b565b61100c565b610b628383611622565b505050565b610b987f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610b93611004565b610c10565b610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90612de3565b60405180910390fd5b610bdf6117f8565b565b6000610c08826001600086815260200190815260200160002061189b90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610c899061301d565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb59061301d565b8015610d025780601f10610cd757610100808354040283529160200191610d02565b820191906000526020600020905b815481529060010190602001808311610ce557829003601f168201915b5050505050905090565b6000801b81565b60008060036000610d22611004565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690612e03565b60405180910390fd5b610dfc610dea611004565b858584610df79190612f2b565b61100c565b600191505092915050565b6000610e1b610e14611004565b84846111d7565b6001905092915050565b6000610e42600160008481526020019081526020016000206118b5565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610e7782826118ca565b610e9c816001600085815260200190815260200160002061154290919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610f568282611930565b5050565b6000610f82836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611a10565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ffd5750610ffc82611a80565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390612dc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390612c83565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111ca9190612e83565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90612d83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90612be3565b60405180910390fd5b6112c2838383611aea565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134090612ca3565b60405180910390fd5b81816113559190612f2b565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113e79190612ed5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161144b9190612e83565b60405180910390a350505050565b61147261146583610813565b61146d611004565b610c10565b6114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890612c03565b60405180910390fd5b6114bb8282611930565b5050565b6114c7611004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152b90612e23565b60405180910390fd5b61153e8282611b78565b5050565b600061156a836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611c59565b905092915050565b61157a610a83565b6115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090612c23565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6115fd611004565b60405161160a9190612b50565b60405180910390a1565b61161e8282611dd7565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990612d63565b60405180910390fd5b61169e82600083611aea565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c90612c43565b60405180910390fd5b81816117319190612f2b565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282546117869190612f2b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117eb9190612e83565b60405180910390a3505050565b611800610a83565b15611840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183790612ce3565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611884611004565b6040516118919190612b50565b60405180910390a1565b60006118aa8360000183611e41565b60001c905092915050565b60006118c382600001611edb565b9050919050565b6118e36118d683610813565b6118de611004565b610c10565b611922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191990612cc3565b60405180910390fd5b61192c8282611b78565b5050565b61193a8282610c10565b611a0c57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506119b1611004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611a1c8383611eec565b611a75578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611a7a565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611af5838383611f0f565b611b267f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a611b21611004565b610c10565b611b7357611b32610a83565b15611b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6990612e63565b60405180910390fd5b5b505050565b611b828282610c10565b15611c5557600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611bfa611004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114611dcb576000600182611c8b9190612f2b565b9050600060018660000180549050611ca39190612f2b565b90506000866000018281548110611ce3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110611d2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550838760010160008381526020019081526020016000208190555086600001805480611d8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050611dd1565b60009150505b92915050565b611ddf61086f565b81611de8610708565b611df29190612ed5565b1115611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90612da3565b60405180910390fd5b611e3d8282611f14565b5050565b600081836000018054905011611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8390612bc3565b60405180910390fd5b826000018281548110611ec8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7b90612e43565b60405180910390fd5b611f9060008383611aea565b8060046000828254611fa29190612ed5565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ff89190612ed5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161205d9190612e83565b60405180910390a35050565b600081359050612078816130be565b92915050565b60008135905061208d816130d5565b92915050565b6000813590506120a2816130ec565b92915050565b6000813590506120b781613103565b92915050565b6000602082840312156120cf57600080fd5b60006120dd84828501612069565b91505092915050565b600080604083850312156120f957600080fd5b600061210785828601612069565b925050602061211885828601612069565b9150509250929050565b60008060006060848603121561213757600080fd5b600061214586828701612069565b935050602061215686828701612069565b9250506040612167868287016120a8565b9150509250925092565b6000806040838503121561218457600080fd5b600061219285828601612069565b92505060206121a3858286016120a8565b9150509250929050565b6000602082840312156121bf57600080fd5b60006121cd8482850161207e565b91505092915050565b600080604083850312156121e957600080fd5b60006121f78582860161207e565b925050602061220885828601612069565b9150509250929050565b6000806040838503121561222557600080fd5b60006122338582860161207e565b9250506020612244858286016120a8565b9150509250929050565b60006020828403121561226057600080fd5b600061226e84828501612093565b91505092915050565b60006020828403121561228957600080fd5b6000612297848285016120a8565b91505092915050565b6122a981612f5f565b82525050565b6122b881612f71565b82525050565b6122c781612f7d565b82525050565b60006122d882612eb9565b6122e28185612ec4565b93506122f2818560208601612fea565b6122fb816130ad565b840191505092915050565b6000612313602283612ec4565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612379602383612ec4565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123df602f83612ec4565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f206772616e7400000000000000000000000000000000006020830152604082019050919050565b6000612445601483612ec4565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000612485602283612ec4565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124eb603983612ec4565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f76652070617573657220726f6c6520746f20756e7061757365000000000000006020830152604082019050919050565b6000612551602283612ec4565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125b7602683612ec4565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061261d603083612ec4565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f207265766f6b65000000000000000000000000000000006020830152604082019050919050565b6000612683601083612ec4565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006126c3602883612ec4565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612729603683612ec4565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f7665206d696e74657220726f6c6520746f206d696e74000000000000000000006020830152604082019050919050565b600061278f602483612ec4565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127f5602183612ec4565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061285b602583612ec4565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006128c1601983612ec4565b91507f45524332304361707065643a20636170206578636565646564000000000000006000830152602082019050919050565b6000612901602483612ec4565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612967603783612ec4565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f76652070617573657220726f6c6520746f2070617573650000000000000000006020830152604082019050919050565b60006129cd602583612ec4565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a33602f83612ec4565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b6000612a99601f83612ec4565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000612ad9602a83612ec4565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b612b3b81612fd3565b82525050565b612b4a81612fdd565b82525050565b6000602082019050612b6560008301846122a0565b92915050565b6000602082019050612b8060008301846122af565b92915050565b6000602082019050612b9b60008301846122be565b92915050565b60006020820190508181036000830152612bbb81846122cd565b905092915050565b60006020820190508181036000830152612bdc81612306565b9050919050565b60006020820190508181036000830152612bfc8161236c565b9050919050565b60006020820190508181036000830152612c1c816123d2565b9050919050565b60006020820190508181036000830152612c3c81612438565b9050919050565b60006020820190508181036000830152612c5c81612478565b9050919050565b60006020820190508181036000830152612c7c816124de565b9050919050565b60006020820190508181036000830152612c9c81612544565b9050919050565b60006020820190508181036000830152612cbc816125aa565b9050919050565b60006020820190508181036000830152612cdc81612610565b9050919050565b60006020820190508181036000830152612cfc81612676565b9050919050565b60006020820190508181036000830152612d1c816126b6565b9050919050565b60006020820190508181036000830152612d3c8161271c565b9050919050565b60006020820190508181036000830152612d5c81612782565b9050919050565b60006020820190508181036000830152612d7c816127e8565b9050919050565b60006020820190508181036000830152612d9c8161284e565b9050919050565b60006020820190508181036000830152612dbc816128b4565b9050919050565b60006020820190508181036000830152612ddc816128f4565b9050919050565b60006020820190508181036000830152612dfc8161295a565b9050919050565b60006020820190508181036000830152612e1c816129c0565b9050919050565b60006020820190508181036000830152612e3c81612a26565b9050919050565b60006020820190508181036000830152612e5c81612a8c565b9050919050565b60006020820190508181036000830152612e7c81612acc565b9050919050565b6000602082019050612e986000830184612b32565b92915050565b6000602082019050612eb36000830184612b41565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612ee082612fd3565b9150612eeb83612fd3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f2057612f1f61304f565b5b828201905092915050565b6000612f3682612fd3565b9150612f4183612fd3565b925082821015612f5457612f5361304f565b5b828203905092915050565b6000612f6a82612fb3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015613008578082015181840152602081019050612fed565b83811115613017576000848401525b50505050565b6000600282049050600182168061303557607f821691505b602082108114156130495761304861307e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6130c781612f5f565b81146130d257600080fd5b50565b6130de81612f7d565b81146130e957600080fd5b50565b6130f581612f87565b811461310057600080fd5b50565b61310c81612fd3565b811461311757600080fd5b5056fea2646970667358221220140cefdcea8d9a74bd29d8f50b1400c70a2b27f04e4627544a2c42c797e2213f64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000010452f82247ad2baaff680000000000000000000000000000000000000000000000000000000000000000000000f4c65747320476f204272616e646f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064c455453474f0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635c975abb11610104578063a217fddf116100a2578063d539139311610071578063d539139314610556578063d547741f14610574578063dd62ed3e14610590578063e63ab1e9146105c0576101cf565b8063a217fddf146104a8578063a457c2d7146104c6578063a9059cbb146104f6578063ca15c87314610526576101cf565b80638456cb59116100de5780638456cb59146104205780639010d07c1461042a57806391d148541461045a57806395d89b411461048a576101cf565b80635c975abb146103b657806370a08231146103d457806379cc679014610404576101cf565b8063313ce56711610171578063395093511161014b57806339509351146103445780633f4ba83a1461037457806340c10f191461037e57806342966c681461039a576101cf565b8063313ce567146102ec578063355274ea1461030a57806336568abe14610328576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd14610270578063248a9ca3146102a05780632f2ff15d146102d0576101cf565b806301ffc9a7146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e9919061224e565b6105de565b6040516101fb9190612b6b565b60405180910390f35b61020c610658565b6040516102199190612ba1565b60405180910390f35b61023c60048036038101906102379190612171565b6106ea565b6040516102499190612b6b565b60405180910390f35b61025a610708565b6040516102679190612e83565b60405180910390f35b61028a60048036038101906102859190612122565b610712565b6040516102979190612b6b565b60405180910390f35b6102ba60048036038101906102b591906121ad565b610813565b6040516102c79190612b86565b60405180910390f35b6102ea60048036038101906102e591906121d6565b610832565b005b6102f4610866565b6040516103019190612e9e565b60405180910390f35b61031261086f565b60405161031f9190612e83565b60405180910390f35b610342600480360381019061033d91906121d6565b610897565b005b61035e60048036038101906103599190612171565b6108cb565b60405161036b9190612b6b565b60405180910390f35b61037c610977565b005b61039860048036038101906103939190612171565b6109f1565b005b6103b460048036038101906103af9190612277565b610a6f565b005b6103be610a83565b6040516103cb9190612b6b565b60405180910390f35b6103ee60048036038101906103e991906120bd565b610a9a565b6040516103fb9190612e83565b60405180910390f35b61041e60048036038101906104199190612171565b610ae3565b005b610428610b67565b005b610444600480360381019061043f9190612212565b610be1565b6040516104519190612b50565b60405180910390f35b610474600480360381019061046f91906121d6565b610c10565b6040516104819190612b6b565b60405180910390f35b610492610c7a565b60405161049f9190612ba1565b60405180910390f35b6104b0610d0c565b6040516104bd9190612b86565b60405180910390f35b6104e060048036038101906104db9190612171565b610d13565b6040516104ed9190612b6b565b60405180910390f35b610510600480360381019061050b9190612171565b610e07565b60405161051d9190612b6b565b60405180910390f35b610540600480360381019061053b91906121ad565b610e25565b60405161054d9190612e83565b60405180910390f35b61055e610e49565b60405161056b9190612b86565b60405180910390f35b61058e600480360381019061058991906121d6565b610e6d565b005b6105aa60048036038101906105a591906120e6565b610ea1565b6040516105b79190612e83565b60405180910390f35b6105c8610f28565b6040516105d59190612b86565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610651575061065082610f8a565b5b9050919050565b6060600580546106679061301d565b80601f01602080910402602001604051908101604052809291908181526020018280546106939061301d565b80156106e05780601f106106b5576101008083540402835291602001916106e0565b820191906000526020600020905b8154815290600101906020018083116106c357829003601f168201915b5050505050905090565b60006106fe6106f7611004565b848461100c565b6001905092915050565b6000600454905090565b600061071f8484846111d7565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061076a611004565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190612d03565b60405180910390fd5b610807856107f6611004565b85846108029190612f2b565b61100c565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b61083c8282611459565b6108618160016000858152602001908152602001600020610f5a90919063ffffffff16565b505050565b60006012905090565b60007f00000000000000000000000000000000000010452f82247ad2baaff680000000905090565b6108a182826114bf565b6108c6816001600085815260200190815260200160002061154290919063ffffffff16565b505050565b600061096d6108d8611004565b8484600360006108e6611004565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109689190612ed5565b61100c565b6001905092915050565b6109a87f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6109a3611004565b610c10565b6109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de90612c63565b60405180910390fd5b6109ef611572565b565b610a227f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a1d611004565b610c10565b610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5890612d23565b60405180910390fd5b610a6b8282611614565b5050565b610a80610a7a611004565b82611622565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610af683610af1611004565b610ea1565b905081811015610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3290612d43565b60405180910390fd5b610b5883610b47611004565b8484610b539190612f2b565b61100c565b610b628383611622565b505050565b610b987f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610b93611004565b610c10565b610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90612de3565b60405180910390fd5b610bdf6117f8565b565b6000610c08826001600086815260200190815260200160002061189b90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610c899061301d565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb59061301d565b8015610d025780601f10610cd757610100808354040283529160200191610d02565b820191906000526020600020905b815481529060010190602001808311610ce557829003601f168201915b5050505050905090565b6000801b81565b60008060036000610d22611004565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690612e03565b60405180910390fd5b610dfc610dea611004565b858584610df79190612f2b565b61100c565b600191505092915050565b6000610e1b610e14611004565b84846111d7565b6001905092915050565b6000610e42600160008481526020019081526020016000206118b5565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610e7782826118ca565b610e9c816001600085815260200190815260200160002061154290919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610f568282611930565b5050565b6000610f82836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611a10565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ffd5750610ffc82611a80565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390612dc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390612c83565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111ca9190612e83565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90612d83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90612be3565b60405180910390fd5b6112c2838383611aea565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134090612ca3565b60405180910390fd5b81816113559190612f2b565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113e79190612ed5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161144b9190612e83565b60405180910390a350505050565b61147261146583610813565b61146d611004565b610c10565b6114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890612c03565b60405180910390fd5b6114bb8282611930565b5050565b6114c7611004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152b90612e23565b60405180910390fd5b61153e8282611b78565b5050565b600061156a836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611c59565b905092915050565b61157a610a83565b6115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090612c23565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6115fd611004565b60405161160a9190612b50565b60405180910390a1565b61161e8282611dd7565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990612d63565b60405180910390fd5b61169e82600083611aea565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c90612c43565b60405180910390fd5b81816117319190612f2b565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282546117869190612f2b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117eb9190612e83565b60405180910390a3505050565b611800610a83565b15611840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183790612ce3565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611884611004565b6040516118919190612b50565b60405180910390a1565b60006118aa8360000183611e41565b60001c905092915050565b60006118c382600001611edb565b9050919050565b6118e36118d683610813565b6118de611004565b610c10565b611922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191990612cc3565b60405180910390fd5b61192c8282611b78565b5050565b61193a8282610c10565b611a0c57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506119b1611004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611a1c8383611eec565b611a75578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611a7a565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611af5838383611f0f565b611b267f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a611b21611004565b610c10565b611b7357611b32610a83565b15611b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6990612e63565b60405180910390fd5b5b505050565b611b828282610c10565b15611c5557600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611bfa611004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114611dcb576000600182611c8b9190612f2b565b9050600060018660000180549050611ca39190612f2b565b90506000866000018281548110611ce3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110611d2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550838760010160008381526020019081526020016000208190555086600001805480611d8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050611dd1565b60009150505b92915050565b611ddf61086f565b81611de8610708565b611df29190612ed5565b1115611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90612da3565b60405180910390fd5b611e3d8282611f14565b5050565b600081836000018054905011611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8390612bc3565b60405180910390fd5b826000018281548110611ec8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7b90612e43565b60405180910390fd5b611f9060008383611aea565b8060046000828254611fa29190612ed5565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ff89190612ed5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161205d9190612e83565b60405180910390a35050565b600081359050612078816130be565b92915050565b60008135905061208d816130d5565b92915050565b6000813590506120a2816130ec565b92915050565b6000813590506120b781613103565b92915050565b6000602082840312156120cf57600080fd5b60006120dd84828501612069565b91505092915050565b600080604083850312156120f957600080fd5b600061210785828601612069565b925050602061211885828601612069565b9150509250929050565b60008060006060848603121561213757600080fd5b600061214586828701612069565b935050602061215686828701612069565b9250506040612167868287016120a8565b9150509250925092565b6000806040838503121561218457600080fd5b600061219285828601612069565b92505060206121a3858286016120a8565b9150509250929050565b6000602082840312156121bf57600080fd5b60006121cd8482850161207e565b91505092915050565b600080604083850312156121e957600080fd5b60006121f78582860161207e565b925050602061220885828601612069565b9150509250929050565b6000806040838503121561222557600080fd5b60006122338582860161207e565b9250506020612244858286016120a8565b9150509250929050565b60006020828403121561226057600080fd5b600061226e84828501612093565b91505092915050565b60006020828403121561228957600080fd5b6000612297848285016120a8565b91505092915050565b6122a981612f5f565b82525050565b6122b881612f71565b82525050565b6122c781612f7d565b82525050565b60006122d882612eb9565b6122e28185612ec4565b93506122f2818560208601612fea565b6122fb816130ad565b840191505092915050565b6000612313602283612ec4565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612379602383612ec4565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123df602f83612ec4565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f206772616e7400000000000000000000000000000000006020830152604082019050919050565b6000612445601483612ec4565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000612485602283612ec4565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124eb603983612ec4565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f76652070617573657220726f6c6520746f20756e7061757365000000000000006020830152604082019050919050565b6000612551602283612ec4565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125b7602683612ec4565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061261d603083612ec4565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f207265766f6b65000000000000000000000000000000006020830152604082019050919050565b6000612683601083612ec4565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006126c3602883612ec4565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612729603683612ec4565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f7665206d696e74657220726f6c6520746f206d696e74000000000000000000006020830152604082019050919050565b600061278f602483612ec4565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127f5602183612ec4565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061285b602583612ec4565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006128c1601983612ec4565b91507f45524332304361707065643a20636170206578636565646564000000000000006000830152602082019050919050565b6000612901602483612ec4565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612967603783612ec4565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f76652070617573657220726f6c6520746f2070617573650000000000000000006020830152604082019050919050565b60006129cd602583612ec4565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a33602f83612ec4565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b6000612a99601f83612ec4565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000612ad9602a83612ec4565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b612b3b81612fd3565b82525050565b612b4a81612fdd565b82525050565b6000602082019050612b6560008301846122a0565b92915050565b6000602082019050612b8060008301846122af565b92915050565b6000602082019050612b9b60008301846122be565b92915050565b60006020820190508181036000830152612bbb81846122cd565b905092915050565b60006020820190508181036000830152612bdc81612306565b9050919050565b60006020820190508181036000830152612bfc8161236c565b9050919050565b60006020820190508181036000830152612c1c816123d2565b9050919050565b60006020820190508181036000830152612c3c81612438565b9050919050565b60006020820190508181036000830152612c5c81612478565b9050919050565b60006020820190508181036000830152612c7c816124de565b9050919050565b60006020820190508181036000830152612c9c81612544565b9050919050565b60006020820190508181036000830152612cbc816125aa565b9050919050565b60006020820190508181036000830152612cdc81612610565b9050919050565b60006020820190508181036000830152612cfc81612676565b9050919050565b60006020820190508181036000830152612d1c816126b6565b9050919050565b60006020820190508181036000830152612d3c8161271c565b9050919050565b60006020820190508181036000830152612d5c81612782565b9050919050565b60006020820190508181036000830152612d7c816127e8565b9050919050565b60006020820190508181036000830152612d9c8161284e565b9050919050565b60006020820190508181036000830152612dbc816128b4565b9050919050565b60006020820190508181036000830152612ddc816128f4565b9050919050565b60006020820190508181036000830152612dfc8161295a565b9050919050565b60006020820190508181036000830152612e1c816129c0565b9050919050565b60006020820190508181036000830152612e3c81612a26565b9050919050565b60006020820190508181036000830152612e5c81612a8c565b9050919050565b60006020820190508181036000830152612e7c81612acc565b9050919050565b6000602082019050612e986000830184612b32565b92915050565b6000602082019050612eb36000830184612b41565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612ee082612fd3565b9150612eeb83612fd3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f2057612f1f61304f565b5b828201905092915050565b6000612f3682612fd3565b9150612f4183612fd3565b925082821015612f5457612f5361304f565b5b828203905092915050565b6000612f6a82612fb3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015613008578082015181840152602081019050612fed565b83811115613017576000848401525b50505050565b6000600282049050600182168061303557607f821691505b602082108114156130495761304861307e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6130c781612f5f565b81146130d257600080fd5b50565b6130de81612f7d565b81146130e957600080fd5b50565b6130f581612f87565b811461310057600080fd5b50565b61310c81612fd3565b811461311757600080fd5b5056fea2646970667358221220140cefdcea8d9a74bd29d8f50b1400c70a2b27f04e4627544a2c42c797e2213f64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000010452f82247ad2baaff680000000000000000000000000000000000000000000000000000000000000000000000f4c65747320476f204272616e646f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064c455453474f0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Lets Go Brandon
Arg [1] : symbol (string): LETSGO
Arg [2] : cap (uint256): 330000000000000000000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000010452f82247ad2baaff680000000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 4c65747320476f204272616e646f6e0000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4c455453474f0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

851:2217:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;828:227:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2115:100:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4282:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3235:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4933:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4271:123:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2199:165:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3077:93:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;584:83:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2722:174:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5764:215:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2547:178:13;;;:::i;:::-;;1736:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;491:91:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1073:86:14;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3406:127:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;901:332:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2157:172:13;;;:::i;:::-;;1654:145:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3943:139:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2334:104:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2399:49:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6482:377:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3746:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1973:134:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;955:62:13;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:170:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3984:151:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1024:62:13;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;828:227:1;913:4;952:42;937:57;;;:11;:57;;;;:110;;;;1011:36;1035:11;1011:23;:36::i;:::-;937:110;930:117;;828:227;;;:::o;2115:100:4:-;2169:13;2202:5;2195:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2115:100;:::o;4282:169::-;4365:4;4382:39;4391:12;:10;:12::i;:::-;4405:7;4414:6;4382:8;:39::i;:::-;4439:4;4432:11;;4282:169;;;;:::o;3235:108::-;3296:7;3323:12;;3316:19;;3235:108;:::o;4933:422::-;5039:4;5056:36;5066:6;5074:9;5085:6;5056:9;:36::i;:::-;5105:24;5132:11;:19;5144:6;5132:19;;;;;;;;;;;;;;;:33;5152:12;:10;:12::i;:::-;5132:33;;;;;;;;;;;;;;;;5105:60;;5204:6;5184:16;:26;;5176:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5266:57;5275:6;5283:12;:10;:12::i;:::-;5316:6;5297:16;:25;;;;:::i;:::-;5266:8;:57::i;:::-;5343:4;5336:11;;;4933:422;;;;;:::o;4271:123:0:-;4337:7;4364:6;:12;4371:4;4364:12;;;;;;;;;;;:22;;;4357:29;;4271:123;;;:::o;2199:165:1:-;2284:30;2300:4;2306:7;2284:15;:30::i;:::-;2325:31;2348:7;2325:12;:18;2338:4;2325:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;2199:165;;:::o;3077:93:4:-;3135:5;3160:2;3153:9;;3077:93;:::o;584:83:6:-;628:7;655:4;648:11;;584:83;:::o;2722:174:1:-;2810:33;2829:4;2835:7;2810:18;:33::i;:::-;2854:34;2880:7;2854:12;:18;2867:4;2854:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2722:174;;:::o;5764:215:4:-;5852:4;5869:80;5878:12;:10;:12::i;:::-;5892:7;5938:10;5901:11;:25;5913:12;:10;:12::i;:::-;5901:25;;;;;;;;;;;;;;;:34;5927:7;5901:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5869:8;:80::i;:::-;5967:4;5960:11;;5764:215;;;;:::o;2547:178:13:-;2600:34;1062:24;2621:12;:10;:12::i;:::-;2600:7;:34::i;:::-;2592:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;2707:10;:8;:10::i;:::-;2547:178::o;1736:207::-;1809:34;993:24;1830:12;:10;:12::i;:::-;1809:7;:34::i;:::-;1801:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;1913:22;1919:7;1928:6;1913:5;:22::i;:::-;1736:207;;:::o;491:91:5:-;547:27;553:12;:10;:12::i;:::-;567:6;547:5;:27::i;:::-;491:91;:::o;1073:86:14:-;1120:4;1144:7;;;;;;;;;;;1137:14;;1073:86;:::o;3406:127:4:-;3480:7;3507:9;:18;3517:7;3507:18;;;;;;;;;;;;;;;;3500:25;;3406:127;;;:::o;901:332:5:-;978:24;1005:32;1015:7;1024:12;:10;:12::i;:::-;1005:9;:32::i;:::-;978:59;;1076:6;1056:16;:26;;1048:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1134:58;1143:7;1152:12;:10;:12::i;:::-;1185:6;1166:16;:25;;;;:::i;:::-;1134:8;:58::i;:::-;1203:22;1209:7;1218:6;1203:5;:22::i;:::-;901:332;;;:::o;2157:172:13:-;2208:34;1062:24;2229:12;:10;:12::i;:::-;2208:7;:34::i;:::-;2200:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;2313:8;:6;:8::i;:::-;2157:172::o;1654:145:1:-;1736:7;1763:28;1785:5;1763:12;:18;1776:4;1763:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;1756:35;;1654:145;;;;:::o;3943:139:0:-;4021:4;4045:6;:12;4052:4;4045:12;;;;;;;;;;;:20;;:29;4066:7;4045:29;;;;;;;;;;;;;;;;;;;;;;;;;4038:36;;3943:139;;;;:::o;2334:104:4:-;2390:13;2423:7;2416:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2334:104;:::o;2399:49:0:-;2444:4;2399:49;;;:::o;6482:377:4:-;6575:4;6592:24;6619:11;:25;6631:12;:10;:12::i;:::-;6619:25;;;;;;;;;;;;;;;:34;6645:7;6619:34;;;;;;;;;;;;;;;;6592:61;;6692:15;6672:16;:35;;6664:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6760:67;6769:12;:10;:12::i;:::-;6783:7;6811:15;6792:16;:34;;;;:::i;:::-;6760:8;:67::i;:::-;6847:4;6840:11;;;6482:377;;;;:::o;3746:175::-;3832:4;3849:42;3859:12;:10;:12::i;:::-;3873:9;3884:6;3849:9;:42::i;:::-;3909:4;3902:11;;3746:175;;;;:::o;1973:134:1:-;2045:7;2072:27;:12;:18;2085:4;2072:18;;;;;;;;;;;:25;:27::i;:::-;2065:34;;1973:134;;;:::o;955:62:13:-;993:24;955:62;:::o;2457:170:1:-;2543:31;2560:4;2566:7;2543:16;:31::i;:::-;2585:34;2611:7;2585:12;:18;2598:4;2585:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2457:170;;:::o;3984:151:4:-;4073:7;4100:11;:18;4112:5;4100:18;;;;;;;;;;;;;;;:27;4119:7;4100:27;;;;;;;;;;;;;;;;4093:34;;3984:151;;;;:::o;1024:62:13:-;1062:24;1024:62;:::o;6676:112:0:-;6755:25;6766:4;6772:7;6755:10;:25::i;:::-;6676:112;;:::o;6630:152:9:-;6700:4;6724:50;6729:3;:10;;6765:5;6749:23;;6741:32;;6724:4;:50::i;:::-;6717:57;;6630:152;;;;:::o;3634:217:0:-;3719:4;3758:32;3743:47;;;:11;:47;;;;:100;;;;3807:36;3831:11;3807:23;:36::i;:::-;3743:100;3736:107;;3634:217;;;:::o;601:98:2:-;654:7;681:10;674:17;;601:98;:::o;9838:346:4:-;9957:1;9940:19;;:5;:19;;;;9932:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10038:1;10019:21;;:7;:21;;;;10011:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10122:6;10092:11;:18;10104:5;10092:18;;;;;;;;;;;;;;;:27;10111:7;10092:27;;;;;;;;;;;;;;;:36;;;;10160:7;10144:32;;10153:5;10144:32;;;10169:6;10144:32;;;;;;:::i;:::-;;;;;;;;9838:346;;;:::o;7349:604::-;7473:1;7455:20;;:6;:20;;;;7447:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7557:1;7536:23;;:9;:23;;;;7528:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7612:47;7633:6;7641:9;7652:6;7612:20;:47::i;:::-;7672:21;7696:9;:17;7706:6;7696:17;;;;;;;;;;;;;;;;7672:41;;7749:6;7732:13;:23;;7724:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7845:6;7829:13;:22;;;;:::i;:::-;7809:9;:17;7819:6;7809:17;;;;;;;;;;;;;;;:42;;;;7886:6;7862:9;:20;7872:9;7862:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7927:9;7910:35;;7919:6;7910:35;;;7938:6;7910:35;;;;;;:::i;:::-;;;;;;;;7349:604;;;;:::o;4656:232:0:-;4749:41;4757:18;4770:4;4757:12;:18::i;:::-;4777:12;:10;:12::i;:::-;4749:7;:41::i;:::-;4741:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;4855:25;4866:4;4872:7;4855:10;:25::i;:::-;4656:232;;:::o;5875:218::-;5982:12;:10;:12::i;:::-;5971:23;;:7;:23;;;5963:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;6059:26;6071:4;6077:7;6059:11;:26::i;:::-;5875:218;;:::o;6958:158:9:-;7031:4;7055:53;7063:3;:10;;7099:5;7083:23;;7075:32;;7055:7;:53::i;:::-;7048:60;;6958:158;;;;:::o;2132:120:14:-;1676:8;:6;:8::i;:::-;1668:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2201:5:::1;2191:7;;:15;;;;;;;;;;;;;;;;;;2222:22;2231:12;:10;:12::i;:::-;2222:22;;;;;;:::i;:::-;;;;;;;;2132:120::o:0;1585:139:13:-;1682:34;1700:7;1709:6;1682:17;:34::i;:::-;1585:139;;:::o;8906:494:4:-;9009:1;8990:21;;:7;:21;;;;8982:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9062:49;9083:7;9100:1;9104:6;9062:20;:49::i;:::-;9124:22;9149:9;:18;9159:7;9149:18;;;;;;;;;;;;;;;;9124:43;;9204:6;9186:14;:24;;9178:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9298:6;9281:14;:23;;;;:::i;:::-;9260:9;:18;9270:7;9260:18;;;;;;;;;;;;;;;:44;;;;9331:6;9315:12;;:22;;;;;;;:::i;:::-;;;;;;;;9381:1;9355:37;;9364:7;9355:37;;;9385:6;9355:37;;;;;;:::i;:::-;;;;;;;;8906:494;;;:::o;1873:118:14:-;1399:8;:6;:8::i;:::-;1398:9;1390:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1943:4:::1;1933:7;;:14;;;;;;;;;;;;;;;;;;1963:20;1970:12;:10;:12::i;:::-;1963:20;;;;;;:::i;:::-;;;;;;;;1873:118::o:0;7916:158:9:-;7990:7;8041:22;8045:3;:10;;8057:5;8041:3;:22::i;:::-;8033:31;;8010:56;;7916:158;;;;:::o;7455:117::-;7518:7;7545:19;7553:3;:10;;7545:7;:19::i;:::-;7538:26;;7455:117;;;:::o;5133:235:0:-;5227:41;5235:18;5248:4;5235:12;:18::i;:::-;5255:12;:10;:12::i;:::-;5227:7;:41::i;:::-;5219:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;5334:26;5346:4;5352:7;5334:11;:26::i;:::-;5133:235;;:::o;7123:229::-;7198:22;7206:4;7212:7;7198;:22::i;:::-;7193:152;;7269:4;7237:6;:12;7244:4;7237:12;;;;;;;;;;;:20;;:29;7258:7;7237:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;7320:12;:10;:12::i;:::-;7293:40;;7311:7;7293:40;;7305:4;7293:40;;;;;;;;;;7193:152;7123:229;;:::o;1685:414:9:-;1748:4;1770:21;1780:3;1785:5;1770:9;:21::i;:::-;1765:327;;1808:3;:11;;1825:5;1808:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1991:3;:11;;:18;;;;1969:3;:12;;:19;1982:5;1969:19;;;;;;;;;;;:40;;;;2031:4;2024:11;;;;1765:327;2075:5;2068:12;;1685:414;;;;;:::o;787:157:3:-;872:4;911:25;896:40;;;:11;:40;;;;889:47;;787:157;;;:::o;2733:332:13:-;2842:44;2869:4;2875:2;2879:6;2842:26;:44::i;:::-;2909:34;1062:24;2930:12;:10;:12::i;:::-;2909:7;:34::i;:::-;2903:155;;2987:8;:6;:8::i;:::-;2986:9;2978:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;2903:155;2733:332;;;:::o;7360:230:0:-;7435:22;7443:4;7449:7;7435;:22::i;:::-;7431:152;;;7506:5;7474:6;:12;7481:4;7474:12;;;;;;;;;;;:20;;:29;7495:7;7474:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;7558:12;:10;:12::i;:::-;7531:40;;7549:7;7531:40;;7543:4;7531:40;;;;;;;;;;7431:152;7360:230;;:::o;2275:1553:9:-;2341:4;2459:18;2480:3;:12;;:19;2493:5;2480:19;;;;;;;;;;;;2459:40;;2530:1;2516:10;:15;2512:1309;;2878:21;2915:1;2902:10;:14;;;;:::i;:::-;2878:38;;2931:17;2972:1;2951:3;:11;;:18;;;;:22;;;;:::i;:::-;2931:42;;3218:17;3238:3;:11;;3250:9;3238:22;;;;;;;;;;;;;;;;;;;;;;;;3218:42;;3384:9;3355:3;:11;;3367:13;3355:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;3487:10;3461:3;:12;;:23;3474:9;3461:23;;;;;;;;;;;:36;;;;3622:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3717:3;:12;;:19;3730:5;3717:19;;;;;;;;;;;3710:26;;;3760:4;3753:11;;;;;;;;2512:1309;3804:5;3797:12;;;2275:1553;;;;;:::o;725:207:6:-;850:5;:3;:5::i;:::-;840:6;818:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;810:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;896:28;908:7;917:6;896:11;:28::i;:::-;725:207;;:::o;4582:204:9:-;4649:7;4698:5;4677:3;:11;;:18;;;;:26;4669:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4760:3;:11;;4772:5;4760:18;;;;;;;;;;;;;;;;;;;;;;;;4753:25;;4582:204;;;;:::o;4129:109::-;4185:7;4212:3;:11;;:18;;;;4205:25;;4129:109;;;:::o;3914:129::-;3987:4;4034:1;4011:3;:12;;:19;4024:5;4011:19;;;;;;;;;;;;:24;;4004:31;;3914:129;;;;:::o;10787:92:4:-;;;;:::o;8235:338::-;8338:1;8319:21;;:7;:21;;;;8311:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8389:49;8418:1;8422:7;8431:6;8389:20;:49::i;:::-;8467:6;8451:12;;:22;;;;;;;:::i;:::-;;;;;;;;8506:6;8484:9;:18;8494:7;8484:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8549:7;8528:37;;8545:1;8528:37;;;8558:6;8528:37;;;;;;:::i;:::-;;;;;;;;8235:338;;:::o;7:139:15:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:137::-;;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;348:86;;;;:::o;440:139::-;;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:262::-;;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::-;;;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::-;;;;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::-;;;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::-;;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::-;;;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::-;;;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::-;;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::-;;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::-;;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:366::-;;4761:67;4825:2;4820:3;4761:67;:::i;:::-;4754:74;;4858:34;4854:1;4849:3;4845:11;4838:55;4924:4;4919:2;4914:3;4910:12;4903:26;4955:2;4950:3;4946:12;4939:19;;4744:220;;;:::o;4970:367::-;;5133:67;5197:2;5192:3;5133:67;:::i;:::-;5126:74;;5230:34;5226:1;5221:3;5217:11;5210:55;5296:5;5291:2;5286:3;5282:12;5275:27;5328:2;5323:3;5319:12;5312:19;;5116:221;;;:::o;5343:379::-;;5506:67;5570:2;5565:3;5506:67;:::i;:::-;5499:74;;5603:34;5599:1;5594:3;5590:11;5583:55;5669:17;5664:2;5659:3;5655:12;5648:39;5713:2;5708:3;5704:12;5697:19;;5489:233;;;:::o;5728:318::-;;5891:67;5955:2;5950:3;5891:67;:::i;:::-;5884:74;;5988:22;5984:1;5979:3;5975:11;5968:43;6037:2;6032:3;6028:12;6021:19;;5874:172;;;:::o;6052:366::-;;6215:67;6279:2;6274:3;6215:67;:::i;:::-;6208:74;;6312:34;6308:1;6303:3;6299:11;6292:55;6378:4;6373:2;6368:3;6364:12;6357:26;6409:2;6404:3;6400:12;6393:19;;6198:220;;;:::o;6424:389::-;;6587:67;6651:2;6646:3;6587:67;:::i;:::-;6580:74;;6684:34;6680:1;6675:3;6671:11;6664:55;6750:27;6745:2;6740:3;6736:12;6729:49;6804:2;6799:3;6795:12;6788:19;;6570:243;;;:::o;6819:366::-;;6982:67;7046:2;7041:3;6982:67;:::i;:::-;6975:74;;7079:34;7075:1;7070:3;7066:11;7059:55;7145:4;7140:2;7135:3;7131:12;7124:26;7176:2;7171:3;7167:12;7160:19;;6965:220;;;:::o;7191:370::-;;7354:67;7418:2;7413:3;7354:67;:::i;:::-;7347:74;;7451:34;7447:1;7442:3;7438:11;7431:55;7517:8;7512:2;7507:3;7503:12;7496:30;7552:2;7547:3;7543:12;7536:19;;7337:224;;;:::o;7567:380::-;;7730:67;7794:2;7789:3;7730:67;:::i;:::-;7723:74;;7827:34;7823:1;7818:3;7814:11;7807:55;7893:18;7888:2;7883:3;7879:12;7872:40;7938:2;7933:3;7929:12;7922:19;;7713:234;;;:::o;7953:314::-;;8116:67;8180:2;8175:3;8116:67;:::i;:::-;8109:74;;8213:18;8209:1;8204:3;8200:11;8193:39;8258:2;8253:3;8249:12;8242:19;;8099:168;;;:::o;8273:372::-;;8436:67;8500:2;8495:3;8436:67;:::i;:::-;8429:74;;8533:34;8529:1;8524:3;8520:11;8513:55;8599:10;8594:2;8589:3;8585:12;8578:32;8636:2;8631:3;8627:12;8620:19;;8419:226;;;:::o;8651:386::-;;8814:67;8878:2;8873:3;8814:67;:::i;:::-;8807:74;;8911:34;8907:1;8902:3;8898:11;8891:55;8977:24;8972:2;8967:3;8963:12;8956:46;9028:2;9023:3;9019:12;9012:19;;8797:240;;;:::o;9043:368::-;;9206:67;9270:2;9265:3;9206:67;:::i;:::-;9199:74;;9303:34;9299:1;9294:3;9290:11;9283:55;9369:6;9364:2;9359:3;9355:12;9348:28;9402:2;9397:3;9393:12;9386:19;;9189:222;;;:::o;9417:365::-;;9580:67;9644:2;9639:3;9580:67;:::i;:::-;9573:74;;9677:34;9673:1;9668:3;9664:11;9657:55;9743:3;9738:2;9733:3;9729:12;9722:25;9773:2;9768:3;9764:12;9757:19;;9563:219;;;:::o;9788:369::-;;9951:67;10015:2;10010:3;9951:67;:::i;:::-;9944:74;;10048:34;10044:1;10039:3;10035:11;10028:55;10114:7;10109:2;10104:3;10100:12;10093:29;10148:2;10143:3;10139:12;10132:19;;9934:223;;;:::o;10163:323::-;;10326:67;10390:2;10385:3;10326:67;:::i;:::-;10319:74;;10423:27;10419:1;10414:3;10410:11;10403:48;10477:2;10472:3;10468:12;10461:19;;10309:177;;;:::o;10492:368::-;;10655:67;10719:2;10714:3;10655:67;:::i;:::-;10648:74;;10752:34;10748:1;10743:3;10739:11;10732:55;10818:6;10813:2;10808:3;10804:12;10797:28;10851:2;10846:3;10842:12;10835:19;;10638:222;;;:::o;10866:387::-;;11029:67;11093:2;11088:3;11029:67;:::i;:::-;11022:74;;11126:34;11122:1;11117:3;11113:11;11106:55;11192:25;11187:2;11182:3;11178:12;11171:47;11244:2;11239:3;11235:12;11228:19;;11012:241;;;:::o;11259:369::-;;11422:67;11486:2;11481:3;11422:67;:::i;:::-;11415:74;;11519:34;11515:1;11510:3;11506:11;11499:55;11585:7;11580:2;11575:3;11571:12;11564:29;11619:2;11614:3;11610:12;11603:19;;11405:223;;;:::o;11634:379::-;;11797:67;11861:2;11856:3;11797:67;:::i;:::-;11790:74;;11894:34;11890:1;11885:3;11881:11;11874:55;11960:17;11955:2;11950:3;11946:12;11939:39;12004:2;11999:3;11995:12;11988:19;;11780:233;;;:::o;12019:329::-;;12182:67;12246:2;12241:3;12182:67;:::i;:::-;12175:74;;12279:33;12275:1;12270:3;12266:11;12259:54;12339:2;12334:3;12330:12;12323:19;;12165:183;;;:::o;12354:374::-;;12517:67;12581:2;12576:3;12517:67;:::i;:::-;12510:74;;12614:34;12610:1;12605:3;12601:11;12594:55;12680:12;12675:2;12670:3;12666:12;12659:34;12719:2;12714:3;12710:12;12703:19;;12500:228;;;:::o;12734:118::-;12821:24;12839:5;12821:24;:::i;:::-;12816:3;12809:37;12799:53;;:::o;12858:112::-;12941:22;12957:5;12941:22;:::i;:::-;12936:3;12929:35;12919:51;;:::o;12976:222::-;;13107:2;13096:9;13092:18;13084:26;;13120:71;13188:1;13177:9;13173:17;13164:6;13120:71;:::i;:::-;13074:124;;;;:::o;13204:210::-;;13329:2;13318:9;13314:18;13306:26;;13342:65;13404:1;13393:9;13389:17;13380:6;13342:65;:::i;:::-;13296:118;;;;:::o;13420:222::-;;13551:2;13540:9;13536:18;13528:26;;13564:71;13632:1;13621:9;13617:17;13608:6;13564:71;:::i;:::-;13518:124;;;;:::o;13648:313::-;;13799:2;13788:9;13784:18;13776:26;;13848:9;13842:4;13838:20;13834:1;13823:9;13819:17;13812:47;13876:78;13949:4;13940:6;13876:78;:::i;:::-;13868:86;;13766:195;;;;:::o;13967:419::-;;14171:2;14160:9;14156:18;14148:26;;14220:9;14214:4;14210:20;14206:1;14195:9;14191:17;14184:47;14248:131;14374:4;14248:131;:::i;:::-;14240:139;;14138:248;;;:::o;14392:419::-;;14596:2;14585:9;14581:18;14573:26;;14645:9;14639:4;14635:20;14631:1;14620:9;14616:17;14609:47;14673:131;14799:4;14673:131;:::i;:::-;14665:139;;14563:248;;;:::o;14817:419::-;;15021:2;15010:9;15006:18;14998:26;;15070:9;15064:4;15060:20;15056:1;15045:9;15041:17;15034:47;15098:131;15224:4;15098:131;:::i;:::-;15090:139;;14988:248;;;:::o;15242:419::-;;15446:2;15435:9;15431:18;15423:26;;15495:9;15489:4;15485:20;15481:1;15470:9;15466:17;15459:47;15523:131;15649:4;15523:131;:::i;:::-;15515:139;;15413:248;;;:::o;15667:419::-;;15871:2;15860:9;15856:18;15848:26;;15920:9;15914:4;15910:20;15906:1;15895:9;15891:17;15884:47;15948:131;16074:4;15948:131;:::i;:::-;15940:139;;15838:248;;;:::o;16092:419::-;;16296:2;16285:9;16281:18;16273:26;;16345:9;16339:4;16335:20;16331:1;16320:9;16316:17;16309:47;16373:131;16499:4;16373:131;:::i;:::-;16365:139;;16263:248;;;:::o;16517:419::-;;16721:2;16710:9;16706:18;16698:26;;16770:9;16764:4;16760:20;16756:1;16745:9;16741:17;16734:47;16798:131;16924:4;16798:131;:::i;:::-;16790:139;;16688:248;;;:::o;16942:419::-;;17146:2;17135:9;17131:18;17123:26;;17195:9;17189:4;17185:20;17181:1;17170:9;17166:17;17159:47;17223:131;17349:4;17223:131;:::i;:::-;17215:139;;17113:248;;;:::o;17367:419::-;;17571:2;17560:9;17556:18;17548:26;;17620:9;17614:4;17610:20;17606:1;17595:9;17591:17;17584:47;17648:131;17774:4;17648:131;:::i;:::-;17640:139;;17538:248;;;:::o;17792:419::-;;17996:2;17985:9;17981:18;17973:26;;18045:9;18039:4;18035:20;18031:1;18020:9;18016:17;18009:47;18073:131;18199:4;18073:131;:::i;:::-;18065:139;;17963:248;;;:::o;18217:419::-;;18421:2;18410:9;18406:18;18398:26;;18470:9;18464:4;18460:20;18456:1;18445:9;18441:17;18434:47;18498:131;18624:4;18498:131;:::i;:::-;18490:139;;18388:248;;;:::o;18642:419::-;;18846:2;18835:9;18831:18;18823:26;;18895:9;18889:4;18885:20;18881:1;18870:9;18866:17;18859:47;18923:131;19049:4;18923:131;:::i;:::-;18915:139;;18813:248;;;:::o;19067:419::-;;19271:2;19260:9;19256:18;19248:26;;19320:9;19314:4;19310:20;19306:1;19295:9;19291:17;19284:47;19348:131;19474:4;19348:131;:::i;:::-;19340:139;;19238:248;;;:::o;19492:419::-;;19696:2;19685:9;19681:18;19673:26;;19745:9;19739:4;19735:20;19731:1;19720:9;19716:17;19709:47;19773:131;19899:4;19773:131;:::i;:::-;19765:139;;19663:248;;;:::o;19917:419::-;;20121:2;20110:9;20106:18;20098:26;;20170:9;20164:4;20160:20;20156:1;20145:9;20141:17;20134:47;20198:131;20324:4;20198:131;:::i;:::-;20190:139;;20088:248;;;:::o;20342:419::-;;20546:2;20535:9;20531:18;20523:26;;20595:9;20589:4;20585:20;20581:1;20570:9;20566:17;20559:47;20623:131;20749:4;20623:131;:::i;:::-;20615:139;;20513:248;;;:::o;20767:419::-;;20971:2;20960:9;20956:18;20948:26;;21020:9;21014:4;21010:20;21006:1;20995:9;20991:17;20984:47;21048:131;21174:4;21048:131;:::i;:::-;21040:139;;20938:248;;;:::o;21192:419::-;;21396:2;21385:9;21381:18;21373:26;;21445:9;21439:4;21435:20;21431:1;21420:9;21416:17;21409:47;21473:131;21599:4;21473:131;:::i;:::-;21465:139;;21363:248;;;:::o;21617:419::-;;21821:2;21810:9;21806:18;21798:26;;21870:9;21864:4;21860:20;21856:1;21845:9;21841:17;21834:47;21898:131;22024:4;21898:131;:::i;:::-;21890:139;;21788:248;;;:::o;22042:419::-;;22246:2;22235:9;22231:18;22223:26;;22295:9;22289:4;22285:20;22281:1;22270:9;22266:17;22259:47;22323:131;22449:4;22323:131;:::i;:::-;22315:139;;22213:248;;;:::o;22467:419::-;;22671:2;22660:9;22656:18;22648:26;;22720:9;22714:4;22710:20;22706:1;22695:9;22691:17;22684:47;22748:131;22874:4;22748:131;:::i;:::-;22740:139;;22638:248;;;:::o;22892:419::-;;23096:2;23085:9;23081:18;23073:26;;23145:9;23139:4;23135:20;23131:1;23120:9;23116:17;23109:47;23173:131;23299:4;23173:131;:::i;:::-;23165:139;;23063:248;;;:::o;23317:222::-;;23448:2;23437:9;23433:18;23425:26;;23461:71;23529:1;23518:9;23514:17;23505:6;23461:71;:::i;:::-;23415:124;;;;:::o;23545:214::-;;23672:2;23661:9;23657:18;23649:26;;23685:67;23749:1;23738:9;23734:17;23725:6;23685:67;:::i;:::-;23639:120;;;;:::o;23765:99::-;;23851:5;23845:12;23835:22;;23824:40;;;:::o;23870:169::-;;23988:6;23983:3;23976:19;24028:4;24023:3;24019:14;24004:29;;23966:73;;;;:::o;24045:305::-;;24104:20;24122:1;24104:20;:::i;:::-;24099:25;;24138:20;24156:1;24138:20;:::i;:::-;24133:25;;24292:1;24224:66;24220:74;24217:1;24214:81;24211:2;;;24298:18;;:::i;:::-;24211:2;24342:1;24339;24335:9;24328:16;;24089:261;;;;:::o;24356:191::-;;24416:20;24434:1;24416:20;:::i;:::-;24411:25;;24450:20;24468:1;24450:20;:::i;:::-;24445:25;;24489:1;24486;24483:8;24480:2;;;24494:18;;:::i;:::-;24480:2;24539:1;24536;24532:9;24524:17;;24401:146;;;;:::o;24553:96::-;;24619:24;24637:5;24619:24;:::i;:::-;24608:35;;24598:51;;;:::o;24655:90::-;;24732:5;24725:13;24718:21;24707:32;;24697:48;;;:::o;24751:77::-;;24817:5;24806:16;;24796:32;;;:::o;24834:149::-;;24910:66;24903:5;24899:78;24888:89;;24878:105;;;:::o;24989:126::-;;25066:42;25059:5;25055:54;25044:65;;25034:81;;;:::o;25121:77::-;;25187:5;25176:16;;25166:32;;;:::o;25204:86::-;;25279:4;25272:5;25268:16;25257:27;;25247:43;;;:::o;25296:307::-;25364:1;25374:113;25388:6;25385:1;25382:13;25374:113;;;25473:1;25468:3;25464:11;25458:18;25454:1;25449:3;25445:11;25438:39;25410:2;25407:1;25403:10;25398:15;;25374:113;;;25505:6;25502:1;25499:13;25496:2;;;25585:1;25576:6;25571:3;25567:16;25560:27;25496:2;25345:258;;;;:::o;25609:320::-;;25690:1;25684:4;25680:12;25670:22;;25737:1;25731:4;25727:12;25758:18;25748:2;;25814:4;25806:6;25802:17;25792:27;;25748:2;25876;25868:6;25865:14;25845:18;25842:38;25839:2;;;25895:18;;:::i;:::-;25839:2;25660:269;;;;:::o;25935:180::-;25983:77;25980:1;25973:88;26080:4;26077:1;26070:15;26104:4;26101:1;26094:15;26121:180;26169:77;26166:1;26159:88;26266:4;26263:1;26256:15;26290:4;26287:1;26280:15;26307:102;;26399:2;26395:7;26390:2;26383:5;26379:14;26375:28;26365:38;;26355:54;;;:::o;26415:122::-;26488:24;26506:5;26488:24;:::i;:::-;26481:5;26478:35;26468:2;;26527:1;26524;26517:12;26468:2;26458:79;:::o;26543:122::-;26616:24;26634:5;26616:24;:::i;:::-;26609:5;26606:35;26596:2;;26655:1;26652;26645:12;26596:2;26586:79;:::o;26671:120::-;26743:23;26760:5;26743:23;:::i;:::-;26736:5;26733:34;26723:2;;26781:1;26778;26771:12;26723:2;26713:78;:::o;26797:122::-;26870:24;26888:5;26870:24;:::i;:::-;26863:5;26860:35;26850:2;;26909:1;26906;26899:12;26850:2;26840:79;:::o

Swarm Source

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