ERC-20
MEME
Overview
Max Total Supply
100,000,000,000 SCROLLY
Holders
81,057
Market
Price
$0.00 @ 0.000000 ETH (-0.02%)
Onchain Market Cap
$97,960.00
Circulating Supply Market Cap
$97,963.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
8,472.73344701794451576 SCROLLYValue
$0.01 ( ~2.56866067325387E-06 ETH) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Scrolly
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at scrollscan.com on 2024-01-08 */ // SPDX-License-Identifier: Unidentified // File: @openzeppelin\contracts\token\ERC20\IERC20.sol //https://t.me/ScrollyTheMap //https://twitter.com/ScrollyXYZ // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) /*---------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------ ----------------------=+*****=++++++========---------------------------------------------- --------------------=##=---*%*+======++++***************#**********++++++==--------------- -------------------+%=-----=---------------------------------------=*%#****#*=------------ -------------------3+---------------------------------------------=#%######*%%=----------- ------------------=%=---------------------------------------------%#=-=--*%*++%----------- ------------------=%+--------------------------------------------*#-=%*%+-#*--%=---------- -------------------+%=-------------------------------------------#*-*#+#+=%+-=%=---------- --------------------+#*++=====-----------------------------------*%-=8*+*%*--##----------- -----------------------=*%++*****###########*******++++++=========##=-=+=--=#*------------ ------------------------%=----------------------=======++++++*****#%%#***##*=------------- -----------------------*%+------===-------------------------------+#---=------------------ -----------------------#+----+****%%#+-----------+**#%##*=--------#+---------------------- ----------------------=%*---*%=---*#%%*---------#*----%%%%*------#%----------------------- ----------------------+#----%%#++##*%%%--------*%#=-=*+*%%%+-----#*----------------------- ----------------------+#----%%#*%#%%%%#--------#%%+%%%%%%%%+---+#%=----------------------- ----------------------=%*---=#4%#=##%#=-#+%**+-=%%%%#+%%#%#-----+%------------------------ ----------------------=%=-----=+***+=----=-==----*#%%#%%#+------=%------------------------ -----------------------%+---------------------------------------=%------------------------ --------------------=*###=--------------------------------------+%+=---------------------- -------------------*#=-+%--------------------------------------=*%+*#+-------------------- ------------------+%+++*%+====----------------------------------+%---*#+------------------ -------------------==#9%*+++++******************++++++++=====---=%+----%=----------------- --------------------*#==--------------------------======+++++*%++%#*###*=----------------- --------------------%=--------------------------------------+%#+++*#*--------------------- --------------------%+-------------------------------------=%*-+**=-#+-------------------- --------------------+#=------------------------------------*#-+#+%*-**-------------------- ---------------------=##**++++======-----------------------*%-=2**-=%=-------------------- -------------------------====++++#%#####%#######****++++++=+%#=-==*#=--------------------- ---------------------------------=%+===##--------=%****#%+++***#*+=----------------------- ----------------------------------+#++##----------*#=-*%=--------------------------------- ------------------------------------=+=------------=**+----------------------------------- ------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------*/ pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: @openzeppelin\contracts\token\ERC20\extensions\IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin\contracts\utils\Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin\contracts\token\ERC20\ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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 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}. * * 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 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: contracts\Scrolly.sol pragma solidity ^0.8.0; contract Scrolly is Context, ERC20 { address public owner; address private liquidityPoolAddress; uint256 public constant _maxTotalSupply = 100_000_000_000 * 1e18; // 100 billion SCROLLY uint256 private maxWalletToken; // Define var event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event LiquidityPoolAddressChanged(address indexed newLiquidityPoolAddress); modifier onlyOwner() { require(_msgSender() == owner, "Scrolly: caller is not the owner"); _; } constructor() ERC20("Scrolly The Map", "SCROLLY") { owner = _msgSender(); _mint(_msgSender(), 100_000_000_000 * 1e18); // Initial mint emit OwnershipTransferred(address(0), _msgSender()); maxWalletToken = _maxTotalSupply * 100 / 100; // Initial MaxWallet } function setMaxWalletToken(uint256 newMaxWalletTokenPercentage) public onlyOwner { require(newMaxWalletTokenPercentage > 0 && newMaxWalletTokenPercentage <= 100, "invalid percent"); maxWalletToken = _maxTotalSupply * newMaxWalletTokenPercentage / 100; } function getMaxWalletToken() public view returns (uint256) { return maxWalletToken; } // Transfer ownership to a new address function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0), "Scrolly: new owner is the zero address"); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } // Function to set the liquidity pool address function setLiquidityPoolAddress(address _liquidityPoolAddress) public onlyOwner { require(_liquidityPoolAddress != address(0), "Scrolly: liquidity pool address is the zero address"); liquidityPoolAddress = _liquidityPoolAddress; emit LiquidityPoolAddressChanged(_liquidityPoolAddress); } // Renounce ownership of the contract function renounceOwnership() public onlyOwner { emit OwnershipTransferred(owner, address(0)); owner = address(0); } // Override the transfer function function transfer(address to, uint256 amount) public virtual override returns (bool) { require(balanceOf(to) + amount <= maxWalletToken, "Scrolly: transfer amount exceeds the maxWalletToken limit"); return super.transfer(to, amount); } // Override the transferFrom function function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { if (to != liquidityPoolAddress) { require(balanceOf(to) + amount <= maxWalletToken, "Scrolly: transfer amount exceeds the maxWalletToken limit"); } return super.transferFrom(from, to, amount); } }
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":"newLiquidityPoolAddress","type":"address"}],"name":"LiquidityPoolAddressChanged","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":[],"name":"_maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"getMaxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityPoolAddress","type":"address"}],"name":"setLiquidityPoolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWalletTokenPercentage","type":"uint256"}],"name":"setMaxWalletToken","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600f81526e05363726f6c6c7920546865204d617608c1b6020808301918252835180850190945260078452665343524f4c4c5960c81b908401528151919291620000689160039162000213565b5080516200007e90600490602084019062000213565b506200008c91505062000148565b600580546001600160a01b0319166001600160a01b0392909216919091179055620000ce620000ba62000148565b6c01431e0fae6d7217caa00000006200014c565b620000d862000148565b6001600160a01b031660006001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36064620001336c01431e0fae6d7217caa00000008262000335565b6200013f919062000314565b600755620003aa565b3390565b6001600160a01b0382166200017e5760405162461bcd60e51b81526004016200017590620002b9565b60405180910390fd5b6200018c600083836200020e565b8060026000828254620001a09190620002f9565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001f4908590620002f0565b60405180910390a36200020a600083836200020e565b5050565b505050565b828054620002219062000357565b90600052602060002090601f01602090048101928262000245576000855562000290565b82601f106200026057805160ff191683800117855562000290565b8280016001018555821562000290579182015b828111156200029057825182559160200191906001019062000273565b506200029e929150620002a2565b5090565b5b808211156200029e5760008155600101620002a3565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200030f576200030f62000394565b500190565b6000826200033057634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161562000352576200035262000394565b500290565b6002810460018216806200036c57607f821691505b602082108114156200038e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610ef680620003ba6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610211578063a457c2d714610219578063a9059cbb1461022c578063dd62ed3e1461023f578063f2fde38b1461025257610116565b806370a08231146101ce578063715018a6146101e15780638da5cb5b146101e957806391d55f41146101fe57610116565b8063313ce567116100e9578063313ce567146101815780633730837c14610196578063395093511461019e5780635587964e146101b157806363986aba146101b957610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015957806323b872dd1461016e575b600080fd5b610123610265565b6040516101309190610a8a565b60405180910390f35b61014c610147366004610a2a565b6102f7565b6040516101309190610a7f565b610161610319565b6040516101309190610e01565b61014c61017c3660046109ef565b61031f565b610189610388565b6040516101309190610e0a565b61016161038d565b61014c6101ac366004610a2a565b61039e565b6101616103ca565b6101cc6101c73660046109a3565b6103d0565b005b6101616101dc3660046109a3565b61047a565b6101cc610499565b6101f161051d565b6040516101309190610a6b565b6101cc61020c366004610a53565b61052c565b6101236105bc565b61014c610227366004610a2a565b6105cb565b61014c61023a366004610a2a565b61061e565b61016161024d3660046109bd565b610666565b6101cc6102603660046109a3565b610691565b60606003805461027490610e6f565b80601f01602080910402602001604051908101604052809291908181526020018280546102a090610e6f565b80156102ed5780601f106102c2576101008083540402835291602001916102ed565b820191906000526020600020905b8154815290600101906020018083116102d057829003601f168201915b5050505050905090565b60008061030261074d565b905061030f818585610751565b5060019392505050565b60025490565b6006546000906001600160a01b0384811691161461037557600754826103448561047a565b61034e9190610e18565b11156103755760405162461bcd60e51b815260040161036c90610ca1565b60405180910390fd5b610380848484610805565b949350505050565b601290565b6c01431e0fae6d7217caa000000081565b6000806103a961074d565b905061030f8185856103bb8589610666565b6103c59190610e18565b610751565b60075490565b6005546001600160a01b03166103e461074d565b6001600160a01b03161461040a5760405162461bcd60e51b815260040161036c90610cfe565b6001600160a01b0381166104305760405162461bcd60e51b815260040161036c90610c4e565b600680546001600160a01b0319166001600160a01b0383169081179091556040517f13ef15815f72600feb0456a2b1dd0abf68442ff89dc454ccb656f16bc9cf177190600090a250565b6001600160a01b0381166000908152602081905260409020545b919050565b6005546001600160a01b03166104ad61074d565b6001600160a01b0316146104d35760405162461bcd60e51b815260040161036c90610cfe565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031681565b6005546001600160a01b031661054061074d565b6001600160a01b0316146105665760405162461bcd60e51b815260040161036c90610cfe565b600081118015610577575060648111155b6105935760405162461bcd60e51b815260040161036c90610b62565b60646105ac826c01431e0fae6d7217caa0000000610e50565b6105b69190610e30565b60075550565b60606004805461027490610e6f565b6000806105d661074d565b905060006105e48286610666565b9050838110156106065760405162461bcd60e51b815260040161036c90610dbc565b6106138286868403610751565b506001949350505050565b60006007548261062d8561047a565b6106379190610e18565b11156106555760405162461bcd60e51b815260040161036c90610ca1565b61065f8383610828565b9392505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03166106a561074d565b6001600160a01b0316146106cb5760405162461bcd60e51b815260040161036c90610cfe565b6001600160a01b0381166106f15760405162461bcd60e51b815260040161036c90610c08565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166107775760405162461bcd60e51b815260040161036c90610d78565b6001600160a01b03821661079d5760405162461bcd60e51b815260040161036c90610b20565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107f8908590610e01565b60405180910390a3505050565b60008061081061074d565b905061081d858285610840565b61061385858561088a565b60008061083361074d565b905061030f81858561088a565b600061084c8484610666565b9050600019811461088457818110156108775760405162461bcd60e51b815260040161036c90610b8b565b6108848484848403610751565b50505050565b6001600160a01b0383166108b05760405162461bcd60e51b815260040161036c90610d33565b6001600160a01b0382166108d65760405162461bcd60e51b815260040161036c90610add565b6108e1838383610987565b6001600160a01b0383166000908152602081905260409020548181101561091a5760405162461bcd60e51b815260040161036c90610bc2565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610978908690610e01565b60405180910390a36108848484845b505050565b80356001600160a01b038116811461049457600080fd5b6000602082840312156109b4578081fd5b61065f8261098c565b600080604083850312156109cf578081fd5b6109d88361098c565b91506109e66020840161098c565b90509250929050565b600080600060608486031215610a03578081fd5b610a0c8461098c565b9250610a1a6020850161098c565b9150604084013590509250925092565b60008060408385031215610a3c578182fd5b610a458361098c565b946020939093013593505050565b600060208284031215610a64578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610ab657858101830151858201604001528201610a9a565b81811115610ac75783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600f908201526e1a5b9d985b1a59081c195c98d95b9d608a1b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526026908201527f5363726f6c6c793a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526033908201527f5363726f6c6c793a206c697175696469747920706f6f6c206164647265737320604082015272697320746865207a65726f206164647265737360681b606082015260800190565b60208082526039908201527f5363726f6c6c793a207472616e7366657220616d6f756e74206578636565647360408201527f20746865206d617857616c6c6574546f6b656e206c696d697400000000000000606082015260800190565b6020808252818101527f5363726f6c6c793a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610e2b57610e2b610eaa565b500190565b600082610e4b57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610e6a57610e6a610eaa565b500290565b600281046001821680610e8357607f821691505b60208210811415610ea457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220817ebbd834fc43d58cff5dd84fac275ac2302cdb69f3949219bb64343fb07fb164736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610211578063a457c2d714610219578063a9059cbb1461022c578063dd62ed3e1461023f578063f2fde38b1461025257610116565b806370a08231146101ce578063715018a6146101e15780638da5cb5b146101e957806391d55f41146101fe57610116565b8063313ce567116100e9578063313ce567146101815780633730837c14610196578063395093511461019e5780635587964e146101b157806363986aba146101b957610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015957806323b872dd1461016e575b600080fd5b610123610265565b6040516101309190610a8a565b60405180910390f35b61014c610147366004610a2a565b6102f7565b6040516101309190610a7f565b610161610319565b6040516101309190610e01565b61014c61017c3660046109ef565b61031f565b610189610388565b6040516101309190610e0a565b61016161038d565b61014c6101ac366004610a2a565b61039e565b6101616103ca565b6101cc6101c73660046109a3565b6103d0565b005b6101616101dc3660046109a3565b61047a565b6101cc610499565b6101f161051d565b6040516101309190610a6b565b6101cc61020c366004610a53565b61052c565b6101236105bc565b61014c610227366004610a2a565b6105cb565b61014c61023a366004610a2a565b61061e565b61016161024d3660046109bd565b610666565b6101cc6102603660046109a3565b610691565b60606003805461027490610e6f565b80601f01602080910402602001604051908101604052809291908181526020018280546102a090610e6f565b80156102ed5780601f106102c2576101008083540402835291602001916102ed565b820191906000526020600020905b8154815290600101906020018083116102d057829003601f168201915b5050505050905090565b60008061030261074d565b905061030f818585610751565b5060019392505050565b60025490565b6006546000906001600160a01b0384811691161461037557600754826103448561047a565b61034e9190610e18565b11156103755760405162461bcd60e51b815260040161036c90610ca1565b60405180910390fd5b610380848484610805565b949350505050565b601290565b6c01431e0fae6d7217caa000000081565b6000806103a961074d565b905061030f8185856103bb8589610666565b6103c59190610e18565b610751565b60075490565b6005546001600160a01b03166103e461074d565b6001600160a01b03161461040a5760405162461bcd60e51b815260040161036c90610cfe565b6001600160a01b0381166104305760405162461bcd60e51b815260040161036c90610c4e565b600680546001600160a01b0319166001600160a01b0383169081179091556040517f13ef15815f72600feb0456a2b1dd0abf68442ff89dc454ccb656f16bc9cf177190600090a250565b6001600160a01b0381166000908152602081905260409020545b919050565b6005546001600160a01b03166104ad61074d565b6001600160a01b0316146104d35760405162461bcd60e51b815260040161036c90610cfe565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031681565b6005546001600160a01b031661054061074d565b6001600160a01b0316146105665760405162461bcd60e51b815260040161036c90610cfe565b600081118015610577575060648111155b6105935760405162461bcd60e51b815260040161036c90610b62565b60646105ac826c01431e0fae6d7217caa0000000610e50565b6105b69190610e30565b60075550565b60606004805461027490610e6f565b6000806105d661074d565b905060006105e48286610666565b9050838110156106065760405162461bcd60e51b815260040161036c90610dbc565b6106138286868403610751565b506001949350505050565b60006007548261062d8561047a565b6106379190610e18565b11156106555760405162461bcd60e51b815260040161036c90610ca1565b61065f8383610828565b9392505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03166106a561074d565b6001600160a01b0316146106cb5760405162461bcd60e51b815260040161036c90610cfe565b6001600160a01b0381166106f15760405162461bcd60e51b815260040161036c90610c08565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166107775760405162461bcd60e51b815260040161036c90610d78565b6001600160a01b03821661079d5760405162461bcd60e51b815260040161036c90610b20565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107f8908590610e01565b60405180910390a3505050565b60008061081061074d565b905061081d858285610840565b61061385858561088a565b60008061083361074d565b905061030f81858561088a565b600061084c8484610666565b9050600019811461088457818110156108775760405162461bcd60e51b815260040161036c90610b8b565b6108848484848403610751565b50505050565b6001600160a01b0383166108b05760405162461bcd60e51b815260040161036c90610d33565b6001600160a01b0382166108d65760405162461bcd60e51b815260040161036c90610add565b6108e1838383610987565b6001600160a01b0383166000908152602081905260409020548181101561091a5760405162461bcd60e51b815260040161036c90610bc2565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610978908690610e01565b60405180910390a36108848484845b505050565b80356001600160a01b038116811461049457600080fd5b6000602082840312156109b4578081fd5b61065f8261098c565b600080604083850312156109cf578081fd5b6109d88361098c565b91506109e66020840161098c565b90509250929050565b600080600060608486031215610a03578081fd5b610a0c8461098c565b9250610a1a6020850161098c565b9150604084013590509250925092565b60008060408385031215610a3c578182fd5b610a458361098c565b946020939093013593505050565b600060208284031215610a64578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610ab657858101830151858201604001528201610a9a565b81811115610ac75783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600f908201526e1a5b9d985b1a59081c195c98d95b9d608a1b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526026908201527f5363726f6c6c793a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526033908201527f5363726f6c6c793a206c697175696469747920706f6f6c206164647265737320604082015272697320746865207a65726f206164647265737360681b606082015260800190565b60208082526039908201527f5363726f6c6c793a207472616e7366657220616d6f756e74206578636565647360408201527f20746865206d617857616c6c6574546f6b656e206c696d697400000000000000606082015260800190565b6020808252818101527f5363726f6c6c793a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610e2b57610e2b610eaa565b500190565b600082610e4b57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610e6a57610e6a610eaa565b500290565b600281046001821680610e8357607f821691505b60208210811415610ea457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220817ebbd834fc43d58cff5dd84fac275ac2302cdb69f3949219bb64343fb07fb164736f6c63430008000033
Deployed Bytecode Sourcemap
21453:2806:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10399:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12759:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;11528:108::-;;;:::i;:::-;;;;;;;:::i;23912:344::-;;;;;;:::i;:::-;;:::i;11370:93::-;;;:::i;:::-;;;;;;;:::i;21565:64::-;;;:::i;14210:238::-;;;;;;:::i;:::-;;:::i;22599:99::-;;;:::i;23038:324::-;;;;;;:::i;:::-;;:::i;:::-;;11699:127;;;;;;:::i;:::-;;:::i;23421:138::-;;;:::i;21495:20::-;;;:::i;:::-;;;;;;;:::i;22315:276::-;;;;;;:::i;:::-;;:::i;10618:104::-;;;:::i;14951:436::-;;;;;;:::i;:::-;;:::i;23606:258::-;;;;;;:::i;:::-;;:::i;12288:151::-;;;;;;:::i;:::-;;:::i;22748:234::-;;;;;;:::i;:::-;;:::i;10399:100::-;10453:13;10486:5;10479:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10399:100;:::o;12759:201::-;12842:4;12859:13;12875:12;:10;:12::i;:::-;12859:28;;12898:32;12907:5;12914:7;12923:6;12898:8;:32::i;:::-;-1:-1:-1;12948:4:0;;12759:201;-1:-1:-1;;;12759:201:0:o;11528:108::-;11616:12;;11528:108;:::o;23912:344::-;24036:20;;24009:4;;-1:-1:-1;;;;;24030:26:0;;;24036:20;;24030:26;24026:169;;24107:14;;24097:6;24081:13;24091:2;24081:9;:13::i;:::-;:22;;;;:::i;:::-;:40;;24073:110;;;;-1:-1:-1;;;24073:110:0;;;;;;;:::i;:::-;;;;;;;;;24212:36;24231:4;24237:2;24241:6;24212:18;:36::i;:::-;24205:43;23912:344;-1:-1:-1;;;;23912:344:0:o;11370:93::-;11453:2;11370:93;:::o;21565:64::-;21607:22;21565:64;:::o;14210:238::-;14298:4;14315:13;14331:12;:10;:12::i;:::-;14315:28;;14354:64;14363:5;14370:7;14407:10;14379:25;14389:5;14396:7;14379:9;:25::i;:::-;:38;;;;:::i;:::-;14354:8;:64::i;22599:99::-;22676:14;;22599:99;:::o;23038:324::-;21942:5;;-1:-1:-1;;;;;21942:5:0;21926:12;:10;:12::i;:::-;-1:-1:-1;;;;;21926:21:0;;21918:66;;;;-1:-1:-1;;;21918:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23138:35:0;::::1;23130:99;;;;-1:-1:-1::0;;;23130:99:0::1;;;;;;;:::i;:::-;23240:20;:44:::0;;-1:-1:-1;;;;;;23240:44:0::1;-1:-1:-1::0;;;;;23240:44:0;::::1;::::0;;::::1;::::0;;;23300:50:::1;::::0;::::1;::::0;-1:-1:-1;;23300:50:0::1;23038:324:::0;:::o;11699:127::-;-1:-1:-1;;;;;11800:18:0;;11773:7;11800:18;;;;;;;;;;;11699:127;;;;:::o;23421:138::-;21942:5;;-1:-1:-1;;;;;21942:5:0;21926:12;:10;:12::i;:::-;-1:-1:-1;;;;;21926:21:0;;21918:66;;;;-1:-1:-1;;;21918:66:0;;;;;;;:::i;:::-;23504:5:::1;::::0;23483:39:::1;::::0;23519:1:::1;::::0;-1:-1:-1;;;;;23504:5:0::1;::::0;23483:39:::1;::::0;23519:1;;23483:39:::1;23533:5;:18:::0;;-1:-1:-1;;;;;;23533:18:0::1;::::0;;23421:138::o;21495:20::-;;;-1:-1:-1;;;;;21495:20:0;;:::o;22315:276::-;21942:5;;-1:-1:-1;;;;;21942:5:0;21926:12;:10;:12::i;:::-;-1:-1:-1;;;;;21926:21:0;;21918:66;;;;-1:-1:-1;;;21918:66:0;;;;;;;:::i;:::-;22445:1:::1;22415:27;:31;:69;;;;;22481:3;22450:27;:34;;22415:69;22407:97;;;;-1:-1:-1::0;;;22407:97:0::1;;;;;;;:::i;:::-;22580:3;22532:45;22550:27:::0;21607:22:::1;22532:45;:::i;:::-;:51;;;;:::i;:::-;22515:14;:68:::0;-1:-1:-1;22315:276:0:o;10618:104::-;10674:13;10707:7;10700:14;;;;;:::i;14951:436::-;15044:4;15061:13;15077:12;:10;:12::i;:::-;15061:28;;15100:24;15127:25;15137:5;15144:7;15127:9;:25::i;:::-;15100:52;;15191:15;15171:16;:35;;15163:85;;;;-1:-1:-1;;;15163:85:0;;;;;;;:::i;:::-;15284:60;15293:5;15300:7;15328:15;15309:16;:34;15284:8;:60::i;:::-;-1:-1:-1;15375:4:0;;14951:436;-1:-1:-1;;;;14951:436:0:o;23606:258::-;23685:4;23736:14;;23726:6;23710:13;23720:2;23710:9;:13::i;:::-;:22;;;;:::i;:::-;:40;;23702:110;;;;-1:-1:-1;;;23702:110:0;;;;;;;:::i;:::-;23830:26;23845:2;23849:6;23830:14;:26::i;:::-;23823:33;23606:258;-1:-1:-1;;;23606:258:0:o;12288:151::-;-1:-1:-1;;;;;12404:18:0;;;12377:7;12404:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12288:151::o;22748:234::-;21942:5;;-1:-1:-1;;;;;21942:5:0;21926:12;:10;:12::i;:::-;-1:-1:-1;;;;;21926:21:0;;21918:66;;;;-1:-1:-1;;;21918:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22829:22:0;::::1;22821:73;;;;-1:-1:-1::0;;;22821:73:0::1;;;;;;;:::i;:::-;22931:5;::::0;22910:37:::1;::::0;-1:-1:-1;;;;;22910:37:0;;::::1;::::0;22931:5:::1;::::0;22910:37:::1;::::0;22931:5:::1;::::0;22910:37:::1;22958:5;:16:::0;;-1:-1:-1;;;;;;22958:16:0::1;-1:-1:-1::0;;;;;22958:16:0;;;::::1;::::0;;;::::1;::::0;;22748:234::o;8041:98::-;8121:10;8041:98;:::o;18944:346::-;-1:-1:-1;;;;;19046:19:0;;19038:68;;;;-1:-1:-1;;;19038:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19125:21:0;;19117:68;;;;-1:-1:-1;;;19117:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19198:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;19250:32;;;;;19228:6;;19250:32;:::i;:::-;;;;;;;;18944:346;;;:::o;13540:261::-;13637:4;13654:15;13672:12;:10;:12::i;:::-;13654:30;;13695:38;13711:4;13717:7;13726:6;13695:15;:38::i;:::-;13744:27;13754:4;13760:2;13764:6;13744:9;:27::i;12032:193::-;12111:4;12128:13;12144:12;:10;:12::i;:::-;12128:28;;12167;12177:5;12184:2;12188:6;12167:9;:28::i;19581:419::-;19682:24;19709:25;19719:5;19726:7;19709:9;:25::i;:::-;19682:52;;-1:-1:-1;;19749:16:0;:37;19745:248;;19831:6;19811:16;:26;;19803:68;;;;-1:-1:-1;;;19803:68:0;;;;;;;:::i;:::-;19915:51;19924:5;19931:7;19959:6;19940:16;:25;19915:8;:51::i;:::-;19581:419;;;;:::o;15857:806::-;-1:-1:-1;;;;;15954:18:0;;15946:68;;;;-1:-1:-1;;;15946:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16033:16:0;;16025:64;;;;-1:-1:-1;;;16025:64:0;;;;;;;:::i;:::-;16102:38;16123:4;16129:2;16133:6;16102:20;:38::i;:::-;-1:-1:-1;;;;;16175:15:0;;16153:19;16175:15;;;;;;;;;;;16209:21;;;;16201:72;;;;-1:-1:-1;;;16201:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16309:15:0;;;:9;:15;;;;;;;;;;;16327:20;;;16309:38;;16527:13;;;;;;;;;;:23;;;;;;16579:26;;;;;;16341:6;;16579:26;:::i;:::-;;;;;;;;16618:37;16638:4;16644:2;16648:6;20600:91;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:203::-;-1:-1:-1;;;;;1653:32:1;;;;1635:51;;1623:2;1608:18;;1590:102::o;1697:187::-;1862:14;;1855:22;1837:41;;1825:2;1810:18;;1792:92::o;1889:603::-;;2030:2;2059;2048:9;2041:21;2091:6;2085:13;2134:6;2129:2;2118:9;2114:18;2107:34;2159:4;2172:140;2186:6;2183:1;2180:13;2172:140;;;2281:14;;;2277:23;;2271:30;2247:17;;;2266:2;2243:26;2236:66;2201:10;;2172:140;;;2330:6;2327:1;2324:13;2321:2;;;2400:4;2395:2;2386:6;2375:9;2371:22;2367:31;2360:45;2321:2;-1:-1:-1;2476:2:1;2455:15;-1:-1:-1;;2451:29:1;2436:45;;;;2483:2;2432:54;;2010:482;-1:-1:-1;;;2010:482:1:o;2497:399::-;2699:2;2681:21;;;2738:2;2718:18;;;2711:30;2777:34;2772:2;2757:18;;2750:62;-1:-1:-1;;;2843:2:1;2828:18;;2821:33;2886:3;2871:19;;2671:225::o;2901:398::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;3181:34;3176:2;3161:18;;3154:62;-1:-1:-1;;;3247:2:1;3232:18;;3225:32;3289:3;3274:19;;3075:224::o;3304:339::-;3506:2;3488:21;;;3545:2;3525:18;;;3518:30;-1:-1:-1;;;3579:2:1;3564:18;;3557:45;3634:2;3619:18;;3478:165::o;3648:353::-;3850:2;3832:21;;;3889:2;3869:18;;;3862:30;3928:31;3923:2;3908:18;;3901:59;3992:2;3977:18;;3822:179::o;4006:402::-;4208:2;4190:21;;;4247:2;4227:18;;;4220:30;4286:34;4281:2;4266:18;;4259:62;-1:-1:-1;;;4352:2:1;4337:18;;4330:36;4398:3;4383:19;;4180:228::o;4413:402::-;4615:2;4597:21;;;4654:2;4634:18;;;4627:30;4693:34;4688:2;4673:18;;4666:62;-1:-1:-1;;;4759:2:1;4744:18;;4737:36;4805:3;4790:19;;4587:228::o;4820:415::-;5022:2;5004:21;;;5061:2;5041:18;;;5034:30;5100:34;5095:2;5080:18;;5073:62;-1:-1:-1;;;5166:2:1;5151:18;;5144:49;5225:3;5210:19;;4994:241::o;5240:421::-;5442:2;5424:21;;;5481:2;5461:18;;;5454:30;5520:34;5515:2;5500:18;;5493:62;5591:27;5586:2;5571:18;;5564:55;5651:3;5636:19;;5414:247::o;5666:356::-;5868:2;5850:21;;;5887:18;;;5880:30;5946:34;5941:2;5926:18;;5919:62;6013:2;5998:18;;5840:182::o;6027:401::-;6229:2;6211:21;;;6268:2;6248:18;;;6241:30;6307:34;6302:2;6287:18;;6280:62;-1:-1:-1;;;6373:2:1;6358:18;;6351:35;6418:3;6403:19;;6201:227::o;6433:400::-;6635:2;6617:21;;;6674:2;6654:18;;;6647:30;6713:34;6708:2;6693:18;;6686:62;-1:-1:-1;;;6779:2:1;6764:18;;6757:34;6823:3;6808:19;;6607:226::o;6838:401::-;7040:2;7022:21;;;7079:2;7059:18;;;7052:30;7118:34;7113:2;7098:18;;7091:62;-1:-1:-1;;;7184:2:1;7169:18;;7162:35;7229:3;7214:19;;7012:227::o;7244:177::-;7390:25;;;7378:2;7363:18;;7345:76::o;7426:184::-;7598:4;7586:17;;;;7568:36;;7556:2;7541:18;;7523:87::o;7615:128::-;;7686:1;7682:6;7679:1;7676:13;7673:2;;;7692:18;;:::i;:::-;-1:-1:-1;7728:9:1;;7663:80::o;7748:217::-;;7814:1;7804:2;;-1:-1:-1;;;7839:31:1;;7893:4;7890:1;7883:15;7921:4;7846:1;7911:15;7804:2;-1:-1:-1;7950:9:1;;7794:171::o;7970:168::-;;8076:1;8072;8068:6;8064:14;8061:1;8058:21;8053:1;8046:9;8039:17;8035:45;8032:2;;;8083:18;;:::i;:::-;-1:-1:-1;8123:9:1;;8022:116::o;8143:380::-;8228:1;8218:12;;8275:1;8265:12;;;8286:2;;8340:4;8332:6;8328:17;8318:27;;8286:2;8393;8385:6;8382:14;8362:18;8359:38;8356:2;;;8439:10;8434:3;8430:20;8427:1;8420:31;8474:4;8471:1;8464:15;8502:4;8499:1;8492:15;8356:2;;8198:325;;;:::o;8528:127::-;8589:10;8584:3;8580:20;8577:1;8570:31;8620:4;8617:1;8610:15;8644:4;8641:1;8634:15
Swarm Source
ipfs://817ebbd834fc43d58cff5dd84fac275ac2302cdb69f3949219bb64343fb07fb1
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.