Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 24 from a total of 24 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 18964075 | 419 days ago | IN | 0 ETH | 0.00142548 | ||||
Approve | 18957339 | 420 days ago | IN | 0 ETH | 0.00153452 | ||||
Approve | 18953839 | 420 days ago | IN | 0 ETH | 0.00136676 | ||||
Transfer | 18951602 | 420 days ago | IN | 0 ETH | 0.00100568 | ||||
Approve | 18951320 | 420 days ago | IN | 0 ETH | 0.00126454 | ||||
Approve | 18951140 | 420 days ago | IN | 0 ETH | 0.00088743 | ||||
Approve | 18951078 | 420 days ago | IN | 0 ETH | 0.00107199 | ||||
Approve | 18951076 | 420 days ago | IN | 0 ETH | 0.00111733 | ||||
Approve | 18951075 | 420 days ago | IN | 0 ETH | 0.00127794 | ||||
Approve | 18951075 | 420 days ago | IN | 0 ETH | 0.00222278 | ||||
Approve | 18951075 | 420 days ago | IN | 0 ETH | 0.00222278 | ||||
Approve | 18951073 | 420 days ago | IN | 0 ETH | 0.00131636 | ||||
Approve | 18951073 | 420 days ago | IN | 0 ETH | 0.00249741 | ||||
Approve | 18951073 | 420 days ago | IN | 0 ETH | 0.00249741 | ||||
Approve | 18951072 | 420 days ago | IN | 0 ETH | 0.00175685 | ||||
Approve | 18951071 | 420 days ago | IN | 0 ETH | 0.00134419 | ||||
Approve | 18951071 | 420 days ago | IN | 0 ETH | 0.00134419 | ||||
Approve | 18951070 | 420 days ago | IN | 0 ETH | 0.00118619 | ||||
Approve | 18951070 | 420 days ago | IN | 0 ETH | 0.00118619 | ||||
Approve | 18951069 | 420 days ago | IN | 0 ETH | 0.00472199 | ||||
Approve | 18951068 | 420 days ago | IN | 0 ETH | 0.00139906 | ||||
Approve | 18951067 | 420 days ago | IN | 0 ETH | 0.00125288 | ||||
Approve | 18951043 | 420 days ago | IN | 0 ETH | 0.00099481 | ||||
Approve | 18951017 | 420 days ago | IN | 0 ETH | 0.0007895 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
GlazeCoin
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-01-06 */ //SPDX-License-Identifier: MIT // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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 ERC-20 * 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 ERC may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the ERC. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: contracts/token.sol pragma solidity ^0.8.0; contract GlazeCoin is ERC20 { address public owner; address private taxRecipient; uint256 private constant TAX_PERCENTAGE = 1; constructor() ERC20("GLAZE COIN", "GLAZE") { owner = 0xC37216d07cbe0F609EF11C9F3e29e60d118287dC; taxRecipient = 0x28a3690aF489700224c1C0D4b37f63F66a936Ad0; _mint(owner, 1e9 * 10**uint256(decimals())); } function transfer(address recipient, uint256 amount) public override returns (bool) { uint256 tax = calculateTax(amount); uint256 amountAfterTax = amount - tax; _transfer(_msgSender(), taxRecipient, tax); _transfer(_msgSender(), recipient, amountAfterTax); return true; } function calculateTax(uint256 amount) private pure returns (uint256) { return amount * TAX_PERCENTAGE / 100; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"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":"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":"value","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b506040518060400160405280600a81526020017f474c415a4520434f494e000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f474c415a4500000000000000000000000000000000000000000000000000000081525081600390816200008e9190620006cf565b508060049081620000a09190620006cf565b50505073c37216d07cbe0f609ef11c9f3e29e60d118287dc60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507328a3690af489700224c1c0d4b37f63f66a936ad060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001af60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662000181620001b560201b60201c565b60ff16600a62000192919062000930565b633b9aca00620001a3919062000980565b620001bd60201b60201c565b62000ac9565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000230575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000227919062000a0d565b60405180910390fd5b620002435f83836200024760201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200029b578060025f8282546200028e919062000a28565b925050819055506200036c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000327578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200031e9392919062000a73565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003b5578060025f8282540392505081905550620003ff565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200045e919062000aae565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620004e757607f821691505b602082108103620004fd57620004fc620004a2565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000524565b6200056d868362000524565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620005b7620005b1620005ab8462000585565b6200058e565b62000585565b9050919050565b5f819050919050565b620005d28362000597565b620005ea620005e182620005be565b84845462000530565b825550505050565b5f90565b62000600620005f2565b6200060d818484620005c7565b505050565b5b818110156200063457620006285f82620005f6565b60018101905062000613565b5050565b601f82111562000683576200064d8162000503565b620006588462000515565b8101602085101562000668578190505b62000680620006778562000515565b83018262000612565b50505b505050565b5f82821c905092915050565b5f620006a55f198460080262000688565b1980831691505092915050565b5f620006bf838362000694565b9150826002028217905092915050565b620006da826200046b565b67ffffffffffffffff811115620006f657620006f562000475565b5b620007028254620004cf565b6200070f82828562000638565b5f60209050601f83116001811462000745575f841562000730578287015190505b6200073c8582620006b2565b865550620007ab565b601f198416620007558662000503565b5f5b828110156200077e5784890151825560018201915060208501945060208101905062000757565b868310156200079e57848901516200079a601f89168262000694565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200083d57808604811115620008155762000814620007b3565b5b6001851615620008255780820291505b80810290506200083585620007e0565b9450620007f5565b94509492505050565b5f8262000857576001905062000929565b8162000866575f905062000929565b81600181146200087f57600281146200088a57620008c0565b600191505062000929565b60ff8411156200089f576200089e620007b3565b5b8360020a915084821115620008b957620008b8620007b3565b5b5062000929565b5060208310610133831016604e8410600b8410161715620008fa5782820a905083811115620008f457620008f3620007b3565b5b62000929565b620009098484846001620007ec565b92509050818404811115620009235762000922620007b3565b5b81810290505b9392505050565b5f6200093c8262000585565b9150620009498362000585565b9250620009787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000846565b905092915050565b5f6200098c8262000585565b9150620009998362000585565b9250828202620009a98162000585565b91508282048414831517620009c357620009c2620007b3565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620009f582620009ca565b9050919050565b62000a0781620009e9565b82525050565b5f60208201905062000a225f830184620009fc565b92915050565b5f62000a348262000585565b915062000a418362000585565b925082820190508082111562000a5c5762000a5b620007b3565b5b92915050565b62000a6d8162000585565b82525050565b5f60608201905062000a885f830186620009fc565b62000a97602083018562000a62565b62000aa6604083018462000a62565b949350505050565b5f60208201905062000ac35f83018462000a62565b92915050565b610f868062000ad75f395ff3fe608060405234801561000f575f80fd5b506004361061009c575f3560e01c806370a082311161006457806370a082311461015a5780638da5cb5b1461018a57806395d89b41146101a8578063a9059cbb146101c6578063dd62ed3e146101f65761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee57806323b872dd1461010c578063313ce5671461013c575b5f80fd5b6100a8610226565b6040516100b59190610b2e565b60405180910390f35b6100d860048036038101906100d39190610bdf565b6102b6565b6040516100e59190610c37565b60405180910390f35b6100f66102d8565b6040516101039190610c5f565b60405180910390f35b61012660048036038101906101219190610c78565b6102e1565b6040516101339190610c37565b60405180910390f35b61014461030f565b6040516101519190610ce3565b60405180910390f35b610174600480360381019061016f9190610cfc565b610317565b6040516101819190610c5f565b60405180910390f35b61019261035c565b60405161019f9190610d36565b60405180910390f35b6101b0610381565b6040516101bd9190610b2e565b60405180910390f35b6101e060048036038101906101db9190610bdf565b610411565b6040516101ed9190610c37565b60405180910390f35b610210600480360381019061020b9190610d4f565b61047e565b60405161021d9190610c5f565b60405180910390f35b60606003805461023590610dba565b80601f016020809104026020016040519081016040528092919081815260200182805461026190610dba565b80156102ac5780601f10610283576101008083540402835291602001916102ac565b820191905f5260205f20905b81548152906001019060200180831161028f57829003601f168201915b5050505050905090565b5f806102c0610500565b90506102cd818585610507565b600191505092915050565b5f600254905090565b5f806102eb610500565b90506102f8858285610519565b6103038585856105ab565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461039090610dba565b80601f01602080910402602001604051908101604052809291908181526020018280546103bc90610dba565b80156104075780601f106103de57610100808354040283529160200191610407565b820191905f5260205f20905b8154815290600101906020018083116103ea57829003601f168201915b5050505050905090565b5f8061041c8361069b565b90505f818461042b9190610e17565b9050610460610438610500565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846105ab565b61047261046b610500565b86836105ab565b60019250505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61051483838360016106bc565b505050565b5f610524848461047e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146105a55781811015610596578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161058d93929190610e4a565b60405180910390fd5b6105a484848484035f6106bc565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361061b575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106129190610d36565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361068b575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106829190610d36565b60405180910390fd5b61069683838361088b565b505050565b5f60646001836106ab9190610e7f565b6106b59190610eed565b9050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361072c575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016107239190610d36565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361079c575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107939190610d36565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610885578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161087c9190610c5f565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108db578060025f8282546108cf9190610f1d565b925050819055506109a9565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610964578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161095b93929190610e4a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109f0578060025f8282540392505081905550610a3a565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a979190610c5f565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610adb578082015181840152602081019050610ac0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610b0082610aa4565b610b0a8185610aae565b9350610b1a818560208601610abe565b610b2381610ae6565b840191505092915050565b5f6020820190508181035f830152610b468184610af6565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b7b82610b52565b9050919050565b610b8b81610b71565b8114610b95575f80fd5b50565b5f81359050610ba681610b82565b92915050565b5f819050919050565b610bbe81610bac565b8114610bc8575f80fd5b50565b5f81359050610bd981610bb5565b92915050565b5f8060408385031215610bf557610bf4610b4e565b5b5f610c0285828601610b98565b9250506020610c1385828601610bcb565b9150509250929050565b5f8115159050919050565b610c3181610c1d565b82525050565b5f602082019050610c4a5f830184610c28565b92915050565b610c5981610bac565b82525050565b5f602082019050610c725f830184610c50565b92915050565b5f805f60608486031215610c8f57610c8e610b4e565b5b5f610c9c86828701610b98565b9350506020610cad86828701610b98565b9250506040610cbe86828701610bcb565b9150509250925092565b5f60ff82169050919050565b610cdd81610cc8565b82525050565b5f602082019050610cf65f830184610cd4565b92915050565b5f60208284031215610d1157610d10610b4e565b5b5f610d1e84828501610b98565b91505092915050565b610d3081610b71565b82525050565b5f602082019050610d495f830184610d27565b92915050565b5f8060408385031215610d6557610d64610b4e565b5b5f610d7285828601610b98565b9250506020610d8385828601610b98565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610dd157607f821691505b602082108103610de457610de3610d8d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610e2182610bac565b9150610e2c83610bac565b9250828203905081811115610e4457610e43610dea565b5b92915050565b5f606082019050610e5d5f830186610d27565b610e6a6020830185610c50565b610e776040830184610c50565b949350505050565b5f610e8982610bac565b9150610e9483610bac565b9250828202610ea281610bac565b91508282048414831517610eb957610eb8610dea565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610ef782610bac565b9150610f0283610bac565b925082610f1257610f11610ec0565b5b828204905092915050565b5f610f2782610bac565b9150610f3283610bac565b9250828201905080821115610f4a57610f49610dea565b5b9291505056fea264697066735822122001965357f5a0a42f218c81d3d8fe7704ca4e2f154523512a9031c3fc6c163cd864736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061009c575f3560e01c806370a082311161006457806370a082311461015a5780638da5cb5b1461018a57806395d89b41146101a8578063a9059cbb146101c6578063dd62ed3e146101f65761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee57806323b872dd1461010c578063313ce5671461013c575b5f80fd5b6100a8610226565b6040516100b59190610b2e565b60405180910390f35b6100d860048036038101906100d39190610bdf565b6102b6565b6040516100e59190610c37565b60405180910390f35b6100f66102d8565b6040516101039190610c5f565b60405180910390f35b61012660048036038101906101219190610c78565b6102e1565b6040516101339190610c37565b60405180910390f35b61014461030f565b6040516101519190610ce3565b60405180910390f35b610174600480360381019061016f9190610cfc565b610317565b6040516101819190610c5f565b60405180910390f35b61019261035c565b60405161019f9190610d36565b60405180910390f35b6101b0610381565b6040516101bd9190610b2e565b60405180910390f35b6101e060048036038101906101db9190610bdf565b610411565b6040516101ed9190610c37565b60405180910390f35b610210600480360381019061020b9190610d4f565b61047e565b60405161021d9190610c5f565b60405180910390f35b60606003805461023590610dba565b80601f016020809104026020016040519081016040528092919081815260200182805461026190610dba565b80156102ac5780601f10610283576101008083540402835291602001916102ac565b820191905f5260205f20905b81548152906001019060200180831161028f57829003601f168201915b5050505050905090565b5f806102c0610500565b90506102cd818585610507565b600191505092915050565b5f600254905090565b5f806102eb610500565b90506102f8858285610519565b6103038585856105ab565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461039090610dba565b80601f01602080910402602001604051908101604052809291908181526020018280546103bc90610dba565b80156104075780601f106103de57610100808354040283529160200191610407565b820191905f5260205f20905b8154815290600101906020018083116103ea57829003601f168201915b5050505050905090565b5f8061041c8361069b565b90505f818461042b9190610e17565b9050610460610438610500565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846105ab565b61047261046b610500565b86836105ab565b60019250505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61051483838360016106bc565b505050565b5f610524848461047e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146105a55781811015610596578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161058d93929190610e4a565b60405180910390fd5b6105a484848484035f6106bc565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361061b575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106129190610d36565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361068b575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106829190610d36565b60405180910390fd5b61069683838361088b565b505050565b5f60646001836106ab9190610e7f565b6106b59190610eed565b9050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361072c575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016107239190610d36565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361079c575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107939190610d36565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610885578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161087c9190610c5f565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108db578060025f8282546108cf9190610f1d565b925050819055506109a9565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610964578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161095b93929190610e4a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109f0578060025f8282540392505081905550610a3a565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a979190610c5f565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610adb578082015181840152602081019050610ac0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610b0082610aa4565b610b0a8185610aae565b9350610b1a818560208601610abe565b610b2381610ae6565b840191505092915050565b5f6020820190508181035f830152610b468184610af6565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b7b82610b52565b9050919050565b610b8b81610b71565b8114610b95575f80fd5b50565b5f81359050610ba681610b82565b92915050565b5f819050919050565b610bbe81610bac565b8114610bc8575f80fd5b50565b5f81359050610bd981610bb5565b92915050565b5f8060408385031215610bf557610bf4610b4e565b5b5f610c0285828601610b98565b9250506020610c1385828601610bcb565b9150509250929050565b5f8115159050919050565b610c3181610c1d565b82525050565b5f602082019050610c4a5f830184610c28565b92915050565b610c5981610bac565b82525050565b5f602082019050610c725f830184610c50565b92915050565b5f805f60608486031215610c8f57610c8e610b4e565b5b5f610c9c86828701610b98565b9350506020610cad86828701610b98565b9250506040610cbe86828701610bcb565b9150509250925092565b5f60ff82169050919050565b610cdd81610cc8565b82525050565b5f602082019050610cf65f830184610cd4565b92915050565b5f60208284031215610d1157610d10610b4e565b5b5f610d1e84828501610b98565b91505092915050565b610d3081610b71565b82525050565b5f602082019050610d495f830184610d27565b92915050565b5f8060408385031215610d6557610d64610b4e565b5b5f610d7285828601610b98565b9250506020610d8385828601610b98565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610dd157607f821691505b602082108103610de457610de3610d8d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610e2182610bac565b9150610e2c83610bac565b9250828203905081811115610e4457610e43610dea565b5b92915050565b5f606082019050610e5d5f830186610d27565b610e6a6020830185610c50565b610e776040830184610c50565b949350505050565b5f610e8982610bac565b9150610e9483610bac565b9250828202610ea281610bac565b91508282048414831517610eb957610eb8610dea565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610ef782610bac565b9150610f0283610bac565b925082610f1257610f11610ec0565b5b828204905092915050565b5f610f2782610bac565b9150610f3283610bac565b9250828201905080821115610f4a57610f49610dea565b5b9291505056fea264697066735822122001965357f5a0a42f218c81d3d8fe7704ca4e2f154523512a9031c3fc6c163cd864736f6c63430008140033
Deployed Bytecode Sourcemap
22999:851:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13606:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15899:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14708:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16667:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14559:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14870:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23034:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13816:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23390:325;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15438:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13606:91;13651:13;13684:5;13677:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13606:91;:::o;15899:190::-;15972:4;15989:13;16005:12;:10;:12::i;:::-;15989:28;;16028:31;16037:5;16044:7;16053:5;16028:8;:31::i;:::-;16077:4;16070:11;;;15899:190;;;;:::o;14708:99::-;14760:7;14787:12;;14780:19;;14708:99;:::o;16667:249::-;16754:4;16771:15;16789:12;:10;:12::i;:::-;16771:30;;16812:37;16828:4;16834:7;16843:5;16812:15;:37::i;:::-;16860:26;16870:4;16876:2;16880:5;16860:9;:26::i;:::-;16904:4;16897:11;;;16667:249;;;;;:::o;14559:84::-;14608:5;14633:2;14626:9;;14559:84;:::o;14870:118::-;14935:7;14962:9;:18;14972:7;14962:18;;;;;;;;;;;;;;;;14955:25;;14870:118;;;:::o;23034:20::-;;;;;;;;;;;;;:::o;13816:95::-;13863:13;13896:7;13889:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13816:95;:::o;23390:325::-;23468:4;23485:11;23499:20;23512:6;23499:12;:20::i;:::-;23485:34;;23530:22;23564:3;23555:6;:12;;;;:::i;:::-;23530:37;;23580:42;23590:12;:10;:12::i;:::-;23604;;;;;;;;;;;23618:3;23580:9;:42::i;:::-;23633:50;23643:12;:10;:12::i;:::-;23657:9;23668:14;23633:9;:50::i;:::-;23703:4;23696:11;;;;23390:325;;;;:::o;15438:142::-;15518:7;15545:11;:18;15557:5;15545:18;;;;;;;;;;;;;;;:27;15564:7;15545:27;;;;;;;;;;;;;;;;15538:34;;15438:142;;;;:::o;7572:98::-;7625:7;7652:10;7645:17;;7572:98;:::o;20726:130::-;20811:37;20820:5;20827:7;20836:5;20843:4;20811:8;:37::i;:::-;20726:130;;;:::o;22442:487::-;22542:24;22569:25;22579:5;22586:7;22569:9;:25::i;:::-;22542:52;;22629:17;22609:16;:37;22605:317;;22686:5;22667:16;:24;22663:132;;;22746:7;22755:16;22773:5;22719:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22663:132;22838:57;22847:5;22854:7;22882:5;22863:16;:24;22889:5;22838:8;:57::i;:::-;22605:317;22531:398;22442:487;;;:::o;17301:308::-;17401:1;17385:18;;:4;:18;;;17381:88;;17454:1;17427:30;;;;;;;;;;;:::i;:::-;;;;;;;;17381:88;17497:1;17483:16;;:2;:16;;;17479:88;;17552:1;17523:32;;;;;;;;;;;:::i;:::-;;;;;;;;17479:88;17577:24;17585:4;17591:2;17595:5;17577:7;:24::i;:::-;17301:308;;;:::o;23723:124::-;23783:7;23836:3;23138:1;23810:6;:23;;;;:::i;:::-;:29;;;;:::i;:::-;23803:36;;23723:124;;;:::o;21707:443::-;21837:1;21820:19;;:5;:19;;;21816:91;;21892:1;21863:32;;;;;;;;;;;:::i;:::-;;;;;;;;21816:91;21940:1;21921:21;;:7;:21;;;21917:92;;21994:1;21966:31;;;;;;;;;;;:::i;:::-;;;;;;;;21917:92;22049:5;22019:11;:18;22031:5;22019:18;;;;;;;;;;;;;;;:27;22038:7;22019:27;;;;;;;;;;;;;;;:35;;;;22069:9;22065:78;;;22116:7;22100:31;;22109:5;22100:31;;;22125:5;22100:31;;;;;;:::i;:::-;;;;;;;;22065:78;21707:443;;;;:::o;17933:1135::-;18039:1;18023:18;;:4;:18;;;18019:552;;18177:5;18161:12;;:21;;;;;;;:::i;:::-;;;;;;;;18019:552;;;18215:19;18237:9;:15;18247:4;18237:15;;;;;;;;;;;;;;;;18215:37;;18285:5;18271:11;:19;18267:117;;;18343:4;18349:11;18362:5;18318:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;18267:117;18539:5;18525:11;:19;18507:9;:15;18517:4;18507:15;;;;;;;;;;;;;;;:37;;;;18200:371;18019:552;18601:1;18587:16;;:2;:16;;;18583:435;;18769:5;18753:12;;:21;;;;;;;;;;;18583:435;;;18986:5;18969:9;:13;18979:2;18969:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18583:435;19050:2;19035:25;;19044:4;19035:25;;;19054:5;19035:25;;;;;;:::i;:::-;;;;;;;;17933:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:194;6758:4;6778:20;6796:1;6778:20;:::i;:::-;6773:25;;6812:20;6830:1;6812:20;:::i;:::-;6807:25;;6856:1;6853;6849:9;6841:17;;6880:1;6874:4;6871:11;6868:37;;;6885:18;;:::i;:::-;6868:37;6718:194;;;;:::o;6918:442::-;7067:4;7105:2;7094:9;7090:18;7082:26;;7118:71;7186:1;7175:9;7171:17;7162:6;7118:71;:::i;:::-;7199:72;7267:2;7256:9;7252:18;7243:6;7199:72;:::i;:::-;7281;7349:2;7338:9;7334:18;7325:6;7281:72;:::i;:::-;6918:442;;;;;;:::o;7366:410::-;7406:7;7429:20;7447:1;7429:20;:::i;:::-;7424:25;;7463:20;7481:1;7463:20;:::i;:::-;7458:25;;7518:1;7515;7511:9;7540:30;7558:11;7540:30;:::i;:::-;7529:41;;7719:1;7710:7;7706:15;7703:1;7700:22;7680:1;7673:9;7653:83;7630:139;;7749:18;;:::i;:::-;7630:139;7414:362;7366:410;;;;:::o;7782:180::-;7830:77;7827:1;7820:88;7927:4;7924:1;7917:15;7951:4;7948:1;7941:15;7968:185;8008:1;8025:20;8043:1;8025:20;:::i;:::-;8020:25;;8059:20;8077:1;8059:20;:::i;:::-;8054:25;;8098:1;8088:35;;8103:18;;:::i;:::-;8088:35;8145:1;8142;8138:9;8133:14;;7968:185;;;;:::o;8159:191::-;8199:3;8218:20;8236:1;8218:20;:::i;:::-;8213:25;;8252:20;8270:1;8252:20;:::i;:::-;8247:25;;8295:1;8292;8288:9;8281:16;;8316:3;8313:1;8310:10;8307:36;;;8323:18;;:::i;:::-;8307:36;8159:191;;;;:::o
Swarm Source
ipfs://01965357f5a0a42f218c81d3d8fe7704ca4e2f154523512a9031c3fc6c163cd8
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 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.