Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 138 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim Toadz By I... | 13861006 | 1122 days ago | IN | 0 ETH | 0.00277867 | ||||
Claim Toadz By I... | 13861005 | 1122 days ago | IN | 0 ETH | 0.00260751 | ||||
Claim Toadz By I... | 13861005 | 1122 days ago | IN | 0 ETH | 0.00618951 | ||||
Claim Toadz By I... | 13860996 | 1122 days ago | IN | 0 ETH | 0.00656469 | ||||
Claim Toadz By I... | 13857818 | 1123 days ago | IN | 0 ETH | 0.0099981 | ||||
Claim All Toadz | 13829122 | 1127 days ago | IN | 0 ETH | 0.00654408 | ||||
Claim All Flyz | 13828461 | 1127 days ago | IN | 0 ETH | 0.00920668 | ||||
Claim All Toadz | 13828458 | 1127 days ago | IN | 0 ETH | 0.00816314 | ||||
Claim All Toadz | 13827677 | 1128 days ago | IN | 0 ETH | 0.00569988 | ||||
Claim All Toadz | 13827556 | 1128 days ago | IN | 0 ETH | 0.00852032 | ||||
Claim All Toadz | 13814478 | 1130 days ago | IN | 0 ETH | 0.00664503 | ||||
Claim All Toadz | 13779802 | 1135 days ago | IN | 0 ETH | 0.01572606 | ||||
Claim All Flyz | 13734735 | 1142 days ago | IN | 0 ETH | 0.04001942 | ||||
Claim All Toadz | 13731278 | 1143 days ago | IN | 0 ETH | 0.01220861 | ||||
Claim All Polz | 13729479 | 1143 days ago | IN | 0 ETH | 0.01603283 | ||||
Claim All Toadz | 13728901 | 1143 days ago | IN | 0 ETH | 0.01495199 | ||||
Claim All Polz | 13728235 | 1143 days ago | IN | 0 ETH | 0.01163014 | ||||
Transfer | 13726167 | 1144 days ago | IN | 0 ETH | 0.00402905 | ||||
Claim All Flyz | 13718890 | 1145 days ago | IN | 0 ETH | 0.02613472 | ||||
Claim All Toadz | 13718889 | 1145 days ago | IN | 0 ETH | 0.0293481 | ||||
Claim All Polz | 13711027 | 1146 days ago | IN | 0 ETH | 0.01589332 | ||||
Claim All Flyz | 13702792 | 1147 days ago | IN | 0 ETH | 0.03082049 | ||||
Claim All Toadz | 13702775 | 1147 days ago | IN | 0 ETH | 0.03863951 | ||||
Claim All Polz | 13701324 | 1148 days ago | IN | 0 ETH | 0.01778726 | ||||
Claim All Toadz | 13701247 | 1148 days ago | IN | 0 ETH | 0.01726997 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
SwampGold
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; contract SwampGold is Ownable, ERC20Capped { bool public paused; mapping(uint256 => mapping(uint256 => bool)) toadzSeasonClaimedByTokenId; mapping(uint256 => mapping(uint256 => bool)) flyzSeasonClaimedByTokenId; mapping(uint256 => mapping(uint256 => bool)) polzSeasonClaimedByTokenId; uint256 season = 0; struct CyrptoContractInfo { address lootContractAddress; IERC721Enumerable lootContract; uint256 tokenAmount; uint256 tokenStartId; uint256 tokenEndId; } CyrptoContractInfo toadz; CyrptoContractInfo flyz; CyrptoContractInfo polz; uint256[] private _claimedToadz; uint256[] private _claimedFlyz; uint256[] private _claimedPolz; function init() internal{ address toadzContractAddress = 0x1CB1A5e65610AEFF2551A50f76a87a7d3fB649C6; address flyzContractAddress = 0xf8b0a49dA21e6381f1cd3CF43445800abe852179; address polzContractAddress = 0x9aA03df95b6D3c6edFb53c09A4A8473d0D642D32; toadz.lootContractAddress = toadzContractAddress; toadz.lootContract = IERC721Enumerable(toadzContractAddress); toadz.tokenAmount = 8500 * (10**decimals()); toadz.tokenStartId = 1; toadz.tokenEndId = 7025; flyz.lootContractAddress = flyzContractAddress; flyz.lootContract = IERC721Enumerable(flyzContractAddress); flyz.tokenAmount = 1500 * (10**decimals()); flyz.tokenStartId = 1; flyz.tokenEndId = 7026; polz.lootContractAddress = polzContractAddress; polz.lootContract = IERC721Enumerable(polzContractAddress); polz.tokenAmount = 1000 * (10**decimals()); polz.tokenStartId = 1; polz.tokenEndId = 10000; } function setPaused(bool _paused) public onlyOwner { paused = _paused; } function claimToadzById(uint256 tokenId) external { require(paused == false, "Contract Paused"); require( _msgSender() == toadz.lootContract.ownerOf(tokenId), "MUST_OWN_TOKEN_ID" ); _claimToadz(tokenId, _msgSender()); } function claimFlyzById(uint256 tokenId) external { require(paused == false, "Contract Paused"); require( _msgSender() == flyz.lootContract.ownerOf(tokenId), "MUST_OWN_TOKEN_ID" ); _claimFlyz(tokenId, _msgSender()); } function claimPolzById(uint256 tokenId) external { require(paused == false, "Contract Paused"); require( _msgSender() == polz.lootContract.ownerOf(tokenId), "MUST_OWN_TOKEN_ID" ); _claimPolz(tokenId, _msgSender()); } function claimAllToadz() external { require(paused == false, "Contract Paused"); uint256 tokenBalanceOwner = toadz.lootContract.balanceOf(_msgSender()); require(tokenBalanceOwner > 0, "NO_TOKENS_OWNED"); for (uint256 i = 0; i < tokenBalanceOwner; i++) { _claimToadz( toadz.lootContract.tokenOfOwnerByIndex(_msgSender(), i), _msgSender() ); } } function claimAllFlyz() external { require(paused == false, "Contract Paused"); uint256 tokenBalanceOwner = flyz.lootContract.balanceOf(_msgSender()); require(tokenBalanceOwner > 0, "NO_TOKENS_OWNED"); for (uint256 i = 0; i < tokenBalanceOwner; i++) { _claimFlyz( flyz.lootContract.tokenOfOwnerByIndex(_msgSender(), i), _msgSender() ); } } function claimAllPolz() external { require(paused == false, "Contract Paused"); uint256 tokenBalanceOwner = polz.lootContract.balanceOf(_msgSender()); require(tokenBalanceOwner > 0, "NO_TOKENS_OWNED"); for (uint256 i = 0; i < tokenBalanceOwner; i++) { _claimPolz( polz.lootContract.tokenOfOwnerByIndex(_msgSender(), i), _msgSender() ); } } function _claimToadz(uint256 tokenId, address tokenOwner) internal { require( tokenId >= toadz.tokenStartId && tokenId <= toadz.tokenEndId, "TOKEN_ID_OUT_OF_RANGE" ); require( !toadzSeasonClaimedByTokenId[season][tokenId], "GOLD_CLAIMED_FOR_TOKEN_ID" ); toadzSeasonClaimedByTokenId[season][tokenId] = true; _mint(tokenOwner, toadz.tokenAmount); _claimedToadz.push(tokenId); } function _claimFlyz(uint256 tokenId, address tokenOwner) internal { require( tokenId >= flyz.tokenStartId && tokenId <= flyz.tokenEndId, "TOKEN_ID_OUT_OF_RANGE" ); require( !flyzSeasonClaimedByTokenId[season][tokenId], "GOLD_CLAIMED_FOR_TOKEN_ID" ); flyzSeasonClaimedByTokenId[season][tokenId] = true; _mint(tokenOwner, flyz.tokenAmount); _claimedFlyz.push(tokenId); } function _claimPolz(uint256 tokenId, address tokenOwner) internal { require( tokenId >= polz.tokenStartId && tokenId <= polz.tokenEndId, "TOKEN_ID_OUT_OF_RANGE" ); require( !polzSeasonClaimedByTokenId[season][tokenId], "GOLD_CLAIMED_FOR_TOKEN_ID" ); polzSeasonClaimedByTokenId[season][tokenId] = true; _mint(tokenOwner, polz.tokenAmount); _claimedPolz.push(tokenId); } function claimedToadz() public view returns (uint256[] memory) { return _claimedToadz; } function claimedFlyz() public view returns (uint256[] memory) { return _claimedFlyz; } function claimedPolz() public view returns (uint256[] memory) { return _claimedPolz; } function DAOMint(uint256 amountDisplayValue) external onlyOwner { require(paused == false, "Contract Paused"); _mint(owner(), amountDisplayValue * (10**decimals())); } constructor() public Ownable() ERC20("Swamp Gold", "SGLD") ERC20Capped(90000000 * (10**decimals())) { init(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC20.sol"; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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 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 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 pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT 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 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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
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":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":[{"internalType":"uint256","name":"amountDisplayValue","type":"uint256"}],"name":"DAOMint","outputs":[],"stateMutability":"nonpayable","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":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimAllFlyz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimAllPolz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimAllToadz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimFlyzById","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimPolzById","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimToadzById","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimedFlyz","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimedPolz","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimedToadz","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"}]
Contract Creation Code
60a06040526000600a553480156200001657600080fd5b50620000276200016b60201b60201c565b600a62000035919062000674565b63055d4a80620000469190620007b1565b6040518060400160405280600a81526020017f5377616d7020476f6c64000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53474c4400000000000000000000000000000000000000000000000000000000815250620000d2620000c66200017460201b60201c565b6200017c60201b60201c565b8160049080519060200190620000ea9291906200050f565b508060059080519060200190620001039291906200050f565b505050600081116200014c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014390620005e6565b60405180910390fd5b806080818152505050620001656200024060201b60201c565b620008f3565b60006012905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000731cb1a5e65610aeff2551a50f76a87a7d3fb649c69050600073f8b0a49da21e6381f1cd3cf43445800abe85217990506000739aa03df95b6d3c6edfb53c09a4a8473d0d642d32905082600b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600b60010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003236200016b60201b60201c565b600a62000331919062000674565b612134620003409190620007b1565b600b600201819055506001600b60030181905550611b71600b6004018190555081601060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601060010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003f86200016b60201b60201c565b600a62000406919062000674565b6105dc620004159190620007b1565b6010600201819055506001601060030181905550611b7260106004018190555080601560000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601560010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004cd6200016b60201b60201c565b600a620004db919062000674565b6103e8620004ea9190620007b1565b6015600201819055506001601560030181905550612710601560040181905550505050565b8280546200051d9062000829565b90600052602060002090601f0160209004810192826200054157600085556200058d565b82601f106200055c57805160ff19168380011785556200058d565b828001600101855582156200058d579182015b828111156200058c5782518255916020019190600101906200056f565b5b5090506200059c9190620005a0565b5090565b5b80821115620005bb576000816000905550600101620005a1565b5090565b6000620005ce60158362000608565b9150620005db82620008ca565b602082019050919050565b600060208201905081810360008301526200060181620005bf565b9050919050565b600082825260208201905092915050565b6000808291508390505b60018511156200066b578086048111156200064357620006426200085f565b5b6001851615620006535780820291505b80810290506200066385620008bd565b945062000623565b94509492505050565b6000620006818262000812565b91506200068e836200081c565b9250620006bd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006c5565b905092915050565b600082620006d75760019050620007aa565b81620006e75760009050620007aa565b81600181146200070057600281146200070b5762000741565b6001915050620007aa565b60ff84111562000720576200071f6200085f565b5b8360020a9150848211156200073a57620007396200085f565b5b50620007aa565b5060208310610133831016604e8410600b84101617156200077b5782820a9050838111156200077557620007746200085f565b5b620007aa565b6200078a848484600162000619565b92509050818404811115620007a457620007a36200085f565b5b81810290505b9392505050565b6000620007be8262000812565b9150620007cb8362000812565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200080757620008066200085f565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200084257607f821691505b602082108114156200085957620008586200088e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b6080516134c76200090f600039600061093601526134c76000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80635e676bef116100f9578063a457c2d711610097578063cb6886ce11610071578063cb6886ce14610488578063dd62ed3e146104a4578063f2fde38b146104d4578063fc38e61d146104f0576101a9565b8063a457c2d71461040c578063a9059cbb1461043c578063c7190a541461046c576101a9565b8063741e00df116100d3578063741e00df146103aa5780638da5cb5b146103b457806395d89b41146103d25780639d9d4345146103f0576101a9565b80635e676bef1461035257806370a0823114610370578063715018a6146103a0576101a9565b806323b872dd11610166578063395093511161014057806339509351146102dc5780633a02ace51461030c5780635aa6cb13146103165780635c975abb14610334576101a9565b806323b872dd14610270578063313ce567146102a0578063355274ea146102be576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806316c38b3c146101fc57806316f2e0531461021857806318160ddd1461023457806318a7de8a14610252575b600080fd5b6101b66104fa565b6040516101c39190612a3a565b60405180910390f35b6101e660048036038101906101e191906125c8565b61058c565b6040516101f39190612a1f565b60405180910390f35b61021660048036038101906102119190612608565b6105aa565b005b610232600480360381019061022d9190612635565b610643565b005b61023c6107cf565b6040516102499190612c5c565b60405180910390f35b61025a6107d9565b60405161026791906129fd565b60405180910390f35b61028a60048036038101906102859190612575565b610831565b6040516102979190612a1f565b60405180910390f35b6102a8610929565b6040516102b59190612c77565b60405180910390f35b6102c6610932565b6040516102d39190612c5c565b60405180910390f35b6102f660048036038101906102f191906125c8565b61095a565b6040516103039190612a1f565b60405180910390f35b610314610a06565b005b61031e610c41565b60405161032b91906129fd565b60405180910390f35b61033c610c99565b6040516103499190612a1f565b60405180910390f35b61035a610cac565b60405161036791906129fd565b60405180910390f35b61038a600480360381019061038591906124db565b610d04565b6040516103979190612c5c565b60405180910390f35b6103a8610d4d565b005b6103b2610dd5565b005b6103bc611010565b6040516103c991906129b9565b60405180910390f35b6103da611039565b6040516103e79190612a3a565b60405180910390f35b61040a60048036038101906104059190612635565b6110cb565b005b610426600480360381019061042191906125c8565b611257565b6040516104339190612a1f565b60405180910390f35b610456600480360381019061045191906125c8565b611342565b6040516104639190612a1f565b60405180910390f35b61048660048036038101906104819190612635565b611360565b005b6104a2600480360381019061049d9190612635565b611464565b005b6104be60048036038101906104b99190612535565b6115f0565b6040516104cb9190612c5c565b60405180910390f35b6104ee60048036038101906104e991906124db565b611677565b005b6104f861176f565b005b60606004805461050990612f90565b80601f016020809104026020016040519081016040528092919081815260200182805461053590612f90565b80156105825780601f1061055757610100808354040283529160200191610582565b820191906000526020600020905b81548152906001019060200180831161056557829003601f168201915b5050505050905090565b60006105a06105996119aa565b84846119b2565b6001905092915050565b6105b26119aa565b73ffffffffffffffffffffffffffffffffffffffff166105d0611010565b73ffffffffffffffffffffffffffffffffffffffff1614610626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061d90612b1c565b60405180910390fd5b80600660006101000a81548160ff02191690831515021790555050565b60001515600660009054906101000a900460ff16151514610699576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069090612bfc565b60405180910390fd5b601060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b81526004016106f79190612c5c565b60206040518083038186803b15801561070f57600080fd5b505afa158015610723573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107479190612508565b73ffffffffffffffffffffffffffffffffffffffff166107656119aa565b73ffffffffffffffffffffffffffffffffffffffff16146107bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b290612adc565b60405180910390fd5b6107cc816107c76119aa565b611b7d565b50565b6000600354905090565b6060601b80548060200260200160405190810160405280929190818152602001828054801561082757602002820191906000526020600020905b815481526020019060010190808311610813575b5050505050905090565b600061083e848484611cc5565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108896119aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090090612afc565b60405180910390fd5b61091d856109156119aa565b8584036119b2565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60006109fc6109676119aa565b8484600260006109756119aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109f79190612ce7565b6119b2565b6001905092915050565b60001515600660009054906101000a900460ff16151514610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5390612bfc565b60405180910390fd5b6000601560010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231610aa76119aa565b6040518263ffffffff1660e01b8152600401610ac391906129b9565b60206040518083038186803b158015610adb57600080fd5b505afa158015610aef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b139190612662565b905060008111610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f90612bdc565b60405180910390fd5b60005b81811015610c3d57610c2a601560010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c59610baf6119aa565b846040518363ffffffff1660e01b8152600401610bcd9291906129d4565b60206040518083038186803b158015610be557600080fd5b505afa158015610bf9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1d9190612662565b610c256119aa565b611f49565b8080610c3590612fc2565b915050610b5b565b5050565b6060601a805480602002602001604051908101604052809291908181526020018280548015610c8f57602002820191906000526020600020905b815481526020019060010190808311610c7b575b5050505050905090565b600660009054906101000a900460ff1681565b6060601c805480602002602001604051908101604052809291908181526020018280548015610cfa57602002820191906000526020600020905b815481526020019060010190808311610ce6575b5050505050905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d556119aa565b73ffffffffffffffffffffffffffffffffffffffff16610d73611010565b73ffffffffffffffffffffffffffffffffffffffff1614610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090612b1c565b60405180910390fd5b610dd36000612091565b565b60001515600660009054906101000a900460ff16151514610e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2290612bfc565b60405180910390fd5b6000600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231610e766119aa565b6040518263ffffffff1660e01b8152600401610e9291906129b9565b60206040518083038186803b158015610eaa57600080fd5b505afa158015610ebe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee29190612662565b905060008111610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90612bdc565b60405180910390fd5b60005b8181101561100c57610ff9600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c59610f7e6119aa565b846040518363ffffffff1660e01b8152600401610f9c9291906129d4565b60206040518083038186803b158015610fb457600080fd5b505afa158015610fc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fec9190612662565b610ff46119aa565b612155565b808061100490612fc2565b915050610f2a565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461104890612f90565b80601f016020809104026020016040519081016040528092919081815260200182805461107490612f90565b80156110c15780601f10611096576101008083540402835291602001916110c1565b820191906000526020600020905b8154815290600101906020018083116110a457829003601f168201915b5050505050905090565b60001515600660009054906101000a900460ff16151514611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890612bfc565b60405180910390fd5b600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b815260040161117f9190612c5c565b60206040518083038186803b15801561119757600080fd5b505afa1580156111ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111cf9190612508565b73ffffffffffffffffffffffffffffffffffffffff166111ed6119aa565b73ffffffffffffffffffffffffffffffffffffffff1614611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a90612adc565b60405180910390fd5b6112548161124f6119aa565b612155565b50565b600080600260006112666119aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90612c1c565b60405180910390fd5b61133761132e6119aa565b858584036119b2565b600191505092915050565b600061135661134f6119aa565b8484611cc5565b6001905092915050565b6113686119aa565b73ffffffffffffffffffffffffffffffffffffffff16611386611010565b73ffffffffffffffffffffffffffffffffffffffff16146113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d390612b1c565b60405180910390fd5b60001515600660009054906101000a900460ff16151514611432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142990612bfc565b60405180910390fd5b61146161143d611010565b611445610929565b600a6114519190612d90565b8361145c9190612eae565b61229d565b50565b60001515600660009054906101000a900460ff161515146114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190612bfc565b60405180910390fd5b601560010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b81526004016115189190612c5c565b60206040518083038186803b15801561153057600080fd5b505afa158015611544573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115689190612508565b73ffffffffffffffffffffffffffffffffffffffff166115866119aa565b73ffffffffffffffffffffffffffffffffffffffff16146115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d390612adc565b60405180910390fd5b6115ed816115e86119aa565b611f49565b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61167f6119aa565b73ffffffffffffffffffffffffffffffffffffffff1661169d611010565b73ffffffffffffffffffffffffffffffffffffffff16146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea90612b1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90612a7c565b60405180910390fd5b61176c81612091565b50565b60001515600660009054906101000a900460ff161515146117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90612bfc565b60405180910390fd5b6000601060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a082316118106119aa565b6040518263ffffffff1660e01b815260040161182c91906129b9565b60206040518083038186803b15801561184457600080fd5b505afa158015611858573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061187c9190612662565b9050600081116118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b890612bdc565b60405180910390fd5b60005b818110156119a657611993601060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c596119186119aa565b846040518363ffffffff1660e01b81526004016119369291906129d4565b60206040518083038186803b15801561194e57600080fd5b505afa158015611962573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119869190612662565b61198e6119aa565b611b7d565b808061199e90612fc2565b9150506118c4565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990612b9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8990612a9c565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b709190612c5c565b60405180910390a3505050565b6010600301548210158015611b9757506010600401548211155b611bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcd90612bbc565b60405180910390fd5b60086000600a548152602001908152602001600020600083815260200190815260200160002060009054906101000a900460ff1615611c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4190612b7c565b60405180910390fd5b600160086000600a548152602001908152602001600020600084815260200190815260200160002060006101000a81548160ff021916908315150217905550611c988160106002015461229d565b601b8290806001815401808255809150506001900390600052602060002001600090919091909150555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90612b3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c90612a5c565b60405180910390fd5b611db0838383612307565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2e90612abc565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ecc9190612ce7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f309190612c5c565b60405180910390a3611f4384848461230c565b50505050565b6015600301548210158015611f6357506015600401548211155b611fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9990612bbc565b60405180910390fd5b60096000600a548152602001908152602001600020600083815260200190815260200160002060009054906101000a900460ff1615612016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200d90612b7c565b60405180910390fd5b600160096000600a548152602001908152602001600020600084815260200190815260200160002060006101000a81548160ff0219169083151502179055506120648160156002015461229d565b601c8290806001815401808255809150506001900390600052602060002001600090919091909150555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600b60030154821015801561216f5750600b600401548211155b6121ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a590612bbc565b60405180910390fd5b60076000600a548152602001908152602001600020600083815260200190815260200160002060009054906101000a900460ff1615612222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221990612b7c565b60405180910390fd5b600160076000600a548152602001908152602001600020600084815260200190815260200160002060006101000a81548160ff02191690831515021790555061227081600b6002015461229d565b601a8290806001815401808255809150506001900390600052602060002001600090919091909150555050565b6122a5610932565b816122ae6107cf565b6122b89190612ce7565b11156122f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f090612b5c565b60405180910390fd5b6123038282612311565b5050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237890612c3c565b60405180910390fd5b61238d60008383612307565b806003600082825461239f9190612ce7565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f59190612ce7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161245a9190612c5c565b60405180910390a361246e6000838361230c565b5050565b6000813590506124818161344c565b92915050565b6000815190506124968161344c565b92915050565b6000813590506124ab81613463565b92915050565b6000813590506124c08161347a565b92915050565b6000815190506124d58161347a565b92915050565b6000602082840312156124f1576124f0613069565b5b60006124ff84828501612472565b91505092915050565b60006020828403121561251e5761251d613069565b5b600061252c84828501612487565b91505092915050565b6000806040838503121561254c5761254b613069565b5b600061255a85828601612472565b925050602061256b85828601612472565b9150509250929050565b60008060006060848603121561258e5761258d613069565b5b600061259c86828701612472565b93505060206125ad86828701612472565b92505060406125be868287016124b1565b9150509250925092565b600080604083850312156125df576125de613069565b5b60006125ed85828601612472565b92505060206125fe858286016124b1565b9150509250929050565b60006020828403121561261e5761261d613069565b5b600061262c8482850161249c565b91505092915050565b60006020828403121561264b5761264a613069565b5b6000612659848285016124b1565b91505092915050565b60006020828403121561267857612677613069565b5b6000612686848285016124c6565b91505092915050565b600061269b838361298c565b60208301905092915050565b6126b081612f08565b82525050565b60006126c182612ca2565b6126cb8185612cc5565b93506126d683612c92565b8060005b838110156127075781516126ee888261268f565b97506126f983612cb8565b9250506001810190506126da565b5085935050505092915050565b61271d81612f1a565b82525050565b600061272e82612cad565b6127388185612cd6565b9350612748818560208601612f5d565b6127518161306e565b840191505092915050565b6000612769602383612cd6565b91506127748261308c565b604082019050919050565b600061278c602683612cd6565b9150612797826130db565b604082019050919050565b60006127af602283612cd6565b91506127ba8261312a565b604082019050919050565b60006127d2602683612cd6565b91506127dd82613179565b604082019050919050565b60006127f5601183612cd6565b9150612800826131c8565b602082019050919050565b6000612818602883612cd6565b9150612823826131f1565b604082019050919050565b600061283b602083612cd6565b915061284682613240565b602082019050919050565b600061285e602583612cd6565b915061286982613269565b604082019050919050565b6000612881601983612cd6565b915061288c826132b8565b602082019050919050565b60006128a4601983612cd6565b91506128af826132e1565b602082019050919050565b60006128c7602483612cd6565b91506128d28261330a565b604082019050919050565b60006128ea601583612cd6565b91506128f582613359565b602082019050919050565b600061290d600f83612cd6565b915061291882613382565b602082019050919050565b6000612930600f83612cd6565b915061293b826133ab565b602082019050919050565b6000612953602583612cd6565b915061295e826133d4565b604082019050919050565b6000612976601f83612cd6565b915061298182613423565b602082019050919050565b61299581612f46565b82525050565b6129a481612f46565b82525050565b6129b381612f50565b82525050565b60006020820190506129ce60008301846126a7565b92915050565b60006040820190506129e960008301856126a7565b6129f6602083018461299b565b9392505050565b60006020820190508181036000830152612a1781846126b6565b905092915050565b6000602082019050612a346000830184612714565b92915050565b60006020820190508181036000830152612a548184612723565b905092915050565b60006020820190508181036000830152612a758161275c565b9050919050565b60006020820190508181036000830152612a958161277f565b9050919050565b60006020820190508181036000830152612ab5816127a2565b9050919050565b60006020820190508181036000830152612ad5816127c5565b9050919050565b60006020820190508181036000830152612af5816127e8565b9050919050565b60006020820190508181036000830152612b158161280b565b9050919050565b60006020820190508181036000830152612b358161282e565b9050919050565b60006020820190508181036000830152612b5581612851565b9050919050565b60006020820190508181036000830152612b7581612874565b9050919050565b60006020820190508181036000830152612b9581612897565b9050919050565b60006020820190508181036000830152612bb5816128ba565b9050919050565b60006020820190508181036000830152612bd5816128dd565b9050919050565b60006020820190508181036000830152612bf581612900565b9050919050565b60006020820190508181036000830152612c1581612923565b9050919050565b60006020820190508181036000830152612c3581612946565b9050919050565b60006020820190508181036000830152612c5581612969565b9050919050565b6000602082019050612c71600083018461299b565b92915050565b6000602082019050612c8c60008301846129aa565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612cf282612f46565b9150612cfd83612f46565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d3257612d3161300b565b5b828201905092915050565b6000808291508390505b6001851115612d8757808604811115612d6357612d6261300b565b5b6001851615612d725780820291505b8081029050612d808561307f565b9450612d47565b94509492505050565b6000612d9b82612f46565b9150612da683612f50565b9250612dd37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612ddb565b905092915050565b600082612deb5760019050612ea7565b81612df95760009050612ea7565b8160018114612e0f5760028114612e1957612e48565b6001915050612ea7565b60ff841115612e2b57612e2a61300b565b5b8360020a915084821115612e4257612e4161300b565b5b50612ea7565b5060208310610133831016604e8410600b8410161715612e7d5782820a905083811115612e7857612e7761300b565b5b612ea7565b612e8a8484846001612d3d565b92509050818404811115612ea157612ea061300b565b5b81810290505b9392505050565b6000612eb982612f46565b9150612ec483612f46565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612efd57612efc61300b565b5b828202905092915050565b6000612f1382612f26565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612f7b578082015181840152602081019050612f60565b83811115612f8a576000848401525b50505050565b60006002820490506001821680612fa857607f821691505b60208210811415612fbc57612fbb61303a565b5b50919050565b6000612fcd82612f46565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561300057612fff61300b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4d5553545f4f574e5f544f4b454e5f4944000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f474f4c445f434c41494d45445f464f525f544f4b454e5f494400000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f544f4b454e5f49445f4f55545f4f465f52414e47450000000000000000000000600082015250565b7f4e4f5f544f4b454e535f4f574e45440000000000000000000000000000000000600082015250565b7f436f6e7472616374205061757365640000000000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61345581612f08565b811461346057600080fd5b50565b61346c81612f1a565b811461347757600080fd5b50565b61348381612f46565b811461348e57600080fd5b5056fea2646970667358221220afb230bf7b1f712746c106126a6a5dbe578d45387fca5ccfd02966850d886f5e64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80635e676bef116100f9578063a457c2d711610097578063cb6886ce11610071578063cb6886ce14610488578063dd62ed3e146104a4578063f2fde38b146104d4578063fc38e61d146104f0576101a9565b8063a457c2d71461040c578063a9059cbb1461043c578063c7190a541461046c576101a9565b8063741e00df116100d3578063741e00df146103aa5780638da5cb5b146103b457806395d89b41146103d25780639d9d4345146103f0576101a9565b80635e676bef1461035257806370a0823114610370578063715018a6146103a0576101a9565b806323b872dd11610166578063395093511161014057806339509351146102dc5780633a02ace51461030c5780635aa6cb13146103165780635c975abb14610334576101a9565b806323b872dd14610270578063313ce567146102a0578063355274ea146102be576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806316c38b3c146101fc57806316f2e0531461021857806318160ddd1461023457806318a7de8a14610252575b600080fd5b6101b66104fa565b6040516101c39190612a3a565b60405180910390f35b6101e660048036038101906101e191906125c8565b61058c565b6040516101f39190612a1f565b60405180910390f35b61021660048036038101906102119190612608565b6105aa565b005b610232600480360381019061022d9190612635565b610643565b005b61023c6107cf565b6040516102499190612c5c565b60405180910390f35b61025a6107d9565b60405161026791906129fd565b60405180910390f35b61028a60048036038101906102859190612575565b610831565b6040516102979190612a1f565b60405180910390f35b6102a8610929565b6040516102b59190612c77565b60405180910390f35b6102c6610932565b6040516102d39190612c5c565b60405180910390f35b6102f660048036038101906102f191906125c8565b61095a565b6040516103039190612a1f565b60405180910390f35b610314610a06565b005b61031e610c41565b60405161032b91906129fd565b60405180910390f35b61033c610c99565b6040516103499190612a1f565b60405180910390f35b61035a610cac565b60405161036791906129fd565b60405180910390f35b61038a600480360381019061038591906124db565b610d04565b6040516103979190612c5c565b60405180910390f35b6103a8610d4d565b005b6103b2610dd5565b005b6103bc611010565b6040516103c991906129b9565b60405180910390f35b6103da611039565b6040516103e79190612a3a565b60405180910390f35b61040a60048036038101906104059190612635565b6110cb565b005b610426600480360381019061042191906125c8565b611257565b6040516104339190612a1f565b60405180910390f35b610456600480360381019061045191906125c8565b611342565b6040516104639190612a1f565b60405180910390f35b61048660048036038101906104819190612635565b611360565b005b6104a2600480360381019061049d9190612635565b611464565b005b6104be60048036038101906104b99190612535565b6115f0565b6040516104cb9190612c5c565b60405180910390f35b6104ee60048036038101906104e991906124db565b611677565b005b6104f861176f565b005b60606004805461050990612f90565b80601f016020809104026020016040519081016040528092919081815260200182805461053590612f90565b80156105825780601f1061055757610100808354040283529160200191610582565b820191906000526020600020905b81548152906001019060200180831161056557829003601f168201915b5050505050905090565b60006105a06105996119aa565b84846119b2565b6001905092915050565b6105b26119aa565b73ffffffffffffffffffffffffffffffffffffffff166105d0611010565b73ffffffffffffffffffffffffffffffffffffffff1614610626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061d90612b1c565b60405180910390fd5b80600660006101000a81548160ff02191690831515021790555050565b60001515600660009054906101000a900460ff16151514610699576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069090612bfc565b60405180910390fd5b601060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b81526004016106f79190612c5c565b60206040518083038186803b15801561070f57600080fd5b505afa158015610723573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107479190612508565b73ffffffffffffffffffffffffffffffffffffffff166107656119aa565b73ffffffffffffffffffffffffffffffffffffffff16146107bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b290612adc565b60405180910390fd5b6107cc816107c76119aa565b611b7d565b50565b6000600354905090565b6060601b80548060200260200160405190810160405280929190818152602001828054801561082757602002820191906000526020600020905b815481526020019060010190808311610813575b5050505050905090565b600061083e848484611cc5565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108896119aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090090612afc565b60405180910390fd5b61091d856109156119aa565b8584036119b2565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000004a723dc6b40b8a9a000000905090565b60006109fc6109676119aa565b8484600260006109756119aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109f79190612ce7565b6119b2565b6001905092915050565b60001515600660009054906101000a900460ff16151514610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5390612bfc565b60405180910390fd5b6000601560010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231610aa76119aa565b6040518263ffffffff1660e01b8152600401610ac391906129b9565b60206040518083038186803b158015610adb57600080fd5b505afa158015610aef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b139190612662565b905060008111610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f90612bdc565b60405180910390fd5b60005b81811015610c3d57610c2a601560010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c59610baf6119aa565b846040518363ffffffff1660e01b8152600401610bcd9291906129d4565b60206040518083038186803b158015610be557600080fd5b505afa158015610bf9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1d9190612662565b610c256119aa565b611f49565b8080610c3590612fc2565b915050610b5b565b5050565b6060601a805480602002602001604051908101604052809291908181526020018280548015610c8f57602002820191906000526020600020905b815481526020019060010190808311610c7b575b5050505050905090565b600660009054906101000a900460ff1681565b6060601c805480602002602001604051908101604052809291908181526020018280548015610cfa57602002820191906000526020600020905b815481526020019060010190808311610ce6575b5050505050905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d556119aa565b73ffffffffffffffffffffffffffffffffffffffff16610d73611010565b73ffffffffffffffffffffffffffffffffffffffff1614610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090612b1c565b60405180910390fd5b610dd36000612091565b565b60001515600660009054906101000a900460ff16151514610e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2290612bfc565b60405180910390fd5b6000600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231610e766119aa565b6040518263ffffffff1660e01b8152600401610e9291906129b9565b60206040518083038186803b158015610eaa57600080fd5b505afa158015610ebe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee29190612662565b905060008111610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90612bdc565b60405180910390fd5b60005b8181101561100c57610ff9600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c59610f7e6119aa565b846040518363ffffffff1660e01b8152600401610f9c9291906129d4565b60206040518083038186803b158015610fb457600080fd5b505afa158015610fc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fec9190612662565b610ff46119aa565b612155565b808061100490612fc2565b915050610f2a565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461104890612f90565b80601f016020809104026020016040519081016040528092919081815260200182805461107490612f90565b80156110c15780601f10611096576101008083540402835291602001916110c1565b820191906000526020600020905b8154815290600101906020018083116110a457829003601f168201915b5050505050905090565b60001515600660009054906101000a900460ff16151514611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890612bfc565b60405180910390fd5b600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b815260040161117f9190612c5c565b60206040518083038186803b15801561119757600080fd5b505afa1580156111ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111cf9190612508565b73ffffffffffffffffffffffffffffffffffffffff166111ed6119aa565b73ffffffffffffffffffffffffffffffffffffffff1614611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a90612adc565b60405180910390fd5b6112548161124f6119aa565b612155565b50565b600080600260006112666119aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90612c1c565b60405180910390fd5b61133761132e6119aa565b858584036119b2565b600191505092915050565b600061135661134f6119aa565b8484611cc5565b6001905092915050565b6113686119aa565b73ffffffffffffffffffffffffffffffffffffffff16611386611010565b73ffffffffffffffffffffffffffffffffffffffff16146113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d390612b1c565b60405180910390fd5b60001515600660009054906101000a900460ff16151514611432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142990612bfc565b60405180910390fd5b61146161143d611010565b611445610929565b600a6114519190612d90565b8361145c9190612eae565b61229d565b50565b60001515600660009054906101000a900460ff161515146114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190612bfc565b60405180910390fd5b601560010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b81526004016115189190612c5c565b60206040518083038186803b15801561153057600080fd5b505afa158015611544573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115689190612508565b73ffffffffffffffffffffffffffffffffffffffff166115866119aa565b73ffffffffffffffffffffffffffffffffffffffff16146115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d390612adc565b60405180910390fd5b6115ed816115e86119aa565b611f49565b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61167f6119aa565b73ffffffffffffffffffffffffffffffffffffffff1661169d611010565b73ffffffffffffffffffffffffffffffffffffffff16146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea90612b1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90612a7c565b60405180910390fd5b61176c81612091565b50565b60001515600660009054906101000a900460ff161515146117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90612bfc565b60405180910390fd5b6000601060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a082316118106119aa565b6040518263ffffffff1660e01b815260040161182c91906129b9565b60206040518083038186803b15801561184457600080fd5b505afa158015611858573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061187c9190612662565b9050600081116118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b890612bdc565b60405180910390fd5b60005b818110156119a657611993601060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c596119186119aa565b846040518363ffffffff1660e01b81526004016119369291906129d4565b60206040518083038186803b15801561194e57600080fd5b505afa158015611962573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119869190612662565b61198e6119aa565b611b7d565b808061199e90612fc2565b9150506118c4565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990612b9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8990612a9c565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b709190612c5c565b60405180910390a3505050565b6010600301548210158015611b9757506010600401548211155b611bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcd90612bbc565b60405180910390fd5b60086000600a548152602001908152602001600020600083815260200190815260200160002060009054906101000a900460ff1615611c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4190612b7c565b60405180910390fd5b600160086000600a548152602001908152602001600020600084815260200190815260200160002060006101000a81548160ff021916908315150217905550611c988160106002015461229d565b601b8290806001815401808255809150506001900390600052602060002001600090919091909150555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90612b3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c90612a5c565b60405180910390fd5b611db0838383612307565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2e90612abc565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ecc9190612ce7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f309190612c5c565b60405180910390a3611f4384848461230c565b50505050565b6015600301548210158015611f6357506015600401548211155b611fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9990612bbc565b60405180910390fd5b60096000600a548152602001908152602001600020600083815260200190815260200160002060009054906101000a900460ff1615612016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200d90612b7c565b60405180910390fd5b600160096000600a548152602001908152602001600020600084815260200190815260200160002060006101000a81548160ff0219169083151502179055506120648160156002015461229d565b601c8290806001815401808255809150506001900390600052602060002001600090919091909150555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600b60030154821015801561216f5750600b600401548211155b6121ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a590612bbc565b60405180910390fd5b60076000600a548152602001908152602001600020600083815260200190815260200160002060009054906101000a900460ff1615612222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221990612b7c565b60405180910390fd5b600160076000600a548152602001908152602001600020600084815260200190815260200160002060006101000a81548160ff02191690831515021790555061227081600b6002015461229d565b601a8290806001815401808255809150506001900390600052602060002001600090919091909150555050565b6122a5610932565b816122ae6107cf565b6122b89190612ce7565b11156122f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f090612b5c565b60405180910390fd5b6123038282612311565b5050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237890612c3c565b60405180910390fd5b61238d60008383612307565b806003600082825461239f9190612ce7565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f59190612ce7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161245a9190612c5c565b60405180910390a361246e6000838361230c565b5050565b6000813590506124818161344c565b92915050565b6000815190506124968161344c565b92915050565b6000813590506124ab81613463565b92915050565b6000813590506124c08161347a565b92915050565b6000815190506124d58161347a565b92915050565b6000602082840312156124f1576124f0613069565b5b60006124ff84828501612472565b91505092915050565b60006020828403121561251e5761251d613069565b5b600061252c84828501612487565b91505092915050565b6000806040838503121561254c5761254b613069565b5b600061255a85828601612472565b925050602061256b85828601612472565b9150509250929050565b60008060006060848603121561258e5761258d613069565b5b600061259c86828701612472565b93505060206125ad86828701612472565b92505060406125be868287016124b1565b9150509250925092565b600080604083850312156125df576125de613069565b5b60006125ed85828601612472565b92505060206125fe858286016124b1565b9150509250929050565b60006020828403121561261e5761261d613069565b5b600061262c8482850161249c565b91505092915050565b60006020828403121561264b5761264a613069565b5b6000612659848285016124b1565b91505092915050565b60006020828403121561267857612677613069565b5b6000612686848285016124c6565b91505092915050565b600061269b838361298c565b60208301905092915050565b6126b081612f08565b82525050565b60006126c182612ca2565b6126cb8185612cc5565b93506126d683612c92565b8060005b838110156127075781516126ee888261268f565b97506126f983612cb8565b9250506001810190506126da565b5085935050505092915050565b61271d81612f1a565b82525050565b600061272e82612cad565b6127388185612cd6565b9350612748818560208601612f5d565b6127518161306e565b840191505092915050565b6000612769602383612cd6565b91506127748261308c565b604082019050919050565b600061278c602683612cd6565b9150612797826130db565b604082019050919050565b60006127af602283612cd6565b91506127ba8261312a565b604082019050919050565b60006127d2602683612cd6565b91506127dd82613179565b604082019050919050565b60006127f5601183612cd6565b9150612800826131c8565b602082019050919050565b6000612818602883612cd6565b9150612823826131f1565b604082019050919050565b600061283b602083612cd6565b915061284682613240565b602082019050919050565b600061285e602583612cd6565b915061286982613269565b604082019050919050565b6000612881601983612cd6565b915061288c826132b8565b602082019050919050565b60006128a4601983612cd6565b91506128af826132e1565b602082019050919050565b60006128c7602483612cd6565b91506128d28261330a565b604082019050919050565b60006128ea601583612cd6565b91506128f582613359565b602082019050919050565b600061290d600f83612cd6565b915061291882613382565b602082019050919050565b6000612930600f83612cd6565b915061293b826133ab565b602082019050919050565b6000612953602583612cd6565b915061295e826133d4565b604082019050919050565b6000612976601f83612cd6565b915061298182613423565b602082019050919050565b61299581612f46565b82525050565b6129a481612f46565b82525050565b6129b381612f50565b82525050565b60006020820190506129ce60008301846126a7565b92915050565b60006040820190506129e960008301856126a7565b6129f6602083018461299b565b9392505050565b60006020820190508181036000830152612a1781846126b6565b905092915050565b6000602082019050612a346000830184612714565b92915050565b60006020820190508181036000830152612a548184612723565b905092915050565b60006020820190508181036000830152612a758161275c565b9050919050565b60006020820190508181036000830152612a958161277f565b9050919050565b60006020820190508181036000830152612ab5816127a2565b9050919050565b60006020820190508181036000830152612ad5816127c5565b9050919050565b60006020820190508181036000830152612af5816127e8565b9050919050565b60006020820190508181036000830152612b158161280b565b9050919050565b60006020820190508181036000830152612b358161282e565b9050919050565b60006020820190508181036000830152612b5581612851565b9050919050565b60006020820190508181036000830152612b7581612874565b9050919050565b60006020820190508181036000830152612b9581612897565b9050919050565b60006020820190508181036000830152612bb5816128ba565b9050919050565b60006020820190508181036000830152612bd5816128dd565b9050919050565b60006020820190508181036000830152612bf581612900565b9050919050565b60006020820190508181036000830152612c1581612923565b9050919050565b60006020820190508181036000830152612c3581612946565b9050919050565b60006020820190508181036000830152612c5581612969565b9050919050565b6000602082019050612c71600083018461299b565b92915050565b6000602082019050612c8c60008301846129aa565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612cf282612f46565b9150612cfd83612f46565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d3257612d3161300b565b5b828201905092915050565b6000808291508390505b6001851115612d8757808604811115612d6357612d6261300b565b5b6001851615612d725780820291505b8081029050612d808561307f565b9450612d47565b94509492505050565b6000612d9b82612f46565b9150612da683612f50565b9250612dd37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612ddb565b905092915050565b600082612deb5760019050612ea7565b81612df95760009050612ea7565b8160018114612e0f5760028114612e1957612e48565b6001915050612ea7565b60ff841115612e2b57612e2a61300b565b5b8360020a915084821115612e4257612e4161300b565b5b50612ea7565b5060208310610133831016604e8410600b8410161715612e7d5782820a905083811115612e7857612e7761300b565b5b612ea7565b612e8a8484846001612d3d565b92509050818404811115612ea157612ea061300b565b5b81810290505b9392505050565b6000612eb982612f46565b9150612ec483612f46565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612efd57612efc61300b565b5b828202905092915050565b6000612f1382612f26565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612f7b578082015181840152602081019050612f60565b83811115612f8a576000848401525b50505050565b60006002820490506001821680612fa857607f821691505b60208210811415612fbc57612fbb61303a565b5b50919050565b6000612fcd82612f46565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561300057612fff61300b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4d5553545f4f574e5f544f4b454e5f4944000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f474f4c445f434c41494d45445f464f525f544f4b454e5f494400000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f544f4b454e5f49445f4f55545f4f465f52414e47450000000000000000000000600082015250565b7f4e4f5f544f4b454e535f4f574e45440000000000000000000000000000000000600082015250565b7f436f6e7472616374205061757365640000000000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61345581612f08565b811461346057600080fd5b50565b61346c81612f1a565b811461347757600080fd5b50565b61348381612f46565b811461348e57600080fd5b5056fea2646970667358221220afb230bf7b1f712746c106126a6a5dbe578d45387fca5ccfd02966850d886f5e64736f6c63430008070033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.