ETH Price: $2,666.49 (+0.90%)

Token

Bullet (BLLT)
 

Overview

Max Total Supply

52,569,516 BLLT

Holders

77

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
1shottm.eth
Balance
15,000 BLLT

Value
$0.00
0xa9A4a3a03514e58CD59A13Bb54230d588Ff58F62
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:
Bullet

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-29
*/

/** 
 *  SourceUnit: /home/clayrisser/Projects/crypto-outlaws/bullet/contracts/Bullet.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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




/** 
 *  SourceUnit: /home/clayrisser/Projects/crypto-outlaws/bullet/contracts/Bullet.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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




/** 
 *  SourceUnit: /home/clayrisser/Projects/crypto-outlaws/bullet/contracts/Bullet.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

////import "../IERC20.sol";

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

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

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




/** 
 *  SourceUnit: /home/clayrisser/Projects/crypto-outlaws/bullet/contracts/Bullet.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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




/** 
 *  SourceUnit: /home/clayrisser/Projects/crypto-outlaws/bullet/contracts/Bullet.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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




/** 
 *  SourceUnit: /home/clayrisser/Projects/crypto-outlaws/bullet/contracts/Bullet.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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




/** 
 *  SourceUnit: /home/clayrisser/Projects/crypto-outlaws/bullet/contracts/Bullet.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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




/** 
 *  SourceUnit: /home/clayrisser/Projects/crypto-outlaws/bullet/contracts/Bullet.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

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

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

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

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




/** 
 *  SourceUnit: /home/clayrisser/Projects/crypto-outlaws/bullet/contracts/Bullet.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}




/** 
 *  SourceUnit: /home/clayrisser/Projects/crypto-outlaws/bullet/contracts/Bullet.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

////import "../ERC20.sol";
////import "../../../utils/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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}




/** 
 *  SourceUnit: /home/clayrisser/Projects/crypto-outlaws/bullet/contracts/Bullet.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}




/** 
 *  SourceUnit: /home/clayrisser/Projects/crypto-outlaws/bullet/contracts/Bullet.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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




/** 
 *  SourceUnit: /home/clayrisser/Projects/crypto-outlaws/bullet/contracts/Bullet.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}




/** 
 *  SourceUnit: /home/clayrisser/Projects/crypto-outlaws/bullet/contracts/Bullet.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

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

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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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


/** 
 *  SourceUnit: /home/clayrisser/Projects/crypto-outlaws/bullet/contracts/Bullet.sol
*/

////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: UNLICENSED
pragma solidity ^0.8.4;

////import "@openzeppelin/contracts/access/AccessControl.sol";
////import "@openzeppelin/contracts/access/Ownable.sol";
////import "@openzeppelin/contracts/security/Pausable.sol";
////import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
////import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
////import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
////import "@openzeppelin/contracts/utils/math/SafeMath.sol";

/// @title Bullet (BLLT)
/// @author New Frontiers Entertainment and Gaming LLC
/// @dev ERC20 bullet token
/// @custom:security-contact [email protected]
contract Bullet is
    ERC20,
    ERC20Burnable,
    Pausable,
    Ownable,
    AccessControl,
    ReentrancyGuard
{
    /// @return max token supply
    uint256 public maxSupply = 7 * 10**9 * 10**decimals();

    /// @return public sale active
    bool public publicSale = true;

    uint256 private _publicMintAtomicPrice = 0;

    /// @return minter role hash
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    /// @return pauser role hash
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /// @return staking contract role
    bytes32 public constant STAKING_CONTRACT_ROLE =
        keccak256("STAKING_CONTRACT_ROLE");

    /// @return license url
    string public constant LICENSE = "https://olw.outlawsnft.io/bllt";

    constructor() ERC20("Bullet", "BLLT") ReentrancyGuard() {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _mint(payable(this), 7777777 * 10**decimals());
        setPublicMintPrice(6 * 10**12);
        _grantRole(MINTER_ROLE, msg.sender);
    }

    /// @return public cost to mint bullet
    function getPublicMintPrice() external view returns (uint256) {
        return SafeMath.mul(_publicMintAtomicPrice, 10**decimals());
    }

    /// @notice mint bullets
    /// @param amount number of tokens to mint
    function mint(uint256 amount) public payable {
        require(
            SafeMath.add(totalSupply(), amount) <= maxSupply,
            "all tokens have been minted"
        );
        if (hasRole(MINTER_ROLE, msg.sender)) {
            _mint(msg.sender, amount);
            return;
        }
        require(publicSale, "public sale is not active");
        require(
            msg.value >= SafeMath.mul(_publicMintAtomicPrice, amount),
            "not enough ether supplied"
        );
        _mint(msg.sender, amount);
    }

    /// @notice pause contract
    function pause() external onlyOwner {
        _pause();
    }

    /// @notice unpause contract
    function unpause() external onlyOwner {
        _unpause();
    }

    /// @notice flip public sale
    function flipPublicSale() external onlyOwner {
        publicSale = !publicSale;
    }

    /// @notice transfer tokens to staker
    /// @param staker address of staker
    /// @param amount amount of tokens to transfer
    function transferToStaker(address staker, uint256 amount)
        external
        onlyRole(STAKING_CONTRACT_ROLE)
    {
        _transfer(address(this), staker, amount);
    }

    /// @notice mint tokens for staker
    /// @param staker address of staker
    /// @param amount amount of tokens to mint
    function stakerMint(address staker, uint256 amount)
        external
        onlyRole(STAKING_CONTRACT_ROLE)
    {
        _mint(staker, amount);
    }

    /// @notice set max supply
    /// @param amount max token supply
    function setMaxSupply(uint256 amount) external onlyOwner {
        maxSupply = amount;
    }

    /// @notice set public mint price
    /// @param amount public cost to mint bullet
    function setPublicMintPrice(uint256 amount) public onlyOwner {
        _publicMintAtomicPrice = SafeMath.div(amount, 10**decimals());
    }

    /// @notice withdraw funds from contract
    function withdraw() external nonReentrant onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }

    /// @notice recieve funds
    receive() external payable {}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LICENSE","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"STAKING_CONTRACT_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPublicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stakerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferToStaker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052620000126012600a62000575565b62000023906401a13b860062000634565b6008556009805460ff191660011790556000600a553480156200004557600080fd5b506040805180820182526006815265109d5b1b195d60d21b6020808301918252835180850190945260048452631093131560e21b90840152815191929162000090916003916200044a565b508051620000a69060049060208401906200044a565b50506005805460ff1916905550620000be336200013b565b6001600755620000d060003362000195565b620000f830620000e36012600a62000575565b620000f2906276adf162000634565b62000220565b62000109650574fbde600062000317565b620001357f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63362000195565b620006a9565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001a18282620003a3565b6200021c5760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001db3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6001600160a01b0382166200027c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200028a60008383620003d0565b80600260008282546200029e9190620004f0565b90915550506001600160a01b03821660009081526020819052604081208054839290620002cd908490620004f0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b03610100909104163314620003795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000273565b6200039d816200038c6012600a62000575565b6200043560201b62000f601760201c565b600a5550565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b60055460ff1615620004185760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000273565b620004308383836200043060201b620008991760201c565b505050565b60006200044382846200050b565b9392505050565b828054620004589062000656565b90600052602060002090601f0160209004810192826200047c5760008555620004c7565b82601f106200049757805160ff1916838001178555620004c7565b82800160010185558215620004c7579182015b82811115620004c7578251825591602001919060010190620004aa565b50620004d5929150620004d9565b5090565b5b80821115620004d55760008155600101620004da565b6000821982111562000506576200050662000693565b500190565b6000826200052757634e487b7160e01b81526012600452602481fd5b500490565b600181815b808511156200056d57816000190482111562000551576200055162000693565b808516156200055f57918102915b93841c939080029062000531565b509250929050565b60006200044360ff8416836000826200059157506001620003ca565b81620005a057506000620003ca565b8160018114620005b95760028114620005c457620005e4565b6001915050620003ca565b60ff841115620005d857620005d862000693565b50506001821b620003ca565b5060208310610133831016604e8410600b841016171562000609575081810a620003ca565b6200061583836200052c565b80600019048211156200062c576200062c62000693565b029392505050565b600081600019048311821515161562000651576200065162000693565b500290565b600181811c908216806200066b57607f821691505b602082108114156200068d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b611e5f80620006b96000396000f3fe60806040526004361061023f5760003560e01c8063715018a61161012e578063a457c2d7116100ab578063d5abeb011161006f578063d5abeb01146106c5578063d8124616146106db578063dd62ed3e1461070f578063e63ab1e91461072f578063f2fde38b1461076357600080fd5b8063a457c2d714610611578063a9059cbb14610631578063c14a785b14610651578063d539139314610671578063d547741f146106a557600080fd5b80638da5cb5b116100f25780638da5cb5b1461057e57806391d14854146105b457806395d89b41146105d4578063a0712d68146105e9578063a217fddf146105fc57600080fd5b8063715018a61461050a578063744dab381461051f57806379cc6790146105345780638456cb5914610554578063880846051461056957600080fd5b806333bc1c5c116101bc57806342966c681161018057806342966c681461045c5780635c975abb1461047c5780635d82cf6e146104945780636f8b44b0146104b457806370a08231146104d457600080fd5b806333bc1c5c146103d857806336568abe146103f257806339509351146104125780633ccfd60b146104325780633f4ba83a1461044757600080fd5b8063209113f111610203578063209113f11461032a57806323b872dd1461034c578063248a9ca31461036c5780632f2ff15d1461039c578063313ce567146103bc57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063095ea7b3146102a25780630a912fc4146102c257806318160ddd1461030b57600080fd5b3661024657005b600080fd5b34801561025757600080fd5b5061026b610266366004611b34565b610783565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107ba565b6040516102779190611bd1565b3480156102ae57600080fd5b5061026b6102bd366004611ad1565b61084c565b3480156102ce57600080fd5b506102956040518060400160405280601e81526020017f68747470733a2f2f6f6c772e6f75746c6177736e66742e696f2f626c6c74000081525081565b34801561031757600080fd5b506002545b604051908152602001610277565b34801561033657600080fd5b5061034a610345366004611ad1565b610864565b005b34801561035857600080fd5b5061026b610367366004611a96565b61089e565b34801561037857600080fd5b5061031c610387366004611afa565b60009081526006602052604090206001015490565b3480156103a857600080fd5b5061034a6103b7366004611b12565b6108c2565b3480156103c857600080fd5b5060405160128152602001610277565b3480156103e457600080fd5b5060095461026b9060ff1681565b3480156103fe57600080fd5b5061034a61040d366004611b12565b6108e7565b34801561041e57600080fd5b5061026b61042d366004611ad1565b61096a565b34801561043e57600080fd5b5061034a61098c565b34801561045357600080fd5b5061034a610a71565b34801561046857600080fd5b5061034a610477366004611afa565b610aab565b34801561048857600080fd5b5060055460ff1661026b565b3480156104a057600080fd5b5061034a6104af366004611afa565b610ab8565b3480156104c057600080fd5b5061034a6104cf366004611afa565b610b03565b3480156104e057600080fd5b5061031c6104ef366004611a4a565b6001600160a01b031660009081526020819052604090205490565b34801561051657600080fd5b5061034a610b38565b34801561052b57600080fd5b5061031c610b72565b34801561054057600080fd5b5061034a61054f366004611ad1565b610b97565b34801561056057600080fd5b5061034a610bac565b34801561057557600080fd5b5061034a610be4565b34801561058a57600080fd5b5060055461010090046001600160a01b03166040516001600160a01b039091168152602001610277565b3480156105c057600080fd5b5061026b6105cf366004611b12565b610c28565b3480156105e057600080fd5b50610295610c53565b61034a6105f7366004611afa565b610c62565b34801561060857600080fd5b5061031c600081565b34801561061d57600080fd5b5061026b61062c366004611ad1565b610db5565b34801561063d57600080fd5b5061026b61064c366004611ad1565b610e30565b34801561065d57600080fd5b5061034a61066c366004611ad1565b610e3e565b34801561067d57600080fd5b5061031c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b3480156106b157600080fd5b5061034a6106c0366004611b12565b610e72565b3480156106d157600080fd5b5061031c60085481565b3480156106e757600080fd5b5061031c7fc1f968a51cafd0d994ea5efed1570f584045398ccad7dc4ce4e34ea86ff5c24981565b34801561071b57600080fd5b5061031c61072a366004611a64565b610e97565b34801561073b57600080fd5b5061031c7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b34801561076f57600080fd5b5061034a61077e366004611a4a565b610ec2565b60006001600160e01b03198216637965db0b60e01b14806107b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546107c990611dd8565b80601f01602080910402602001604051908101604052809291908181526020018280546107f590611dd8565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b60003361085a818585610f73565b5060019392505050565b7fc1f968a51cafd0d994ea5efed1570f584045398ccad7dc4ce4e34ea86ff5c24961088e81611097565b6108993084846110a1565b505050565b6000336108ac85828561127c565b6108b78585856110a1565b506001949350505050565b6000828152600660205260409020600101546108dd81611097565b61089983836112f0565b6001600160a01b038116331461095c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6109668282611376565b5050565b60003361085a81858561097d8383610e97565b6109879190611c39565b610f73565b600260075414156109df5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610953565b60026007556005546001600160a01b03610100909104163314610a145760405162461bcd60e51b815260040161095390611c04565b604051600090339047908381818185875af1925050503d8060008114610a56576040519150601f19603f3d011682016040523d82523d6000602084013e610a5b565b606091505b5050905080610a6957600080fd5b506001600755565b6005546001600160a01b03610100909104163314610aa15760405162461bcd60e51b815260040161095390611c04565b610aa96113dd565b565b610ab53382611470565b50565b6005546001600160a01b03610100909104163314610ae85760405162461bcd60e51b815260040161095390611c04565b610afd81610af86012600a611cb4565b610f60565b600a5550565b6005546001600160a01b03610100909104163314610b335760405162461bcd60e51b815260040161095390611c04565b600855565b6005546001600160a01b03610100909104163314610b685760405162461bcd60e51b815260040161095390611c04565b610aa960006115ca565b6000610b92600a54610b82601290565b610b8d90600a611cb4565b611624565b905090565b610ba282338361127c565b6109668282611470565b6005546001600160a01b03610100909104163314610bdc5760405162461bcd60e51b815260040161095390611c04565b610aa9611630565b6005546001600160a01b03610100909104163314610c145760405162461bcd60e51b815260040161095390611c04565b6009805460ff19811660ff90911615179055565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546107c990611dd8565b600854610c77610c7160025490565b836116ab565b1115610cc55760405162461bcd60e51b815260206004820152601b60248201527f616c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610953565b610cef7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610c28565b15610cfe57610ab533826116b7565b60095460ff16610d505760405162461bcd60e51b815260206004820152601960248201527f7075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610953565b610d5c600a5482611624565b341015610dab5760405162461bcd60e51b815260206004820152601960248201527f6e6f7420656e6f75676820657468657220737570706c696564000000000000006044820152606401610953565b610ab533826116b7565b60003381610dc38286610e97565b905083811015610e235760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610953565b6108b78286868403610f73565b60003361085a8185856110a1565b7fc1f968a51cafd0d994ea5efed1570f584045398ccad7dc4ce4e34ea86ff5c249610e6881611097565b61089983836116b7565b600082815260066020526040902060010154610e8d81611097565b6108998383611376565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03610100909104163314610ef25760405162461bcd60e51b815260040161095390611c04565b6001600160a01b038116610f575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610953565b610ab5816115ca565b6000610f6c8284611c51565b9392505050565b6001600160a01b038316610fd55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610953565b6001600160a01b0382166110365760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610953565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b610ab581336117a2565b6001600160a01b0383166111055760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610953565b6001600160a01b0382166111675760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610953565b611172838383611806565b6001600160a01b038316600090815260208190526040902054818110156111ea5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610953565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611221908490611c39565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161126d91815260200190565b60405180910390a35b50505050565b60006112888484610e97565b9050600019811461127657818110156112e35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610953565b6112768484848403610f73565b6112fa8282610c28565b6109665760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556113323390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6113808282610c28565b156109665760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60055460ff166114265760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610953565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166114d05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610953565b6114dc82600083611806565b6001600160a01b038216600090815260208190526040902054818110156115505760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610953565b6001600160a01b038316600090815260208190526040812083830390556002805484929061157f908490611d7e565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610f6c8284611d5f565b60055460ff16156116765760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610953565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586114533390565b6000610f6c8284611c39565b6001600160a01b03821661170d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610953565b61171960008383611806565b806002600082825461172b9190611c39565b90915550506001600160a01b03821660009081526020819052604081208054839290611758908490611c39565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6117ac8282610c28565b610966576117c4816001600160a01b0316601461184c565b6117cf83602061184c565b6040516020016117e0929190611b5c565b60408051601f198184030181529082905262461bcd60e51b825261095391600401611bd1565b60055460ff16156108995760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610953565b6060600061185b836002611d5f565b611866906002611c39565b67ffffffffffffffff81111561188c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118b6576020820181803683370190505b509050600360fc1b816000815181106118df57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061191c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611940846002611d5f565b61194b906001611c39565b90505b60018111156119df576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061198d57634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106119b157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936119d881611dc1565b905061194e565b508315610f6c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610953565b80356001600160a01b0381168114611a4557600080fd5b919050565b600060208284031215611a5b578081fd5b610f6c82611a2e565b60008060408385031215611a76578081fd5b611a7f83611a2e565b9150611a8d60208401611a2e565b90509250929050565b600080600060608486031215611aaa578081fd5b611ab384611a2e565b9250611ac160208501611a2e565b9150604084013590509250925092565b60008060408385031215611ae3578182fd5b611aec83611a2e565b946020939093013593505050565b600060208284031215611b0b578081fd5b5035919050565b60008060408385031215611b24578182fd5b82359150611a8d60208401611a2e565b600060208284031215611b45578081fd5b81356001600160e01b031981168114610f6c578182fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611b94816017850160208801611d95565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611bc5816028840160208801611d95565b01602801949350505050565b6020815260008251806020840152611bf0816040850160208701611d95565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611c4c57611c4c611e13565b500190565b600082611c6c57634e487b7160e01b81526012600452602481fd5b500490565b600181815b80851115611cac578160001904821115611c9257611c92611e13565b80851615611c9f57918102915b93841c9390800290611c76565b509250929050565b6000610f6c60ff841683600082611ccd575060016107b4565b81611cda575060006107b4565b8160018114611cf05760028114611cfa57611d16565b60019150506107b4565b60ff841115611d0b57611d0b611e13565b50506001821b6107b4565b5060208310610133831016604e8410600b8410161715611d39575081810a6107b4565b611d438383611c71565b8060001904821115611d5757611d57611e13565b029392505050565b6000816000190483118215151615611d7957611d79611e13565b500290565b600082821015611d9057611d90611e13565b500390565b60005b83811015611db0578181015183820152602001611d98565b838111156112765750506000910152565b600081611dd057611dd0611e13565b506000190190565b600181811c90821680611dec57607f821691505b60208210811415611e0d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220383e7194e6b567a08eae62b181d386d788e36bdf2978d7ba06cae3f702338d9964736f6c63430008040033

Deployed Bytecode

0x60806040526004361061023f5760003560e01c8063715018a61161012e578063a457c2d7116100ab578063d5abeb011161006f578063d5abeb01146106c5578063d8124616146106db578063dd62ed3e1461070f578063e63ab1e91461072f578063f2fde38b1461076357600080fd5b8063a457c2d714610611578063a9059cbb14610631578063c14a785b14610651578063d539139314610671578063d547741f146106a557600080fd5b80638da5cb5b116100f25780638da5cb5b1461057e57806391d14854146105b457806395d89b41146105d4578063a0712d68146105e9578063a217fddf146105fc57600080fd5b8063715018a61461050a578063744dab381461051f57806379cc6790146105345780638456cb5914610554578063880846051461056957600080fd5b806333bc1c5c116101bc57806342966c681161018057806342966c681461045c5780635c975abb1461047c5780635d82cf6e146104945780636f8b44b0146104b457806370a08231146104d457600080fd5b806333bc1c5c146103d857806336568abe146103f257806339509351146104125780633ccfd60b146104325780633f4ba83a1461044757600080fd5b8063209113f111610203578063209113f11461032a57806323b872dd1461034c578063248a9ca31461036c5780632f2ff15d1461039c578063313ce567146103bc57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063095ea7b3146102a25780630a912fc4146102c257806318160ddd1461030b57600080fd5b3661024657005b600080fd5b34801561025757600080fd5b5061026b610266366004611b34565b610783565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107ba565b6040516102779190611bd1565b3480156102ae57600080fd5b5061026b6102bd366004611ad1565b61084c565b3480156102ce57600080fd5b506102956040518060400160405280601e81526020017f68747470733a2f2f6f6c772e6f75746c6177736e66742e696f2f626c6c74000081525081565b34801561031757600080fd5b506002545b604051908152602001610277565b34801561033657600080fd5b5061034a610345366004611ad1565b610864565b005b34801561035857600080fd5b5061026b610367366004611a96565b61089e565b34801561037857600080fd5b5061031c610387366004611afa565b60009081526006602052604090206001015490565b3480156103a857600080fd5b5061034a6103b7366004611b12565b6108c2565b3480156103c857600080fd5b5060405160128152602001610277565b3480156103e457600080fd5b5060095461026b9060ff1681565b3480156103fe57600080fd5b5061034a61040d366004611b12565b6108e7565b34801561041e57600080fd5b5061026b61042d366004611ad1565b61096a565b34801561043e57600080fd5b5061034a61098c565b34801561045357600080fd5b5061034a610a71565b34801561046857600080fd5b5061034a610477366004611afa565b610aab565b34801561048857600080fd5b5060055460ff1661026b565b3480156104a057600080fd5b5061034a6104af366004611afa565b610ab8565b3480156104c057600080fd5b5061034a6104cf366004611afa565b610b03565b3480156104e057600080fd5b5061031c6104ef366004611a4a565b6001600160a01b031660009081526020819052604090205490565b34801561051657600080fd5b5061034a610b38565b34801561052b57600080fd5b5061031c610b72565b34801561054057600080fd5b5061034a61054f366004611ad1565b610b97565b34801561056057600080fd5b5061034a610bac565b34801561057557600080fd5b5061034a610be4565b34801561058a57600080fd5b5060055461010090046001600160a01b03166040516001600160a01b039091168152602001610277565b3480156105c057600080fd5b5061026b6105cf366004611b12565b610c28565b3480156105e057600080fd5b50610295610c53565b61034a6105f7366004611afa565b610c62565b34801561060857600080fd5b5061031c600081565b34801561061d57600080fd5b5061026b61062c366004611ad1565b610db5565b34801561063d57600080fd5b5061026b61064c366004611ad1565b610e30565b34801561065d57600080fd5b5061034a61066c366004611ad1565b610e3e565b34801561067d57600080fd5b5061031c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b3480156106b157600080fd5b5061034a6106c0366004611b12565b610e72565b3480156106d157600080fd5b5061031c60085481565b3480156106e757600080fd5b5061031c7fc1f968a51cafd0d994ea5efed1570f584045398ccad7dc4ce4e34ea86ff5c24981565b34801561071b57600080fd5b5061031c61072a366004611a64565b610e97565b34801561073b57600080fd5b5061031c7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b34801561076f57600080fd5b5061034a61077e366004611a4a565b610ec2565b60006001600160e01b03198216637965db0b60e01b14806107b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546107c990611dd8565b80601f01602080910402602001604051908101604052809291908181526020018280546107f590611dd8565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b60003361085a818585610f73565b5060019392505050565b7fc1f968a51cafd0d994ea5efed1570f584045398ccad7dc4ce4e34ea86ff5c24961088e81611097565b6108993084846110a1565b505050565b6000336108ac85828561127c565b6108b78585856110a1565b506001949350505050565b6000828152600660205260409020600101546108dd81611097565b61089983836112f0565b6001600160a01b038116331461095c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6109668282611376565b5050565b60003361085a81858561097d8383610e97565b6109879190611c39565b610f73565b600260075414156109df5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610953565b60026007556005546001600160a01b03610100909104163314610a145760405162461bcd60e51b815260040161095390611c04565b604051600090339047908381818185875af1925050503d8060008114610a56576040519150601f19603f3d011682016040523d82523d6000602084013e610a5b565b606091505b5050905080610a6957600080fd5b506001600755565b6005546001600160a01b03610100909104163314610aa15760405162461bcd60e51b815260040161095390611c04565b610aa96113dd565b565b610ab53382611470565b50565b6005546001600160a01b03610100909104163314610ae85760405162461bcd60e51b815260040161095390611c04565b610afd81610af86012600a611cb4565b610f60565b600a5550565b6005546001600160a01b03610100909104163314610b335760405162461bcd60e51b815260040161095390611c04565b600855565b6005546001600160a01b03610100909104163314610b685760405162461bcd60e51b815260040161095390611c04565b610aa960006115ca565b6000610b92600a54610b82601290565b610b8d90600a611cb4565b611624565b905090565b610ba282338361127c565b6109668282611470565b6005546001600160a01b03610100909104163314610bdc5760405162461bcd60e51b815260040161095390611c04565b610aa9611630565b6005546001600160a01b03610100909104163314610c145760405162461bcd60e51b815260040161095390611c04565b6009805460ff19811660ff90911615179055565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546107c990611dd8565b600854610c77610c7160025490565b836116ab565b1115610cc55760405162461bcd60e51b815260206004820152601b60248201527f616c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610953565b610cef7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610c28565b15610cfe57610ab533826116b7565b60095460ff16610d505760405162461bcd60e51b815260206004820152601960248201527f7075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610953565b610d5c600a5482611624565b341015610dab5760405162461bcd60e51b815260206004820152601960248201527f6e6f7420656e6f75676820657468657220737570706c696564000000000000006044820152606401610953565b610ab533826116b7565b60003381610dc38286610e97565b905083811015610e235760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610953565b6108b78286868403610f73565b60003361085a8185856110a1565b7fc1f968a51cafd0d994ea5efed1570f584045398ccad7dc4ce4e34ea86ff5c249610e6881611097565b61089983836116b7565b600082815260066020526040902060010154610e8d81611097565b6108998383611376565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03610100909104163314610ef25760405162461bcd60e51b815260040161095390611c04565b6001600160a01b038116610f575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610953565b610ab5816115ca565b6000610f6c8284611c51565b9392505050565b6001600160a01b038316610fd55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610953565b6001600160a01b0382166110365760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610953565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b610ab581336117a2565b6001600160a01b0383166111055760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610953565b6001600160a01b0382166111675760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610953565b611172838383611806565b6001600160a01b038316600090815260208190526040902054818110156111ea5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610953565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611221908490611c39565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161126d91815260200190565b60405180910390a35b50505050565b60006112888484610e97565b9050600019811461127657818110156112e35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610953565b6112768484848403610f73565b6112fa8282610c28565b6109665760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556113323390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6113808282610c28565b156109665760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60055460ff166114265760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610953565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166114d05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610953565b6114dc82600083611806565b6001600160a01b038216600090815260208190526040902054818110156115505760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610953565b6001600160a01b038316600090815260208190526040812083830390556002805484929061157f908490611d7e565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610f6c8284611d5f565b60055460ff16156116765760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610953565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586114533390565b6000610f6c8284611c39565b6001600160a01b03821661170d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610953565b61171960008383611806565b806002600082825461172b9190611c39565b90915550506001600160a01b03821660009081526020819052604081208054839290611758908490611c39565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6117ac8282610c28565b610966576117c4816001600160a01b0316601461184c565b6117cf83602061184c565b6040516020016117e0929190611b5c565b60408051601f198184030181529082905262461bcd60e51b825261095391600401611bd1565b60055460ff16156108995760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610953565b6060600061185b836002611d5f565b611866906002611c39565b67ffffffffffffffff81111561188c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118b6576020820181803683370190505b509050600360fc1b816000815181106118df57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061191c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611940846002611d5f565b61194b906001611c39565b90505b60018111156119df576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061198d57634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106119b157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936119d881611dc1565b905061194e565b508315610f6c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610953565b80356001600160a01b0381168114611a4557600080fd5b919050565b600060208284031215611a5b578081fd5b610f6c82611a2e565b60008060408385031215611a76578081fd5b611a7f83611a2e565b9150611a8d60208401611a2e565b90509250929050565b600080600060608486031215611aaa578081fd5b611ab384611a2e565b9250611ac160208501611a2e565b9150604084013590509250925092565b60008060408385031215611ae3578182fd5b611aec83611a2e565b946020939093013593505050565b600060208284031215611b0b578081fd5b5035919050565b60008060408385031215611b24578182fd5b82359150611a8d60208401611a2e565b600060208284031215611b45578081fd5b81356001600160e01b031981168114610f6c578182fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611b94816017850160208801611d95565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611bc5816028840160208801611d95565b01602801949350505050565b6020815260008251806020840152611bf0816040850160208701611d95565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611c4c57611c4c611e13565b500190565b600082611c6c57634e487b7160e01b81526012600452602481fd5b500490565b600181815b80851115611cac578160001904821115611c9257611c92611e13565b80851615611c9f57918102915b93841c9390800290611c76565b509250929050565b6000610f6c60ff841683600082611ccd575060016107b4565b81611cda575060006107b4565b8160018114611cf05760028114611cfa57611d16565b60019150506107b4565b60ff841115611d0b57611d0b611e13565b50506001821b6107b4565b5060208310610133831016604e8410600b8410161715611d39575081810a6107b4565b611d438383611c71565b8060001904821115611d5757611d57611e13565b029392505050565b6000816000190483118215151615611d7957611d79611e13565b500290565b600082821015611d9057611d90611e13565b500390565b60005b83811015611db0578181015183820152602001611d98565b838111156112765750506000910152565b600081611dd057611dd0611e13565b506000190190565b600181811c90821680611dec57607f821691505b60208210811415611e0d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220383e7194e6b567a08eae62b181d386d788e36bdf2978d7ba06cae3f702338d9964736f6c63430008040033

Deployed Bytecode Sourcemap

51200:3794:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44993:204;;;;;;;;;;-1:-1:-1;44993:204:0;;;;;:::i;:::-;;:::i;:::-;;;3624:14:1;;3617:22;3599:41;;3587:2;3572:18;44993:204:0;;;;;;;;7245:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9596:201::-;;;;;;;;;;-1:-1:-1;9596:201:0;;;;;:::i;:::-;;:::i;51928:65::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8365:108;;;;;;;;;;-1:-1:-1;8453:12:0;;8365:108;;;3797:25:1;;;3785:2;3770:18;8365:108:0;3752:76:1;53575:181:0;;;;;;;;;;-1:-1:-1;53575:181:0;;;;;:::i;:::-;;:::i;:::-;;10377:295;;;;;;;;;;-1:-1:-1;10377:295:0;;;;;:::i;:::-;;:::i;46829:131::-;;;;;;;;;;-1:-1:-1;46829:131:0;;;;;:::i;:::-;46903:7;46930:12;;;:6;:12;;;;;:22;;;;46829:131;47222:147;;;;;;;;;;-1:-1:-1;47222:147:0;;;;;:::i;:::-;;:::i;8207:93::-;;;;;;;;;;-1:-1:-1;8207:93:0;;8290:2;12162:36:1;;12150:2;12135:18;8207:93:0;12117:87:1;51461:29:0;;;;;;;;;;-1:-1:-1;51461:29:0;;;;;;;;48270:218;;;;;;;;;;-1:-1:-1;48270:218:0;;;;;:::i;:::-;;:::i;11081:238::-;;;;;;;;;;-1:-1:-1;11081:238:0;;;;;:::i;:::-;;:::i;54515:199::-;;;;;;;;;;;;;:::i;53234:67::-;;;;;;;;;;;;;:::i;33540:91::-;;;;;;;;;;-1:-1:-1;33540:91:0;;;;;:::i;:::-;;:::i;38277:86::-;;;;;;;;;;-1:-1:-1;38348:7:0;;;;38277:86;;54320:141;;;;;;;;;;-1:-1:-1;54320:141:0;;;;;:::i;:::-;;:::i;54129:94::-;;;;;;;;;;-1:-1:-1;54129:94:0;;;;;:::i;:::-;;:::i;8536:127::-;;;;;;;;;;-1:-1:-1;8536:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8637:18:0;8610:7;8637:18;;;;;;;;;;;;8536:127;41333:103;;;;;;;;;;;;;:::i;52315:140::-;;;;;;;;;;;;;:::i;33950:164::-;;;;;;;;;;-1:-1:-1;33950:164:0;;;;;:::i;:::-;;:::i;53129:63::-;;;;;;;;;;;;;:::i;53343:88::-;;;;;;;;;;;;;:::i;40682:87::-;;;;;;;;;;-1:-1:-1;40755:6:0;;;;;-1:-1:-1;;;;;40755:6:0;40682:87;;-1:-1:-1;;;;;3415:32:1;;;3397:51;;3385:2;3370:18;40682:87:0;3352:102:1;45289:147:0;;;;;;;;;;-1:-1:-1;45289:147:0;;;;;:::i;:::-;;:::i;7464:104::-;;;;;;;;;;;;;:::i;52541:548::-;;;;;;:::i;:::-;;:::i;44394:49::-;;;;;;;;;;-1:-1:-1;44394:49:0;44439:4;44394:49;;11822:436;;;;;;;;;;-1:-1:-1;11822:436:0;;;;;:::i;:::-;;:::i;8869:193::-;;;;;;;;;;-1:-1:-1;8869:193:0;;;;;:::i;:::-;;:::i;53893:156::-;;;;;;;;;;-1:-1:-1;53893:156:0;;;;;:::i;:::-;;:::i;51584:62::-;;;;;;;;;;;;51622:24;51584:62;;47614:149;;;;;;;;;;-1:-1:-1;47614:149:0;;;;;:::i;:::-;;:::i;51363:53::-;;;;;;;;;;;;;;;;51799:91;;;;;;;;;;;;51856:34;51799:91;;9125:151;;;;;;;;;;-1:-1:-1;9125:151:0;;;;;:::i;:::-;;:::i;51689:62::-;;;;;;;;;;;;51727:24;51689:62;;41591:201;;;;;;;;;;-1:-1:-1;41591:201:0;;;;;:::i;:::-;;:::i;44993:204::-;45078:4;-1:-1:-1;;;;;;45102:47:0;;-1:-1:-1;;;45102:47:0;;:87;;-1:-1:-1;;;;;;;;;;20177:40:0;;;45153:36;45095:94;44993:204;-1:-1:-1;;44993:204:0:o;7245:100::-;7299:13;7332:5;7325:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7245:100;:::o;9596:201::-;9679:4;3875:10;9735:32;3875:10;9751:7;9760:6;9735:8;:32::i;:::-;-1:-1:-1;9785:4:0;;9596:201;-1:-1:-1;;;9596:201:0:o;53575:181::-;51856:34;44885:16;44896:4;44885:10;:16::i;:::-;53708:40:::1;53726:4;53733:6;53741;53708:9;:40::i;:::-;53575:181:::0;;;:::o;10377:295::-;10508:4;3875:10;10566:38;10582:4;3875:10;10597:6;10566:15;:38::i;:::-;10615:27;10625:4;10631:2;10635:6;10615:9;:27::i;:::-;-1:-1:-1;10660:4:0;;10377:295;-1:-1:-1;;;;10377:295:0:o;47222:147::-;46903:7;46930:12;;;:6;:12;;;;;:22;;;44885:16;44896:4;44885:10;:16::i;:::-;47336:25:::1;47347:4;47353:7;47336:10;:25::i;48270:218::-:0;-1:-1:-1;;;;;48366:23:0;;3875:10;48366:23;48358:83;;;;-1:-1:-1;;;48358:83:0;;11264:2:1;48358:83:0;;;11246:21:1;11303:2;11283:18;;;11276:30;11342:34;11322:18;;;11315:62;-1:-1:-1;;;11393:18:1;;;11386:45;11448:19;;48358:83:0;;;;;;;;;48454:26;48466:4;48472:7;48454:11;:26::i;:::-;48270:218;;:::o;11081:238::-;11169:4;3875:10;11225:64;3875:10;11241:7;11278:10;11250:25;3875:10;11241:7;11250:9;:25::i;:::-;:38;;;;:::i;:::-;11225:8;:64::i;54515:199::-;36044:1;36642:7;;:19;;36634:63;;;;-1:-1:-1;;;36634:63:0;;10498:2:1;36634:63:0;;;10480:21:1;10537:2;10517:18;;;10510:30;10576:33;10556:18;;;10549:61;10627:18;;36634:63:0;10470:181:1;36634:63:0;36044:1;36775:7;:18;40755:6;;-1:-1:-1;;;;;40755:6:0;;;;;3875:10;40902:23:::1;40894:68;;;;-1:-1:-1::0;;;40894:68:0::1;;;;;;;:::i;:::-;54597:82:::2;::::0;54579:12:::2;::::0;54605:10:::2;::::0;54643:21:::2;::::0;54579:12;54597:82;54579:12;54597:82;54643:21;54605:10;54597:82:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54578:101;;;54698:7;54690:16;;;::::0;::::2;;-1:-1:-1::0;36000:1:0;36954:7;:22;54515:199::o;53234:67::-;40755:6;;-1:-1:-1;;;;;40755:6:0;;;;;3875:10;40902:23;40894:68;;;;-1:-1:-1;;;40894:68:0;;;;;;;:::i;:::-;53283:10:::1;:8;:10::i;:::-;53234:67::o:0;33540:91::-;33596:27;3875:10;33616:6;33596:5;:27::i;:::-;33540:91;:::o;54320:141::-;40755:6;;-1:-1:-1;;;;;40755:6:0;;;;;3875:10;40902:23;40894:68;;;;-1:-1:-1;;;40894:68:0;;;;;;;:::i;:::-;54417:36:::1;54430:6:::0;54438:14:::1;8290:2:::0;54438::::1;:14;:::i;:::-;54417:12;:36::i;:::-;54392:22;:61:::0;-1:-1:-1;54320:141:0:o;54129:94::-;40755:6;;-1:-1:-1;;;;;40755:6:0;;;;;3875:10;40902:23;40894:68;;;;-1:-1:-1;;;40894:68:0;;;;;;;:::i;:::-;54197:9:::1;:18:::0;54129:94::o;41333:103::-;40755:6;;-1:-1:-1;;;;;40755:6:0;;;;;3875:10;40902:23;40894:68;;;;-1:-1:-1;;;40894:68:0;;;;;;;:::i;:::-;41398:30:::1;41425:1;41398:18;:30::i;52315:140::-:0;52368:7;52395:52;52408:22;;52436:10;8290:2;;8207:93;52436:10;52432:14;;:2;:14;:::i;:::-;52395:12;:52::i;:::-;52388:59;;52315:140;:::o;33950:164::-;34027:46;34043:7;3875:10;34066:6;34027:15;:46::i;:::-;34084:22;34090:7;34099:6;34084:5;:22::i;53129:63::-;40755:6;;-1:-1:-1;;;;;40755:6:0;;;;;3875:10;40902:23;40894:68;;;;-1:-1:-1;;;40894:68:0;;;;;;;:::i;:::-;53176:8:::1;:6;:8::i;53343:88::-:0;40755:6;;-1:-1:-1;;;;;40755:6:0;;;;;3875:10;40902:23;40894:68;;;;-1:-1:-1;;;40894:68:0;;;;;;;:::i;:::-;53413:10:::1;::::0;;-1:-1:-1;;53399:24:0;::::1;53413:10;::::0;;::::1;53412:11;53399:24;::::0;;53343:88::o;45289:147::-;45375:4;45399:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;45399:29:0;;;;;;;;;;;;;;;45289:147::o;7464:104::-;7520:13;7553:7;7546:14;;;;;:::i;52541:548::-;52658:9;;52619:35;52632:13;8453:12;;;8365:108;52632:13;52647:6;52619:12;:35::i;:::-;:48;;52597:125;;;;-1:-1:-1;;;52597:125:0;;9788:2:1;52597:125:0;;;9770:21:1;9827:2;9807:18;;;9800:30;9866:29;9846:18;;;9839:57;9913:18;;52597:125:0;9760:177:1;52597:125:0;52737:32;51622:24;52758:10;52737:7;:32::i;:::-;52733:111;;;52786:25;52792:10;52804:6;52786:5;:25::i;52733:111::-;52862:10;;;;52854:48;;;;-1:-1:-1;;;52854:48:0;;7860:2:1;52854:48:0;;;7842:21:1;7899:2;7879:18;;;7872:30;7938:27;7918:18;;;7911:55;7983:18;;52854:48:0;7832:175:1;52854:48:0;52948:44;52961:22;;52985:6;52948:12;:44::i;:::-;52935:9;:57;;52913:132;;;;-1:-1:-1;;;52913:132:0;;10144:2:1;52913:132:0;;;10126:21:1;10183:2;10163:18;;;10156:30;10222:27;10202:18;;;10195:55;10267:18;;52913:132:0;10116:175:1;52913:132:0;53056:25;53062:10;53074:6;53056:5;:25::i;11822:436::-;11915:4;3875:10;11915:4;11998:25;3875:10;12015:7;11998:9;:25::i;:::-;11971:52;;12062:15;12042:16;:35;;12034:85;;;;-1:-1:-1;;;12034:85:0;;10858:2:1;12034:85:0;;;10840:21:1;10897:2;10877:18;;;10870:30;10936:34;10916:18;;;10909:62;-1:-1:-1;;;10987:18:1;;;10980:35;11032:19;;12034:85:0;10830:227:1;12034:85:0;12155:60;12164:5;12171:7;12199:15;12180:16;:34;12155:8;:60::i;8869:193::-;8948:4;3875:10;9004:28;3875:10;9021:2;9025:6;9004:9;:28::i;53893:156::-;51856:34;44885:16;44896:4;44885:10;:16::i;:::-;54020:21:::1;54026:6;54034;54020:5;:21::i;47614:149::-:0;46903:7;46930:12;;;:6;:12;;;;;:22;;;44885:16;44896:4;44885:10;:16::i;:::-;47729:26:::1;47741:4;47747:7;47729:11;:26::i;9125:151::-:0;-1:-1:-1;;;;;9241:18:0;;;9214:7;9241:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9125:151::o;41591:201::-;40755:6;;-1:-1:-1;;;;;40755:6:0;;;;;3875:10;40902:23;40894:68;;;;-1:-1:-1;;;40894:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41680:22:0;::::1;41672:73;;;::::0;-1:-1:-1;;;41672:73:0;;5940:2:1;41672:73:0::1;::::0;::::1;5922:21:1::0;5979:2;5959:18;;;5952:30;6018:34;5998:18;;;5991:62;-1:-1:-1;;;6069:18:1;;;6062:36;6115:19;;41672:73:0::1;5912:228:1::0;41672:73:0::1;41756:28;41775:8;41756:18;:28::i;29762:98::-:0;29820:7;29847:5;29851:1;29847;:5;:::i;:::-;29840:12;29762:98;-1:-1:-1;;;29762:98:0:o;15456:380::-;-1:-1:-1;;;;;15592:19:0;;15584:68;;;;-1:-1:-1;;;15584:68:0;;9383:2:1;15584:68:0;;;9365:21:1;9422:2;9402:18;;;9395:30;9461:34;9441:18;;;9434:62;-1:-1:-1;;;9512:18:1;;;9505:34;9556:19;;15584:68:0;9355:226:1;15584:68:0;-1:-1:-1;;;;;15671:21:0;;15663:68;;;;-1:-1:-1;;;15663:68:0;;6347:2:1;15663:68:0;;;6329:21:1;6386:2;6366:18;;;6359:30;6425:34;6405:18;;;6398:62;-1:-1:-1;;;6476:18:1;;;6469:32;6518:19;;15663:68:0;6319:224:1;15663:68:0;-1:-1:-1;;;;;15744:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15796:32;;3797:25:1;;;15796:32:0;;3770:18:1;15796:32:0;;;;;;;15456:380;;;:::o;45740:105::-;45807:30;45818:4;3875:10;45807;:30::i;12737:671::-;-1:-1:-1;;;;;12868:18:0;;12860:68;;;;-1:-1:-1;;;12860:68:0;;8977:2:1;12860:68:0;;;8959:21:1;9016:2;8996:18;;;8989:30;9055:34;9035:18;;;9028:62;-1:-1:-1;;;9106:18:1;;;9099:35;9151:19;;12860:68:0;8949:227:1;12860:68:0;-1:-1:-1;;;;;12947:16:0;;12939:64;;;;-1:-1:-1;;;12939:64:0;;4784:2:1;12939:64:0;;;4766:21:1;4823:2;4803:18;;;4796:30;4862:34;4842:18;;;4835:62;-1:-1:-1;;;4913:18:1;;;4906:33;4956:19;;12939:64:0;4756:225:1;12939:64:0;13016:38;13037:4;13043:2;13047:6;13016:20;:38::i;:::-;-1:-1:-1;;;;;13089:15:0;;13067:19;13089:15;;;;;;;;;;;13123:21;;;;13115:72;;;;-1:-1:-1;;;13115:72:0;;7108:2:1;13115:72:0;;;7090:21:1;7147:2;7127:18;;;7120:30;7186:34;7166:18;;;7159:62;-1:-1:-1;;;7237:18:1;;;7230:36;7283:19;;13115:72:0;7080:228:1;13115:72:0;-1:-1:-1;;;;;13223:15:0;;;:9;:15;;;;;;;;;;;13241:20;;;13223:38;;13283:13;;;;;;;;:23;;13255:6;;13223:9;13283:23;;13255:6;;13283:23;:::i;:::-;;;;;;;;13339:2;-1:-1:-1;;;;;13324:26:0;13333:4;-1:-1:-1;;;;;13324:26:0;;13343:6;13324:26;;;;3797:25:1;;3785:2;3770:18;;3752:76;13324:26:0;;;;;;;;13363:37;12737:671;;;;:::o;16127:453::-;16262:24;16289:25;16299:5;16306:7;16289:9;:25::i;:::-;16262:52;;-1:-1:-1;;16329:16:0;:37;16325:248;;16411:6;16391:16;:26;;16383:68;;;;-1:-1:-1;;;16383:68:0;;6750:2:1;16383:68:0;;;6732:21:1;6789:2;6769:18;;;6762:30;6828:31;6808:18;;;6801:59;6877:18;;16383:68:0;6722:179:1;16383:68:0;16495:51;16504:5;16511:7;16539:6;16520:16;:25;16495:8;:51::i;49771:238::-;49855:22;49863:4;49869:7;49855;:22::i;:::-;49850:152;;49894:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;49894:29:0;;;;;;;;;:36;;-1:-1:-1;;49894:36:0;49926:4;49894:36;;;49977:12;3875:10;;3795:98;49977:12;-1:-1:-1;;;;;49950:40:0;49968:7;-1:-1:-1;;;;;49950:40:0;49962:4;49950:40;;;;;;;;;;49771:238;;:::o;50141:239::-;50225:22;50233:4;50239:7;50225;:22::i;:::-;50221:152;;;50296:5;50264:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;50264:29:0;;;;;;;;;;:37;;-1:-1:-1;;50264:37:0;;;50321:40;3875:10;;50264:12;;50321:40;;50296:5;50321:40;50141:239;;:::o;39336:120::-;38348:7;;;;38872:41;;;;-1:-1:-1;;;38872:41:0;;5188:2:1;38872:41:0;;;5170:21:1;5227:2;5207:18;;;5200:30;-1:-1:-1;;;5246:18:1;;;5239:50;5306:18;;38872:41:0;5160:170:1;38872:41:0;39395:7:::1;:15:::0;;-1:-1:-1;;39395:15:0::1;::::0;;39426:22:::1;3875:10:::0;39435:12:::1;39426:22;::::0;-1:-1:-1;;;;;3415:32:1;;;3397:51;;3385:2;3370:18;39426:22:0::1;;;;;;;39336:120::o:0;14427:591::-;-1:-1:-1;;;;;14511:21:0;;14503:67;;;;-1:-1:-1;;;14503:67:0;;8575:2:1;14503:67:0;;;8557:21:1;8614:2;8594:18;;;8587:30;8653:34;8633:18;;;8626:62;-1:-1:-1;;;8704:18:1;;;8697:31;8745:19;;14503:67:0;8547:223:1;14503:67:0;14583:49;14604:7;14621:1;14625:6;14583:20;:49::i;:::-;-1:-1:-1;;;;;14670:18:0;;14645:22;14670:18;;;;;;;;;;;14707:24;;;;14699:71;;;;-1:-1:-1;;;14699:71:0;;5537:2:1;14699:71:0;;;5519:21:1;5576:2;5556:18;;;5549:30;5615:34;5595:18;;;5588:62;-1:-1:-1;;;5666:18:1;;;5659:32;5708:19;;14699:71:0;5509:224:1;14699:71:0;-1:-1:-1;;;;;14806:18:0;;:9;:18;;;;;;;;;;14827:23;;;14806:44;;14872:12;:22;;14844:6;;14806:9;14872:22;;14844:6;;14872:22;:::i;:::-;;;;-1:-1:-1;;14912:37:0;;3797:25:1;;;14938:1:0;;-1:-1:-1;;;;;14912:37:0;;;;;3785:2:1;3770:18;14912:37:0;;;;;;;53575:181;;;:::o;41952:191::-;42045:6;;;-1:-1:-1;;;;;42062:17:0;;;42045:6;42062:17;;;-1:-1:-1;;;;;;42062:17:0;;;;;;42095:40;;42045:6;;;;;;;;42095:40;;42026:16;;42095:40;41952:191;;:::o;29363:98::-;29421:7;29448:5;29452:1;29448;:5;:::i;39077:118::-;38348:7;;;;38602:9;38594:38;;;;-1:-1:-1;;;38594:38:0;;7515:2:1;38594:38:0;;;7497:21:1;7554:2;7534:18;;;7527:30;-1:-1:-1;;;7573:18:1;;;7566:46;7629:18;;38594:38:0;7487:166:1;38594:38:0;39137:7:::1;:14:::0;;-1:-1:-1;;39137:14:0::1;39147:4;39137:14;::::0;;39167:20:::1;39174:12;3875:10:::0;;3795:98;28625;28683:7;28710:5;28714:1;28710;:5;:::i;13695:399::-;-1:-1:-1;;;;;13779:21:0;;13771:65;;;;-1:-1:-1;;;13771:65:0;;11680:2:1;13771:65:0;;;11662:21:1;11719:2;11699:18;;;11692:30;11758:33;11738:18;;;11731:61;11809:18;;13771:65:0;11652:181:1;13771:65:0;13849:49;13878:1;13882:7;13891:6;13849:20;:49::i;:::-;13927:6;13911:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13944:18:0;;:9;:18;;;;;;;;;;:28;;13966:6;;13944:9;:28;;13966:6;;13944:28;:::i;:::-;;;;-1:-1:-1;;13988:37:0;;3797:25:1;;;-1:-1:-1;;;;;13988:37:0;;;14005:1;;13988:37;;3785:2:1;3770:18;13988:37:0;;;;;;;48270:218;;:::o;46135:505::-;46224:22;46232:4;46238:7;46224;:22::i;:::-;46219:414;;46412:41;46440:7;-1:-1:-1;;;;;46412:41:0;46450:2;46412:19;:41::i;:::-;46526:38;46554:4;46561:2;46526:19;:38::i;:::-;46317:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;46317:270:0;;;;;;;;;;-1:-1:-1;;;46263:358:0;;;;;;;:::i;54790:201::-;38348:7;;;;38602:9;38594:38;;;;-1:-1:-1;;;38594:38:0;;7515:2:1;38594:38:0;;;7497:21:1;7554:2;7534:18;;;7527:30;-1:-1:-1;;;7573:18:1;;;7566:46;7629:18;;38594:38:0;7487:166:1;22020:451:0;22095:13;22121:19;22153:10;22157:6;22153:1;:10;:::i;:::-;:14;;22166:1;22153:14;:::i;:::-;22143:25;;;;;;-1:-1:-1;;;22143:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22143:25:0;;22121:47;;-1:-1:-1;;;22179:6:0;22186:1;22179:9;;;;;;-1:-1:-1;;;22179:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;22179:15:0;;;;;;;;;-1:-1:-1;;;22205:6:0;22212:1;22205:9;;;;;;-1:-1:-1;;;22205:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;22205:15:0;;;;;;;;-1:-1:-1;22236:9:0;22248:10;22252:6;22248:1;:10;:::i;:::-;:14;;22261:1;22248:14;:::i;:::-;22236:26;;22231:135;22268:1;22264;:5;22231:135;;;-1:-1:-1;;;22316:5:0;22324:3;22316:11;22303:25;;;;;-1:-1:-1;;;22303:25:0;;;;;;;;;;;;22291:6;22298:1;22291:9;;;;;;-1:-1:-1;;;22291:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;22291:37:0;;;;;;;;-1:-1:-1;22353:1:0;22343:11;;;;;22271:3;;;:::i;:::-;;;22231:135;;;-1:-1:-1;22384:10:0;;22376:55;;;;-1:-1:-1;;;22376:55:0;;4423:2:1;22376:55:0;;;4405:21:1;;;4442:18;;;4435:30;4501:34;4481:18;;;4474:62;4553:18;;22376:55:0;4395:182:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;1339:6;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1475:264::-;1543:6;1551;1604:2;1592:9;1583:7;1579:23;1575:32;1572:2;;;1625:6;1617;1610:22;1572:2;1666:9;1653:23;1643:33;;1695:38;1729:2;1718:9;1714:18;1695:38;:::i;1744:306::-;1802:6;1855:2;1843:9;1834:7;1830:23;1826:32;1823:2;;;1876:6;1868;1861:22;1823:2;1907:23;;-1:-1:-1;;;;;;1959:32:1;;1949:43;;1939:2;;2011:6;2003;1996:22;2460:786;2871:25;2866:3;2859:38;2841:3;2926:6;2920:13;2942:62;2997:6;2992:2;2987:3;2983:12;2976:4;2968:6;2964:17;2942:62;:::i;:::-;-1:-1:-1;;;3063:2:1;3023:16;;;3055:11;;;3048:40;3113:13;;3135:63;3113:13;3184:2;3176:11;;3169:4;3157:17;;3135:63;:::i;:::-;3218:17;3237:2;3214:26;;2849:397;-1:-1:-1;;;;2849:397:1:o;3833:383::-;3982:2;3971:9;3964:21;3945:4;4014:6;4008:13;4057:6;4052:2;4041:9;4037:18;4030:34;4073:66;4132:6;4127:2;4116:9;4112:18;4107:2;4099:6;4095:15;4073:66;:::i;:::-;4200:2;4179:15;-1:-1:-1;;4175:29:1;4160:45;;;;4207:2;4156:54;;3954:262;-1:-1:-1;;3954:262:1:o;8012:356::-;8214:2;8196:21;;;8233:18;;;8226:30;8292:34;8287:2;8272:18;;8265:62;8359:2;8344:18;;8186:182::o;12209:128::-;12249:3;12280:1;12276:6;12273:1;12270:13;12267:2;;;12286:18;;:::i;:::-;-1:-1:-1;12322:9:1;;12257:80::o;12342:217::-;12382:1;12408;12398:2;;-1:-1:-1;;;12433:31:1;;12487:4;12484:1;12477:15;12515:4;12440:1;12505:15;12398:2;-1:-1:-1;12544:9:1;;12388:171::o;12564:422::-;12653:1;12696:5;12653:1;12710:270;12731:7;12721:8;12718:21;12710:270;;;12790:4;12786:1;12782:6;12778:17;12772:4;12769:27;12766:2;;;12799:18;;:::i;:::-;12849:7;12839:8;12835:22;12832:2;;;12869:16;;;;12832:2;12948:22;;;;12908:15;;;;12710:270;;;12714:3;12628:358;;;;;:::o;12991:140::-;13049:5;13078:47;13119:4;13109:8;13105:19;13099:4;13185:5;13215:8;13205:2;;-1:-1:-1;13256:1:1;13270:5;;13205:2;13304:4;13294:2;;-1:-1:-1;13341:1:1;13355:5;;13294:2;13386:4;13404:1;13399:59;;;;13472:1;13467:130;;;;13379:218;;13399:59;13429:1;13420:10;;13443:5;;;13467:130;13504:3;13494:8;13491:17;13488:2;;;13511:18;;:::i;:::-;-1:-1:-1;;13567:1:1;13553:16;;13582:5;;13379:218;;13681:2;13671:8;13668:16;13662:3;13656:4;13653:13;13649:36;13643:2;13633:8;13630:16;13625:2;13619:4;13616:12;13612:35;13609:77;13606:2;;;-1:-1:-1;13718:19:1;;;13750:5;;13606:2;13797:34;13822:8;13816:4;13797:34;:::i;:::-;13867:6;13863:1;13859:6;13855:19;13846:7;13843:32;13840:2;;;13878:18;;:::i;:::-;13916:20;;13195:747;-1:-1:-1;;;13195:747:1:o;13947:168::-;13987:7;14053:1;14049;14045:6;14041:14;14038:1;14035:21;14030:1;14023:9;14016:17;14012:45;14009:2;;;14060:18;;:::i;:::-;-1:-1:-1;14100:9:1;;13999:116::o;14120:125::-;14160:4;14188:1;14185;14182:8;14179:2;;;14193:18;;:::i;:::-;-1:-1:-1;14230:9:1;;14169:76::o;14250:258::-;14322:1;14332:113;14346:6;14343:1;14340:13;14332:113;;;14422:11;;;14416:18;14403:11;;;14396:39;14368:2;14361:10;14332:113;;;14463:6;14460:1;14457:13;14454:2;;;-1:-1:-1;;14498:1:1;14480:16;;14473:27;14303:205::o;14513:136::-;14552:3;14580:5;14570:2;;14589:18;;:::i;:::-;-1:-1:-1;;;14625:18:1;;14560:89::o;14654:380::-;14733:1;14729:12;;;;14776;;;14797:2;;14851:4;14843:6;14839:17;14829:27;;14797:2;14904;14896:6;14893:14;14873:18;14870:38;14867:2;;;14950:10;14945:3;14941:20;14938:1;14931:31;14985:4;14982:1;14975:15;15013:4;15010:1;15003:15;14867:2;;14709:325;;;:::o;15039:127::-;15100:10;15095:3;15091:20;15088:1;15081:31;15131:4;15128:1;15121:15;15155:4;15152:1;15145:15

Swarm Source

ipfs://383e7194e6b567a08eae62b181d386d788e36bdf2978d7ba06cae3f702338d99
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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