Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 66 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21739659 | 52 days ago | IN | 0 ETH | 0.00012354 | ||||
Transfer | 21615842 | 69 days ago | IN | 0 ETH | 0.00049654 | ||||
Transfer | 21346127 | 107 days ago | IN | 0 ETH | 0.00073071 | ||||
Transfer | 21346065 | 107 days ago | IN | 0 ETH | 0.00097694 | ||||
Transfer | 21346011 | 107 days ago | IN | 0 ETH | 0.00131791 | ||||
Transfer | 21346003 | 107 days ago | IN | 0 ETH | 0.00136829 | ||||
Transfer | 21228868 | 123 days ago | IN | 0 ETH | 0.00040805 | ||||
Transfer | 21107024 | 140 days ago | IN | 0 ETH | 0.00013982 | ||||
Transfer | 20681919 | 200 days ago | IN | 0 ETH | 0.00014547 | ||||
Burn | 20522269 | 222 days ago | IN | 0 ETH | 0.00004458 | ||||
Burn | 20521472 | 222 days ago | IN | 0 ETH | 0.00013098 | ||||
Transfer | 20492216 | 226 days ago | IN | 0 ETH | 0.00023662 | ||||
Transfer | 20485535 | 227 days ago | IN | 0 ETH | 0.00023212 | ||||
Transfer | 20091016 | 282 days ago | IN | 0 ETH | 0.00051656 | ||||
Transfer | 20090992 | 282 days ago | IN | 0 ETH | 0.0004566 | ||||
Transfer | 20090958 | 282 days ago | IN | 0 ETH | 0.00079175 | ||||
Transfer | 20085541 | 283 days ago | IN | 0 ETH | 0.0004276 | ||||
Transfer | 20074378 | 285 days ago | IN | 0 ETH | 0.00038454 | ||||
Burn | 20036454 | 290 days ago | IN | 0 ETH | 0.00042448 | ||||
Transfer | 19926079 | 305 days ago | IN | 0 ETH | 0.00099589 | ||||
Burn | 19669313 | 341 days ago | IN | 0 ETH | 0.0007487 | ||||
Transfer | 19562870 | 356 days ago | IN | 0 ETH | 0.00156687 | ||||
Burn | 19281616 | 396 days ago | IN | 0 ETH | 0.00113541 | ||||
Transfer | 19262448 | 398 days ago | IN | 0 ETH | 0.00218725 | ||||
Burn | 19076633 | 424 days ago | IN | 0 ETH | 0.000484 |
Loading...
Loading
Contract Name:
MIYToken
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-02 */ // File: @openzeppelin/contracts/access/IAccessControl.sol // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: contracts/MIYToken.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract MIYToken is ERC20, AccessControl { string private __name = "Mersin Idmanyurdu Token"; string private __symbol = "MIY"; uint8 private __decimals = 2; uint private __INITIAL_SUPPLY = 110000000; bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); event Minted(address addr, uint256 amount); event Burned(address addr, uint256 amount); constructor() public ERC20(__name, __symbol) { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(MINTER_ROLE, msg.sender); _setupRole(BURNER_ROLE, msg.sender); _mint(msg.sender, __INITIAL_SUPPLY); } function burn(address from, uint256 amount) public { require(hasRole(BURNER_ROLE, _msgSender()), "MIY Token: Caller is not a burner"); _burn(from, amount); emit Burned(from, amount); } function mint(address to, uint256 amount) public { require(hasRole(MINTER_ROLE, _msgSender()), "MIY Token: Caller is not a minter"); _mint(to, amount); emit Minted(to, amount); } function decimals() public view virtual override returns (uint8) { return __decimals; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280601781526020017f4d657273696e2049646d616e797572647520546f6b656e0000000000000000008152506006908051906020019062000051929190620005bc565b506040518060400160405280600381526020017f4d49590000000000000000000000000000000000000000000000000000000000815250600790805190602001906200009f929190620005bc565b506002600860006101000a81548160ff021916908360ff16021790555063068e7780600955348015620000d157600080fd5b5060068054620000e1906200069b565b80601f01602080910402602001604051908101604052809291908181526020018280546200010f906200069b565b8015620001605780601f10620001345761010080835404028352916020019162000160565b820191906000526020600020905b8154815290600101906020018083116200014257829003601f168201915b50505050506007805462000174906200069b565b80601f0160208091040260200160405190810160405280929190818152602001828054620001a2906200069b565b8015620001f35780601f10620001c757610100808354040283529160200191620001f3565b820191906000526020600020905b815481529060010190602001808311620001d557829003601f168201915b5050505050816003908051906020019062000210929190620005bc565b50806004908051906020019062000229929190620005bc565b505050620002416000801b33620002bf60201b60201c565b620002737f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620002bf60201b60201c565b620002a57f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833620002bf60201b60201c565b620002b933600954620002d560201b60201c565b62000817565b620002d182826200044d60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033e9062000731565b60405180910390fd5b6200035b600083836200053f60201b60201c565b80600260008282546200036f91906200078c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003c691906200078c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200042d9190620007fa565b60405180910390a362000449600083836200054460201b60201c565b5050565b6200045f82826200054960201b60201c565b6200053b5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004e0620005b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b505050565b505050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620005ca906200069b565b90600052602060002090601f016020900481019282620005ee57600085556200063a565b82601f106200060957805160ff19168380011785556200063a565b828001600101855582156200063a579182015b82811115620006395782518255916020019190600101906200061c565b5b5090506200064991906200064d565b5090565b5b80821115620006685760008160009055506001016200064e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006b457607f821691505b602082108103620006ca57620006c96200066c565b5b50919050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000719601f83620006d0565b91506200072682620006e1565b602082019050919050565b600060208201905081810360008301526200074c816200070a565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007998262000753565b9150620007a68362000753565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007de57620007dd6200075d565b5b828201905092915050565b620007f48162000753565b82525050565b6000602082019050620008116000830184620007e9565b92915050565b61289780620008276000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806340c10f19116100b8578063a217fddf1161007c578063a217fddf1461039d578063a457c2d7146103bb578063a9059cbb146103eb578063d53913931461041b578063d547741f14610439578063dd62ed3e1461045557610142565b806340c10f19146102e757806370a082311461030357806391d148541461033357806395d89b41146103635780639dc29fac1461038157610142565b8063248a9ca31161010a578063248a9ca314610213578063282c51f3146102435780632f2ff15d14610261578063313ce5671461027d57806336568abe1461029b57806339509351146102b757610142565b806301ffc9a71461014757806306fdde0314610177578063095ea7b31461019557806318160ddd146101c557806323b872dd146101e3575b600080fd5b610161600480360381019061015c91906119b7565b610485565b60405161016e91906119ff565b60405180910390f35b61017f6104ff565b60405161018c9190611ab3565b60405180910390f35b6101af60048036038101906101aa9190611b69565b610591565b6040516101bc91906119ff565b60405180910390f35b6101cd6105b4565b6040516101da9190611bb8565b60405180910390f35b6101fd60048036038101906101f89190611bd3565b6105be565b60405161020a91906119ff565b60405180910390f35b61022d60048036038101906102289190611c5c565b6105ed565b60405161023a9190611c98565b60405180910390f35b61024b61060d565b6040516102589190611c98565b60405180910390f35b61027b60048036038101906102769190611cb3565b610631565b005b61028561065a565b6040516102929190611d0f565b60405180910390f35b6102b560048036038101906102b09190611cb3565b610671565b005b6102d160048036038101906102cc9190611b69565b6106f4565b6040516102de91906119ff565b60405180910390f35b61030160048036038101906102fc9190611b69565b61079e565b005b61031d60048036038101906103189190611d2a565b610855565b60405161032a9190611bb8565b60405180910390f35b61034d60048036038101906103489190611cb3565b61089d565b60405161035a91906119ff565b60405180910390f35b61036b610908565b6040516103789190611ab3565b60405180910390f35b61039b60048036038101906103969190611b69565b61099a565b005b6103a5610a51565b6040516103b29190611c98565b60405180910390f35b6103d560048036038101906103d09190611b69565b610a58565b6040516103e291906119ff565b60405180910390f35b61040560048036038101906104009190611b69565b610b42565b60405161041291906119ff565b60405180910390f35b610423610b65565b6040516104309190611c98565b60405180910390f35b610453600480360381019061044e9190611cb3565b610b89565b005b61046f600480360381019061046a9190611d57565b610bb2565b60405161047c9190611bb8565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104f857506104f782610c39565b5b9050919050565b60606003805461050e90611dc6565b80601f016020809104026020016040519081016040528092919081815260200182805461053a90611dc6565b80156105875780601f1061055c57610100808354040283529160200191610587565b820191906000526020600020905b81548152906001019060200180831161056a57829003601f168201915b5050505050905090565b60008061059c610ca3565b90506105a9818585610cab565b600191505092915050565b6000600254905090565b6000806105c9610ca3565b90506105d6858285610e74565b6105e1858585610f00565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b61063a826105ed565b61064b81610646610ca3565b61117f565b610655838361121c565b505050565b6000600860009054906101000a900460ff16905090565b610679610ca3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dd90611e69565b60405180910390fd5b6106f082826112fd565b5050565b6000806106ff610ca3565b9050610793818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461078e9190611eb8565b610cab565b600191505092915050565b6107cf7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66107ca610ca3565b61089d565b61080e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080590611f80565b60405180910390fd5b61081882826113df565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe8282604051610849929190611faf565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461091790611dc6565b80601f016020809104026020016040519081016040528092919081815260200182805461094390611dc6565b80156109905780601f1061096557610100808354040283529160200191610990565b820191906000526020600020905b81548152906001019060200180831161097357829003601f168201915b5050505050905090565b6109cb7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486109c6610ca3565b61089d565b610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a019061204a565b60405180910390fd5b610a14828261153e565b7f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df78282604051610a45929190611faf565b60405180910390a15050565b6000801b81565b600080610a63610ca3565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b20906120dc565b60405180910390fd5b610b368286868403610cab565b60019250505092915050565b600080610b4d610ca3565b9050610b5a818585610f00565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610b92826105ed565b610ba381610b9e610ca3565b61117f565b610bad83836112fd565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d119061216e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090612200565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e679190611bb8565b60405180910390a3505050565b6000610e808484610bb2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610efa5781811015610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee39061226c565b60405180910390fd5b610ef98484848403610cab565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f66906122fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590612390565b60405180910390fd5b610fe9838383611714565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106690612422565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111029190611eb8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111669190611bb8565b60405180910390a3611179848484611719565b50505050565b611189828261089d565b611218576111ae8173ffffffffffffffffffffffffffffffffffffffff16601461171e565b6111bc8360001c602061171e565b6040516020016111cd929190612516565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f9190611ab3565b60405180910390fd5b5050565b611226828261089d565b6112f95760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061129e610ca3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611307828261089d565b156113db5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611380610ca3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361144e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114459061259c565b60405180910390fd5b61145a60008383611714565b806002600082825461146c9190611eb8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114c19190611eb8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115269190611bb8565b60405180910390a361153a60008383611719565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a49061262e565b60405180910390fd5b6115b982600083611714565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561163f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611636906126c0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461169691906126e0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116fb9190611bb8565b60405180910390a361170f83600084611719565b505050565b505050565b505050565b6060600060028360026117319190612714565b61173b9190611eb8565b67ffffffffffffffff8111156117545761175361276e565b5b6040519080825280601f01601f1916602001820160405280156117865781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106117be576117bd61279d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106118225761182161279d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026118629190612714565b61186c9190611eb8565b90505b600181111561190c577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106118ae576118ad61279d565b5b1a60f81b8282815181106118c5576118c461279d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611905906127cc565b905061186f565b5060008414611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790612841565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6119948161195f565b811461199f57600080fd5b50565b6000813590506119b18161198b565b92915050565b6000602082840312156119cd576119cc61195a565b5b60006119db848285016119a2565b91505092915050565b60008115159050919050565b6119f9816119e4565b82525050565b6000602082019050611a1460008301846119f0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a54578082015181840152602081019050611a39565b83811115611a63576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a8582611a1a565b611a8f8185611a25565b9350611a9f818560208601611a36565b611aa881611a69565b840191505092915050565b60006020820190508181036000830152611acd8184611a7a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b0082611ad5565b9050919050565b611b1081611af5565b8114611b1b57600080fd5b50565b600081359050611b2d81611b07565b92915050565b6000819050919050565b611b4681611b33565b8114611b5157600080fd5b50565b600081359050611b6381611b3d565b92915050565b60008060408385031215611b8057611b7f61195a565b5b6000611b8e85828601611b1e565b9250506020611b9f85828601611b54565b9150509250929050565b611bb281611b33565b82525050565b6000602082019050611bcd6000830184611ba9565b92915050565b600080600060608486031215611bec57611beb61195a565b5b6000611bfa86828701611b1e565b9350506020611c0b86828701611b1e565b9250506040611c1c86828701611b54565b9150509250925092565b6000819050919050565b611c3981611c26565b8114611c4457600080fd5b50565b600081359050611c5681611c30565b92915050565b600060208284031215611c7257611c7161195a565b5b6000611c8084828501611c47565b91505092915050565b611c9281611c26565b82525050565b6000602082019050611cad6000830184611c89565b92915050565b60008060408385031215611cca57611cc961195a565b5b6000611cd885828601611c47565b9250506020611ce985828601611b1e565b9150509250929050565b600060ff82169050919050565b611d0981611cf3565b82525050565b6000602082019050611d246000830184611d00565b92915050565b600060208284031215611d4057611d3f61195a565b5b6000611d4e84828501611b1e565b91505092915050565b60008060408385031215611d6e57611d6d61195a565b5b6000611d7c85828601611b1e565b9250506020611d8d85828601611b1e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dde57607f821691505b602082108103611df157611df0611d97565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000611e53602f83611a25565b9150611e5e82611df7565b604082019050919050565b60006020820190508181036000830152611e8281611e46565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611ec382611b33565b9150611ece83611b33565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f0357611f02611e89565b5b828201905092915050565b7f4d495920546f6b656e3a2043616c6c6572206973206e6f742061206d696e746560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f6a602183611a25565b9150611f7582611f0e565b604082019050919050565b60006020820190508181036000830152611f9981611f5d565b9050919050565b611fa981611af5565b82525050565b6000604082019050611fc46000830185611fa0565b611fd16020830184611ba9565b9392505050565b7f4d495920546f6b656e3a2043616c6c6572206973206e6f742061206275726e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612034602183611a25565b915061203f82611fd8565b604082019050919050565b6000602082019050818103600083015261206381612027565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120c6602583611a25565b91506120d18261206a565b604082019050919050565b600060208201905081810360008301526120f5816120b9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612158602483611a25565b9150612163826120fc565b604082019050919050565b600060208201905081810360008301526121878161214b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121ea602283611a25565b91506121f58261218e565b604082019050919050565b60006020820190508181036000830152612219816121dd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612256601d83611a25565b915061226182612220565b602082019050919050565b6000602082019050818103600083015261228581612249565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122e8602583611a25565b91506122f38261228c565b604082019050919050565b60006020820190508181036000830152612317816122db565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061237a602383611a25565b91506123858261231e565b604082019050919050565b600060208201905081810360008301526123a98161236d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061240c602683611a25565b9150612417826123b0565b604082019050919050565b6000602082019050818103600083015261243b816123ff565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000612483601783612442565b915061248e8261244d565b601782019050919050565b60006124a482611a1a565b6124ae8185612442565b93506124be818560208601611a36565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000612500601183612442565b915061250b826124ca565b601182019050919050565b600061252182612476565b915061252d8285612499565b9150612538826124f3565b91506125448284612499565b91508190509392505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612586601f83611a25565b915061259182612550565b602082019050919050565b600060208201905081810360008301526125b581612579565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612618602183611a25565b9150612623826125bc565b604082019050919050565b600060208201905081810360008301526126478161260b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006126aa602283611a25565b91506126b58261264e565b604082019050919050565b600060208201905081810360008301526126d98161269d565b9050919050565b60006126eb82611b33565b91506126f683611b33565b92508282101561270957612708611e89565b5b828203905092915050565b600061271f82611b33565b915061272a83611b33565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561276357612762611e89565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006127d782611b33565b9150600082036127ea576127e9611e89565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600061282b602083611a25565b9150612836826127f5565b602082019050919050565b6000602082019050818103600083015261285a8161281e565b905091905056fea2646970667358221220e1b1d1b998323d3cc2429c9a7a06bb6bffcf921f3d0bea907d959d3f39c9914b64736f6c634300080d0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806340c10f19116100b8578063a217fddf1161007c578063a217fddf1461039d578063a457c2d7146103bb578063a9059cbb146103eb578063d53913931461041b578063d547741f14610439578063dd62ed3e1461045557610142565b806340c10f19146102e757806370a082311461030357806391d148541461033357806395d89b41146103635780639dc29fac1461038157610142565b8063248a9ca31161010a578063248a9ca314610213578063282c51f3146102435780632f2ff15d14610261578063313ce5671461027d57806336568abe1461029b57806339509351146102b757610142565b806301ffc9a71461014757806306fdde0314610177578063095ea7b31461019557806318160ddd146101c557806323b872dd146101e3575b600080fd5b610161600480360381019061015c91906119b7565b610485565b60405161016e91906119ff565b60405180910390f35b61017f6104ff565b60405161018c9190611ab3565b60405180910390f35b6101af60048036038101906101aa9190611b69565b610591565b6040516101bc91906119ff565b60405180910390f35b6101cd6105b4565b6040516101da9190611bb8565b60405180910390f35b6101fd60048036038101906101f89190611bd3565b6105be565b60405161020a91906119ff565b60405180910390f35b61022d60048036038101906102289190611c5c565b6105ed565b60405161023a9190611c98565b60405180910390f35b61024b61060d565b6040516102589190611c98565b60405180910390f35b61027b60048036038101906102769190611cb3565b610631565b005b61028561065a565b6040516102929190611d0f565b60405180910390f35b6102b560048036038101906102b09190611cb3565b610671565b005b6102d160048036038101906102cc9190611b69565b6106f4565b6040516102de91906119ff565b60405180910390f35b61030160048036038101906102fc9190611b69565b61079e565b005b61031d60048036038101906103189190611d2a565b610855565b60405161032a9190611bb8565b60405180910390f35b61034d60048036038101906103489190611cb3565b61089d565b60405161035a91906119ff565b60405180910390f35b61036b610908565b6040516103789190611ab3565b60405180910390f35b61039b60048036038101906103969190611b69565b61099a565b005b6103a5610a51565b6040516103b29190611c98565b60405180910390f35b6103d560048036038101906103d09190611b69565b610a58565b6040516103e291906119ff565b60405180910390f35b61040560048036038101906104009190611b69565b610b42565b60405161041291906119ff565b60405180910390f35b610423610b65565b6040516104309190611c98565b60405180910390f35b610453600480360381019061044e9190611cb3565b610b89565b005b61046f600480360381019061046a9190611d57565b610bb2565b60405161047c9190611bb8565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104f857506104f782610c39565b5b9050919050565b60606003805461050e90611dc6565b80601f016020809104026020016040519081016040528092919081815260200182805461053a90611dc6565b80156105875780601f1061055c57610100808354040283529160200191610587565b820191906000526020600020905b81548152906001019060200180831161056a57829003601f168201915b5050505050905090565b60008061059c610ca3565b90506105a9818585610cab565b600191505092915050565b6000600254905090565b6000806105c9610ca3565b90506105d6858285610e74565b6105e1858585610f00565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b61063a826105ed565b61064b81610646610ca3565b61117f565b610655838361121c565b505050565b6000600860009054906101000a900460ff16905090565b610679610ca3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dd90611e69565b60405180910390fd5b6106f082826112fd565b5050565b6000806106ff610ca3565b9050610793818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461078e9190611eb8565b610cab565b600191505092915050565b6107cf7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66107ca610ca3565b61089d565b61080e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080590611f80565b60405180910390fd5b61081882826113df565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe8282604051610849929190611faf565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461091790611dc6565b80601f016020809104026020016040519081016040528092919081815260200182805461094390611dc6565b80156109905780601f1061096557610100808354040283529160200191610990565b820191906000526020600020905b81548152906001019060200180831161097357829003601f168201915b5050505050905090565b6109cb7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486109c6610ca3565b61089d565b610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a019061204a565b60405180910390fd5b610a14828261153e565b7f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df78282604051610a45929190611faf565b60405180910390a15050565b6000801b81565b600080610a63610ca3565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b20906120dc565b60405180910390fd5b610b368286868403610cab565b60019250505092915050565b600080610b4d610ca3565b9050610b5a818585610f00565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610b92826105ed565b610ba381610b9e610ca3565b61117f565b610bad83836112fd565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d119061216e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090612200565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e679190611bb8565b60405180910390a3505050565b6000610e808484610bb2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610efa5781811015610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee39061226c565b60405180910390fd5b610ef98484848403610cab565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f66906122fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590612390565b60405180910390fd5b610fe9838383611714565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106690612422565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111029190611eb8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111669190611bb8565b60405180910390a3611179848484611719565b50505050565b611189828261089d565b611218576111ae8173ffffffffffffffffffffffffffffffffffffffff16601461171e565b6111bc8360001c602061171e565b6040516020016111cd929190612516565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f9190611ab3565b60405180910390fd5b5050565b611226828261089d565b6112f95760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061129e610ca3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611307828261089d565b156113db5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611380610ca3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361144e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114459061259c565b60405180910390fd5b61145a60008383611714565b806002600082825461146c9190611eb8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114c19190611eb8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115269190611bb8565b60405180910390a361153a60008383611719565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a49061262e565b60405180910390fd5b6115b982600083611714565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561163f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611636906126c0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461169691906126e0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116fb9190611bb8565b60405180910390a361170f83600084611719565b505050565b505050565b505050565b6060600060028360026117319190612714565b61173b9190611eb8565b67ffffffffffffffff8111156117545761175361276e565b5b6040519080825280601f01601f1916602001820160405280156117865781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106117be576117bd61279d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106118225761182161279d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026118629190612714565b61186c9190611eb8565b90505b600181111561190c577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106118ae576118ad61279d565b5b1a60f81b8282815181106118c5576118c461279d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611905906127cc565b905061186f565b5060008414611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790612841565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6119948161195f565b811461199f57600080fd5b50565b6000813590506119b18161198b565b92915050565b6000602082840312156119cd576119cc61195a565b5b60006119db848285016119a2565b91505092915050565b60008115159050919050565b6119f9816119e4565b82525050565b6000602082019050611a1460008301846119f0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a54578082015181840152602081019050611a39565b83811115611a63576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a8582611a1a565b611a8f8185611a25565b9350611a9f818560208601611a36565b611aa881611a69565b840191505092915050565b60006020820190508181036000830152611acd8184611a7a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b0082611ad5565b9050919050565b611b1081611af5565b8114611b1b57600080fd5b50565b600081359050611b2d81611b07565b92915050565b6000819050919050565b611b4681611b33565b8114611b5157600080fd5b50565b600081359050611b6381611b3d565b92915050565b60008060408385031215611b8057611b7f61195a565b5b6000611b8e85828601611b1e565b9250506020611b9f85828601611b54565b9150509250929050565b611bb281611b33565b82525050565b6000602082019050611bcd6000830184611ba9565b92915050565b600080600060608486031215611bec57611beb61195a565b5b6000611bfa86828701611b1e565b9350506020611c0b86828701611b1e565b9250506040611c1c86828701611b54565b9150509250925092565b6000819050919050565b611c3981611c26565b8114611c4457600080fd5b50565b600081359050611c5681611c30565b92915050565b600060208284031215611c7257611c7161195a565b5b6000611c8084828501611c47565b91505092915050565b611c9281611c26565b82525050565b6000602082019050611cad6000830184611c89565b92915050565b60008060408385031215611cca57611cc961195a565b5b6000611cd885828601611c47565b9250506020611ce985828601611b1e565b9150509250929050565b600060ff82169050919050565b611d0981611cf3565b82525050565b6000602082019050611d246000830184611d00565b92915050565b600060208284031215611d4057611d3f61195a565b5b6000611d4e84828501611b1e565b91505092915050565b60008060408385031215611d6e57611d6d61195a565b5b6000611d7c85828601611b1e565b9250506020611d8d85828601611b1e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dde57607f821691505b602082108103611df157611df0611d97565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000611e53602f83611a25565b9150611e5e82611df7565b604082019050919050565b60006020820190508181036000830152611e8281611e46565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611ec382611b33565b9150611ece83611b33565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f0357611f02611e89565b5b828201905092915050565b7f4d495920546f6b656e3a2043616c6c6572206973206e6f742061206d696e746560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f6a602183611a25565b9150611f7582611f0e565b604082019050919050565b60006020820190508181036000830152611f9981611f5d565b9050919050565b611fa981611af5565b82525050565b6000604082019050611fc46000830185611fa0565b611fd16020830184611ba9565b9392505050565b7f4d495920546f6b656e3a2043616c6c6572206973206e6f742061206275726e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612034602183611a25565b915061203f82611fd8565b604082019050919050565b6000602082019050818103600083015261206381612027565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120c6602583611a25565b91506120d18261206a565b604082019050919050565b600060208201905081810360008301526120f5816120b9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612158602483611a25565b9150612163826120fc565b604082019050919050565b600060208201905081810360008301526121878161214b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121ea602283611a25565b91506121f58261218e565b604082019050919050565b60006020820190508181036000830152612219816121dd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612256601d83611a25565b915061226182612220565b602082019050919050565b6000602082019050818103600083015261228581612249565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122e8602583611a25565b91506122f38261228c565b604082019050919050565b60006020820190508181036000830152612317816122db565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061237a602383611a25565b91506123858261231e565b604082019050919050565b600060208201905081810360008301526123a98161236d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061240c602683611a25565b9150612417826123b0565b604082019050919050565b6000602082019050818103600083015261243b816123ff565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000612483601783612442565b915061248e8261244d565b601782019050919050565b60006124a482611a1a565b6124ae8185612442565b93506124be818560208601611a36565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000612500601183612442565b915061250b826124ca565b601182019050919050565b600061252182612476565b915061252d8285612499565b9150612538826124f3565b91506125448284612499565b91508190509392505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612586601f83611a25565b915061259182612550565b602082019050919050565b600060208201905081810360008301526125b581612579565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612618602183611a25565b9150612623826125bc565b604082019050919050565b600060208201905081810360008301526126478161260b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006126aa602283611a25565b91506126b58261264e565b604082019050919050565b600060208201905081810360008301526126d98161269d565b9050919050565b60006126eb82611b33565b91506126f683611b33565b92508282101561270957612708611e89565b5b828203905092915050565b600061271f82611b33565b915061272a83611b33565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561276357612762611e89565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006127d782611b33565b9150600082036127ea576127e9611e89565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600061282b602083611a25565b9150612836826127f5565b602082019050919050565b6000602082019050818103600083015261285a8161281e565b905091905056fea2646970667358221220e1b1d1b998323d3cc2429c9a7a06bb6bffcf921f3d0bea907d959d3f39c9914b64736f6c634300080d0033
Deployed Bytecode Sourcemap
32183:1262:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10567:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21292:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23643:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22412:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24424:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11994:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32478:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12387:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33341:101;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13435:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25128:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33123:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22583:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10863:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21511:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32899:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9954:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25871:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22916:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32409:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12779:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23172:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10567:204;10652:4;10691:32;10676:47;;;:11;:47;;;;:87;;;;10727:36;10751:11;10727:23;:36::i;:::-;10676:87;10669:94;;10567:204;;;:::o;21292:100::-;21346:13;21379:5;21372:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21292:100;:::o;23643:201::-;23726:4;23743:13;23759:12;:10;:12::i;:::-;23743:28;;23782:32;23791:5;23798:7;23807:6;23782:8;:32::i;:::-;23832:4;23825:11;;;23643:201;;;;:::o;22412:108::-;22473:7;22500:12;;22493:19;;22412:108;:::o;24424:295::-;24555:4;24572:15;24590:12;:10;:12::i;:::-;24572:30;;24613:38;24629:4;24635:7;24644:6;24613:15;:38::i;:::-;24662:27;24672:4;24678:2;24682:6;24662:9;:27::i;:::-;24707:4;24700:11;;;24424:295;;;;;:::o;11994:131::-;12068:7;12095:6;:12;12102:4;12095:12;;;;;;;;;;;:22;;;12088:29;;11994:131;;;:::o;32478:62::-;32516:24;32478:62;:::o;12387:147::-;12470:18;12483:4;12470:12;:18::i;:::-;10445:30;10456:4;10462:12;:10;:12::i;:::-;10445:10;:30::i;:::-;12501:25:::1;12512:4;12518:7;12501:10;:25::i;:::-;12387:147:::0;;;:::o;33341:101::-;33399:5;33424:10;;;;;;;;;;;33417:17;;33341:101;:::o;13435:218::-;13542:12;:10;:12::i;:::-;13531:23;;:7;:23;;;13523:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;13619:26;13631:4;13637:7;13619:11;:26::i;:::-;13435:218;;:::o;25128:240::-;25216:4;25233:13;25249:12;:10;:12::i;:::-;25233:28;;25272:66;25281:5;25288:7;25327:10;25297:11;:18;25309:5;25297:18;;;;;;;;;;;;;;;:27;25316:7;25297:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;25272:8;:66::i;:::-;25356:4;25349:11;;;25128:240;;;;:::o;33123:210::-;33191:34;32447:24;33212:12;:10;:12::i;:::-;33191:7;:34::i;:::-;33183:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;33274:17;33280:2;33284:6;33274:5;:17::i;:::-;33307:18;33314:2;33318:6;33307:18;;;;;;;:::i;:::-;;;;;;;;33123:210;;:::o;22583:127::-;22657:7;22684:9;:18;22694:7;22684:18;;;;;;;;;;;;;;;;22677:25;;22583:127;;;:::o;10863:147::-;10949:4;10973:6;:12;10980:4;10973:12;;;;;;;;;;;:20;;:29;10994:7;10973:29;;;;;;;;;;;;;;;;;;;;;;;;;10966:36;;10863:147;;;;:::o;21511:104::-;21567:13;21600:7;21593:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21511:104;:::o;32899:216::-;32969:34;32516:24;32990:12;:10;:12::i;:::-;32969:7;:34::i;:::-;32961:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;33052:19;33058:4;33064:6;33052:5;:19::i;:::-;33087:20;33094:4;33100:6;33087:20;;;;;;;:::i;:::-;;;;;;;;32899:216;;:::o;9954:49::-;9999:4;9954:49;;;:::o;25871:438::-;25964:4;25981:13;25997:12;:10;:12::i;:::-;25981:28;;26020:24;26047:11;:18;26059:5;26047:18;;;;;;;;;;;;;;;:27;26066:7;26047:27;;;;;;;;;;;;;;;;26020:54;;26113:15;26093:16;:35;;26085:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;26206:60;26215:5;26222:7;26250:15;26231:16;:34;26206:8;:60::i;:::-;26297:4;26290:11;;;;25871:438;;;;:::o;22916:193::-;22995:4;23012:13;23028:12;:10;:12::i;:::-;23012:28;;23051;23061:5;23068:2;23072:6;23051:9;:28::i;:::-;23097:4;23090:11;;;22916:193;;;;:::o;32409:62::-;32447:24;32409:62;:::o;12779:149::-;12863:18;12876:4;12863:12;:18::i;:::-;10445:30;10456:4;10462:12;:10;:12::i;:::-;10445:10;:30::i;:::-;12894:26:::1;12906:4;12912:7;12894:11;:26::i;:::-;12779:149:::0;;;:::o;23172:151::-;23261:7;23288:11;:18;23300:5;23288:18;;;;;;;;;;;;;;;:27;23307:7;23288:27;;;;;;;;;;;;;;;;23281:34;;23172:151;;;;:::o;7824:157::-;7909:4;7948:25;7933:40;;;:11;:40;;;;7926:47;;7824:157;;;:::o;3714:98::-;3767:7;3794:10;3787:17;;3714:98;:::o;29507:380::-;29660:1;29643:19;;:5;:19;;;29635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29741:1;29722:21;;:7;:21;;;29714:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29825:6;29795:11;:18;29807:5;29795:18;;;;;;;;;;;;;;;:27;29814:7;29795:27;;;;;;;;;;;;;;;:36;;;;29863:7;29847:32;;29856:5;29847:32;;;29872:6;29847:32;;;;;;:::i;:::-;;;;;;;;29507:380;;;:::o;30174:453::-;30309:24;30336:25;30346:5;30353:7;30336:9;:25::i;:::-;30309:52;;30396:17;30376:16;:37;30372:248;;30458:6;30438:16;:26;;30430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30542:51;30551:5;30558:7;30586:6;30567:16;:25;30542:8;:51::i;:::-;30372:248;30298:329;30174:453;;;:::o;26788:671::-;26935:1;26919:18;;:4;:18;;;26911:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27012:1;26998:16;;:2;:16;;;26990:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27067:38;27088:4;27094:2;27098:6;27067:20;:38::i;:::-;27118:19;27140:9;:15;27150:4;27140:15;;;;;;;;;;;;;;;;27118:37;;27189:6;27174:11;:21;;27166:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;27306:6;27292:11;:20;27274:9;:15;27284:4;27274:15;;;;;;;;;;;;;;;:38;;;;27351:6;27334:9;:13;27344:2;27334:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;27390:2;27375:26;;27384:4;27375:26;;;27394:6;27375:26;;;;;;:::i;:::-;;;;;;;;27414:37;27434:4;27440:2;27444:6;27414:19;:37::i;:::-;26900:559;26788:671;;;:::o;11300:505::-;11389:22;11397:4;11403:7;11389;:22::i;:::-;11384:414;;11577:41;11605:7;11577:41;;11615:2;11577:19;:41::i;:::-;11691:38;11719:4;11711:13;;11726:2;11691:19;:38::i;:::-;11482:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11428:358;;;;;;;;;;;:::i;:::-;;;;;;;;11384:414;11300:505;;:::o;14936:238::-;15020:22;15028:4;15034:7;15020;:22::i;:::-;15015:152;;15091:4;15059:6;:12;15066:4;15059:12;;;;;;;;;;;:20;;:29;15080:7;15059:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;15142:12;:10;:12::i;:::-;15115:40;;15133:7;15115:40;;15127:4;15115:40;;;;;;;;;;15015:152;14936:238;;:::o;15306:239::-;15390:22;15398:4;15404:7;15390;:22::i;:::-;15386:152;;;15461:5;15429:6;:12;15436:4;15429:12;;;;;;;;;;;:20;;:29;15450:7;15429:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;15513:12;:10;:12::i;:::-;15486:40;;15504:7;15486:40;;15498:4;15486:40;;;;;;;;;;15386:152;15306:239;;:::o;27746:399::-;27849:1;27830:21;;:7;:21;;;27822:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;27900:49;27929:1;27933:7;27942:6;27900:20;:49::i;:::-;27978:6;27962:12;;:22;;;;;;;:::i;:::-;;;;;;;;28017:6;27995:9;:18;28005:7;27995:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;28060:7;28039:37;;28056:1;28039:37;;;28069:6;28039:37;;;;;;:::i;:::-;;;;;;;;28089:48;28117:1;28121:7;28130:6;28089:19;:48::i;:::-;27746:399;;:::o;28478:591::-;28581:1;28562:21;;:7;:21;;;28554:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28634:49;28655:7;28672:1;28676:6;28634:20;:49::i;:::-;28696:22;28721:9;:18;28731:7;28721:18;;;;;;;;;;;;;;;;28696:43;;28776:6;28758:14;:24;;28750:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28895:6;28878:14;:23;28857:9;:18;28867:7;28857:18;;;;;;;;;;;;;;;:44;;;;28939:6;28923:12;;:22;;;;;;;:::i;:::-;;;;;;;;28989:1;28963:37;;28972:7;28963:37;;;28993:6;28963:37;;;;;;:::i;:::-;;;;;;;;29013:48;29033:7;29050:1;29054:6;29013:19;:48::i;:::-;28543:526;28478:591;;:::o;31227:125::-;;;;:::o;31956:124::-;;;;:::o;5590:451::-;5665:13;5691:19;5736:1;5727:6;5723:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;5713:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5691:47;;5749:15;:6;5756:1;5749:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;5775;:6;5782:1;5775:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;5806:9;5831:1;5822:6;5818:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;5806:26;;5801:135;5838:1;5834;:5;5801:135;;;5873:12;5894:3;5886:5;:11;5873:25;;;;;;;:::i;:::-;;;;;5861:6;5868:1;5861:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;5923:1;5913:11;;;;;5841:3;;;;:::i;:::-;;;5801:135;;;;5963:1;5954:5;:10;5946:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;6026:6;6012:21;;;5590:451;;;;:::o;88:117:1:-;197:1;194;187:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:126::-;2945:7;2985:42;2978:5;2974:54;2963:65;;2908:126;;;:::o;3040:96::-;3077:7;3106:24;3124:5;3106:24;:::i;:::-;3095:35;;3040:96;;;:::o;3142:122::-;3215:24;3233:5;3215:24;:::i;:::-;3208:5;3205:35;3195:63;;3254:1;3251;3244:12;3195:63;3142:122;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:77::-;3452:7;3481:5;3470:16;;3415:77;;;:::o;3498:122::-;3571:24;3589:5;3571:24;:::i;:::-;3564:5;3561:35;3551:63;;3610:1;3607;3600:12;3551:63;3498:122;:::o;3626:139::-;3672:5;3710:6;3697:20;3688:29;;3726:33;3753:5;3726:33;:::i;:::-;3626:139;;;;:::o;3771:474::-;3839:6;3847;3896:2;3884:9;3875:7;3871:23;3867:32;3864:119;;;3902:79;;:::i;:::-;3864:119;4022:1;4047:53;4092:7;4083:6;4072:9;4068:22;4047:53;:::i;:::-;4037:63;;3993:117;4149:2;4175:53;4220:7;4211:6;4200:9;4196:22;4175:53;:::i;:::-;4165:63;;4120:118;3771:474;;;;;:::o;4251:118::-;4338:24;4356:5;4338:24;:::i;:::-;4333:3;4326:37;4251:118;;:::o;4375:222::-;4468:4;4506:2;4495:9;4491:18;4483:26;;4519:71;4587:1;4576:9;4572:17;4563:6;4519:71;:::i;:::-;4375:222;;;;:::o;4603:619::-;4680:6;4688;4696;4745:2;4733:9;4724:7;4720:23;4716:32;4713:119;;;4751:79;;:::i;:::-;4713:119;4871:1;4896:53;4941:7;4932:6;4921:9;4917:22;4896:53;:::i;:::-;4886:63;;4842:117;4998:2;5024:53;5069:7;5060:6;5049:9;5045:22;5024:53;:::i;:::-;5014:63;;4969:118;5126:2;5152:53;5197:7;5188:6;5177:9;5173:22;5152:53;:::i;:::-;5142:63;;5097:118;4603:619;;;;;:::o;5228:77::-;5265:7;5294:5;5283:16;;5228:77;;;:::o;5311:122::-;5384:24;5402:5;5384:24;:::i;:::-;5377:5;5374:35;5364:63;;5423:1;5420;5413:12;5364:63;5311:122;:::o;5439:139::-;5485:5;5523:6;5510:20;5501:29;;5539:33;5566:5;5539:33;:::i;:::-;5439:139;;;;:::o;5584:329::-;5643:6;5692:2;5680:9;5671:7;5667:23;5663:32;5660:119;;;5698:79;;:::i;:::-;5660:119;5818:1;5843:53;5888:7;5879:6;5868:9;5864:22;5843:53;:::i;:::-;5833:63;;5789:117;5584:329;;;;:::o;5919:118::-;6006:24;6024:5;6006:24;:::i;:::-;6001:3;5994:37;5919:118;;:::o;6043:222::-;6136:4;6174:2;6163:9;6159:18;6151:26;;6187:71;6255:1;6244:9;6240:17;6231:6;6187:71;:::i;:::-;6043:222;;;;:::o;6271:474::-;6339:6;6347;6396:2;6384:9;6375:7;6371:23;6367:32;6364:119;;;6402:79;;:::i;:::-;6364:119;6522:1;6547:53;6592:7;6583:6;6572:9;6568:22;6547:53;:::i;:::-;6537:63;;6493:117;6649:2;6675:53;6720:7;6711:6;6700:9;6696:22;6675:53;:::i;:::-;6665:63;;6620:118;6271:474;;;;;:::o;6751:86::-;6786:7;6826:4;6819:5;6815:16;6804:27;;6751:86;;;:::o;6843:112::-;6926:22;6942:5;6926:22;:::i;:::-;6921:3;6914:35;6843:112;;:::o;6961:214::-;7050:4;7088:2;7077:9;7073:18;7065:26;;7101:67;7165:1;7154:9;7150:17;7141:6;7101:67;:::i;:::-;6961:214;;;;:::o;7181:329::-;7240:6;7289:2;7277:9;7268:7;7264:23;7260:32;7257:119;;;7295:79;;:::i;:::-;7257:119;7415:1;7440:53;7485:7;7476:6;7465:9;7461:22;7440:53;:::i;:::-;7430:63;;7386:117;7181:329;;;;:::o;7516:474::-;7584:6;7592;7641:2;7629:9;7620:7;7616:23;7612:32;7609:119;;;7647:79;;:::i;:::-;7609:119;7767:1;7792:53;7837:7;7828:6;7817:9;7813:22;7792:53;:::i;:::-;7782:63;;7738:117;7894:2;7920:53;7965:7;7956:6;7945:9;7941:22;7920:53;:::i;:::-;7910:63;;7865:118;7516:474;;;;;:::o;7996:180::-;8044:77;8041:1;8034:88;8141:4;8138:1;8131:15;8165:4;8162:1;8155:15;8182:320;8226:6;8263:1;8257:4;8253:12;8243:22;;8310:1;8304:4;8300:12;8331:18;8321:81;;8387:4;8379:6;8375:17;8365:27;;8321:81;8449:2;8441:6;8438:14;8418:18;8415:38;8412:84;;8468:18;;:::i;:::-;8412:84;8233:269;8182:320;;;:::o;8508:234::-;8648:34;8644:1;8636:6;8632:14;8625:58;8717:17;8712:2;8704:6;8700:15;8693:42;8508:234;:::o;8748:366::-;8890:3;8911:67;8975:2;8970:3;8911:67;:::i;:::-;8904:74;;8987:93;9076:3;8987:93;:::i;:::-;9105:2;9100:3;9096:12;9089:19;;8748:366;;;:::o;9120:419::-;9286:4;9324:2;9313:9;9309:18;9301:26;;9373:9;9367:4;9363:20;9359:1;9348:9;9344:17;9337:47;9401:131;9527:4;9401:131;:::i;:::-;9393:139;;9120:419;;;:::o;9545:180::-;9593:77;9590:1;9583:88;9690:4;9687:1;9680:15;9714:4;9711:1;9704:15;9731:305;9771:3;9790:20;9808:1;9790:20;:::i;:::-;9785:25;;9824:20;9842:1;9824:20;:::i;:::-;9819:25;;9978:1;9910:66;9906:74;9903:1;9900:81;9897:107;;;9984:18;;:::i;:::-;9897:107;10028:1;10025;10021:9;10014:16;;9731:305;;;;:::o;10042:220::-;10182:34;10178:1;10170:6;10166:14;10159:58;10251:3;10246:2;10238:6;10234:15;10227:28;10042:220;:::o;10268:366::-;10410:3;10431:67;10495:2;10490:3;10431:67;:::i;:::-;10424:74;;10507:93;10596:3;10507:93;:::i;:::-;10625:2;10620:3;10616:12;10609:19;;10268:366;;;:::o;10640:419::-;10806:4;10844:2;10833:9;10829:18;10821:26;;10893:9;10887:4;10883:20;10879:1;10868:9;10864:17;10857:47;10921:131;11047:4;10921:131;:::i;:::-;10913:139;;10640:419;;;:::o;11065:118::-;11152:24;11170:5;11152:24;:::i;:::-;11147:3;11140:37;11065:118;;:::o;11189:332::-;11310:4;11348:2;11337:9;11333:18;11325:26;;11361:71;11429:1;11418:9;11414:17;11405:6;11361:71;:::i;:::-;11442:72;11510:2;11499:9;11495:18;11486:6;11442:72;:::i;:::-;11189:332;;;;;:::o;11527:220::-;11667:34;11663:1;11655:6;11651:14;11644:58;11736:3;11731:2;11723:6;11719:15;11712:28;11527:220;:::o;11753:366::-;11895:3;11916:67;11980:2;11975:3;11916:67;:::i;:::-;11909:74;;11992:93;12081:3;11992:93;:::i;:::-;12110:2;12105:3;12101:12;12094:19;;11753:366;;;:::o;12125:419::-;12291:4;12329:2;12318:9;12314:18;12306:26;;12378:9;12372:4;12368:20;12364:1;12353:9;12349:17;12342:47;12406:131;12532:4;12406:131;:::i;:::-;12398:139;;12125:419;;;:::o;12550:224::-;12690:34;12686:1;12678:6;12674:14;12667:58;12759:7;12754:2;12746:6;12742:15;12735:32;12550:224;:::o;12780:366::-;12922:3;12943:67;13007:2;13002:3;12943:67;:::i;:::-;12936:74;;13019:93;13108:3;13019:93;:::i;:::-;13137:2;13132:3;13128:12;13121:19;;12780:366;;;:::o;13152:419::-;13318:4;13356:2;13345:9;13341:18;13333:26;;13405:9;13399:4;13395:20;13391:1;13380:9;13376:17;13369:47;13433:131;13559:4;13433:131;:::i;:::-;13425:139;;13152:419;;;:::o;13577:223::-;13717:34;13713:1;13705:6;13701:14;13694:58;13786:6;13781:2;13773:6;13769:15;13762:31;13577:223;:::o;13806:366::-;13948:3;13969:67;14033:2;14028:3;13969:67;:::i;:::-;13962:74;;14045:93;14134:3;14045:93;:::i;:::-;14163:2;14158:3;14154:12;14147:19;;13806:366;;;:::o;14178:419::-;14344:4;14382:2;14371:9;14367:18;14359:26;;14431:9;14425:4;14421:20;14417:1;14406:9;14402:17;14395:47;14459:131;14585:4;14459:131;:::i;:::-;14451:139;;14178:419;;;:::o;14603:221::-;14743:34;14739:1;14731:6;14727:14;14720:58;14812:4;14807:2;14799:6;14795:15;14788:29;14603:221;:::o;14830:366::-;14972:3;14993:67;15057:2;15052:3;14993:67;:::i;:::-;14986:74;;15069:93;15158:3;15069:93;:::i;:::-;15187:2;15182:3;15178:12;15171:19;;14830:366;;;:::o;15202:419::-;15368:4;15406:2;15395:9;15391:18;15383:26;;15455:9;15449:4;15445:20;15441:1;15430:9;15426:17;15419:47;15483:131;15609:4;15483:131;:::i;:::-;15475:139;;15202:419;;;:::o;15627:179::-;15767:31;15763:1;15755:6;15751:14;15744:55;15627:179;:::o;15812:366::-;15954:3;15975:67;16039:2;16034:3;15975:67;:::i;:::-;15968:74;;16051:93;16140:3;16051:93;:::i;:::-;16169:2;16164:3;16160:12;16153:19;;15812:366;;;:::o;16184:419::-;16350:4;16388:2;16377:9;16373:18;16365:26;;16437:9;16431:4;16427:20;16423:1;16412:9;16408:17;16401:47;16465:131;16591:4;16465:131;:::i;:::-;16457:139;;16184:419;;;:::o;16609:224::-;16749:34;16745:1;16737:6;16733:14;16726:58;16818:7;16813:2;16805:6;16801:15;16794:32;16609:224;:::o;16839:366::-;16981:3;17002:67;17066:2;17061:3;17002:67;:::i;:::-;16995:74;;17078:93;17167:3;17078:93;:::i;:::-;17196:2;17191:3;17187:12;17180:19;;16839:366;;;:::o;17211:419::-;17377:4;17415:2;17404:9;17400:18;17392:26;;17464:9;17458:4;17454:20;17450:1;17439:9;17435:17;17428:47;17492:131;17618:4;17492:131;:::i;:::-;17484:139;;17211:419;;;:::o;17636:222::-;17776:34;17772:1;17764:6;17760:14;17753:58;17845:5;17840:2;17832:6;17828:15;17821:30;17636:222;:::o;17864:366::-;18006:3;18027:67;18091:2;18086:3;18027:67;:::i;:::-;18020:74;;18103:93;18192:3;18103:93;:::i;:::-;18221:2;18216:3;18212:12;18205:19;;17864:366;;;:::o;18236:419::-;18402:4;18440:2;18429:9;18425:18;18417:26;;18489:9;18483:4;18479:20;18475:1;18464:9;18460:17;18453:47;18517:131;18643:4;18517:131;:::i;:::-;18509:139;;18236:419;;;:::o;18661:225::-;18801:34;18797:1;18789:6;18785:14;18778:58;18870:8;18865:2;18857:6;18853:15;18846:33;18661:225;:::o;18892:366::-;19034:3;19055:67;19119:2;19114:3;19055:67;:::i;:::-;19048:74;;19131:93;19220:3;19131:93;:::i;:::-;19249:2;19244:3;19240:12;19233:19;;18892:366;;;:::o;19264:419::-;19430:4;19468:2;19457:9;19453:18;19445:26;;19517:9;19511:4;19507:20;19503:1;19492:9;19488:17;19481:47;19545:131;19671:4;19545:131;:::i;:::-;19537:139;;19264:419;;;:::o;19689:148::-;19791:11;19828:3;19813:18;;19689:148;;;;:::o;19843:173::-;19983:25;19979:1;19971:6;19967:14;19960:49;19843:173;:::o;20022:402::-;20182:3;20203:85;20285:2;20280:3;20203:85;:::i;:::-;20196:92;;20297:93;20386:3;20297:93;:::i;:::-;20415:2;20410:3;20406:12;20399:19;;20022:402;;;:::o;20430:377::-;20536:3;20564:39;20597:5;20564:39;:::i;:::-;20619:89;20701:6;20696:3;20619:89;:::i;:::-;20612:96;;20717:52;20762:6;20757:3;20750:4;20743:5;20739:16;20717:52;:::i;:::-;20794:6;20789:3;20785:16;20778:23;;20540:267;20430:377;;;;:::o;20813:167::-;20953:19;20949:1;20941:6;20937:14;20930:43;20813:167;:::o;20986:402::-;21146:3;21167:85;21249:2;21244:3;21167:85;:::i;:::-;21160:92;;21261:93;21350:3;21261:93;:::i;:::-;21379:2;21374:3;21370:12;21363:19;;20986:402;;;:::o;21394:967::-;21776:3;21798:148;21942:3;21798:148;:::i;:::-;21791:155;;21963:95;22054:3;22045:6;21963:95;:::i;:::-;21956:102;;22075:148;22219:3;22075:148;:::i;:::-;22068:155;;22240:95;22331:3;22322:6;22240:95;:::i;:::-;22233:102;;22352:3;22345:10;;21394:967;;;;;:::o;22367:181::-;22507:33;22503:1;22495:6;22491:14;22484:57;22367:181;:::o;22554:366::-;22696:3;22717:67;22781:2;22776:3;22717:67;:::i;:::-;22710:74;;22793:93;22882:3;22793:93;:::i;:::-;22911:2;22906:3;22902:12;22895:19;;22554:366;;;:::o;22926:419::-;23092:4;23130:2;23119:9;23115:18;23107:26;;23179:9;23173:4;23169:20;23165:1;23154:9;23150:17;23143:47;23207:131;23333:4;23207:131;:::i;:::-;23199:139;;22926:419;;;:::o;23351:220::-;23491:34;23487:1;23479:6;23475:14;23468:58;23560:3;23555:2;23547:6;23543:15;23536:28;23351:220;:::o;23577:366::-;23719:3;23740:67;23804:2;23799:3;23740:67;:::i;:::-;23733:74;;23816:93;23905:3;23816:93;:::i;:::-;23934:2;23929:3;23925:12;23918:19;;23577:366;;;:::o;23949:419::-;24115:4;24153:2;24142:9;24138:18;24130:26;;24202:9;24196:4;24192:20;24188:1;24177:9;24173:17;24166:47;24230:131;24356:4;24230:131;:::i;:::-;24222:139;;23949:419;;;:::o;24374:221::-;24514:34;24510:1;24502:6;24498:14;24491:58;24583:4;24578:2;24570:6;24566:15;24559:29;24374:221;:::o;24601:366::-;24743:3;24764:67;24828:2;24823:3;24764:67;:::i;:::-;24757:74;;24840:93;24929:3;24840:93;:::i;:::-;24958:2;24953:3;24949:12;24942:19;;24601:366;;;:::o;24973:419::-;25139:4;25177:2;25166:9;25162:18;25154:26;;25226:9;25220:4;25216:20;25212:1;25201:9;25197:17;25190:47;25254:131;25380:4;25254:131;:::i;:::-;25246:139;;24973:419;;;:::o;25398:191::-;25438:4;25458:20;25476:1;25458:20;:::i;:::-;25453:25;;25492:20;25510:1;25492:20;:::i;:::-;25487:25;;25531:1;25528;25525:8;25522:34;;;25536:18;;:::i;:::-;25522:34;25581:1;25578;25574:9;25566:17;;25398:191;;;;:::o;25595:348::-;25635:7;25658:20;25676:1;25658:20;:::i;:::-;25653:25;;25692:20;25710:1;25692:20;:::i;:::-;25687:25;;25880:1;25812:66;25808:74;25805:1;25802:81;25797:1;25790:9;25783:17;25779:105;25776:131;;;25887:18;;:::i;:::-;25776:131;25935:1;25932;25928:9;25917:20;;25595:348;;;;:::o;25949:180::-;25997:77;25994:1;25987:88;26094:4;26091:1;26084:15;26118:4;26115:1;26108:15;26135:180;26183:77;26180:1;26173:88;26280:4;26277:1;26270:15;26304:4;26301:1;26294:15;26321:171;26360:3;26383:24;26401:5;26383:24;:::i;:::-;26374:33;;26429:4;26422:5;26419:15;26416:41;;26437:18;;:::i;:::-;26416:41;26484:1;26477:5;26473:13;26466:20;;26321:171;;;:::o;26498:182::-;26638:34;26634:1;26626:6;26622:14;26615:58;26498:182;:::o;26686:366::-;26828:3;26849:67;26913:2;26908:3;26849:67;:::i;:::-;26842:74;;26925:93;27014:3;26925:93;:::i;:::-;27043:2;27038:3;27034:12;27027:19;;26686:366;;;:::o;27058:419::-;27224:4;27262:2;27251:9;27247:18;27239:26;;27311:9;27305:4;27301:20;27297:1;27286:9;27282:17;27275:47;27339:131;27465:4;27339:131;:::i;:::-;27331:139;;27058:419;;;:::o
Swarm Source
ipfs://e1b1d1b998323d3cc2429c9a7a06bb6bffcf921f3d0bea907d959d3f39c9914b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.