Token Polygon FT
Overview ERC-20
Total Supply:
60,375.43 PFT
Holders:
34 addresses
Profile Summary
Contract:
Decimals:
18
Balance
9.14 PFT
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ERC20Template
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; contract ERC20Template is AccessControl, Pausable, ERC20Burnable { using SafeERC20 for IERC20; uint8 private _decimals; mapping(address => bool) internal blackListAccounts; bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant OPERATOR_ROLE = keccak256("OPERATOR_ROLE"); uint256 private immutable _cap; /** * @dev Emitted when the account is added to blacklist. */ event BlackListAccount(address indexed account); /** * @dev Emitted when the account is removed from blacklist. */ event UnblackListAccount(address indexed account); /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `OPERATOR_ROLE` to the * account that deploys the contract. * * See {ERC20-constructor}. */ constructor(string memory name_, string memory symbol_, uint8 decimals_, uint256 cap_, address owner_) ERC20(name_, symbol_) { require(cap_ > 0, "constructor: cap is 0"); _cap = cap_; _setupRole(DEFAULT_ADMIN_ROLE, owner_); _setupRole(MINTER_ROLE, owner_); _setupRole(OPERATOR_ROLE, owner_); _setupDecimals(decimals_); } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } function decimals() public view virtual override returns (uint8) { return _decimals; } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Creates `amount` new tokens for `to`. * * See {ERC20-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint(address to, uint256 amount) public virtual onlyRole(MINTER_ROLE) { require(ERC20.totalSupply() + amount <= cap(), "mint: cap exceeded"); _mint(to, amount); } /** * @dev Pauses all token transfers. * * See {Pausable-_pause}. * * Requirements: * * - the caller must have the `DEFAULT_ADMIN_ROLE`. */ function pause() public virtual onlyRole(DEFAULT_ADMIN_ROLE) { _pause(); } /** * @dev Unpauses all token transfers. * * See {Pausable-_unpause}. * * Requirements: * * - the caller must have the `DEFAULT_ADMIN_ROLE`. */ function unpause() public virtual onlyRole(DEFAULT_ADMIN_ROLE) { _unpause(); } function blackListAccount(address account) public onlyRole(OPERATOR_ROLE) { blackListAccounts[account] = true; emit BlackListAccount(account); } function unblackListAccount(address account) public onlyRole(OPERATOR_ROLE) { blackListAccounts[account] = false; emit UnblackListAccount(account); } function blackListed(address account) public view returns (bool) { return blackListAccounts[account]; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "_beforeTokenTransfer: token transfer while paused"); require(!blackListed(from), "_beforeTokenTransfer: sender is blacklisted"); require(!blackListed(to), "_beforeTokenTransfer: recipient is blacklisted"); } function withdrawERC20(address tokenAddress, address to) public onlyRole(DEFAULT_ADMIN_ROLE) { IERC20 token = IERC20(tokenAddress); uint256 balance = token.balanceOf(address(this)); token.safeTransfer(to, balance); } function withdrawERC721(address tokenAddress, address to, uint256 tokenId) public onlyRole(DEFAULT_ADMIN_ROLE) { IERC721(tokenAddress).transferFrom(address(this), to, tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ 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. * * May emit a {RoleRevoked} event. */ 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`. * * May emit a {RoleRevoked} event. */ 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. * * May emit a {RoleGranted} event. * * [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. * * May emit a {RoleGranted} event. */ 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. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "metadata": { "useLiteralContent": true }, "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"cap_","type":"uint256"},{"internalType":"address","name":"owner_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BlackListAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"UnblackListAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_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":"address","name":"account","type":"address"}],"name":"blackListAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unblackListAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"withdrawERC721","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b5060405162003e9a38038062003e9a833981810160405281019062000037919062000469565b84846000600160006101000a81548160ff02191690831515021790555081600590805190602001906200006c92919062000302565b5080600690805190602001906200008592919062000302565b50505060008211620000ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000c59062000544565b60405180910390fd5b8160808181525050620000eb6000801b826200016b60201b60201c565b6200011d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6826200016b60201b60201c565b6200014f7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929826200016b60201b60201c565b62000160836200018160201b60201c565b5050505050620007a9565b6200017d82826200019f60201b60201c565b5050565b80600760006101000a81548160ff021916908360ff16021790555050565b620001b182826200029060201b60201c565b6200028c57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000231620002fa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620003109062000657565b90600052602060002090601f01602090048101928262000334576000855562000380565b82601f106200034f57805160ff191683800117855562000380565b8280016001018555821562000380579182015b828111156200037f57825182559160200191906001019062000362565b5b5090506200038f919062000393565b5090565b5b80821115620003ae57600081600090555060010162000394565b5090565b6000620003c9620003c3846200058f565b62000566565b905082815260208101848484011115620003e257600080fd5b620003ef84828562000621565b509392505050565b60008151905062000408816200075b565b92915050565b600082601f8301126200042057600080fd5b815162000432848260208601620003b2565b91505092915050565b6000815190506200044c8162000775565b92915050565b60008151905062000463816200078f565b92915050565b600080600080600060a086880312156200048257600080fd5b600086015167ffffffffffffffff8111156200049d57600080fd5b620004ab888289016200040e565b955050602086015167ffffffffffffffff811115620004c957600080fd5b620004d7888289016200040e565b9450506040620004ea8882890162000452565b9350506060620004fd888289016200043b565b92505060806200051088828901620003f7565b9150509295509295909350565b60006200052c601583620005c5565b9150620005398262000732565b602082019050919050565b600060208201905081810360008301526200055f816200051d565b9050919050565b60006200057262000585565b90506200058082826200068d565b919050565b6000604051905090565b600067ffffffffffffffff821115620005ad57620005ac620006f2565b5b620005b88262000721565b9050602081019050919050565b600082825260208201905092915050565b6000620005e382620005ea565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156200064157808201518184015260208101905062000624565b8381111562000651576000848401525b50505050565b600060028204905060018216806200067057607f821691505b60208210811415620006875762000686620006c3565b5b50919050565b620006988262000721565b810181811067ffffffffffffffff82111715620006ba57620006b9620006f2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f636f6e7374727563746f723a2063617020697320300000000000000000000000600082015250565b6200076681620005d6565b81146200077257600080fd5b50565b62000780816200060a565b81146200078c57600080fd5b50565b6200079a8162000614565b8114620007a657600080fd5b50565b6080516136d5620007c560003960006108cb01526136d56000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80635c975abb1161010f578063a457c2d7116100a2578063d547741f11610071578063d547741f146105b9578063dd62ed3e146105d5578063e064496214610605578063f5b541a614610621576101f0565b8063a457c2d71461050b578063a9059cbb1461053b578063bbde5b251461056b578063d53913931461059b576101f0565b806391d14854116100de57806391d14854146104835780639456fbcc146104b357806395d89b41146104cf578063a217fddf146104ed576101f0565b80635c975abb1461040f57806370a082311461042d57806379cc67901461045d5780638456cb5914610479576101f0565b8063313ce567116101875780633f4ba83a116101565780633f4ba83a146103b15780634025feb2146103bb57806340c10f19146103d757806342966c68146103f3576101f0565b8063313ce56714610329578063355274ea1461034757806336568abe146103655780633950935114610381576101f0565b806318160ddd116101c357806318160ddd1461028f57806323b872dd146102ad578063248a9ca3146102dd5780632f2ff15d1461030d576101f0565b806301ffc9a7146101f557806306fdde0314610225578063095ea7b31461024357806309617d7814610273575b600080fd5b61020f600480360381019061020a919061253f565b61063f565b60405161021c9190612a91565b60405180910390f35b61022d6106b9565b60405161023a9190612ac7565b60405180910390f35b61025d60048036038101906102589190612475565b61074b565b60405161026a9190612a91565b60405180910390f35b61028d600480360381019061028891906123c1565b61076e565b005b610297610837565b6040516102a49190612d89565b60405180910390f35b6102c760048036038101906102c29190612426565b610841565b6040516102d49190612a91565b60405180910390f35b6102f760048036038101906102f291906124da565b610870565b6040516103049190612aac565b60405180910390f35b61032760048036038101906103229190612503565b61088f565b005b6103316108b0565b60405161033e9190612da4565b60405180910390f35b61034f6108c7565b60405161035c9190612d89565b60405180910390f35b61037f600480360381019061037a9190612503565b6108ef565b005b61039b60048036038101906103969190612475565b610972565b6040516103a89190612a91565b60405180910390f35b6103b96109a9565b005b6103d560048036038101906103d09190612426565b6109c1565b005b6103f160048036038101906103ec9190612475565b610a43565b005b61040d60048036038101906104089190612568565b610ad8565b005b610417610aec565b6040516104249190612a91565b60405180910390f35b610447600480360381019061044291906123c1565b610b03565b6040516104549190612d89565b60405180910390f35b61047760048036038101906104729190612475565b610b4c565b005b610481610b6c565b005b61049d60048036038101906104989190612503565b610b84565b6040516104aa9190612a91565b60405180910390f35b6104cd60048036038101906104c891906123ea565b610bee565b005b6104d7610cbf565b6040516104e49190612ac7565b60405180910390f35b6104f5610d51565b6040516105029190612aac565b60405180910390f35b61052560048036038101906105209190612475565b610d58565b6040516105329190612a91565b60405180910390f35b61055560048036038101906105509190612475565b610dcf565b6040516105629190612a91565b60405180910390f35b610585600480360381019061058091906123c1565b610df2565b6040516105929190612a91565b60405180910390f35b6105a3610e48565b6040516105b09190612aac565b60405180910390f35b6105d360048036038101906105ce9190612503565b610e6c565b005b6105ef60048036038101906105ea91906123ea565b610e8d565b6040516105fc9190612d89565b60405180910390f35b61061f600480360381019061061a91906123c1565b610f14565b005b610629610fdd565b6040516106369190612aac565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b257506106b182611001565b5b9050919050565b6060600580546106c890612fc8565b80601f01602080910402602001604051908101604052809291908181526020018280546106f490612fc8565b80156107415780601f1061071657610100808354040283529160200191610741565b820191906000526020600020905b81548152906001019060200180831161072457829003601f168201915b5050505050905090565b60008061075661106b565b9050610763818585611073565b600191505092915050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b9296107988161123e565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f577113d77e79f49989fe02ced615218195847a6e5f43c631d7186881f33e341560405160405180910390a25050565b6000600454905090565b60008061084c61106b565b9050610859858285611252565b6108648585856112de565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b61089882610870565b6108a18161123e565b6108ab8383611562565b505050565b6000600760009054906101000a900460ff16905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6108f761106b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90612d49565b60405180910390fd5b61096e8282611642565b5050565b60008061097d61106b565b905061099e81858561098f8589610e8d565b6109999190612dfc565b611073565b600191505092915050565b6000801b6109b68161123e565b6109be611723565b50565b6000801b6109ce8161123e565b8373ffffffffffffffffffffffffffffffffffffffff166323b872dd3085856040518463ffffffff1660e01b8152600401610a0b93929190612a31565b600060405180830381600087803b158015610a2557600080fd5b505af1158015610a39573d6000803e3d6000fd5b5050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a6d8161123e565b610a756108c7565b82610a7e610837565b610a889190612dfc565b1115610ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac090612ca9565b60405180910390fd5b610ad38383611786565b505050565b610ae9610ae361106b565b826118e7565b50565b6000600160009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b5e82610b5861106b565b83611252565b610b6882826118e7565b5050565b6000801b610b798161123e565b610b81611ac0565b50565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b610bfb8161123e565b600083905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c3b9190612a16565b60206040518083038186803b158015610c5357600080fd5b505afa158015610c67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8b9190612591565b9050610cb884828473ffffffffffffffffffffffffffffffffffffffff16611b229092919063ffffffff16565b5050505050565b606060068054610cce90612fc8565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfa90612fc8565b8015610d475780601f10610d1c57610100808354040283529160200191610d47565b820191906000526020600020905b815481529060010190602001808311610d2a57829003601f168201915b5050505050905090565b6000801b81565b600080610d6361106b565b90506000610d718286610e8d565b905083811015610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90612d29565b60405180910390fd5b610dc38286868403611073565b60019250505092915050565b600080610dda61106b565b9050610de78185856112de565b600191505092915050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610e7582610870565b610e7e8161123e565b610e888383611642565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929610f3e8161123e565b6001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f92dd3d624e88ae56ea7787c96e127ee7ce0279a4a148dc248d44222ec6e7712660405160405180910390a25050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92981565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90612cc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90612b69565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112319190612d89565b60405180910390a3505050565b61124f8161124a61106b565b611ba8565b50565b600061125e8484610e8d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112d857818110156112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c190612b89565b60405180910390fd5b6112d78484848403611073565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590612c89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590612b09565b60405180910390fd5b6113c9838383611c45565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790612ba9565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e59190612dfc565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115499190612d89565b60405180910390a361155c848484611d2f565b50505050565b61156c8282610b84565b61163e57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115e361106b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61164c8282610b84565b1561171f57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116c461106b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61172b611d34565b6000600160006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61176f61106b565b60405161177c9190612a16565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90612d69565b60405180910390fd5b61180260008383611c45565b80600460008282546118149190612dfc565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461186a9190612dfc565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118cf9190612d89565b60405180910390a36118e360008383611d2f565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90612c69565b60405180910390fd5b61196382600083611c45565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e190612b49565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160046000828254611a429190612eac565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611aa79190612d89565b60405180910390a3611abb83600084611d2f565b505050565b611ac8611d7d565b60018060006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b0b61106b565b604051611b189190612a16565b60405180910390a1565b611ba38363a9059cbb60e01b8484604051602401611b41929190612a68565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611dc7565b505050565b611bb28282610b84565b611c4157611bd78173ffffffffffffffffffffffffffffffffffffffff166014611e8e565b611be58360001c6020611e8e565b604051602001611bf69291906129dc565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c389190612ac7565b60405180910390fd5b5050565b611c50838383612188565b611c58610aec565b15611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90612bc9565b60405180910390fd5b611ca183610df2565b15611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890612c09565b60405180910390fd5b611cea82610df2565b15611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2190612c49565b60405180910390fd5b505050565b505050565b611d3c610aec565b611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290612b29565b60405180910390fd5b565b611d85610aec565b15611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc90612c29565b60405180910390fd5b565b6000611e29826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661218d9092919063ffffffff16565b9050600081511115611e895780806020019051810190611e4991906124b1565b611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f90612d09565b60405180910390fd5b5b505050565b606060006002836002611ea19190612e52565b611eab9190612dfc565b67ffffffffffffffff811115611eea577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f1c5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611f7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612004577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026120449190612e52565b61204e9190612dfc565b90505b600181111561213a577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106120b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106120f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061213390612f9e565b9050612051565b506000841461217e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217590612ae9565b60405180910390fd5b8091505092915050565b505050565b606061219c84846000856121a5565b90509392505050565b6060824710156121ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e190612be9565b60405180910390fd5b6121f3856122b9565b612232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222990612ce9565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161225b91906129c5565b60006040518083038185875af1925050503d8060008114612298576040519150601f19603f3d011682016040523d82523d6000602084013e61229d565b606091505b50915091506122ad8282866122dc565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b606083156122ec5782905061233c565b6000835111156122ff5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123339190612ac7565b60405180910390fd5b9392505050565b6000813590506123528161362c565b92915050565b60008151905061236781613643565b92915050565b60008135905061237c8161365a565b92915050565b60008135905061239181613671565b92915050565b6000813590506123a681613688565b92915050565b6000815190506123bb81613688565b92915050565b6000602082840312156123d357600080fd5b60006123e184828501612343565b91505092915050565b600080604083850312156123fd57600080fd5b600061240b85828601612343565b925050602061241c85828601612343565b9150509250929050565b60008060006060848603121561243b57600080fd5b600061244986828701612343565b935050602061245a86828701612343565b925050604061246b86828701612397565b9150509250925092565b6000806040838503121561248857600080fd5b600061249685828601612343565b92505060206124a785828601612397565b9150509250929050565b6000602082840312156124c357600080fd5b60006124d184828501612358565b91505092915050565b6000602082840312156124ec57600080fd5b60006124fa8482850161236d565b91505092915050565b6000806040838503121561251657600080fd5b60006125248582860161236d565b925050602061253585828601612343565b9150509250929050565b60006020828403121561255157600080fd5b600061255f84828501612382565b91505092915050565b60006020828403121561257a57600080fd5b600061258884828501612397565b91505092915050565b6000602082840312156125a357600080fd5b60006125b1848285016123ac565b91505092915050565b6125c381612ee0565b82525050565b6125d281612ef2565b82525050565b6125e181612efe565b82525050565b60006125f282612dbf565b6125fc8185612dd5565b935061260c818560208601612f6b565b80840191505092915050565b600061262382612dca565b61262d8185612de0565b935061263d818560208601612f6b565b61264681613058565b840191505092915050565b600061265c82612dca565b6126668185612df1565b9350612676818560208601612f6b565b80840191505092915050565b600061268f602083612de0565b915061269a82613069565b602082019050919050565b60006126b2602383612de0565b91506126bd82613092565b604082019050919050565b60006126d5601483612de0565b91506126e0826130e1565b602082019050919050565b60006126f8602283612de0565b91506127038261310a565b604082019050919050565b600061271b602283612de0565b915061272682613159565b604082019050919050565b600061273e601d83612de0565b9150612749826131a8565b602082019050919050565b6000612761602683612de0565b915061276c826131d1565b604082019050919050565b6000612784603183612de0565b915061278f82613220565b604082019050919050565b60006127a7602683612de0565b91506127b28261326f565b604082019050919050565b60006127ca602b83612de0565b91506127d5826132be565b604082019050919050565b60006127ed601083612de0565b91506127f88261330d565b602082019050919050565b6000612810602e83612de0565b915061281b82613336565b604082019050919050565b6000612833602183612de0565b915061283e82613385565b604082019050919050565b6000612856602583612de0565b9150612861826133d4565b604082019050919050565b6000612879601283612de0565b915061288482613423565b602082019050919050565b600061289c602483612de0565b91506128a78261344c565b604082019050919050565b60006128bf601d83612de0565b91506128ca8261349b565b602082019050919050565b60006128e2601783612df1565b91506128ed826134c4565b601782019050919050565b6000612905602a83612de0565b9150612910826134ed565b604082019050919050565b6000612928602583612de0565b91506129338261353c565b604082019050919050565b600061294b601183612df1565b91506129568261358b565b601182019050919050565b600061296e602f83612de0565b9150612979826135b4565b604082019050919050565b6000612991601f83612de0565b915061299c82613603565b602082019050919050565b6129b081612f54565b82525050565b6129bf81612f5e565b82525050565b60006129d182846125e7565b915081905092915050565b60006129e7826128d5565b91506129f38285612651565b91506129fe8261293e565b9150612a0a8284612651565b91508190509392505050565b6000602082019050612a2b60008301846125ba565b92915050565b6000606082019050612a4660008301866125ba565b612a5360208301856125ba565b612a6060408301846129a7565b949350505050565b6000604082019050612a7d60008301856125ba565b612a8a60208301846129a7565b9392505050565b6000602082019050612aa660008301846125c9565b92915050565b6000602082019050612ac160008301846125d8565b92915050565b60006020820190508181036000830152612ae18184612618565b905092915050565b60006020820190508181036000830152612b0281612682565b9050919050565b60006020820190508181036000830152612b22816126a5565b9050919050565b60006020820190508181036000830152612b42816126c8565b9050919050565b60006020820190508181036000830152612b62816126eb565b9050919050565b60006020820190508181036000830152612b828161270e565b9050919050565b60006020820190508181036000830152612ba281612731565b9050919050565b60006020820190508181036000830152612bc281612754565b9050919050565b60006020820190508181036000830152612be281612777565b9050919050565b60006020820190508181036000830152612c028161279a565b9050919050565b60006020820190508181036000830152612c22816127bd565b9050919050565b60006020820190508181036000830152612c42816127e0565b9050919050565b60006020820190508181036000830152612c6281612803565b9050919050565b60006020820190508181036000830152612c8281612826565b9050919050565b60006020820190508181036000830152612ca281612849565b9050919050565b60006020820190508181036000830152612cc28161286c565b9050919050565b60006020820190508181036000830152612ce28161288f565b9050919050565b60006020820190508181036000830152612d02816128b2565b9050919050565b60006020820190508181036000830152612d22816128f8565b9050919050565b60006020820190508181036000830152612d428161291b565b9050919050565b60006020820190508181036000830152612d6281612961565b9050919050565b60006020820190508181036000830152612d8281612984565b9050919050565b6000602082019050612d9e60008301846129a7565b92915050565b6000602082019050612db960008301846129b6565b92915050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e0782612f54565b9150612e1283612f54565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e4757612e46612ffa565b5b828201905092915050565b6000612e5d82612f54565b9150612e6883612f54565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ea157612ea0612ffa565b5b828202905092915050565b6000612eb782612f54565b9150612ec283612f54565b925082821015612ed557612ed4612ffa565b5b828203905092915050565b6000612eeb82612f34565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612f89578082015181840152602081019050612f6e565b83811115612f98576000848401525b50505050565b6000612fa982612f54565b91506000821415612fbd57612fbc612ffa565b5b600182039050919050565b60006002820490506001821680612fe057607f821691505b60208210811415612ff457612ff3613029565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5f6265666f7265546f6b656e5472616e736665723a20746f6b656e207472616e60008201527f73666572207768696c6520706175736564000000000000000000000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f5f6265666f7265546f6b656e5472616e736665723a2073656e6465722069732060008201527f626c61636b6c6973746564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f5f6265666f7265546f6b656e5472616e736665723a20726563697069656e742060008201527f697320626c61636b6c6973746564000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6d696e743a206361702065786365656465640000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61363581612ee0565b811461364057600080fd5b50565b61364c81612ef2565b811461365757600080fd5b50565b61366381612efe565b811461366e57600080fd5b50565b61367a81612f08565b811461368557600080fd5b50565b61369181612f54565b811461369c57600080fd5b5056fea26469706673582212203089a98f6ef4283ba1adaf274d8d790a82fe694c43813ef7a076e20c221caa2364736f6c6343000801003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000108a3b6fe16f2f0fb812dde22e0a84433f6dde69000000000000000000000000000000000000000000000000000000000000000a506f6c79676f6e2046540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035046540000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000108a3b6fe16f2f0fb812dde22e0a84433f6dde69000000000000000000000000000000000000000000000000000000000000000a506f6c79676f6e2046540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035046540000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Polygon FT
Arg [1] : symbol_ (string): PFT
Arg [2] : decimals_ (uint8): 18
Arg [3] : cap_ (uint256): 100000000000000000000000000
Arg [4] : owner_ (address): 0x108a3b6fe16f2f0fb812dde22e0a84433f6dde69
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [4] : 000000000000000000000000108a3b6fe16f2f0fb812dde22e0a84433f6dde69
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 506f6c79676f6e20465400000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 5046540000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
426:4159:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2606:202:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2156:98:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4433:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3423:169:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3244:106:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5192:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4391:129:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4816:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1790:98:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1703:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5925:214:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5873:234:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3157:90:0;;;:::i;:::-;;4393:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2496:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;578:89:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1615:84:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3408:125:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;973:161:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2877:86:0;;;:::i;:::-;;2895:145:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4143:244:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2367:102:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2027:49:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6594:427:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3729:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3598:115:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;617:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5241:147:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3976:149:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3253:164:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;685:66;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:202:1;2691:4;2729:32;2714:47;;;:11;:47;;;;:87;;;;2765:36;2789:11;2765:23;:36::i;:::-;2714:87;2707:94;;2606:202;;;:::o;2156:98:5:-;2210:13;2242:5;2235:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2156:98;:::o;4433:197::-;4516:4;4532:13;4548:12;:10;:12::i;:::-;4532:28;;4570:32;4579:5;4586:7;4595:6;4570:8;:32::i;:::-;4619:4;4612:11;;;4433:197;;;;:::o;3423:169:0:-;725:26;2505:16:1;2516:4;2505:10;:16::i;:::-;3538:5:0::1;3509:17;:26;3527:7;3509:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;3577:7;3558:27;;;;;;;;;;;;3423:169:::0;;:::o;3244:106:5:-;3305:7;3331:12;;3324:19;;3244:106;:::o;5192:286::-;5319:4;5335:15;5353:12;:10;:12::i;:::-;5335:30;;5375:38;5391:4;5397:7;5406:6;5375:15;:38::i;:::-;5423:27;5433:4;5439:2;5443:6;5423:9;:27::i;:::-;5467:4;5460:11;;;5192:286;;;;;:::o;4391:129:1:-;4465:7;4491:6;:12;4498:4;4491:12;;;;;;;;;;;:22;;;4484:29;;4391:129;;;:::o;4816:145::-;4899:18;4912:4;4899:12;:18::i;:::-;2505:16;2516:4;2505:10;:16::i;:::-;4929:25:::1;4940:4;4946:7;4929:10;:25::i;:::-;4816:145:::0;;;:::o;1790:98:0:-;1848:5;1872:9;;;;;;;;;;;1865:16;;1790:98;:::o;1703:81::-;1747:7;1773:4;1766:11;;1703:81;:::o;5925:214:1:-;6031:12;:10;:12::i;:::-;6020:23;;:7;:23;;;6012:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;6106:26;6118:4;6124:7;6106:11;:26::i;:::-;5925:214;;:::o;5873:234:5:-;5961:4;5977:13;5993:12;:10;:12::i;:::-;5977:28;;6015:64;6024:5;6031:7;6068:10;6040:25;6050:5;6057:7;6040:9;:25::i;:::-;:38;;;;:::i;:::-;6015:8;:64::i;:::-;6096:4;6089:11;;;5873:234;;;;:::o;3157:90:0:-;2072:4:1;3200:18:0;;2505:16:1;2516:4;2505:10;:16::i;:::-;3230:10:0::1;:8;:10::i;:::-;3157:90:::0;:::o;4393:190::-;2072:4:1;4484:18:0;;2505:16:1;2516:4;2505:10;:16::i;:::-;4522:12:0::1;4514:34;;;4557:4;4564:2;4568:7;4514:62;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;4393:190:::0;;;;:::o;2496:191::-;655:24;2505:16:1;2516:4;2505:10;:16::i;:::-;2625:5:0::1;:3;:5::i;:::-;2615:6;2593:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;2585:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2663:17;2669:2;2673:6;2663:5;:17::i;:::-;2496:191:::0;;;:::o;578:89:7:-;633:27;639:12;:10;:12::i;:::-;653:6;633:5;:27::i;:::-;578:89;:::o;1615:84:4:-;1662:4;1685:7;;;;;;;;;;;1678:14;;1615:84;:::o;3408:125:5:-;3482:7;3508:9;:18;3518:7;3508:18;;;;;;;;;;;;;;;;3501:25;;3408:125;;;:::o;973:161:7:-;1049:46;1065:7;1074:12;:10;:12::i;:::-;1088:6;1049:15;:46::i;:::-;1105:22;1111:7;1120:6;1105:5;:22::i;:::-;973:161;;:::o;2877:86:0:-;2072:4:1;2918:18:0;;2505:16:1;2516:4;2505:10;:16::i;:::-;2948:8:0::1;:6;:8::i;:::-;2877:86:::0;:::o;2895:145:1:-;2981:4;3004:6;:12;3011:4;3004:12;;;;;;;;;;;:20;;:29;3025:7;3004:29;;;;;;;;;;;;;;;;;;;;;;;;;2997:36;;2895:145;;;;:::o;4143:244:0:-;2072:4:1;4216:18:0;;2505:16:1;2516:4;2505:10;:16::i;:::-;4246:12:0::1;4268;4246:35;;4291:15;4309:5;:15;;;4333:4;4309:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4291:48;;4349:31;4368:2;4372:7;4349:5;:18;;;;:31;;;;;:::i;:::-;2531:1:1;;4143:244:0::0;;;:::o;2367:102:5:-;2423:13;2455:7;2448:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2367:102;:::o;2027:49:1:-;2072:4;2027:49;;;:::o;6594:427:5:-;6687:4;6703:13;6719:12;:10;:12::i;:::-;6703:28;;6741:24;6768:25;6778:5;6785:7;6768:9;:25::i;:::-;6741:52;;6831:15;6811:16;:35;;6803:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6922:60;6931:5;6938:7;6966:15;6947:16;:34;6922:8;:60::i;:::-;7010:4;7003:11;;;;6594:427;;;;:::o;3729:189::-;3808:4;3824:13;3840:12;:10;:12::i;:::-;3824:28;;3862;3872:5;3879:2;3883:6;3862:9;:28::i;:::-;3907:4;3900:11;;;3729:189;;;;:::o;3598:115:0:-;3657:4;3680:17;:26;3698:7;3680:26;;;;;;;;;;;;;;;;;;;;;;;;;3673:33;;3598:115;;;:::o;617:62::-;655:24;617:62;:::o;5241:147:1:-;5325:18;5338:4;5325:12;:18::i;:::-;2505:16;2516:4;2505:10;:16::i;:::-;5355:26:::1;5367:4;5373:7;5355:11;:26::i;:::-;5241:147:::0;;;:::o;3976:149:5:-;4065:7;4091:11;:18;4103:5;4091:18;;;;;;;;;;;;;;;:27;4110:7;4091:27;;;;;;;;;;;;;;;;4084:34;;3976:149;;;;:::o;3253:164:0:-;725:26;2505:16:1;2516:4;2505:10;:16::i;:::-;3366:4:0::1;3337:17;:26;3355:7;3337:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;3402:7;3385:25;;;;;;;;;;;;3253:164:::0;;:::o;685:66::-;725:26;685:66;:::o;829:155:15:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;640:96:13:-;693:7;719:10;712:17;;640:96;:::o;10110:370:5:-;10258:1;10241:19;;:5;:19;;;;10233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10338:1;10319:21;;:7;:21;;;;10311:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10420:6;10390:11;:18;10402:5;10390:18;;;;;;;;;;;;;;;:27;10409:7;10390:27;;;;;;;;;;;;;;;:36;;;;10457:7;10441:32;;10450:5;10441:32;;;10466:6;10441:32;;;;;;:::i;:::-;;;;;;;;10110:370;;;:::o;3334:103:1:-;3400:30;3411:4;3417:12;:10;:12::i;:::-;3400:10;:30::i;:::-;3334:103;:::o;10761:441:5:-;10891:24;10918:25;10928:5;10935:7;10918:9;:25::i;:::-;10891:52;;10977:17;10957:16;:37;10953:243;;11038:6;11018:16;:26;;11010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11120:51;11129:5;11136:7;11164:6;11145:16;:25;11120:8;:51::i;:::-;10953:243;10761:441;;;;:::o;7475:651::-;7617:1;7601:18;;:4;:18;;;;7593:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7693:1;7679:16;;:2;:16;;;;7671:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7746:38;7767:4;7773:2;7777:6;7746:20;:38::i;:::-;7795:19;7817:9;:15;7827:4;7817:15;;;;;;;;;;;;;;;;7795:37;;7865:6;7850:11;:21;;7842:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7980:6;7966:11;:20;7948:9;:15;7958:4;7948:15;;;;;;;;;;;;;;;:38;;;;8023:6;8006:9;:13;8016:2;8006:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;8060:2;8045:26;;8054:4;8045:26;;;8064:6;8045:26;;;;;;:::i;:::-;;;;;;;;8082:37;8102:4;8108:2;8112:6;8082:19;:37::i;:::-;7475:651;;;;:::o;7474:233:1:-;7557:22;7565:4;7571:7;7557;:22::i;:::-;7552:149;;7627:4;7595:6;:12;7602:4;7595:12;;;;;;;;;;;:20;;:29;7616:7;7595:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;7677:12;:10;:12::i;:::-;7650:40;;7668:7;7650:40;;7662:4;7650:40;;;;;;;;;;7552:149;7474:233;;:::o;7878:234::-;7961:22;7969:4;7975:7;7961;:22::i;:::-;7957:149;;;8031:5;7999:6;:12;8006:4;7999:12;;;;;;;;;;;:20;;:29;8020:7;7999:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;8082:12;:10;:12::i;:::-;8055:40;;8073:7;8055:40;;8067:4;8055:40;;;;;;;;;;7957:149;7878:234;;:::o;2433:117:4:-;1486:16;:14;:16::i;:::-;2501:5:::1;2491:7;;:15;;;;;;;;;;;;;;;;;;2521:22;2530:12;:10;:12::i;:::-;2521:22;;;;;;:::i;:::-;;;;;;;;2433:117::o:0;8402:389:5:-;8504:1;8485:21;;:7;:21;;;;8477:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8553:49;8582:1;8586:7;8595:6;8553:20;:49::i;:::-;8629:6;8613:12;;:22;;;;;;;:::i;:::-;;;;;;;;8667:6;8645:9;:18;8655:7;8645:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8709:7;8688:37;;8705:1;8688:37;;;8718:6;8688:37;;;;;;:::i;:::-;;;;;;;;8736:48;8764:1;8768:7;8777:6;8736:19;:48::i;:::-;8402:389;;:::o;9111:576::-;9213:1;9194:21;;:7;:21;;;;9186:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9264:49;9285:7;9302:1;9306:6;9264:20;:49::i;:::-;9324:22;9349:9;:18;9359:7;9349:18;;;;;;;;;;;;;;;;9324:43;;9403:6;9385:14;:24;;9377:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9520:6;9503:14;:23;9482:9;:18;9492:7;9482:18;;;;;;;;;;;;;;;:44;;;;9562:6;9546:12;;:22;;;;;;;:::i;:::-;;;;;;;;9610:1;9584:37;;9593:7;9584:37;;;9614:6;9584:37;;;;;;:::i;:::-;;;;;;;;9632:48;9652:7;9669:1;9673:6;9632:19;:48::i;:::-;9111:576;;;:::o;2186:115:4:-;1239:19;:17;:19::i;:::-;2255:4:::1;2245:7:::0;::::1;:14;;;;;;;;;;;;;;;;;;2274:20;2281:12;:10;:12::i;:::-;2274:20;;;;;;:::i;:::-;;;;;;;;2186:115::o:0;763:205:10:-;875:86;895:5;925:23;;;950:2;954:5;902:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;875:19;:86::i;:::-;763:205;;;:::o;3718:492:1:-;3806:22;3814:4;3820:7;3806;:22::i;:::-;3801:403;;3989:41;4017:7;3989:41;;4027:2;3989:19;:41::i;:::-;4101:38;4129:4;4121:13;;4136:2;4101:19;:38::i;:::-;3896:265;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3844:349;;;;;;;;;;;:::i;:::-;;;;;;;;3801:403;3718:492;;:::o;3719:418:0:-;3827:44;3854:4;3860:2;3864:6;3827:26;:44::i;:::-;3899:8;:6;:8::i;:::-;3898:9;3890:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3980:17;3992:4;3980:11;:17::i;:::-;3979:18;3971:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;4064:15;4076:2;4064:11;:15::i;:::-;4063:16;4055:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;3719:418;;;:::o;12495:120:5:-;;;;:::o;1945:106:4:-;2011:8;:6;:8::i;:::-;2003:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1945:106::o;1767:::-;1837:8;:6;:8::i;:::-;1836:9;1828:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1767:106::o;3747:706:10:-;4166:23;4192:69;4220:4;4192:69;;;;;;;;;;;;;;;;;4200:5;4192:27;;;;:69;;;;;:::i;:::-;4166:95;;4295:1;4275:10;:17;:21;4271:176;;;4370:10;4359:30;;;;;;;;;;;;:::i;:::-;4351:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;4271:176;3747:706;;;:::o;1652:441:14:-;1727:13;1752:19;1797:1;1788:6;1784:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1774:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1752:47;;1809:15;:6;1816:1;1809:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;1834;:6;1841:1;1834:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;1864:9;1889:1;1880:6;1876:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1864:26;;1859:132;1896:1;1892;:5;1859:132;;;1930:12;1951:3;1943:5;:11;1930:25;;;;;;;;;;;;;;;;;;1918:6;1925:1;1918:9;;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;1979:1;1969:11;;;;;1899:3;;;;:::i;:::-;;;1859:132;;;;2017:1;2008:5;:10;2000:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2079:6;2065:21;;;1652:441;;;;:::o;11786:121:5:-;;;;:::o;3861:223:12:-;3994:12;4025:52;4047:6;4055:4;4061:1;4064:12;4025:21;:52::i;:::-;4018:59;;3861:223;;;;;:::o;4948:499::-;5113:12;5170:5;5145:21;:30;;5137:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;5236:18;5247:6;5236:10;:18::i;:::-;5228:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5300:12;5314:23;5341:6;:11;;5360:5;5367:4;5341:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5299:73;;;;5389:51;5406:7;5415:10;5427:12;5389:16;:51::i;:::-;5382:58;;;;4948:499;;;;;;:::o;1175:320::-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;7561:742::-;7707:12;7735:7;7731:566;;;7765:10;7758:17;;;;7731:566;7896:1;7876:10;:17;:21;7872:415;;;8120:10;8114:17;8180:15;8167:10;8163:2;8159:19;8152:44;8069:145;8259:12;8252:20;;;;;;;;;;;:::i;:::-;;;;;;;;7561:742;;;;;;:::o;7:139:17:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:137::-;;237:6;231:13;222:22;;253:30;277:5;253:30;:::i;:::-;212:77;;;;:::o;295:139::-;;379:6;366:20;357:29;;395:33;422:5;395:33;:::i;:::-;347:87;;;;:::o;440:137::-;;523:6;510:20;501:29;;539:32;565:5;539:32;:::i;:::-;491:86;;;;:::o;583:139::-;;667:6;654:20;645:29;;683:33;710:5;683:33;:::i;:::-;635:87;;;;:::o;728:143::-;;816:6;810:13;801:22;;832:33;859:5;832:33;:::i;:::-;791:80;;;;:::o;877:262::-;;985:2;973:9;964:7;960:23;956:32;953:2;;;1001:1;998;991:12;953:2;1044:1;1069:53;1114:7;1105:6;1094:9;1090:22;1069:53;:::i;:::-;1059:63;;1015:117;943:196;;;;:::o;1145:407::-;;;1270:2;1258:9;1249:7;1245:23;1241:32;1238:2;;;1286:1;1283;1276:12;1238:2;1329:1;1354:53;1399:7;1390:6;1379:9;1375:22;1354:53;:::i;:::-;1344:63;;1300:117;1456:2;1482:53;1527:7;1518:6;1507:9;1503:22;1482:53;:::i;:::-;1472:63;;1427:118;1228:324;;;;;:::o;1558:552::-;;;;1700:2;1688:9;1679:7;1675:23;1671:32;1668:2;;;1716:1;1713;1706:12;1668:2;1759:1;1784:53;1829:7;1820:6;1809:9;1805:22;1784:53;:::i;:::-;1774:63;;1730:117;1886:2;1912:53;1957:7;1948:6;1937:9;1933:22;1912:53;:::i;:::-;1902:63;;1857:118;2014:2;2040:53;2085:7;2076:6;2065:9;2061:22;2040:53;:::i;:::-;2030:63;;1985:118;1658:452;;;;;:::o;2116:407::-;;;2241:2;2229:9;2220:7;2216:23;2212:32;2209:2;;;2257:1;2254;2247:12;2209:2;2300:1;2325:53;2370:7;2361:6;2350:9;2346:22;2325:53;:::i;:::-;2315:63;;2271:117;2427:2;2453:53;2498:7;2489:6;2478:9;2474:22;2453:53;:::i;:::-;2443:63;;2398:118;2199:324;;;;;:::o;2529:278::-;;2645:2;2633:9;2624:7;2620:23;2616:32;2613:2;;;2661:1;2658;2651:12;2613:2;2704:1;2729:61;2782:7;2773:6;2762:9;2758:22;2729:61;:::i;:::-;2719:71;;2675:125;2603:204;;;;:::o;2813:262::-;;2921:2;2909:9;2900:7;2896:23;2892:32;2889:2;;;2937:1;2934;2927:12;2889:2;2980:1;3005:53;3050:7;3041:6;3030:9;3026:22;3005:53;:::i;:::-;2995:63;;2951:117;2879:196;;;;:::o;3081:407::-;;;3206:2;3194:9;3185:7;3181:23;3177:32;3174:2;;;3222:1;3219;3212:12;3174:2;3265:1;3290:53;3335:7;3326:6;3315:9;3311:22;3290:53;:::i;:::-;3280:63;;3236:117;3392:2;3418:53;3463:7;3454:6;3443:9;3439:22;3418:53;:::i;:::-;3408:63;;3363:118;3164:324;;;;;:::o;3494:260::-;;3601:2;3589:9;3580:7;3576:23;3572:32;3569:2;;;3617:1;3614;3607:12;3569:2;3660:1;3685:52;3729:7;3720:6;3709:9;3705:22;3685:52;:::i;:::-;3675:62;;3631:116;3559:195;;;;:::o;3760:262::-;;3868:2;3856:9;3847:7;3843:23;3839:32;3836:2;;;3884:1;3881;3874:12;3836:2;3927:1;3952:53;3997:7;3988:6;3977:9;3973:22;3952:53;:::i;:::-;3942:63;;3898:117;3826:196;;;;:::o;4028:284::-;;4147:2;4135:9;4126:7;4122:23;4118:32;4115:2;;;4163:1;4160;4153:12;4115:2;4206:1;4231:64;4287:7;4278:6;4267:9;4263:22;4231:64;:::i;:::-;4221:74;;4177:128;4105:207;;;;:::o;4318:118::-;4405:24;4423:5;4405:24;:::i;:::-;4400:3;4393:37;4383:53;;:::o;4442:109::-;4523:21;4538:5;4523:21;:::i;:::-;4518:3;4511:34;4501:50;;:::o;4557:118::-;4644:24;4662:5;4644:24;:::i;:::-;4639:3;4632:37;4622:53;;:::o;4681:373::-;;4813:38;4845:5;4813:38;:::i;:::-;4867:88;4948:6;4943:3;4867:88;:::i;:::-;4860:95;;4964:52;5009:6;5004:3;4997:4;4990:5;4986:16;4964:52;:::i;:::-;5041:6;5036:3;5032:16;5025:23;;4789:265;;;;;:::o;5060:364::-;;5176:39;5209:5;5176:39;:::i;:::-;5231:71;5295:6;5290:3;5231:71;:::i;:::-;5224:78;;5311:52;5356:6;5351:3;5344:4;5337:5;5333:16;5311:52;:::i;:::-;5388:29;5410:6;5388:29;:::i;:::-;5383:3;5379:39;5372:46;;5152:272;;;;;:::o;5430:377::-;;5564:39;5597:5;5564:39;:::i;:::-;5619:89;5701:6;5696:3;5619:89;:::i;:::-;5612:96;;5717:52;5762:6;5757:3;5750:4;5743:5;5739:16;5717:52;:::i;:::-;5794:6;5789:3;5785:16;5778:23;;5540:267;;;;;:::o;5813:366::-;;5976:67;6040:2;6035:3;5976:67;:::i;:::-;5969:74;;6052:93;6141:3;6052:93;:::i;:::-;6170:2;6165:3;6161:12;6154:19;;5959:220;;;:::o;6185:366::-;;6348:67;6412:2;6407:3;6348:67;:::i;:::-;6341:74;;6424:93;6513:3;6424:93;:::i;:::-;6542:2;6537:3;6533:12;6526:19;;6331:220;;;:::o;6557:366::-;;6720:67;6784:2;6779:3;6720:67;:::i;:::-;6713:74;;6796:93;6885:3;6796:93;:::i;:::-;6914:2;6909:3;6905:12;6898:19;;6703:220;;;:::o;6929:366::-;;7092:67;7156:2;7151:3;7092:67;:::i;:::-;7085:74;;7168:93;7257:3;7168:93;:::i;:::-;7286:2;7281:3;7277:12;7270:19;;7075:220;;;:::o;7301:366::-;;7464:67;7528:2;7523:3;7464:67;:::i;:::-;7457:74;;7540:93;7629:3;7540:93;:::i;:::-;7658:2;7653:3;7649:12;7642:19;;7447:220;;;:::o;7673:366::-;;7836:67;7900:2;7895:3;7836:67;:::i;:::-;7829:74;;7912:93;8001:3;7912:93;:::i;:::-;8030:2;8025:3;8021:12;8014:19;;7819:220;;;:::o;8045:366::-;;8208:67;8272:2;8267:3;8208:67;:::i;:::-;8201:74;;8284:93;8373:3;8284:93;:::i;:::-;8402:2;8397:3;8393:12;8386:19;;8191:220;;;:::o;8417:366::-;;8580:67;8644:2;8639:3;8580:67;:::i;:::-;8573:74;;8656:93;8745:3;8656:93;:::i;:::-;8774:2;8769:3;8765:12;8758:19;;8563:220;;;:::o;8789:366::-;;8952:67;9016:2;9011:3;8952:67;:::i;:::-;8945:74;;9028:93;9117:3;9028:93;:::i;:::-;9146:2;9141:3;9137:12;9130:19;;8935:220;;;:::o;9161:366::-;;9324:67;9388:2;9383:3;9324:67;:::i;:::-;9317:74;;9400:93;9489:3;9400:93;:::i;:::-;9518:2;9513:3;9509:12;9502:19;;9307:220;;;:::o;9533:366::-;;9696:67;9760:2;9755:3;9696:67;:::i;:::-;9689:74;;9772:93;9861:3;9772:93;:::i;:::-;9890:2;9885:3;9881:12;9874:19;;9679:220;;;:::o;9905:366::-;;10068:67;10132:2;10127:3;10068:67;:::i;:::-;10061:74;;10144:93;10233:3;10144:93;:::i;:::-;10262:2;10257:3;10253:12;10246:19;;10051:220;;;:::o;10277:366::-;;10440:67;10504:2;10499:3;10440:67;:::i;:::-;10433:74;;10516:93;10605:3;10516:93;:::i;:::-;10634:2;10629:3;10625:12;10618:19;;10423:220;;;:::o;10649:366::-;;10812:67;10876:2;10871:3;10812:67;:::i;:::-;10805:74;;10888:93;10977:3;10888:93;:::i;:::-;11006:2;11001:3;10997:12;10990:19;;10795:220;;;:::o;11021:366::-;;11184:67;11248:2;11243:3;11184:67;:::i;:::-;11177:74;;11260:93;11349:3;11260:93;:::i;:::-;11378:2;11373:3;11369:12;11362:19;;11167:220;;;:::o;11393:366::-;;11556:67;11620:2;11615:3;11556:67;:::i;:::-;11549:74;;11632:93;11721:3;11632:93;:::i;:::-;11750:2;11745:3;11741:12;11734:19;;11539:220;;;:::o;11765:366::-;;11928:67;11992:2;11987:3;11928:67;:::i;:::-;11921:74;;12004:93;12093:3;12004:93;:::i;:::-;12122:2;12117:3;12113:12;12106:19;;11911:220;;;:::o;12137:402::-;;12318:85;12400:2;12395:3;12318:85;:::i;:::-;12311:92;;12412:93;12501:3;12412:93;:::i;:::-;12530:2;12525:3;12521:12;12514:19;;12301:238;;;:::o;12545:366::-;;12708:67;12772:2;12767:3;12708:67;:::i;:::-;12701:74;;12784:93;12873:3;12784:93;:::i;:::-;12902:2;12897:3;12893:12;12886:19;;12691:220;;;:::o;12917:366::-;;13080:67;13144:2;13139:3;13080:67;:::i;:::-;13073:74;;13156:93;13245:3;13156:93;:::i;:::-;13274:2;13269:3;13265:12;13258:19;;13063:220;;;:::o;13289:402::-;;13470:85;13552:2;13547:3;13470:85;:::i;:::-;13463:92;;13564:93;13653:3;13564:93;:::i;:::-;13682:2;13677:3;13673:12;13666:19;;13453:238;;;:::o;13697:366::-;;13860:67;13924:2;13919:3;13860:67;:::i;:::-;13853:74;;13936:93;14025:3;13936:93;:::i;:::-;14054:2;14049:3;14045:12;14038:19;;13843:220;;;:::o;14069:366::-;;14232:67;14296:2;14291:3;14232:67;:::i;:::-;14225:74;;14308:93;14397:3;14308:93;:::i;:::-;14426:2;14421:3;14417:12;14410:19;;14215:220;;;:::o;14441:118::-;14528:24;14546:5;14528:24;:::i;:::-;14523:3;14516:37;14506:53;;:::o;14565:112::-;14648:22;14664:5;14648:22;:::i;:::-;14643:3;14636:35;14626:51;;:::o;14683:271::-;;14835:93;14924:3;14915:6;14835:93;:::i;:::-;14828:100;;14945:3;14938:10;;14817:137;;;;:::o;14960:967::-;;15364:148;15508:3;15364:148;:::i;:::-;15357:155;;15529:95;15620:3;15611:6;15529:95;:::i;:::-;15522:102;;15641:148;15785:3;15641:148;:::i;:::-;15634:155;;15806:95;15897:3;15888:6;15806:95;:::i;:::-;15799:102;;15918:3;15911:10;;15346:581;;;;;:::o;15933:222::-;;16064:2;16053:9;16049:18;16041:26;;16077:71;16145:1;16134:9;16130:17;16121:6;16077:71;:::i;:::-;16031:124;;;;:::o;16161:442::-;;16348:2;16337:9;16333:18;16325:26;;16361:71;16429:1;16418:9;16414:17;16405:6;16361:71;:::i;:::-;16442:72;16510:2;16499:9;16495:18;16486:6;16442:72;:::i;:::-;16524;16592:2;16581:9;16577:18;16568:6;16524:72;:::i;:::-;16315:288;;;;;;:::o;16609:332::-;;16768:2;16757:9;16753:18;16745:26;;16781:71;16849:1;16838:9;16834:17;16825:6;16781:71;:::i;:::-;16862:72;16930:2;16919:9;16915:18;16906:6;16862:72;:::i;:::-;16735:206;;;;;:::o;16947:210::-;;17072:2;17061:9;17057:18;17049:26;;17085:65;17147:1;17136:9;17132:17;17123:6;17085:65;:::i;:::-;17039:118;;;;:::o;17163:222::-;;17294:2;17283:9;17279:18;17271:26;;17307:71;17375:1;17364:9;17360:17;17351:6;17307:71;:::i;:::-;17261:124;;;;:::o;17391:313::-;;17542:2;17531:9;17527:18;17519:26;;17591:9;17585:4;17581:20;17577:1;17566:9;17562:17;17555:47;17619:78;17692:4;17683:6;17619:78;:::i;:::-;17611:86;;17509:195;;;;:::o;17710:419::-;;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;;17881:248;;;:::o;18135:419::-;;18339:2;18328:9;18324:18;18316:26;;18388:9;18382:4;18378:20;18374:1;18363:9;18359:17;18352:47;18416:131;18542:4;18416:131;:::i;:::-;18408:139;;18306:248;;;:::o;18560:419::-;;18764:2;18753:9;18749:18;18741:26;;18813:9;18807:4;18803:20;18799:1;18788:9;18784:17;18777:47;18841:131;18967:4;18841:131;:::i;:::-;18833:139;;18731:248;;;:::o;18985:419::-;;19189:2;19178:9;19174:18;19166:26;;19238:9;19232:4;19228:20;19224:1;19213:9;19209:17;19202:47;19266:131;19392:4;19266:131;:::i;:::-;19258:139;;19156:248;;;:::o;19410:419::-;;19614:2;19603:9;19599:18;19591:26;;19663:9;19657:4;19653:20;19649:1;19638:9;19634:17;19627:47;19691:131;19817:4;19691:131;:::i;:::-;19683:139;;19581:248;;;:::o;19835:419::-;;20039:2;20028:9;20024:18;20016:26;;20088:9;20082:4;20078:20;20074:1;20063:9;20059:17;20052:47;20116:131;20242:4;20116:131;:::i;:::-;20108:139;;20006:248;;;:::o;20260:419::-;;20464:2;20453:9;20449:18;20441:26;;20513:9;20507:4;20503:20;20499:1;20488:9;20484:17;20477:47;20541:131;20667:4;20541:131;:::i;:::-;20533:139;;20431:248;;;:::o;20685:419::-;;20889:2;20878:9;20874:18;20866:26;;20938:9;20932:4;20928:20;20924:1;20913:9;20909:17;20902:47;20966:131;21092:4;20966:131;:::i;:::-;20958:139;;20856:248;;;:::o;21110:419::-;;21314:2;21303:9;21299:18;21291:26;;21363:9;21357:4;21353:20;21349:1;21338:9;21334:17;21327:47;21391:131;21517:4;21391:131;:::i;:::-;21383:139;;21281:248;;;:::o;21535:419::-;;21739:2;21728:9;21724:18;21716:26;;21788:9;21782:4;21778:20;21774:1;21763:9;21759:17;21752:47;21816:131;21942:4;21816:131;:::i;:::-;21808:139;;21706:248;;;:::o;21960:419::-;;22164:2;22153:9;22149:18;22141:26;;22213:9;22207:4;22203:20;22199:1;22188:9;22184:17;22177:47;22241:131;22367:4;22241:131;:::i;:::-;22233:139;;22131:248;;;:::o;22385:419::-;;22589:2;22578:9;22574:18;22566:26;;22638:9;22632:4;22628:20;22624:1;22613:9;22609:17;22602:47;22666:131;22792:4;22666:131;:::i;:::-;22658:139;;22556:248;;;:::o;22810:419::-;;23014:2;23003:9;22999:18;22991:26;;23063:9;23057:4;23053:20;23049:1;23038:9;23034:17;23027:47;23091:131;23217:4;23091:131;:::i;:::-;23083:139;;22981:248;;;:::o;23235:419::-;;23439:2;23428:9;23424:18;23416:26;;23488:9;23482:4;23478:20;23474:1;23463:9;23459:17;23452:47;23516:131;23642:4;23516:131;:::i;:::-;23508:139;;23406:248;;;:::o;23660:419::-;;23864:2;23853:9;23849:18;23841:26;;23913:9;23907:4;23903:20;23899:1;23888:9;23884:17;23877:47;23941:131;24067:4;23941:131;:::i;:::-;23933:139;;23831:248;;;:::o;24085:419::-;;24289:2;24278:9;24274:18;24266:26;;24338:9;24332:4;24328:20;24324:1;24313:9;24309:17;24302:47;24366:131;24492:4;24366:131;:::i;:::-;24358:139;;24256:248;;;:::o;24510:419::-;;24714:2;24703:9;24699:18;24691:26;;24763:9;24757:4;24753:20;24749:1;24738:9;24734:17;24727:47;24791:131;24917:4;24791:131;:::i;:::-;24783:139;;24681:248;;;:::o;24935:419::-;;25139:2;25128:9;25124:18;25116:26;;25188:9;25182:4;25178:20;25174:1;25163:9;25159:17;25152:47;25216:131;25342:4;25216:131;:::i;:::-;25208:139;;25106:248;;;:::o;25360:419::-;;25564:2;25553:9;25549:18;25541:26;;25613:9;25607:4;25603:20;25599:1;25588:9;25584:17;25577:47;25641:131;25767:4;25641:131;:::i;:::-;25633:139;;25531:248;;;:::o;25785:419::-;;25989:2;25978:9;25974:18;25966:26;;26038:9;26032:4;26028:20;26024:1;26013:9;26009:17;26002:47;26066:131;26192:4;26066:131;:::i;:::-;26058:139;;25956:248;;;:::o;26210:419::-;;26414:2;26403:9;26399:18;26391:26;;26463:9;26457:4;26453:20;26449:1;26438:9;26434:17;26427:47;26491:131;26617:4;26491:131;:::i;:::-;26483:139;;26381:248;;;:::o;26635:222::-;;26766:2;26755:9;26751:18;26743:26;;26779:71;26847:1;26836:9;26832:17;26823:6;26779:71;:::i;:::-;26733:124;;;;:::o;26863:214::-;;26990:2;26979:9;26975:18;26967:26;;27003:67;27067:1;27056:9;27052:17;27043:6;27003:67;:::i;:::-;26957:120;;;;:::o;27083:98::-;;27168:5;27162:12;27152:22;;27141:40;;;:::o;27187:99::-;;27273:5;27267:12;27257:22;;27246:40;;;:::o;27292:147::-;;27430:3;27415:18;;27405:34;;;;:::o;27445:169::-;;27563:6;27558:3;27551:19;27603:4;27598:3;27594:14;27579:29;;27541:73;;;;:::o;27620:148::-;;27759:3;27744:18;;27734:34;;;;:::o;27774:305::-;;27833:20;27851:1;27833:20;:::i;:::-;27828:25;;27867:20;27885:1;27867:20;:::i;:::-;27862:25;;28021:1;27953:66;27949:74;27946:1;27943:81;27940:2;;;28027:18;;:::i;:::-;27940:2;28071:1;28068;28064:9;28057:16;;27818:261;;;;:::o;28085:348::-;;28148:20;28166:1;28148:20;:::i;:::-;28143:25;;28182:20;28200:1;28182:20;:::i;:::-;28177:25;;28370:1;28302:66;28298:74;28295:1;28292:81;28287:1;28280:9;28273:17;28269:105;28266:2;;;28377:18;;:::i;:::-;28266:2;28425:1;28422;28418:9;28407:20;;28133:300;;;;:::o;28439:191::-;;28499:20;28517:1;28499:20;:::i;:::-;28494:25;;28533:20;28551:1;28533:20;:::i;:::-;28528:25;;28572:1;28569;28566:8;28563:2;;;28577:18;;:::i;:::-;28563:2;28622:1;28619;28615:9;28607:17;;28484:146;;;;:::o;28636:96::-;;28702:24;28720:5;28702:24;:::i;:::-;28691:35;;28681:51;;;:::o;28738:90::-;;28815:5;28808:13;28801:21;28790:32;;28780:48;;;:::o;28834:77::-;;28900:5;28889:16;;28879:32;;;:::o;28917:149::-;;28993:66;28986:5;28982:78;28971:89;;28961:105;;;:::o;29072:126::-;;29149:42;29142:5;29138:54;29127:65;;29117:81;;;:::o;29204:77::-;;29270:5;29259:16;;29249:32;;;:::o;29287:86::-;;29362:4;29355:5;29351:16;29340:27;;29330:43;;;:::o;29379:307::-;29447:1;29457:113;29471:6;29468:1;29465:13;29457:113;;;29556:1;29551:3;29547:11;29541:18;29537:1;29532:3;29528:11;29521:39;29493:2;29490:1;29486:10;29481:15;;29457:113;;;29588:6;29585:1;29582:13;29579:2;;;29668:1;29659:6;29654:3;29650:16;29643:27;29579:2;29428:258;;;;:::o;29692:171::-;;29754:24;29772:5;29754:24;:::i;:::-;29745:33;;29800:4;29793:5;29790:15;29787:2;;;29808:18;;:::i;:::-;29787:2;29855:1;29848:5;29844:13;29837:20;;29735:128;;;:::o;29869:320::-;;29950:1;29944:4;29940:12;29930:22;;29997:1;29991:4;29987:12;30018:18;30008:2;;30074:4;30066:6;30062:17;30052:27;;30008:2;30136;30128:6;30125:14;30105:18;30102:38;30099:2;;;30155:18;;:::i;:::-;30099:2;29920:269;;;;:::o;30195:180::-;30243:77;30240:1;30233:88;30340:4;30337:1;30330:15;30364:4;30361:1;30354:15;30381:180;30429:77;30426:1;30419:88;30526:4;30523:1;30516:15;30550:4;30547:1;30540:15;30567:102;;30659:2;30655:7;30650:2;30643:5;30639:14;30635:28;30625:38;;30615:54;;;:::o;30675:182::-;30815:34;30811:1;30803:6;30799:14;30792:58;30781:76;:::o;30863:222::-;31003:34;30999:1;30991:6;30987:14;30980:58;31072:5;31067:2;31059:6;31055:15;31048:30;30969:116;:::o;31091:170::-;31231:22;31227:1;31219:6;31215:14;31208:46;31197:64;:::o;31267:221::-;31407:34;31403:1;31395:6;31391:14;31384:58;31476:4;31471:2;31463:6;31459:15;31452:29;31373:115;:::o;31494:221::-;31634:34;31630:1;31622:6;31618:14;31611:58;31703:4;31698:2;31690:6;31686:15;31679:29;31600:115;:::o;31721:179::-;31861:31;31857:1;31849:6;31845:14;31838:55;31827:73;:::o;31906:225::-;32046:34;32042:1;32034:6;32030:14;32023:58;32115:8;32110:2;32102:6;32098:15;32091:33;32012:119;:::o;32137:236::-;32277:34;32273:1;32265:6;32261:14;32254:58;32346:19;32341:2;32333:6;32329:15;32322:44;32243:130;:::o;32379:225::-;32519:34;32515:1;32507:6;32503:14;32496:58;32588:8;32583:2;32575:6;32571:15;32564:33;32485:119;:::o;32610:230::-;32750:34;32746:1;32738:6;32734:14;32727:58;32819:13;32814:2;32806:6;32802:15;32795:38;32716:124;:::o;32846:166::-;32986:18;32982:1;32974:6;32970:14;32963:42;32952:60;:::o;33018:233::-;33158:34;33154:1;33146:6;33142:14;33135:58;33227:16;33222:2;33214:6;33210:15;33203:41;33124:127;:::o;33257:220::-;33397:34;33393:1;33385:6;33381:14;33374:58;33466:3;33461:2;33453:6;33449:15;33442:28;33363:114;:::o;33483:224::-;33623:34;33619:1;33611:6;33607:14;33600:58;33692:7;33687:2;33679:6;33675:15;33668:32;33589:118;:::o;33713:168::-;33853:20;33849:1;33841:6;33837:14;33830:44;33819:62;:::o;33887:223::-;34027:34;34023:1;34015:6;34011:14;34004:58;34096:6;34091:2;34083:6;34079:15;34072:31;33993:117;:::o;34116:179::-;34256:31;34252:1;34244:6;34240:14;34233:55;34222:73;:::o;34301:173::-;34441:25;34437:1;34429:6;34425:14;34418:49;34407:67;:::o;34480:229::-;34620:34;34616:1;34608:6;34604:14;34597:58;34689:12;34684:2;34676:6;34672:15;34665:37;34586:123;:::o;34715:224::-;34855:34;34851:1;34843:6;34839:14;34832:58;34924:7;34919:2;34911:6;34907:15;34900:32;34821:118;:::o;34945:167::-;35085:19;35081:1;35073:6;35069:14;35062:43;35051:61;:::o;35118:234::-;35258:34;35254:1;35246:6;35242:14;35235:58;35327:17;35322:2;35314:6;35310:15;35303:42;35224:128;:::o;35358:181::-;35498:33;35494:1;35486:6;35482:14;35475:57;35464:75;:::o;35545:122::-;35618:24;35636:5;35618:24;:::i;:::-;35611:5;35608:35;35598:2;;35657:1;35654;35647:12;35598:2;35588:79;:::o;35673:116::-;35743:21;35758:5;35743:21;:::i;:::-;35736:5;35733:32;35723:2;;35779:1;35776;35769:12;35723:2;35713:76;:::o;35795:122::-;35868:24;35886:5;35868:24;:::i;:::-;35861:5;35858:35;35848:2;;35907:1;35904;35897:12;35848:2;35838:79;:::o;35923:120::-;35995:23;36012:5;35995:23;:::i;:::-;35988:5;35985:34;35975:2;;36033:1;36030;36023:12;35975:2;35965:78;:::o;36049:122::-;36122:24;36140:5;36122:24;:::i;:::-;36115:5;36112:35;36102:2;;36161:1;36158;36151:12;36102:2;36092:79;:::o
Swarm Source
ipfs://3089a98f6ef4283ba1adaf274d8d790a82fe694c43813ef7a076e20c221caa23