Polygon Sponsored slots available. Book your slot here!
ERC-20
Data
Overview
Max Total Supply
100,000,000,000 ASK
Holders
84,044 ( 0.002%)
Total Transfers
-
Market
Price
$0.0002 @ 0.000257 POL (-6.48%)
Onchain Market Cap
$15,743,000.00
Circulating Supply Market Cap
$3,368,825.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
MyToken
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-05-06 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/access/IAccessControl.sol // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: contracts/JennyERC20.sol pragma solidity ^0.8.2; contract MyToken is ERC20, ERC20Burnable, AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); uint256 private constant _maxSupply = 1e29; constructor() ERC20("Permission Token", "ASK") { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); } function getMaxSupply() public pure returns (uint256) { return _maxSupply; } function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) { require(totalSupply() + amount <= _maxSupply, "Max Supply Exceeded"); _mint(to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"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"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601081526020017f5065726d697373696f6e20546f6b656e000000000000000000000000000000008152506040518060400160405280600381526020017f41534b000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000232565b508060049080519060200190620000af92919062000232565b505050620000c76000801b33620000cd60201b60201c565b62000347565b620000df8282620001bf60201b60201c565b620001bb5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001606200022a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b8280546200024090620002e2565b90600052602060002090601f016020900481019282620002645760008555620002b0565b82601f106200027f57805160ff1916838001178555620002b0565b82800160010185558215620002b0579182015b82811115620002af57825182559160200191906001019062000292565b5b509050620002bf9190620002c3565b5090565b5b80821115620002de576000816000905550600101620002c4565b5090565b60006002820490506001821680620002fb57607f821691505b6020821081141562000312576200031162000318565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61274f80620003576000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806342966c68116100c3578063a217fddf1161007c578063a217fddf146103c4578063a457c2d7146103e2578063a9059cbb14610412578063d539139314610442578063d547741f14610460578063dd62ed3e1461047c5761014d565b806342966c68146102f05780634c0f38c21461030c57806370a082311461032a57806379cc67901461035a57806391d148541461037657806395d89b41146103a65761014d565b8063248a9ca311610115578063248a9ca31461021e5780632f2ff15d1461024e578063313ce5671461026a57806336568abe1461028857806339509351146102a457806340c10f19146102d45761014d565b806301ffc9a71461015257806306fdde0314610182578063095ea7b3146101a057806318160ddd146101d057806323b872dd146101ee575b600080fd5b61016c60048036038101906101679190611a94565b6104ac565b6040516101799190611ddb565b60405180910390f35b61018a610526565b6040516101979190611e11565b60405180910390f35b6101ba60048036038101906101b591906119e7565b6105b8565b6040516101c79190611ddb565b60405180910390f35b6101d86105db565b6040516101e59190611fd3565b60405180910390f35b61020860048036038101906102039190611994565b6105e5565b6040516102159190611ddb565b60405180910390f35b61023860048036038101906102339190611a27565b610614565b6040516102459190611df6565b60405180910390f35b61026860048036038101906102639190611a54565b610634565b005b61027261065d565b60405161027f9190611fee565b60405180910390f35b6102a2600480360381019061029d9190611a54565b610666565b005b6102be60048036038101906102b991906119e7565b6106e9565b6040516102cb9190611ddb565b60405180910390f35b6102ee60048036038101906102e991906119e7565b610793565b005b61030a60048036038101906103059190611ac1565b610836565b005b61031461084a565b6040516103219190611fd3565b60405180910390f35b610344600480360381019061033f9190611927565b61085f565b6040516103519190611fd3565b60405180910390f35b610374600480360381019061036f91906119e7565b6108a7565b005b610390600480360381019061038b9190611a54565b6108c7565b60405161039d9190611ddb565b60405180910390f35b6103ae610932565b6040516103bb9190611e11565b60405180910390f35b6103cc6109c4565b6040516103d99190611df6565b60405180910390f35b6103fc60048036038101906103f791906119e7565b6109cb565b6040516104099190611ddb565b60405180910390f35b61042c600480360381019061042791906119e7565b610ab5565b6040516104399190611ddb565b60405180910390f35b61044a610ad8565b6040516104579190611df6565b60405180910390f35b61047a60048036038101906104759190611a54565b610afc565b005b61049660048036038101906104919190611954565b610b25565b6040516104a39190611fd3565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051f575061051e82610bac565b5b9050919050565b606060038054610535906121fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610561906121fc565b80156105ae5780601f10610583576101008083540402835291602001916105ae565b820191906000526020600020905b81548152906001019060200180831161059157829003601f168201915b5050505050905090565b6000806105c3610c16565b90506105d0818585610c1e565b600191505092915050565b6000600254905090565b6000806105f0610c16565b90506105fd858285610de9565b610608858585610e75565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b61063d82610614565b61064e81610649610c16565b6110f6565b6106588383611193565b505050565b60006012905090565b61066e610c16565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d290611f93565b60405180910390fd5b6106e58282611274565b5050565b6000806106f4610c16565b9050610788818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107839190612030565b610c1e565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66107c5816107c0610c16565b6110f6565b6c01431e0fae6d7217caa0000000826107dc6105db565b6107e69190612030565b1115610827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081e90611e73565b60405180910390fd5b6108318383611356565b505050565b610847610841610c16565b826114b6565b50565b60006c01431e0fae6d7217caa0000000905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108b9826108b3610c16565b83610de9565b6108c382826114b6565b5050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610941906121fc565b80601f016020809104026020016040519081016040528092919081815260200182805461096d906121fc565b80156109ba5780601f1061098f576101008083540402835291602001916109ba565b820191906000526020600020905b81548152906001019060200180831161099d57829003601f168201915b5050505050905090565b6000801b81565b6000806109d6610c16565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9390611f73565b60405180910390fd5b610aa98286868403610c1e565b60019250505092915050565b600080610ac0610c16565b9050610acd818585610e75565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610b0582610614565b610b1681610b11610c16565b6110f6565b610b208383611274565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590611f53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf590611eb3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ddc9190611fd3565b60405180910390a3505050565b6000610df58484610b25565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e6f5781811015610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890611ed3565b60405180910390fd5b610e6e8484848403610c1e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90611f33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90611e53565b60405180910390fd5b610f6083838361168d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90611ef3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110799190612030565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110dd9190611fd3565b60405180910390a36110f0848484611692565b50505050565b61110082826108c7565b61118f576111258173ffffffffffffffffffffffffffffffffffffffff166014611697565b6111338360001c6020611697565b604051602001611144929190611da1565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111869190611e11565b60405180910390fd5b5050565b61119d82826108c7565b6112705760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611215610c16565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61127e82826108c7565b156113525760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506112f7610c16565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd90611fb3565b60405180910390fd5b6113d26000838361168d565b80600260008282546113e49190612030565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114399190612030565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161149e9190611fd3565b60405180910390a36114b260008383611692565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d90611f13565b60405180910390fd5b6115328260008361168d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90611e93565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461160f91906120e0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116749190611fd3565b60405180910390a361168883600084611692565b505050565b505050565b505050565b6060600060028360026116aa9190612086565b6116b49190612030565b67ffffffffffffffff8111156116cd576116cc6122bb565b5b6040519080825280601f01601f1916602001820160405280156116ff5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106117375761173661228c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061179b5761179a61228c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026117db9190612086565b6117e59190612030565b90505b6001811115611885577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106118275761182661228c565b5b1a60f81b82828151811061183e5761183d61228c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061187e906121d2565b90506117e8565b50600084146118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090611e33565b60405180910390fd5b8091505092915050565b6000813590506118e2816126bd565b92915050565b6000813590506118f7816126d4565b92915050565b60008135905061190c816126eb565b92915050565b60008135905061192181612702565b92915050565b60006020828403121561193d5761193c6122ea565b5b600061194b848285016118d3565b91505092915050565b6000806040838503121561196b5761196a6122ea565b5b6000611979858286016118d3565b925050602061198a858286016118d3565b9150509250929050565b6000806000606084860312156119ad576119ac6122ea565b5b60006119bb868287016118d3565b93505060206119cc868287016118d3565b92505060406119dd86828701611912565b9150509250925092565b600080604083850312156119fe576119fd6122ea565b5b6000611a0c858286016118d3565b9250506020611a1d85828601611912565b9150509250929050565b600060208284031215611a3d57611a3c6122ea565b5b6000611a4b848285016118e8565b91505092915050565b60008060408385031215611a6b57611a6a6122ea565b5b6000611a79858286016118e8565b9250506020611a8a858286016118d3565b9150509250929050565b600060208284031215611aaa57611aa96122ea565b5b6000611ab8848285016118fd565b91505092915050565b600060208284031215611ad757611ad66122ea565b5b6000611ae584828501611912565b91505092915050565b611af781612126565b82525050565b611b0681612132565b82525050565b6000611b1782612009565b611b218185612014565b9350611b3181856020860161219f565b611b3a816122ef565b840191505092915050565b6000611b5082612009565b611b5a8185612025565b9350611b6a81856020860161219f565b80840191505092915050565b6000611b83602083612014565b9150611b8e82612300565b602082019050919050565b6000611ba6602383612014565b9150611bb182612329565b604082019050919050565b6000611bc9601383612014565b9150611bd482612378565b602082019050919050565b6000611bec602283612014565b9150611bf7826123a1565b604082019050919050565b6000611c0f602283612014565b9150611c1a826123f0565b604082019050919050565b6000611c32601d83612014565b9150611c3d8261243f565b602082019050919050565b6000611c55602683612014565b9150611c6082612468565b604082019050919050565b6000611c78602183612014565b9150611c83826124b7565b604082019050919050565b6000611c9b602583612014565b9150611ca682612506565b604082019050919050565b6000611cbe602483612014565b9150611cc982612555565b604082019050919050565b6000611ce1601783612025565b9150611cec826125a4565b601782019050919050565b6000611d04602583612014565b9150611d0f826125cd565b604082019050919050565b6000611d27601183612025565b9150611d328261261c565b601182019050919050565b6000611d4a602f83612014565b9150611d5582612645565b604082019050919050565b6000611d6d601f83612014565b9150611d7882612694565b602082019050919050565b611d8c81612188565b82525050565b611d9b81612192565b82525050565b6000611dac82611cd4565b9150611db88285611b45565b9150611dc382611d1a565b9150611dcf8284611b45565b91508190509392505050565b6000602082019050611df06000830184611aee565b92915050565b6000602082019050611e0b6000830184611afd565b92915050565b60006020820190508181036000830152611e2b8184611b0c565b905092915050565b60006020820190508181036000830152611e4c81611b76565b9050919050565b60006020820190508181036000830152611e6c81611b99565b9050919050565b60006020820190508181036000830152611e8c81611bbc565b9050919050565b60006020820190508181036000830152611eac81611bdf565b9050919050565b60006020820190508181036000830152611ecc81611c02565b9050919050565b60006020820190508181036000830152611eec81611c25565b9050919050565b60006020820190508181036000830152611f0c81611c48565b9050919050565b60006020820190508181036000830152611f2c81611c6b565b9050919050565b60006020820190508181036000830152611f4c81611c8e565b9050919050565b60006020820190508181036000830152611f6c81611cb1565b9050919050565b60006020820190508181036000830152611f8c81611cf7565b9050919050565b60006020820190508181036000830152611fac81611d3d565b9050919050565b60006020820190508181036000830152611fcc81611d60565b9050919050565b6000602082019050611fe86000830184611d83565b92915050565b60006020820190506120036000830184611d92565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061203b82612188565b915061204683612188565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561207b5761207a61222e565b5b828201905092915050565b600061209182612188565b915061209c83612188565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156120d5576120d461222e565b5b828202905092915050565b60006120eb82612188565b91506120f683612188565b9250828210156121095761210861222e565b5b828203905092915050565b600061211f82612168565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156121bd5780820151818401526020810190506121a2565b838111156121cc576000848401525b50505050565b60006121dd82612188565b915060008214156121f1576121f061222e565b5b600182039050919050565b6000600282049050600182168061221457607f821691505b602082108114156122285761222761225d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820537570706c7920457863656564656400000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6126c681612114565b81146126d157600080fd5b50565b6126dd81612132565b81146126e857600080fd5b50565b6126f48161213c565b81146126ff57600080fd5b50565b61270b81612188565b811461271657600080fd5b5056fea2646970667358221220b8bba595d6de642a034a6d6dd3aa2990df021a58a89c2b249bb2b3c3df824fc464736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806342966c68116100c3578063a217fddf1161007c578063a217fddf146103c4578063a457c2d7146103e2578063a9059cbb14610412578063d539139314610442578063d547741f14610460578063dd62ed3e1461047c5761014d565b806342966c68146102f05780634c0f38c21461030c57806370a082311461032a57806379cc67901461035a57806391d148541461037657806395d89b41146103a65761014d565b8063248a9ca311610115578063248a9ca31461021e5780632f2ff15d1461024e578063313ce5671461026a57806336568abe1461028857806339509351146102a457806340c10f19146102d45761014d565b806301ffc9a71461015257806306fdde0314610182578063095ea7b3146101a057806318160ddd146101d057806323b872dd146101ee575b600080fd5b61016c60048036038101906101679190611a94565b6104ac565b6040516101799190611ddb565b60405180910390f35b61018a610526565b6040516101979190611e11565b60405180910390f35b6101ba60048036038101906101b591906119e7565b6105b8565b6040516101c79190611ddb565b60405180910390f35b6101d86105db565b6040516101e59190611fd3565b60405180910390f35b61020860048036038101906102039190611994565b6105e5565b6040516102159190611ddb565b60405180910390f35b61023860048036038101906102339190611a27565b610614565b6040516102459190611df6565b60405180910390f35b61026860048036038101906102639190611a54565b610634565b005b61027261065d565b60405161027f9190611fee565b60405180910390f35b6102a2600480360381019061029d9190611a54565b610666565b005b6102be60048036038101906102b991906119e7565b6106e9565b6040516102cb9190611ddb565b60405180910390f35b6102ee60048036038101906102e991906119e7565b610793565b005b61030a60048036038101906103059190611ac1565b610836565b005b61031461084a565b6040516103219190611fd3565b60405180910390f35b610344600480360381019061033f9190611927565b61085f565b6040516103519190611fd3565b60405180910390f35b610374600480360381019061036f91906119e7565b6108a7565b005b610390600480360381019061038b9190611a54565b6108c7565b60405161039d9190611ddb565b60405180910390f35b6103ae610932565b6040516103bb9190611e11565b60405180910390f35b6103cc6109c4565b6040516103d99190611df6565b60405180910390f35b6103fc60048036038101906103f791906119e7565b6109cb565b6040516104099190611ddb565b60405180910390f35b61042c600480360381019061042791906119e7565b610ab5565b6040516104399190611ddb565b60405180910390f35b61044a610ad8565b6040516104579190611df6565b60405180910390f35b61047a60048036038101906104759190611a54565b610afc565b005b61049660048036038101906104919190611954565b610b25565b6040516104a39190611fd3565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051f575061051e82610bac565b5b9050919050565b606060038054610535906121fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610561906121fc565b80156105ae5780601f10610583576101008083540402835291602001916105ae565b820191906000526020600020905b81548152906001019060200180831161059157829003601f168201915b5050505050905090565b6000806105c3610c16565b90506105d0818585610c1e565b600191505092915050565b6000600254905090565b6000806105f0610c16565b90506105fd858285610de9565b610608858585610e75565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b61063d82610614565b61064e81610649610c16565b6110f6565b6106588383611193565b505050565b60006012905090565b61066e610c16565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d290611f93565b60405180910390fd5b6106e58282611274565b5050565b6000806106f4610c16565b9050610788818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107839190612030565b610c1e565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66107c5816107c0610c16565b6110f6565b6c01431e0fae6d7217caa0000000826107dc6105db565b6107e69190612030565b1115610827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081e90611e73565b60405180910390fd5b6108318383611356565b505050565b610847610841610c16565b826114b6565b50565b60006c01431e0fae6d7217caa0000000905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108b9826108b3610c16565b83610de9565b6108c382826114b6565b5050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610941906121fc565b80601f016020809104026020016040519081016040528092919081815260200182805461096d906121fc565b80156109ba5780601f1061098f576101008083540402835291602001916109ba565b820191906000526020600020905b81548152906001019060200180831161099d57829003601f168201915b5050505050905090565b6000801b81565b6000806109d6610c16565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9390611f73565b60405180910390fd5b610aa98286868403610c1e565b60019250505092915050565b600080610ac0610c16565b9050610acd818585610e75565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610b0582610614565b610b1681610b11610c16565b6110f6565b610b208383611274565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590611f53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf590611eb3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ddc9190611fd3565b60405180910390a3505050565b6000610df58484610b25565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e6f5781811015610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890611ed3565b60405180910390fd5b610e6e8484848403610c1e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90611f33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90611e53565b60405180910390fd5b610f6083838361168d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90611ef3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110799190612030565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110dd9190611fd3565b60405180910390a36110f0848484611692565b50505050565b61110082826108c7565b61118f576111258173ffffffffffffffffffffffffffffffffffffffff166014611697565b6111338360001c6020611697565b604051602001611144929190611da1565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111869190611e11565b60405180910390fd5b5050565b61119d82826108c7565b6112705760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611215610c16565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61127e82826108c7565b156113525760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506112f7610c16565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd90611fb3565b60405180910390fd5b6113d26000838361168d565b80600260008282546113e49190612030565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114399190612030565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161149e9190611fd3565b60405180910390a36114b260008383611692565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d90611f13565b60405180910390fd5b6115328260008361168d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90611e93565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461160f91906120e0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116749190611fd3565b60405180910390a361168883600084611692565b505050565b505050565b505050565b6060600060028360026116aa9190612086565b6116b49190612030565b67ffffffffffffffff8111156116cd576116cc6122bb565b5b6040519080825280601f01601f1916602001820160405280156116ff5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106117375761173661228c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061179b5761179a61228c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026117db9190612086565b6117e59190612030565b90505b6001811115611885577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106118275761182661228c565b5b1a60f81b82828151811061183e5761183d61228c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061187e906121d2565b90506117e8565b50600084146118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090611e33565b60405180910390fd5b8091505092915050565b6000813590506118e2816126bd565b92915050565b6000813590506118f7816126d4565b92915050565b60008135905061190c816126eb565b92915050565b60008135905061192181612702565b92915050565b60006020828403121561193d5761193c6122ea565b5b600061194b848285016118d3565b91505092915050565b6000806040838503121561196b5761196a6122ea565b5b6000611979858286016118d3565b925050602061198a858286016118d3565b9150509250929050565b6000806000606084860312156119ad576119ac6122ea565b5b60006119bb868287016118d3565b93505060206119cc868287016118d3565b92505060406119dd86828701611912565b9150509250925092565b600080604083850312156119fe576119fd6122ea565b5b6000611a0c858286016118d3565b9250506020611a1d85828601611912565b9150509250929050565b600060208284031215611a3d57611a3c6122ea565b5b6000611a4b848285016118e8565b91505092915050565b60008060408385031215611a6b57611a6a6122ea565b5b6000611a79858286016118e8565b9250506020611a8a858286016118d3565b9150509250929050565b600060208284031215611aaa57611aa96122ea565b5b6000611ab8848285016118fd565b91505092915050565b600060208284031215611ad757611ad66122ea565b5b6000611ae584828501611912565b91505092915050565b611af781612126565b82525050565b611b0681612132565b82525050565b6000611b1782612009565b611b218185612014565b9350611b3181856020860161219f565b611b3a816122ef565b840191505092915050565b6000611b5082612009565b611b5a8185612025565b9350611b6a81856020860161219f565b80840191505092915050565b6000611b83602083612014565b9150611b8e82612300565b602082019050919050565b6000611ba6602383612014565b9150611bb182612329565b604082019050919050565b6000611bc9601383612014565b9150611bd482612378565b602082019050919050565b6000611bec602283612014565b9150611bf7826123a1565b604082019050919050565b6000611c0f602283612014565b9150611c1a826123f0565b604082019050919050565b6000611c32601d83612014565b9150611c3d8261243f565b602082019050919050565b6000611c55602683612014565b9150611c6082612468565b604082019050919050565b6000611c78602183612014565b9150611c83826124b7565b604082019050919050565b6000611c9b602583612014565b9150611ca682612506565b604082019050919050565b6000611cbe602483612014565b9150611cc982612555565b604082019050919050565b6000611ce1601783612025565b9150611cec826125a4565b601782019050919050565b6000611d04602583612014565b9150611d0f826125cd565b604082019050919050565b6000611d27601183612025565b9150611d328261261c565b601182019050919050565b6000611d4a602f83612014565b9150611d5582612645565b604082019050919050565b6000611d6d601f83612014565b9150611d7882612694565b602082019050919050565b611d8c81612188565b82525050565b611d9b81612192565b82525050565b6000611dac82611cd4565b9150611db88285611b45565b9150611dc382611d1a565b9150611dcf8284611b45565b91508190509392505050565b6000602082019050611df06000830184611aee565b92915050565b6000602082019050611e0b6000830184611afd565b92915050565b60006020820190508181036000830152611e2b8184611b0c565b905092915050565b60006020820190508181036000830152611e4c81611b76565b9050919050565b60006020820190508181036000830152611e6c81611b99565b9050919050565b60006020820190508181036000830152611e8c81611bbc565b9050919050565b60006020820190508181036000830152611eac81611bdf565b9050919050565b60006020820190508181036000830152611ecc81611c02565b9050919050565b60006020820190508181036000830152611eec81611c25565b9050919050565b60006020820190508181036000830152611f0c81611c48565b9050919050565b60006020820190508181036000830152611f2c81611c6b565b9050919050565b60006020820190508181036000830152611f4c81611c8e565b9050919050565b60006020820190508181036000830152611f6c81611cb1565b9050919050565b60006020820190508181036000830152611f8c81611cf7565b9050919050565b60006020820190508181036000830152611fac81611d3d565b9050919050565b60006020820190508181036000830152611fcc81611d60565b9050919050565b6000602082019050611fe86000830184611d83565b92915050565b60006020820190506120036000830184611d92565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061203b82612188565b915061204683612188565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561207b5761207a61222e565b5b828201905092915050565b600061209182612188565b915061209c83612188565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156120d5576120d461222e565b5b828202905092915050565b60006120eb82612188565b91506120f683612188565b9250828210156121095761210861222e565b5b828203905092915050565b600061211f82612168565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156121bd5780820151818401526020810190506121a2565b838111156121cc576000848401525b50505050565b60006121dd82612188565b915060008214156121f1576121f061222e565b5b600182039050919050565b6000600282049050600182168061221457607f821691505b602082108114156122285761222761225d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820537570706c7920457863656564656400000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6126c681612114565b81146126d157600080fd5b50565b6126dd81612132565b81146126e857600080fd5b50565b6126f48161213c565b81146126ff57600080fd5b50565b61270b81612188565b811461271657600080fd5b5056fea2646970667358221220b8bba595d6de642a034a6d6dd3aa2990df021a58a89c2b249bb2b3c3df824fc464736f6c63430008070033
Deployed Bytecode Sourcemap
33402:584:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10628:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21373:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23724:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22493:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24505:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12055:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12448:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22335:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13496:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25209:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33797:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32751:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33697:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22664:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33161:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10924:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21592:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10015:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25952:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22997:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33465:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12840:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23253:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10628:204;10713:4;10752:32;10737:47;;;:11;:47;;;;:87;;;;10788:36;10812:11;10788:23;:36::i;:::-;10737:87;10730:94;;10628:204;;;:::o;21373:100::-;21427:13;21460:5;21453:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21373:100;:::o;23724:201::-;23807:4;23824:13;23840:12;:10;:12::i;:::-;23824:28;;23863:32;23872:5;23879:7;23888:6;23863:8;:32::i;:::-;23913:4;23906:11;;;23724:201;;;;:::o;22493:108::-;22554:7;22581:12;;22574:19;;22493:108;:::o;24505:295::-;24636:4;24653:15;24671:12;:10;:12::i;:::-;24653:30;;24694:38;24710:4;24716:7;24725:6;24694:15;:38::i;:::-;24743:27;24753:4;24759:2;24763:6;24743:9;:27::i;:::-;24788:4;24781:11;;;24505:295;;;;;:::o;12055:131::-;12129:7;12156:6;:12;12163:4;12156:12;;;;;;;;;;;:22;;;12149:29;;12055:131;;;:::o;12448:147::-;12531:18;12544:4;12531:12;:18::i;:::-;10506:30;10517:4;10523:12;:10;:12::i;:::-;10506:10;:30::i;:::-;12562:25:::1;12573:4;12579:7;12562:10;:25::i;:::-;12448:147:::0;;;:::o;22335:93::-;22393:5;22418:2;22411:9;;22335:93;:::o;13496:218::-;13603:12;:10;:12::i;:::-;13592:23;;:7;:23;;;13584:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;13680:26;13692:4;13698:7;13680:11;:26::i;:::-;13496:218;;:::o;25209:240::-;25297:4;25314:13;25330:12;:10;:12::i;:::-;25314:28;;25353:66;25362:5;25369:7;25408:10;25378:11;:18;25390:5;25378:18;;;;;;;;;;;;;;;:27;25397:7;25378:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;25353:8;:66::i;:::-;25437:4;25430:11;;;25209:240;;;;:::o;33797:186::-;33503:24;10506:30;10517:4;10523:12;:10;:12::i;:::-;10506:10;:30::i;:::-;33572:4:::1;33903:6;33887:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;33879:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33958:17;33964:2;33968:6;33958:5;:17::i;:::-;33797:186:::0;;;:::o;32751:91::-;32807:27;32813:12;:10;:12::i;:::-;32827:6;32807:5;:27::i;:::-;32751:91;:::o;33697:94::-;33744:7;33572:4;33765:17;;33697:94;:::o;22664:127::-;22738:7;22765:9;:18;22775:7;22765:18;;;;;;;;;;;;;;;;22758:25;;22664:127;;;:::o;33161:164::-;33238:46;33254:7;33263:12;:10;:12::i;:::-;33277:6;33238:15;:46::i;:::-;33295:22;33301:7;33310:6;33295:5;:22::i;:::-;33161:164;;:::o;10924:147::-;11010:4;11034:6;:12;11041:4;11034:12;;;;;;;;;;;:20;;:29;11055:7;11034:29;;;;;;;;;;;;;;;;;;;;;;;;;11027:36;;10924:147;;;;:::o;21592:104::-;21648:13;21681:7;21674:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21592:104;:::o;10015:49::-;10060:4;10015:49;;;:::o;25952:438::-;26045:4;26062:13;26078:12;:10;:12::i;:::-;26062:28;;26101:24;26128:11;:18;26140:5;26128:18;;;;;;;;;;;;;;;:27;26147:7;26128:27;;;;;;;;;;;;;;;;26101:54;;26194:15;26174:16;:35;;26166:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;26287:60;26296:5;26303:7;26331:15;26312:16;:34;26287:8;:60::i;:::-;26378:4;26371:11;;;;25952:438;;;;:::o;22997:193::-;23076:4;23093:13;23109:12;:10;:12::i;:::-;23093:28;;23132;23142:5;23149:2;23153:6;23132:9;:28::i;:::-;23178:4;23171:11;;;22997:193;;;;:::o;33465:62::-;33503:24;33465:62;:::o;12840:149::-;12924:18;12937:4;12924:12;:18::i;:::-;10506:30;10517:4;10523:12;:10;:12::i;:::-;10506:10;:30::i;:::-;12955:26:::1;12967:4;12973:7;12955:11;:26::i;:::-;12840:149:::0;;;:::o;23253:151::-;23342:7;23369:11;:18;23381:5;23369:18;;;;;;;;;;;;;;;:27;23388:7;23369:27;;;;;;;;;;;;;;;;23362:34;;23253:151;;;;:::o;1815:157::-;1900:4;1939:25;1924:40;;;:11;:40;;;;1917:47;;1815:157;;;:::o;7823:98::-;7876:7;7903:10;7896:17;;7823:98;:::o;29588:380::-;29741:1;29724:19;;:5;:19;;;;29716:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29822:1;29803:21;;:7;:21;;;;29795:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29906:6;29876:11;:18;29888:5;29876:18;;;;;;;;;;;;;;;:27;29895:7;29876:27;;;;;;;;;;;;;;;:36;;;;29944:7;29928:32;;29937:5;29928:32;;;29953:6;29928:32;;;;;;:::i;:::-;;;;;;;;29588:380;;;:::o;30255:453::-;30390:24;30417:25;30427:5;30434:7;30417:9;:25::i;:::-;30390:52;;30477:17;30457:16;:37;30453:248;;30539:6;30519:16;:26;;30511:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30623:51;30632:5;30639:7;30667:6;30648:16;:25;30623:8;:51::i;:::-;30453:248;30379:329;30255:453;;;:::o;26869:671::-;27016:1;27000:18;;:4;:18;;;;26992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27093:1;27079:16;;:2;:16;;;;27071:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27148:38;27169:4;27175:2;27179:6;27148:20;:38::i;:::-;27199:19;27221:9;:15;27231:4;27221:15;;;;;;;;;;;;;;;;27199:37;;27270:6;27255:11;:21;;27247:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;27387:6;27373:11;:20;27355:9;:15;27365:4;27355:15;;;;;;;;;;;;;;;:38;;;;27432:6;27415:9;:13;27425:2;27415:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;27471:2;27456:26;;27465:4;27456:26;;;27475:6;27456:26;;;;;;:::i;:::-;;;;;;;;27495:37;27515:4;27521:2;27525:6;27495:19;:37::i;:::-;26981:559;26869:671;;;:::o;11361:505::-;11450:22;11458:4;11464:7;11450;:22::i;:::-;11445:414;;11638:41;11666:7;11638:41;;11676:2;11638:19;:41::i;:::-;11752:38;11780:4;11772:13;;11787:2;11752:19;:38::i;:::-;11543:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11489:358;;;;;;;;;;;:::i;:::-;;;;;;;;11445:414;11361:505;;:::o;14997:238::-;15081:22;15089:4;15095:7;15081;:22::i;:::-;15076:152;;15152:4;15120:6;:12;15127:4;15120:12;;;;;;;;;;;:20;;:29;15141:7;15120:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;15203:12;:10;:12::i;:::-;15176:40;;15194:7;15176:40;;15188:4;15176:40;;;;;;;;;;15076:152;14997:238;;:::o;15367:239::-;15451:22;15459:4;15465:7;15451;:22::i;:::-;15447:152;;;15522:5;15490:6;:12;15497:4;15490:12;;;;;;;;;;;:20;;:29;15511:7;15490:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;15574:12;:10;:12::i;:::-;15547:40;;15565:7;15547:40;;15559:4;15547:40;;;;;;;;;;15447:152;15367:239;;:::o;27827:399::-;27930:1;27911:21;;:7;:21;;;;27903:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;27981:49;28010:1;28014:7;28023:6;27981:20;:49::i;:::-;28059:6;28043:12;;:22;;;;;;;:::i;:::-;;;;;;;;28098:6;28076:9;:18;28086:7;28076:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;28141:7;28120:37;;28137:1;28120:37;;;28150:6;28120:37;;;;;;:::i;:::-;;;;;;;;28170:48;28198:1;28202:7;28211:6;28170:19;:48::i;:::-;27827:399;;:::o;28559:591::-;28662:1;28643:21;;:7;:21;;;;28635:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28715:49;28736:7;28753:1;28757:6;28715:20;:49::i;:::-;28777:22;28802:9;:18;28812:7;28802:18;;;;;;;;;;;;;;;;28777:43;;28857:6;28839:14;:24;;28831:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28976:6;28959:14;:23;28938:9;:18;28948:7;28938:18;;;;;;;;;;;;;;;:44;;;;29020:6;29004:12;;:22;;;;;;;:::i;:::-;;;;;;;;29070:1;29044:37;;29053:7;29044:37;;;29074:6;29044:37;;;;;;:::i;:::-;;;;;;;;29094:48;29114:7;29131:1;29135:6;29094:19;:48::i;:::-;28624:526;28559:591;;:::o;31308:125::-;;;;:::o;32037:124::-;;;;:::o;3645:451::-;3720:13;3746:19;3791:1;3782:6;3778:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;3768:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3746:47;;3804:15;:6;3811:1;3804:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;3830;:6;3837:1;3830:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;3861:9;3886:1;3877:6;3873:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;3861:26;;3856:135;3893:1;3889;:5;3856:135;;;3928:12;3949:3;3941:5;:11;3928:25;;;;;;;:::i;:::-;;;;;3916:6;3923:1;3916:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;3978:1;3968:11;;;;;3896:3;;;;:::i;:::-;;;3856:135;;;;4018:1;4009:5;:10;4001:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;4081:6;4067:21;;;3645:451;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:137::-;342:5;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;297:137;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;440:139;;;;:::o;585:329::-;644:6;693:2;681:9;672:7;668:23;664:32;661:119;;;699:79;;:::i;:::-;661:119;819:1;844:53;889:7;880:6;869:9;865:22;844:53;:::i;:::-;834:63;;790:117;585:329;;;;:::o;920:474::-;988:6;996;1045:2;1033:9;1024:7;1020:23;1016:32;1013:119;;;1051:79;;:::i;:::-;1013:119;1171:1;1196:53;1241:7;1232:6;1221:9;1217:22;1196:53;:::i;:::-;1186:63;;1142:117;1298:2;1324:53;1369:7;1360:6;1349:9;1345:22;1324:53;:::i;:::-;1314:63;;1269:118;920:474;;;;;:::o;1400:619::-;1477:6;1485;1493;1542:2;1530:9;1521:7;1517:23;1513:32;1510:119;;;1548:79;;:::i;:::-;1510:119;1668:1;1693:53;1738:7;1729:6;1718:9;1714:22;1693:53;:::i;:::-;1683:63;;1639:117;1795:2;1821:53;1866:7;1857:6;1846:9;1842:22;1821:53;:::i;:::-;1811:63;;1766:118;1923:2;1949:53;1994:7;1985:6;1974:9;1970:22;1949:53;:::i;:::-;1939:63;;1894:118;1400:619;;;;;:::o;2025:474::-;2093:6;2101;2150:2;2138:9;2129:7;2125:23;2121:32;2118:119;;;2156:79;;:::i;:::-;2118:119;2276:1;2301:53;2346:7;2337:6;2326:9;2322:22;2301:53;:::i;:::-;2291:63;;2247:117;2403:2;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2374:118;2025:474;;;;;:::o;2505:329::-;2564:6;2613:2;2601:9;2592:7;2588:23;2584:32;2581:119;;;2619:79;;:::i;:::-;2581:119;2739:1;2764:53;2809:7;2800:6;2789:9;2785:22;2764:53;:::i;:::-;2754:63;;2710:117;2505:329;;;;:::o;2840:474::-;2908:6;2916;2965:2;2953:9;2944:7;2940:23;2936:32;2933:119;;;2971:79;;:::i;:::-;2933:119;3091:1;3116:53;3161:7;3152:6;3141:9;3137:22;3116:53;:::i;:::-;3106:63;;3062:117;3218:2;3244:53;3289:7;3280:6;3269:9;3265:22;3244:53;:::i;:::-;3234:63;;3189:118;2840:474;;;;;:::o;3320:327::-;3378:6;3427:2;3415:9;3406:7;3402:23;3398:32;3395:119;;;3433:79;;:::i;:::-;3395:119;3553:1;3578:52;3622:7;3613:6;3602:9;3598:22;3578:52;:::i;:::-;3568:62;;3524:116;3320:327;;;;:::o;3653:329::-;3712:6;3761:2;3749:9;3740:7;3736:23;3732:32;3729:119;;;3767:79;;:::i;:::-;3729:119;3887:1;3912:53;3957:7;3948:6;3937:9;3933:22;3912:53;:::i;:::-;3902:63;;3858:117;3653:329;;;;:::o;3988:109::-;4069:21;4084:5;4069:21;:::i;:::-;4064:3;4057:34;3988:109;;:::o;4103:118::-;4190:24;4208:5;4190:24;:::i;:::-;4185:3;4178:37;4103:118;;:::o;4227:364::-;4315:3;4343:39;4376:5;4343:39;:::i;:::-;4398:71;4462:6;4457:3;4398:71;:::i;:::-;4391:78;;4478:52;4523:6;4518:3;4511:4;4504:5;4500:16;4478:52;:::i;:::-;4555:29;4577:6;4555:29;:::i;:::-;4550:3;4546:39;4539:46;;4319:272;4227:364;;;;:::o;4597:377::-;4703:3;4731:39;4764:5;4731:39;:::i;:::-;4786:89;4868:6;4863:3;4786:89;:::i;:::-;4779:96;;4884:52;4929:6;4924:3;4917:4;4910:5;4906:16;4884:52;:::i;:::-;4961:6;4956:3;4952:16;4945:23;;4707:267;4597:377;;;;:::o;4980:366::-;5122:3;5143:67;5207:2;5202:3;5143:67;:::i;:::-;5136:74;;5219:93;5308:3;5219:93;:::i;:::-;5337:2;5332:3;5328:12;5321:19;;4980:366;;;:::o;5352:::-;5494:3;5515:67;5579:2;5574:3;5515:67;:::i;:::-;5508:74;;5591:93;5680:3;5591:93;:::i;:::-;5709:2;5704:3;5700:12;5693:19;;5352:366;;;:::o;5724:::-;5866:3;5887:67;5951:2;5946:3;5887:67;:::i;:::-;5880:74;;5963:93;6052:3;5963:93;:::i;:::-;6081:2;6076:3;6072:12;6065:19;;5724:366;;;:::o;6096:::-;6238:3;6259:67;6323:2;6318:3;6259:67;:::i;:::-;6252:74;;6335:93;6424:3;6335:93;:::i;:::-;6453:2;6448:3;6444:12;6437:19;;6096:366;;;:::o;6468:::-;6610:3;6631:67;6695:2;6690:3;6631:67;:::i;:::-;6624:74;;6707:93;6796:3;6707:93;:::i;:::-;6825:2;6820:3;6816:12;6809:19;;6468:366;;;:::o;6840:::-;6982:3;7003:67;7067:2;7062:3;7003:67;:::i;:::-;6996:74;;7079:93;7168:3;7079:93;:::i;:::-;7197:2;7192:3;7188:12;7181:19;;6840:366;;;:::o;7212:::-;7354:3;7375:67;7439:2;7434:3;7375:67;:::i;:::-;7368:74;;7451:93;7540:3;7451:93;:::i;:::-;7569:2;7564:3;7560:12;7553:19;;7212:366;;;:::o;7584:::-;7726:3;7747:67;7811:2;7806:3;7747:67;:::i;:::-;7740:74;;7823:93;7912:3;7823:93;:::i;:::-;7941:2;7936:3;7932:12;7925:19;;7584:366;;;:::o;7956:::-;8098:3;8119:67;8183:2;8178:3;8119:67;:::i;:::-;8112:74;;8195:93;8284:3;8195:93;:::i;:::-;8313:2;8308:3;8304:12;8297:19;;7956:366;;;:::o;8328:::-;8470:3;8491:67;8555:2;8550:3;8491:67;:::i;:::-;8484:74;;8567:93;8656:3;8567:93;:::i;:::-;8685:2;8680:3;8676:12;8669:19;;8328:366;;;:::o;8700:402::-;8860:3;8881:85;8963:2;8958:3;8881:85;:::i;:::-;8874:92;;8975:93;9064:3;8975:93;:::i;:::-;9093:2;9088:3;9084:12;9077:19;;8700:402;;;:::o;9108:366::-;9250:3;9271:67;9335:2;9330:3;9271:67;:::i;:::-;9264:74;;9347:93;9436:3;9347:93;:::i;:::-;9465:2;9460:3;9456:12;9449:19;;9108:366;;;:::o;9480:402::-;9640:3;9661:85;9743:2;9738:3;9661:85;:::i;:::-;9654:92;;9755:93;9844:3;9755:93;:::i;:::-;9873:2;9868:3;9864:12;9857:19;;9480:402;;;:::o;9888:366::-;10030:3;10051:67;10115:2;10110:3;10051:67;:::i;:::-;10044:74;;10127:93;10216:3;10127:93;:::i;:::-;10245:2;10240:3;10236:12;10229:19;;9888:366;;;:::o;10260:::-;10402:3;10423:67;10487:2;10482:3;10423:67;:::i;:::-;10416:74;;10499:93;10588:3;10499:93;:::i;:::-;10617:2;10612:3;10608:12;10601:19;;10260:366;;;:::o;10632:118::-;10719:24;10737:5;10719:24;:::i;:::-;10714:3;10707:37;10632:118;;:::o;10756:112::-;10839:22;10855:5;10839:22;:::i;:::-;10834:3;10827:35;10756:112;;:::o;10874:967::-;11256:3;11278:148;11422:3;11278:148;:::i;:::-;11271:155;;11443:95;11534:3;11525:6;11443:95;:::i;:::-;11436:102;;11555:148;11699:3;11555:148;:::i;:::-;11548:155;;11720:95;11811:3;11802:6;11720:95;:::i;:::-;11713:102;;11832:3;11825:10;;10874:967;;;;;:::o;11847:210::-;11934:4;11972:2;11961:9;11957:18;11949:26;;11985:65;12047:1;12036:9;12032:17;12023:6;11985:65;:::i;:::-;11847:210;;;;:::o;12063:222::-;12156:4;12194:2;12183:9;12179:18;12171:26;;12207:71;12275:1;12264:9;12260:17;12251:6;12207:71;:::i;:::-;12063:222;;;;:::o;12291:313::-;12404:4;12442:2;12431:9;12427:18;12419:26;;12491:9;12485:4;12481:20;12477:1;12466:9;12462:17;12455:47;12519:78;12592:4;12583:6;12519:78;:::i;:::-;12511:86;;12291:313;;;;:::o;12610:419::-;12776:4;12814:2;12803:9;12799:18;12791:26;;12863:9;12857:4;12853:20;12849:1;12838:9;12834:17;12827:47;12891:131;13017:4;12891:131;:::i;:::-;12883:139;;12610:419;;;:::o;13035:::-;13201:4;13239:2;13228:9;13224:18;13216:26;;13288:9;13282:4;13278:20;13274:1;13263:9;13259:17;13252:47;13316:131;13442:4;13316:131;:::i;:::-;13308:139;;13035:419;;;:::o;13460:::-;13626:4;13664:2;13653:9;13649:18;13641:26;;13713:9;13707:4;13703:20;13699:1;13688:9;13684:17;13677:47;13741:131;13867:4;13741:131;:::i;:::-;13733:139;;13460:419;;;:::o;13885:::-;14051:4;14089:2;14078:9;14074:18;14066:26;;14138:9;14132:4;14128:20;14124:1;14113:9;14109:17;14102:47;14166:131;14292:4;14166:131;:::i;:::-;14158:139;;13885:419;;;:::o;14310:::-;14476:4;14514:2;14503:9;14499:18;14491:26;;14563:9;14557:4;14553:20;14549:1;14538:9;14534:17;14527:47;14591:131;14717:4;14591:131;:::i;:::-;14583:139;;14310:419;;;:::o;14735:::-;14901:4;14939:2;14928:9;14924:18;14916:26;;14988:9;14982:4;14978:20;14974:1;14963:9;14959:17;14952:47;15016:131;15142:4;15016:131;:::i;:::-;15008:139;;14735:419;;;:::o;15160:::-;15326:4;15364:2;15353:9;15349:18;15341:26;;15413:9;15407:4;15403:20;15399:1;15388:9;15384:17;15377:47;15441:131;15567:4;15441:131;:::i;:::-;15433:139;;15160:419;;;:::o;15585:::-;15751:4;15789:2;15778:9;15774:18;15766:26;;15838:9;15832:4;15828:20;15824:1;15813:9;15809:17;15802:47;15866:131;15992:4;15866:131;:::i;:::-;15858:139;;15585:419;;;:::o;16010:::-;16176:4;16214:2;16203:9;16199:18;16191:26;;16263:9;16257:4;16253:20;16249:1;16238:9;16234:17;16227:47;16291:131;16417:4;16291:131;:::i;:::-;16283:139;;16010:419;;;:::o;16435:::-;16601:4;16639:2;16628:9;16624:18;16616:26;;16688:9;16682:4;16678:20;16674:1;16663:9;16659:17;16652:47;16716:131;16842:4;16716:131;:::i;:::-;16708:139;;16435:419;;;:::o;16860:::-;17026:4;17064:2;17053:9;17049:18;17041:26;;17113:9;17107:4;17103:20;17099:1;17088:9;17084:17;17077:47;17141:131;17267:4;17141:131;:::i;:::-;17133:139;;16860:419;;;:::o;17285:::-;17451:4;17489:2;17478:9;17474:18;17466:26;;17538:9;17532:4;17528:20;17524:1;17513:9;17509:17;17502:47;17566:131;17692:4;17566:131;:::i;:::-;17558:139;;17285:419;;;:::o;17710:::-;17876:4;17914:2;17903:9;17899:18;17891:26;;17963:9;17957:4;17953:20;17949:1;17938:9;17934:17;17927:47;17991:131;18117:4;17991:131;:::i;:::-;17983:139;;17710:419;;;:::o;18135:222::-;18228:4;18266:2;18255:9;18251:18;18243:26;;18279:71;18347:1;18336:9;18332:17;18323:6;18279:71;:::i;:::-;18135:222;;;;:::o;18363:214::-;18452:4;18490:2;18479:9;18475:18;18467:26;;18503:67;18567:1;18556:9;18552:17;18543:6;18503:67;:::i;:::-;18363:214;;;;:::o;18664:99::-;18716:6;18750:5;18744:12;18734:22;;18664:99;;;:::o;18769:169::-;18853:11;18887:6;18882:3;18875:19;18927:4;18922:3;18918:14;18903:29;;18769:169;;;;:::o;18944:148::-;19046:11;19083:3;19068:18;;18944:148;;;;:::o;19098:305::-;19138:3;19157:20;19175:1;19157:20;:::i;:::-;19152:25;;19191:20;19209:1;19191:20;:::i;:::-;19186:25;;19345:1;19277:66;19273:74;19270:1;19267:81;19264:107;;;19351:18;;:::i;:::-;19264:107;19395:1;19392;19388:9;19381:16;;19098:305;;;;:::o;19409:348::-;19449:7;19472:20;19490:1;19472:20;:::i;:::-;19467:25;;19506:20;19524:1;19506:20;:::i;:::-;19501:25;;19694:1;19626:66;19622:74;19619:1;19616:81;19611:1;19604:9;19597:17;19593:105;19590:131;;;19701:18;;:::i;:::-;19590:131;19749:1;19746;19742:9;19731:20;;19409:348;;;;:::o;19763:191::-;19803:4;19823:20;19841:1;19823:20;:::i;:::-;19818:25;;19857:20;19875:1;19857:20;:::i;:::-;19852:25;;19896:1;19893;19890:8;19887:34;;;19901:18;;:::i;:::-;19887:34;19946:1;19943;19939:9;19931:17;;19763:191;;;;:::o;19960:96::-;19997:7;20026:24;20044:5;20026:24;:::i;:::-;20015:35;;19960:96;;;:::o;20062:90::-;20096:7;20139:5;20132:13;20125:21;20114:32;;20062:90;;;:::o;20158:77::-;20195:7;20224:5;20213:16;;20158:77;;;:::o;20241:149::-;20277:7;20317:66;20310:5;20306:78;20295:89;;20241:149;;;:::o;20396:126::-;20433:7;20473:42;20466:5;20462:54;20451:65;;20396:126;;;:::o;20528:77::-;20565:7;20594:5;20583:16;;20528:77;;;:::o;20611:86::-;20646:7;20686:4;20679:5;20675:16;20664:27;;20611:86;;;:::o;20703:307::-;20771:1;20781:113;20795:6;20792:1;20789:13;20781:113;;;20880:1;20875:3;20871:11;20865:18;20861:1;20856:3;20852:11;20845:39;20817:2;20814:1;20810:10;20805:15;;20781:113;;;20912:6;20909:1;20906:13;20903:101;;;20992:1;20983:6;20978:3;20974:16;20967:27;20903:101;20752:258;20703:307;;;:::o;21016:171::-;21055:3;21078:24;21096:5;21078:24;:::i;:::-;21069:33;;21124:4;21117:5;21114:15;21111:41;;;21132:18;;:::i;:::-;21111:41;21179:1;21172:5;21168:13;21161:20;;21016:171;;;:::o;21193:320::-;21237:6;21274:1;21268:4;21264:12;21254:22;;21321:1;21315:4;21311:12;21342:18;21332:81;;21398:4;21390:6;21386:17;21376:27;;21332:81;21460:2;21452:6;21449:14;21429:18;21426:38;21423:84;;;21479:18;;:::i;:::-;21423:84;21244:269;21193:320;;;:::o;21519:180::-;21567:77;21564:1;21557:88;21664:4;21661:1;21654:15;21688:4;21685:1;21678:15;21705:180;21753:77;21750:1;21743:88;21850:4;21847:1;21840:15;21874:4;21871:1;21864:15;21891:180;21939:77;21936:1;21929:88;22036:4;22033:1;22026:15;22060:4;22057:1;22050:15;22077:180;22125:77;22122:1;22115:88;22222:4;22219:1;22212:15;22246:4;22243:1;22236:15;22386:117;22495:1;22492;22485:12;22509:102;22550:6;22601:2;22597:7;22592:2;22585:5;22581:14;22577:28;22567:38;;22509:102;;;:::o;22617:182::-;22757:34;22753:1;22745:6;22741:14;22734:58;22617:182;:::o;22805:222::-;22945:34;22941:1;22933:6;22929:14;22922:58;23014:5;23009:2;23001:6;22997:15;22990:30;22805:222;:::o;23033:169::-;23173:21;23169:1;23161:6;23157:14;23150:45;23033:169;:::o;23208:221::-;23348:34;23344:1;23336:6;23332:14;23325:58;23417:4;23412:2;23404:6;23400:15;23393:29;23208:221;:::o;23435:::-;23575:34;23571:1;23563:6;23559:14;23552:58;23644:4;23639:2;23631:6;23627:15;23620:29;23435:221;:::o;23662:179::-;23802:31;23798:1;23790:6;23786:14;23779:55;23662:179;:::o;23847:225::-;23987:34;23983:1;23975:6;23971:14;23964:58;24056:8;24051:2;24043:6;24039:15;24032:33;23847:225;:::o;24078:220::-;24218:34;24214:1;24206:6;24202:14;24195:58;24287:3;24282:2;24274:6;24270:15;24263:28;24078:220;:::o;24304:224::-;24444:34;24440:1;24432:6;24428:14;24421:58;24513:7;24508:2;24500:6;24496:15;24489:32;24304:224;:::o;24534:223::-;24674:34;24670:1;24662:6;24658:14;24651:58;24743:6;24738:2;24730:6;24726:15;24719:31;24534:223;:::o;24763:173::-;24903:25;24899:1;24891:6;24887:14;24880:49;24763:173;:::o;24942:224::-;25082:34;25078:1;25070:6;25066:14;25059:58;25151:7;25146:2;25138:6;25134:15;25127:32;24942:224;:::o;25172:167::-;25312:19;25308:1;25300:6;25296:14;25289:43;25172:167;:::o;25345:234::-;25485:34;25481:1;25473:6;25469:14;25462:58;25554:17;25549:2;25541:6;25537:15;25530:42;25345:234;:::o;25585:181::-;25725:33;25721:1;25713:6;25709:14;25702:57;25585:181;:::o;25772:122::-;25845:24;25863:5;25845:24;:::i;:::-;25838:5;25835:35;25825:63;;25884:1;25881;25874:12;25825:63;25772:122;:::o;25900:::-;25973:24;25991:5;25973:24;:::i;:::-;25966:5;25963:35;25953:63;;26012:1;26009;26002:12;25953:63;25900:122;:::o;26028:120::-;26100:23;26117:5;26100:23;:::i;:::-;26093:5;26090:34;26080:62;;26138:1;26135;26128:12;26080:62;26028:120;:::o;26154:122::-;26227:24;26245:5;26227:24;:::i;:::-;26220:5;26217:35;26207:63;;26266:1;26263;26256:12;26207:63;26154:122;:::o
Swarm Source
ipfs://b8bba595d6de642a034a6d6dd3aa2990df021a58a89c2b249bb2b3c3df824fc4
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.