Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
2,932,208.456597222222221769 ISLD
Holders
132
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
4,984.312962962962962962 ISLDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
IslandToken
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense pragma solidity 0.8.11; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./interfaces/IIslandToken.sol"; import "./interfaces/IStaking.sol"; contract IslandToken is ERC20, ERC20Burnable, Pausable, Ownable, IIslandToken { mapping(address => bool) public liquidityPair; // list of liquidity pool's address mapping(address => bool) public noFee; // addresses that should not get fees uint256[] public taxes; // sales taxes levels uint256 public taxToBurn; // waiting tax to be burned // staking contract IStaking public staking; constructor() ERC20("ISLANDS TOKEN", "ISLD") {} /* * set staking contract * * @param stakingContract: staking's contract address */ function setStaking(address stakingContract) external onlyOwner { staking = IStaking(stakingContract); } /* * set sales taxes * * @param _newTaxes: amount for each sale tax * * Error messages: * - I1: "list needs to be 5 element long" * - I2: "tax can not exceed 30%" */ function setTaxes(uint256 a, uint256 b, uint256 c, uint256 d, uint256 e) external onlyOwner { require(a <= 30 && b <= 30 && c <= 30 && d <= 30 && d <= 30, "I2"); taxes = [a, b, c, d, e]; } /* * mint * * @param to: address receiving the minted tokens * @param amount: amount received * * Error messages: * - I3: "Only the staking contract can interract with this function" */ function mint(address to, uint256 amount) external override { require(_msgSender() == address(staking), "I3"); _mint(to, amount); } /* * Before the transfer of any tokens * * @param from: address sending tokens * @param to: address receiving tokens * @param amount: amount sent */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override { super._beforeTokenTransfer(from, to, amount); } /* * override of the basic transfer functino to incorporrate taxes * * @param from: address sending tokens * @param to: address receiving tokens * @param amount: amount sent */ function _transfer( address from, address to, uint256 amount ) internal override { uint256 transferAmount = amount; if (liquidityPair[to] && !noFee[from]) transferAmount -= getSellTax(transferAmount); uint256 tax = amount - transferAmount; if (tax > 0) { taxToBurn += tax * 30 / 100; super._transfer(from, address(this), tax); } super._transfer(from, to, transferAmount); } /* * set address as liquidPair * * @param liquid pair: address of the liquidity pool * @param isliq: is a liquidity pool */ function setLiqPair(address liqpair, bool isliq) external onlyOwner { liquidityPair[liqpair] = isliq; } /* * set fees to 0 when interracting with set address * * @param _address: address to have no fees * @param noFees: should this address have no fees */ function setNoFee(address _address, bool noFees) external onlyOwner { noFee[_address] = noFees; } function getSellTax(uint256 amount) internal view returns (uint256) { uint256 currTax; if (amount <= 1000 ether) { currTax = taxes[0]; } else if (amount <= 4000 ether) { currTax = taxes[1]; } else if (amount <= 10000 ether) { currTax = taxes[2]; } else if (amount <= 20000 ether) { currTax = taxes[3]; } else { currTax = taxes[4]; } return amount * currTax / 100; } /* * withdraw ERC20 tokens of the contract */ function withdrawProjectIslandTokens() external onlyOwner { uint256 totalBalance = balanceOf(address(this)) - taxToBurn; taxToBurn = 0; _mint(msg.sender, totalBalance); _burn(address(this), balanceOf(address(this))); } /* * pause all transfers and mints */ function pause() public onlyOwner { _pause(); } /* * unpause all transfers and mints */ function unpause() public onlyOwner { _unpause(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
//SPDX-License-Identifier: Unlicense pragma solidity 0.8.11; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/IAccessControl.sol"; interface IIslandToken is IERC20 { function mint(address to, uint256 amount) external; }
//SPDX-License-Identifier: Unlicense pragma solidity 0.8.11; interface IStaking { function stakeMultipleTokens(uint256[] calldata tokenIds) external; function stakeFromNFTContract(uint256 tokenIds) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"","type":"address"}],"name":"liquidityPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"address","name":"","type":"address"}],"name":"noFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liqpair","type":"address"},{"internalType":"bool","name":"isliq","type":"bool"}],"name":"setLiqPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"noFees","type":"bool"}],"name":"setNoFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"stakingContract","type":"address"}],"name":"setStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"uint256","name":"b","type":"uint256"},{"internalType":"uint256","name":"c","type":"uint256"},{"internalType":"uint256","name":"d","type":"uint256"},{"internalType":"uint256","name":"e","type":"uint256"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"staking","outputs":[{"internalType":"contract IStaking","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxToBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawProjectIslandTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f49534c414e445320544f4b454e000000000000000000000000000000000000008152506040518060400160405280600481526020017f49534c4400000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620001c1565b508060049080519060200190620000af929190620001c1565b5050506000600560006101000a81548160ff021916908315150217905550620000ed620000e1620000f360201b60201c565b620000fb60201b60201c565b620002d6565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cf90620002a0565b90600052602060002090601f016020900481019282620001f357600085556200023f565b82601f106200020e57805160ff19168380011785556200023f565b828001600101855582156200023f579182015b828111156200023e57825182559160200191906001019062000221565b5b5090506200024e919062000252565b5090565b5b808211156200026d57600081600090555060010162000253565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002b957607f821691505b60208210811415620002d057620002cf62000271565b5b50919050565b6129e480620002e66000396000f3fe608060405234801561001057600080fd5b50600436106101d95760003560e01c8063715018a611610104578063a9059cbb116100a2578063dcc9315511610071578063dcc9315514610544578063dd62ed3e1461054e578063f0407d811461057e578063f2fde38b1461059a576101d9565b8063a9059cbb14610496578063b7677cb2146104c6578063c5be2bc7146104f6578063c9cb135d14610526576101d9565b80638da5cb5b116100de5780638da5cb5b1461040e5780638ff390991461042c57806395d89b4114610448578063a457c2d714610466576101d9565b8063715018a6146103de57806379cc6790146103e85780638456cb5914610404576101d9565b80633f4ba83a1161017c5780634cf088d91161014b5780634cf088d9146103565780635c975abb146103745780635fcefa421461039257806370a08231146103ae576101d9565b80633f4ba83a146102f857806340c10f191461030257806342701a8e1461031e57806342966c681461033a576101d9565b806318160ddd116101b857806318160ddd1461025c57806323b872dd1461027a578063313ce567146102aa57806339509351146102c8576101d9565b80622a2050146101de57806306fdde031461020e578063095ea7b31461022c575b600080fd5b6101f860048036038101906101f39190611b55565b6105b6565b6040516102059190611b9d565b60405180910390f35b6102166105d6565b6040516102239190611c51565b60405180910390f35b61024660048036038101906102419190611ca9565b610668565b6040516102539190611b9d565b60405180910390f35b61026461068b565b6040516102719190611cf8565b60405180910390f35b610294600480360381019061028f9190611d13565b610695565b6040516102a19190611b9d565b60405180910390f35b6102b26106c4565b6040516102bf9190611d82565b60405180910390f35b6102e260048036038101906102dd9190611ca9565b6106cd565b6040516102ef9190611b9d565b60405180910390f35b610300610704565b005b61031c60048036038101906103179190611ca9565b610716565b005b61033860048036038101906103339190611dc9565b6107bb565b005b610354600480360381019061034f9190611e09565b61081e565b005b61035e610832565b60405161036b9190611e95565b60405180910390f35b61037c610858565b6040516103899190611b9d565b60405180910390f35b6103ac60048036038101906103a79190611eb0565b61086f565b005b6103c860048036038101906103c39190611b55565b61092e565b6040516103d59190611cf8565b60405180910390f35b6103e6610976565b005b61040260048036038101906103fd9190611ca9565b61098a565b005b61040c6109aa565b005b6104166109bc565b6040516104239190611f3a565b60405180910390f35b61044660048036038101906104419190611b55565b6109e6565b005b610450610a32565b60405161045d9190611c51565b60405180910390f35b610480600480360381019061047b9190611ca9565b610ac4565b60405161048d9190611b9d565b60405180910390f35b6104b060048036038101906104ab9190611ca9565b610b3b565b6040516104bd9190611b9d565b60405180910390f35b6104e060048036038101906104db9190611b55565b610b5e565b6040516104ed9190611b9d565b60405180910390f35b610510600480360381019061050b9190611e09565b610b7e565b60405161051d9190611cf8565b60405180910390f35b61052e610ba2565b60405161053b9190611cf8565b60405180910390f35b61054c610ba8565b005b61056860048036038101906105639190611f55565b610bf1565b6040516105759190611cf8565b60405180910390f35b61059860048036038101906105939190611dc9565b610c78565b005b6105b460048036038101906105af9190611b55565b610cdb565b005b60076020528060005260406000206000915054906101000a900460ff1681565b6060600380546105e590611fc4565b80601f016020809104026020016040519081016040528092919081815260200182805461061190611fc4565b801561065e5780601f106106335761010080835404028352916020019161065e565b820191906000526020600020905b81548152906001019060200180831161064157829003601f168201915b5050505050905090565b600080610673610d5f565b9050610680818585610d67565b600191505092915050565b6000600254905090565b6000806106a0610d5f565b90506106ad858285610f32565b6106b8858585610fbe565b60019150509392505050565b60006012905090565b6000806106d8610d5f565b90506106f98185856106ea8589610bf1565b6106f49190612025565b610d67565b600191505092915050565b61070c6110ea565b610714611168565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610757610d5f565b73ffffffffffffffffffffffffffffffffffffffff16146107ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a4906120c7565b60405180910390fd5b6107b782826111cb565b5050565b6107c36110ea565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61082f610829610d5f565b8261132b565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900460ff16905090565b6108776110ea565b601e85111580156108895750601e8411155b80156108965750601e8311155b80156108a35750601e8211155b80156108b05750601e8211155b6108ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e690612133565b60405180910390fd5b6040518060a00160405280868152602001858152602001848152602001838152602001828152506008906005610926929190611a88565b505050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61097e6110ea565b6109886000611502565b565b61099c82610996610d5f565b83610f32565b6109a6828261132b565b5050565b6109b26110ea565b6109ba6115c8565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109ee6110ea565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060048054610a4190611fc4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6d90611fc4565b8015610aba5780601f10610a8f57610100808354040283529160200191610aba565b820191906000526020600020905b815481529060010190602001808311610a9d57829003601f168201915b5050505050905090565b600080610acf610d5f565b90506000610add8286610bf1565b905083811015610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b19906121c5565b60405180910390fd5b610b2f8286868403610d67565b60019250505092915050565b600080610b46610d5f565b9050610b53818585610fbe565b600191505092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b60088181548110610b8e57600080fd5b906000526020600020016000915090505481565b60095481565b610bb06110ea565b6000600954610bbe3061092e565b610bc891906121e5565b90506000600981905550610bdc33826111cb565b610bee30610be93061092e565b61132b565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c806110ea565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610ce36110ea565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a9061228b565b60405180910390fd5b610d5c81611502565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce9061231d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e906123af565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f259190611cf8565b60405180910390a3505050565b6000610f3e8484610bf1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fb85781811015610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa19061241b565b60405180910390fd5b610fb78484848403610d67565b5b50505050565b6000819050600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156110665750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611082576110748161162b565b8161107f91906121e5565b90505b6000818361109091906121e5565b905060008111156110d8576064601e826110aa919061243b565b6110b491906124c4565b600960008282546110c59190612025565b925050819055506110d7853083611752565b5b6110e3858584611752565b5050505050565b6110f2610d5f565b73ffffffffffffffffffffffffffffffffffffffff166111106109bc565b73ffffffffffffffffffffffffffffffffffffffff1614611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90612541565b60405180910390fd5b565b6111706119d3565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6111b4610d5f565b6040516111c19190611f3a565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611232906125ad565b60405180910390fd5b61124760008383611a1c565b80600260008282546112599190612025565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112ae9190612025565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113139190611cf8565b60405180910390a361132760008383611a34565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561139b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113929061263f565b60405180910390fd5b6113a782600083611a1c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561142d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611424906126d1565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461148491906121e5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114e99190611cf8565b60405180910390a36114fd83600084611a34565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6115d0611a39565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611614610d5f565b6040516116219190611f3a565b60405180910390a1565b600080683635c9adc5dea000008311611665576008600081548110611653576116526126f1565b5b90600052602060002001549050611732565b68d8d726b7177a800000831161169c57600860018154811061168a576116896126f1565b5b90600052602060002001549050611731565b69021e19e0c9bab240000083116116d45760086002815481106116c2576116c16126f1565b5b90600052602060002001549050611730565b69043c33c1937564800000831161170c5760086003815481106116fa576116f96126f1565b5b9060005260206000200154905061172f565b6008600481548110611721576117206126f1565b5b906000526020600020015490505b5b5b5b60648184611740919061243b565b61174a91906124c4565b915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b990612792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990612824565b60405180910390fd5b61183d838383611a1c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba906128b6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119569190612025565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119ba9190611cf8565b60405180910390a36119cd848484611a34565b50505050565b6119db610858565b611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190612922565b60405180910390fd5b565b611a24611a39565b611a2f838383611a83565b505050565b505050565b611a41610858565b15611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a789061298e565b60405180910390fd5b565b505050565b828054828255906000526020600020908101928215611ac4579160200282015b82811115611ac3578251825591602001919060010190611aa8565b5b509050611ad19190611ad5565b5090565b5b80821115611aee576000816000905550600101611ad6565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b2282611af7565b9050919050565b611b3281611b17565b8114611b3d57600080fd5b50565b600081359050611b4f81611b29565b92915050565b600060208284031215611b6b57611b6a611af2565b5b6000611b7984828501611b40565b91505092915050565b60008115159050919050565b611b9781611b82565b82525050565b6000602082019050611bb26000830184611b8e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611bf2578082015181840152602081019050611bd7565b83811115611c01576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c2382611bb8565b611c2d8185611bc3565b9350611c3d818560208601611bd4565b611c4681611c07565b840191505092915050565b60006020820190508181036000830152611c6b8184611c18565b905092915050565b6000819050919050565b611c8681611c73565b8114611c9157600080fd5b50565b600081359050611ca381611c7d565b92915050565b60008060408385031215611cc057611cbf611af2565b5b6000611cce85828601611b40565b9250506020611cdf85828601611c94565b9150509250929050565b611cf281611c73565b82525050565b6000602082019050611d0d6000830184611ce9565b92915050565b600080600060608486031215611d2c57611d2b611af2565b5b6000611d3a86828701611b40565b9350506020611d4b86828701611b40565b9250506040611d5c86828701611c94565b9150509250925092565b600060ff82169050919050565b611d7c81611d66565b82525050565b6000602082019050611d976000830184611d73565b92915050565b611da681611b82565b8114611db157600080fd5b50565b600081359050611dc381611d9d565b92915050565b60008060408385031215611de057611ddf611af2565b5b6000611dee85828601611b40565b9250506020611dff85828601611db4565b9150509250929050565b600060208284031215611e1f57611e1e611af2565b5b6000611e2d84828501611c94565b91505092915050565b6000819050919050565b6000611e5b611e56611e5184611af7565b611e36565b611af7565b9050919050565b6000611e6d82611e40565b9050919050565b6000611e7f82611e62565b9050919050565b611e8f81611e74565b82525050565b6000602082019050611eaa6000830184611e86565b92915050565b600080600080600060a08688031215611ecc57611ecb611af2565b5b6000611eda88828901611c94565b9550506020611eeb88828901611c94565b9450506040611efc88828901611c94565b9350506060611f0d88828901611c94565b9250506080611f1e88828901611c94565b9150509295509295909350565b611f3481611b17565b82525050565b6000602082019050611f4f6000830184611f2b565b92915050565b60008060408385031215611f6c57611f6b611af2565b5b6000611f7a85828601611b40565b9250506020611f8b85828601611b40565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611fdc57607f821691505b60208210811415611ff057611fef611f95565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061203082611c73565b915061203b83611c73565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156120705761206f611ff6565b5b828201905092915050565b7f4933000000000000000000000000000000000000000000000000000000000000600082015250565b60006120b1600283611bc3565b91506120bc8261207b565b602082019050919050565b600060208201905081810360008301526120e0816120a4565b9050919050565b7f4932000000000000000000000000000000000000000000000000000000000000600082015250565b600061211d600283611bc3565b9150612128826120e7565b602082019050919050565b6000602082019050818103600083015261214c81612110565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006121af602583611bc3565b91506121ba82612153565b604082019050919050565b600060208201905081810360008301526121de816121a2565b9050919050565b60006121f082611c73565b91506121fb83611c73565b92508282101561220e5761220d611ff6565b5b828203905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612275602683611bc3565b915061228082612219565b604082019050919050565b600060208201905081810360008301526122a481612268565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612307602483611bc3565b9150612312826122ab565b604082019050919050565b60006020820190508181036000830152612336816122fa565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612399602283611bc3565b91506123a48261233d565b604082019050919050565b600060208201905081810360008301526123c88161238c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612405601d83611bc3565b9150612410826123cf565b602082019050919050565b60006020820190508181036000830152612434816123f8565b9050919050565b600061244682611c73565b915061245183611c73565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561248a57612489611ff6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006124cf82611c73565b91506124da83611c73565b9250826124ea576124e9612495565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061252b602083611bc3565b9150612536826124f5565b602082019050919050565b6000602082019050818103600083015261255a8161251e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612597601f83611bc3565b91506125a282612561565b602082019050919050565b600060208201905081810360008301526125c68161258a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612629602183611bc3565b9150612634826125cd565b604082019050919050565b600060208201905081810360008301526126588161261c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006126bb602283611bc3565b91506126c68261265f565b604082019050919050565b600060208201905081810360008301526126ea816126ae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061277c602583611bc3565b915061278782612720565b604082019050919050565b600060208201905081810360008301526127ab8161276f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061280e602383611bc3565b9150612819826127b2565b604082019050919050565b6000602082019050818103600083015261283d81612801565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006128a0602683611bc3565b91506128ab82612844565b604082019050919050565b600060208201905081810360008301526128cf81612893565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061290c601483611bc3565b9150612917826128d6565b602082019050919050565b6000602082019050818103600083015261293b816128ff565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612978601083611bc3565b915061298382612942565b602082019050919050565b600060208201905081810360008301526129a78161296b565b905091905056fea2646970667358221220e1ab9b2590315869cfe1141f9ed5bbbdaf51ea10333ff40069967312bfab149564736f6c634300080b0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101d95760003560e01c8063715018a611610104578063a9059cbb116100a2578063dcc9315511610071578063dcc9315514610544578063dd62ed3e1461054e578063f0407d811461057e578063f2fde38b1461059a576101d9565b8063a9059cbb14610496578063b7677cb2146104c6578063c5be2bc7146104f6578063c9cb135d14610526576101d9565b80638da5cb5b116100de5780638da5cb5b1461040e5780638ff390991461042c57806395d89b4114610448578063a457c2d714610466576101d9565b8063715018a6146103de57806379cc6790146103e85780638456cb5914610404576101d9565b80633f4ba83a1161017c5780634cf088d91161014b5780634cf088d9146103565780635c975abb146103745780635fcefa421461039257806370a08231146103ae576101d9565b80633f4ba83a146102f857806340c10f191461030257806342701a8e1461031e57806342966c681461033a576101d9565b806318160ddd116101b857806318160ddd1461025c57806323b872dd1461027a578063313ce567146102aa57806339509351146102c8576101d9565b80622a2050146101de57806306fdde031461020e578063095ea7b31461022c575b600080fd5b6101f860048036038101906101f39190611b55565b6105b6565b6040516102059190611b9d565b60405180910390f35b6102166105d6565b6040516102239190611c51565b60405180910390f35b61024660048036038101906102419190611ca9565b610668565b6040516102539190611b9d565b60405180910390f35b61026461068b565b6040516102719190611cf8565b60405180910390f35b610294600480360381019061028f9190611d13565b610695565b6040516102a19190611b9d565b60405180910390f35b6102b26106c4565b6040516102bf9190611d82565b60405180910390f35b6102e260048036038101906102dd9190611ca9565b6106cd565b6040516102ef9190611b9d565b60405180910390f35b610300610704565b005b61031c60048036038101906103179190611ca9565b610716565b005b61033860048036038101906103339190611dc9565b6107bb565b005b610354600480360381019061034f9190611e09565b61081e565b005b61035e610832565b60405161036b9190611e95565b60405180910390f35b61037c610858565b6040516103899190611b9d565b60405180910390f35b6103ac60048036038101906103a79190611eb0565b61086f565b005b6103c860048036038101906103c39190611b55565b61092e565b6040516103d59190611cf8565b60405180910390f35b6103e6610976565b005b61040260048036038101906103fd9190611ca9565b61098a565b005b61040c6109aa565b005b6104166109bc565b6040516104239190611f3a565b60405180910390f35b61044660048036038101906104419190611b55565b6109e6565b005b610450610a32565b60405161045d9190611c51565b60405180910390f35b610480600480360381019061047b9190611ca9565b610ac4565b60405161048d9190611b9d565b60405180910390f35b6104b060048036038101906104ab9190611ca9565b610b3b565b6040516104bd9190611b9d565b60405180910390f35b6104e060048036038101906104db9190611b55565b610b5e565b6040516104ed9190611b9d565b60405180910390f35b610510600480360381019061050b9190611e09565b610b7e565b60405161051d9190611cf8565b60405180910390f35b61052e610ba2565b60405161053b9190611cf8565b60405180910390f35b61054c610ba8565b005b61056860048036038101906105639190611f55565b610bf1565b6040516105759190611cf8565b60405180910390f35b61059860048036038101906105939190611dc9565b610c78565b005b6105b460048036038101906105af9190611b55565b610cdb565b005b60076020528060005260406000206000915054906101000a900460ff1681565b6060600380546105e590611fc4565b80601f016020809104026020016040519081016040528092919081815260200182805461061190611fc4565b801561065e5780601f106106335761010080835404028352916020019161065e565b820191906000526020600020905b81548152906001019060200180831161064157829003601f168201915b5050505050905090565b600080610673610d5f565b9050610680818585610d67565b600191505092915050565b6000600254905090565b6000806106a0610d5f565b90506106ad858285610f32565b6106b8858585610fbe565b60019150509392505050565b60006012905090565b6000806106d8610d5f565b90506106f98185856106ea8589610bf1565b6106f49190612025565b610d67565b600191505092915050565b61070c6110ea565b610714611168565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610757610d5f565b73ffffffffffffffffffffffffffffffffffffffff16146107ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a4906120c7565b60405180910390fd5b6107b782826111cb565b5050565b6107c36110ea565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61082f610829610d5f565b8261132b565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900460ff16905090565b6108776110ea565b601e85111580156108895750601e8411155b80156108965750601e8311155b80156108a35750601e8211155b80156108b05750601e8211155b6108ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e690612133565b60405180910390fd5b6040518060a00160405280868152602001858152602001848152602001838152602001828152506008906005610926929190611a88565b505050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61097e6110ea565b6109886000611502565b565b61099c82610996610d5f565b83610f32565b6109a6828261132b565b5050565b6109b26110ea565b6109ba6115c8565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109ee6110ea565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060048054610a4190611fc4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6d90611fc4565b8015610aba5780601f10610a8f57610100808354040283529160200191610aba565b820191906000526020600020905b815481529060010190602001808311610a9d57829003601f168201915b5050505050905090565b600080610acf610d5f565b90506000610add8286610bf1565b905083811015610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b19906121c5565b60405180910390fd5b610b2f8286868403610d67565b60019250505092915050565b600080610b46610d5f565b9050610b53818585610fbe565b600191505092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b60088181548110610b8e57600080fd5b906000526020600020016000915090505481565b60095481565b610bb06110ea565b6000600954610bbe3061092e565b610bc891906121e5565b90506000600981905550610bdc33826111cb565b610bee30610be93061092e565b61132b565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c806110ea565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610ce36110ea565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a9061228b565b60405180910390fd5b610d5c81611502565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce9061231d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e906123af565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f259190611cf8565b60405180910390a3505050565b6000610f3e8484610bf1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fb85781811015610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa19061241b565b60405180910390fd5b610fb78484848403610d67565b5b50505050565b6000819050600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156110665750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611082576110748161162b565b8161107f91906121e5565b90505b6000818361109091906121e5565b905060008111156110d8576064601e826110aa919061243b565b6110b491906124c4565b600960008282546110c59190612025565b925050819055506110d7853083611752565b5b6110e3858584611752565b5050505050565b6110f2610d5f565b73ffffffffffffffffffffffffffffffffffffffff166111106109bc565b73ffffffffffffffffffffffffffffffffffffffff1614611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90612541565b60405180910390fd5b565b6111706119d3565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6111b4610d5f565b6040516111c19190611f3a565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611232906125ad565b60405180910390fd5b61124760008383611a1c565b80600260008282546112599190612025565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112ae9190612025565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113139190611cf8565b60405180910390a361132760008383611a34565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561139b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113929061263f565b60405180910390fd5b6113a782600083611a1c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561142d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611424906126d1565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461148491906121e5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114e99190611cf8565b60405180910390a36114fd83600084611a34565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6115d0611a39565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611614610d5f565b6040516116219190611f3a565b60405180910390a1565b600080683635c9adc5dea000008311611665576008600081548110611653576116526126f1565b5b90600052602060002001549050611732565b68d8d726b7177a800000831161169c57600860018154811061168a576116896126f1565b5b90600052602060002001549050611731565b69021e19e0c9bab240000083116116d45760086002815481106116c2576116c16126f1565b5b90600052602060002001549050611730565b69043c33c1937564800000831161170c5760086003815481106116fa576116f96126f1565b5b9060005260206000200154905061172f565b6008600481548110611721576117206126f1565b5b906000526020600020015490505b5b5b5b60648184611740919061243b565b61174a91906124c4565b915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b990612792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990612824565b60405180910390fd5b61183d838383611a1c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba906128b6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119569190612025565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119ba9190611cf8565b60405180910390a36119cd848484611a34565b50505050565b6119db610858565b611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190612922565b60405180910390fd5b565b611a24611a39565b611a2f838383611a83565b505050565b505050565b611a41610858565b15611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a789061298e565b60405180910390fd5b565b505050565b828054828255906000526020600020908101928215611ac4579160200282015b82811115611ac3578251825591602001919060010190611aa8565b5b509050611ad19190611ad5565b5090565b5b80821115611aee576000816000905550600101611ad6565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b2282611af7565b9050919050565b611b3281611b17565b8114611b3d57600080fd5b50565b600081359050611b4f81611b29565b92915050565b600060208284031215611b6b57611b6a611af2565b5b6000611b7984828501611b40565b91505092915050565b60008115159050919050565b611b9781611b82565b82525050565b6000602082019050611bb26000830184611b8e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611bf2578082015181840152602081019050611bd7565b83811115611c01576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c2382611bb8565b611c2d8185611bc3565b9350611c3d818560208601611bd4565b611c4681611c07565b840191505092915050565b60006020820190508181036000830152611c6b8184611c18565b905092915050565b6000819050919050565b611c8681611c73565b8114611c9157600080fd5b50565b600081359050611ca381611c7d565b92915050565b60008060408385031215611cc057611cbf611af2565b5b6000611cce85828601611b40565b9250506020611cdf85828601611c94565b9150509250929050565b611cf281611c73565b82525050565b6000602082019050611d0d6000830184611ce9565b92915050565b600080600060608486031215611d2c57611d2b611af2565b5b6000611d3a86828701611b40565b9350506020611d4b86828701611b40565b9250506040611d5c86828701611c94565b9150509250925092565b600060ff82169050919050565b611d7c81611d66565b82525050565b6000602082019050611d976000830184611d73565b92915050565b611da681611b82565b8114611db157600080fd5b50565b600081359050611dc381611d9d565b92915050565b60008060408385031215611de057611ddf611af2565b5b6000611dee85828601611b40565b9250506020611dff85828601611db4565b9150509250929050565b600060208284031215611e1f57611e1e611af2565b5b6000611e2d84828501611c94565b91505092915050565b6000819050919050565b6000611e5b611e56611e5184611af7565b611e36565b611af7565b9050919050565b6000611e6d82611e40565b9050919050565b6000611e7f82611e62565b9050919050565b611e8f81611e74565b82525050565b6000602082019050611eaa6000830184611e86565b92915050565b600080600080600060a08688031215611ecc57611ecb611af2565b5b6000611eda88828901611c94565b9550506020611eeb88828901611c94565b9450506040611efc88828901611c94565b9350506060611f0d88828901611c94565b9250506080611f1e88828901611c94565b9150509295509295909350565b611f3481611b17565b82525050565b6000602082019050611f4f6000830184611f2b565b92915050565b60008060408385031215611f6c57611f6b611af2565b5b6000611f7a85828601611b40565b9250506020611f8b85828601611b40565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611fdc57607f821691505b60208210811415611ff057611fef611f95565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061203082611c73565b915061203b83611c73565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156120705761206f611ff6565b5b828201905092915050565b7f4933000000000000000000000000000000000000000000000000000000000000600082015250565b60006120b1600283611bc3565b91506120bc8261207b565b602082019050919050565b600060208201905081810360008301526120e0816120a4565b9050919050565b7f4932000000000000000000000000000000000000000000000000000000000000600082015250565b600061211d600283611bc3565b9150612128826120e7565b602082019050919050565b6000602082019050818103600083015261214c81612110565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006121af602583611bc3565b91506121ba82612153565b604082019050919050565b600060208201905081810360008301526121de816121a2565b9050919050565b60006121f082611c73565b91506121fb83611c73565b92508282101561220e5761220d611ff6565b5b828203905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612275602683611bc3565b915061228082612219565b604082019050919050565b600060208201905081810360008301526122a481612268565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612307602483611bc3565b9150612312826122ab565b604082019050919050565b60006020820190508181036000830152612336816122fa565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612399602283611bc3565b91506123a48261233d565b604082019050919050565b600060208201905081810360008301526123c88161238c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612405601d83611bc3565b9150612410826123cf565b602082019050919050565b60006020820190508181036000830152612434816123f8565b9050919050565b600061244682611c73565b915061245183611c73565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561248a57612489611ff6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006124cf82611c73565b91506124da83611c73565b9250826124ea576124e9612495565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061252b602083611bc3565b9150612536826124f5565b602082019050919050565b6000602082019050818103600083015261255a8161251e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612597601f83611bc3565b91506125a282612561565b602082019050919050565b600060208201905081810360008301526125c68161258a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612629602183611bc3565b9150612634826125cd565b604082019050919050565b600060208201905081810360008301526126588161261c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006126bb602283611bc3565b91506126c68261265f565b604082019050919050565b600060208201905081810360008301526126ea816126ae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061277c602583611bc3565b915061278782612720565b604082019050919050565b600060208201905081810360008301526127ab8161276f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061280e602383611bc3565b9150612819826127b2565b604082019050919050565b6000602082019050818103600083015261283d81612801565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006128a0602683611bc3565b91506128ab82612844565b604082019050919050565b600060208201905081810360008301526128cf81612893565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061290c601483611bc3565b9150612917826128d6565b602082019050919050565b6000602082019050818103600083015261293b816128ff565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612978601083611bc3565b915061298382612942565b602082019050919050565b600060208201905081810360008301526129a78161296b565b905091905056fea2646970667358221220e1ab9b2590315869cfe1141f9ed5bbbdaf51ea10333ff40069967312bfab149564736f6c634300080b0033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.