More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,251 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 19852343 | 190 days ago | IN | 0 ETH | 0.00008505 | ||||
Approve | 19338251 | 262 days ago | IN | 0 ETH | 0.00114286 | ||||
Approve | 18321224 | 405 days ago | IN | 0 ETH | 0.00033528 | ||||
Transfer | 18253173 | 414 days ago | IN | 0 ETH | 0.00033482 | ||||
Approve | 18161429 | 427 days ago | IN | 0 ETH | 0.00020325 | ||||
Approve | 17953115 | 456 days ago | IN | 0 ETH | 0.00028526 | ||||
Approve | 17068122 | 581 days ago | IN | 0 ETH | 0.00094222 | ||||
Transfer | 15799561 | 758 days ago | IN | 0 ETH | 0.00140835 | ||||
Approve | 15486309 | 804 days ago | IN | 0 ETH | 0.00168022 | ||||
Approve | 15327408 | 829 days ago | IN | 0 ETH | 0.00070736 | ||||
Approve | 15316606 | 831 days ago | IN | 0 ETH | 0.00060339 | ||||
Approve | 15316600 | 831 days ago | IN | 0 ETH | 0.00098936 | ||||
Approve | 15295881 | 834 days ago | IN | 0 ETH | 0.00053106 | ||||
Transfer | 15097435 | 865 days ago | IN | 0 ETH | 0.00381479 | ||||
Approve | 14851906 | 906 days ago | IN | 0 ETH | 0.00180019 | ||||
Approve | 14844026 | 908 days ago | IN | 0 ETH | 0.00182677 | ||||
Transfer | 14745109 | 923 days ago | IN | 0 ETH | 0.00147669 | ||||
Transfer | 14648682 | 939 days ago | IN | 0 ETH | 0.00154234 | ||||
Transfer | 14648673 | 939 days ago | IN | 0 ETH | 0.00194453 | ||||
Approve | 14636846 | 941 days ago | IN | 0 ETH | 0.00236802 | ||||
Approve | 14630996 | 941 days ago | IN | 0 ETH | 0.0023399 | ||||
Approve | 14630187 | 942 days ago | IN | 0 ETH | 0.00235385 | ||||
Transfer | 14629158 | 942 days ago | IN | 0 ETH | 0.00374194 | ||||
Approve | 14586530 | 948 days ago | IN | 0 ETH | 0.00286925 | ||||
Approve | 14581406 | 949 days ago | IN | 0 ETH | 0.00219001 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
LessToken
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-05-17 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } 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); } 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to 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 { } } pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity ^0.8.0; contract LessToken is ERC20Burnable, Ownable, ReentrancyGuard { constructor() ERC20("LessToken", "LESS") { _mint(owner(), 1250000000 * (10**18)); } function extractLostCrypto() external onlyOwner { payable(owner()).transfer(address(this).balance); } function extractLostToken(address tokenToExtract) external nonReentrant onlyOwner { IERC20(tokenToExtract).transfer(owner(), IERC20(tokenToExtract).balanceOf(address(this))); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"extractLostCrypto","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenToExtract","type":"address"}],"name":"extractLostToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060408051808201825260098152682632b9b9aa37b5b2b760b91b6020808301918252835180850190945260048452634c45535360e01b9084015281519192916200005f91600391620001f0565b50805162000075906004906020840190620001f0565b50505060006200008a6200010460201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600655620000fe620000eb62000108565b6b0409f9cbc7c4a04c2200000062000117565b62000338565b3390565b6005546001600160a01b031690565b6001600160a01b038216620001495760405162461bcd60e51b8152600401620001409062000296565b60405180910390fd5b6200015760008383620001eb565b80600260008282546200016b9190620002d6565b90915550506001600160a01b038216600090815260208190526040812080548392906200019a908490620002d6565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001df908590620002cd565b60405180910390a35050565b505050565b828054620001fe90620002fb565b90600052602060002090601f0160209004810192826200022257600085556200026d565b82601f106200023d57805160ff19168380011785556200026d565b828001600101855582156200026d579182015b828111156200026d57825182559160200191906001019062000250565b506200027b9291506200027f565b5090565b5b808211156200027b576000815560010162000280565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620002f657634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200031057607f821691505b602082108114156200033257634e487b7160e01b600052602260045260246000fd5b50919050565b61114a80620003486000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a257806396907f5c1161007157806396907f5c1461021c578063a457c2d714610224578063a9059cbb14610237578063dd62ed3e1461024a578063f2fde38b1461025d57610116565b8063715018a6146101e457806379cc6790146101ec5780638da5cb5b146101ff57806395d89b411461021457610116565b8063313ce567116100e9578063313ce56714610181578063395093511461019657806342966c68146101a95780636326998e146101be57806370a08231146101d157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015957806323b872dd1461016e575b600080fd5b610123610270565b6040516101309190610cd0565b60405180910390f35b61014c610147366004610c1f565b610302565b6040516101309190610cc5565b61016161031f565b604051610130919061107d565b61014c61017c366004610be4565b610325565b6101896103c5565b6040516101309190611086565b61014c6101a4366004610c1f565b6103ca565b6101bc6101b7366004610c68565b610419565b005b6101bc6101cc366004610b91565b61042d565b6101616101df366004610b91565b61059f565b6101bc6105be565b6101bc6101fa366004610c1f565b610647565b61020761069c565b6040516101309190610c98565b6101236106ab565b6101bc6106ba565b61014c610232366004610c1f565b610739565b61014c610245366004610c1f565b6107b4565b610161610258366004610bb2565b6107c8565b6101bc61026b366004610b91565b6107f3565b60606003805461027f906110c3565b80601f01602080910402602001604051908101604052809291908181526020018280546102ab906110c3565b80156102f85780601f106102cd576101008083540402835291602001916102f8565b820191906000526020600020905b8154815290600101906020018083116102db57829003601f168201915b5050505050905090565b600061031661030f6108b4565b84846108b8565b50600192915050565b60025490565b600061033284848461096c565b6001600160a01b0384166000908152600160205260408120816103536108b4565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561039f5760405162461bcd60e51b815260040161039690610e76565b60405180910390fd5b6103ba856103ab6108b4565b6103b586856110ac565b6108b8565b506001949350505050565b601290565b60006103166103d76108b4565b8484600160006103e56108b4565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103b59190611094565b61042a6104246108b4565b82610a94565b50565b600260065414156104505760405162461bcd60e51b815260040161039690611001565b600260065561045d6108b4565b6001600160a01b031661046e61069c565b6001600160a01b0316146104945760405162461bcd60e51b815260040161039690610ebe565b806001600160a01b031663a9059cbb6104ab61069c565b6040516370a0823160e01b81526001600160a01b038516906370a08231906104d7903090600401610c98565b60206040518083038186803b1580156104ef57600080fd5b505afa158015610503573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105279190610c80565b6040518363ffffffff1660e01b8152600401610544929190610cac565b602060405180830381600087803b15801561055e57600080fd5b505af1158015610572573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105969190610c48565b50506001600655565b6001600160a01b0381166000908152602081905260409020545b919050565b6105c66108b4565b6001600160a01b03166105d761069c565b6001600160a01b0316146105fd5760405162461bcd60e51b815260040161039690610ebe565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6000610655836102586108b4565b9050818110156106775760405162461bcd60e51b815260040161039690610ef3565b61068d836106836108b4565b6103b585856110ac565b6106978383610a94565b505050565b6005546001600160a01b031690565b60606004805461027f906110c3565b6106c26108b4565b6001600160a01b03166106d361069c565b6001600160a01b0316146106f95760405162461bcd60e51b815260040161039690610ebe565b61070161069c565b6001600160a01b03166108fc479081150290604051600060405180830381858888f1935050505015801561042a573d6000803e3d6000fd5b600080600160006107486108b4565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156107945760405162461bcd60e51b815260040161039690611038565b6107aa61079f6108b4565b856103b586856110ac565b5060019392505050565b60006103166107c16108b4565b848461096c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6107fb6108b4565b6001600160a01b031661080c61069c565b6001600160a01b0316146108325760405162461bcd60e51b815260040161039690610ebe565b6001600160a01b0381166108585760405162461bcd60e51b815260040161039690610da8565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166108de5760405162461bcd60e51b815260040161039690610fbd565b6001600160a01b0382166109045760405162461bcd60e51b815260040161039690610dee565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061095f90859061107d565b60405180910390a3505050565b6001600160a01b0383166109925760405162461bcd60e51b815260040161039690610f78565b6001600160a01b0382166109b85760405162461bcd60e51b815260040161039690610d23565b6109c3838383610697565b6001600160a01b038316600090815260208190526040902054818110156109fc5760405162461bcd60e51b815260040161039690610e30565b610a0682826110ac565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610a3c908490611094565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a86919061107d565b60405180910390a350505050565b6001600160a01b038216610aba5760405162461bcd60e51b815260040161039690610f37565b610ac682600083610697565b6001600160a01b03821660009081526020819052604090205481811015610aff5760405162461bcd60e51b815260040161039690610d66565b610b0982826110ac565b6001600160a01b03841660009081526020819052604081209190915560028054849290610b379084906110ac565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061095f90869061107d565b80356001600160a01b03811681146105b957600080fd5b600060208284031215610ba2578081fd5b610bab82610b7a565b9392505050565b60008060408385031215610bc4578081fd5b610bcd83610b7a565b9150610bdb60208401610b7a565b90509250929050565b600080600060608486031215610bf8578081fd5b610c0184610b7a565b9250610c0f60208501610b7a565b9150604084013590509250925092565b60008060408385031215610c31578182fd5b610c3a83610b7a565b946020939093013593505050565b600060208284031215610c59578081fd5b81518015158114610bab578182fd5b600060208284031215610c79578081fd5b5035919050565b600060208284031215610c91578081fd5b5051919050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b81811015610cfc57858101830151858201604001528201610ce0565b81811115610d0d5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156110a7576110a76110fe565b500190565b6000828210156110be576110be6110fe565b500390565b6002810460018216806110d757607f821691505b602082108114156110f857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d804960aae78f4d207c421b6b8df865dcee0633adb086e7b8763bf3a2f8acaf564736f6c63430008010033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a257806396907f5c1161007157806396907f5c1461021c578063a457c2d714610224578063a9059cbb14610237578063dd62ed3e1461024a578063f2fde38b1461025d57610116565b8063715018a6146101e457806379cc6790146101ec5780638da5cb5b146101ff57806395d89b411461021457610116565b8063313ce567116100e9578063313ce56714610181578063395093511461019657806342966c68146101a95780636326998e146101be57806370a08231146101d157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015957806323b872dd1461016e575b600080fd5b610123610270565b6040516101309190610cd0565b60405180910390f35b61014c610147366004610c1f565b610302565b6040516101309190610cc5565b61016161031f565b604051610130919061107d565b61014c61017c366004610be4565b610325565b6101896103c5565b6040516101309190611086565b61014c6101a4366004610c1f565b6103ca565b6101bc6101b7366004610c68565b610419565b005b6101bc6101cc366004610b91565b61042d565b6101616101df366004610b91565b61059f565b6101bc6105be565b6101bc6101fa366004610c1f565b610647565b61020761069c565b6040516101309190610c98565b6101236106ab565b6101bc6106ba565b61014c610232366004610c1f565b610739565b61014c610245366004610c1f565b6107b4565b610161610258366004610bb2565b6107c8565b6101bc61026b366004610b91565b6107f3565b60606003805461027f906110c3565b80601f01602080910402602001604051908101604052809291908181526020018280546102ab906110c3565b80156102f85780601f106102cd576101008083540402835291602001916102f8565b820191906000526020600020905b8154815290600101906020018083116102db57829003601f168201915b5050505050905090565b600061031661030f6108b4565b84846108b8565b50600192915050565b60025490565b600061033284848461096c565b6001600160a01b0384166000908152600160205260408120816103536108b4565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561039f5760405162461bcd60e51b815260040161039690610e76565b60405180910390fd5b6103ba856103ab6108b4565b6103b586856110ac565b6108b8565b506001949350505050565b601290565b60006103166103d76108b4565b8484600160006103e56108b4565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103b59190611094565b61042a6104246108b4565b82610a94565b50565b600260065414156104505760405162461bcd60e51b815260040161039690611001565b600260065561045d6108b4565b6001600160a01b031661046e61069c565b6001600160a01b0316146104945760405162461bcd60e51b815260040161039690610ebe565b806001600160a01b031663a9059cbb6104ab61069c565b6040516370a0823160e01b81526001600160a01b038516906370a08231906104d7903090600401610c98565b60206040518083038186803b1580156104ef57600080fd5b505afa158015610503573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105279190610c80565b6040518363ffffffff1660e01b8152600401610544929190610cac565b602060405180830381600087803b15801561055e57600080fd5b505af1158015610572573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105969190610c48565b50506001600655565b6001600160a01b0381166000908152602081905260409020545b919050565b6105c66108b4565b6001600160a01b03166105d761069c565b6001600160a01b0316146105fd5760405162461bcd60e51b815260040161039690610ebe565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6000610655836102586108b4565b9050818110156106775760405162461bcd60e51b815260040161039690610ef3565b61068d836106836108b4565b6103b585856110ac565b6106978383610a94565b505050565b6005546001600160a01b031690565b60606004805461027f906110c3565b6106c26108b4565b6001600160a01b03166106d361069c565b6001600160a01b0316146106f95760405162461bcd60e51b815260040161039690610ebe565b61070161069c565b6001600160a01b03166108fc479081150290604051600060405180830381858888f1935050505015801561042a573d6000803e3d6000fd5b600080600160006107486108b4565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156107945760405162461bcd60e51b815260040161039690611038565b6107aa61079f6108b4565b856103b586856110ac565b5060019392505050565b60006103166107c16108b4565b848461096c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6107fb6108b4565b6001600160a01b031661080c61069c565b6001600160a01b0316146108325760405162461bcd60e51b815260040161039690610ebe565b6001600160a01b0381166108585760405162461bcd60e51b815260040161039690610da8565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166108de5760405162461bcd60e51b815260040161039690610fbd565b6001600160a01b0382166109045760405162461bcd60e51b815260040161039690610dee565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061095f90859061107d565b60405180910390a3505050565b6001600160a01b0383166109925760405162461bcd60e51b815260040161039690610f78565b6001600160a01b0382166109b85760405162461bcd60e51b815260040161039690610d23565b6109c3838383610697565b6001600160a01b038316600090815260208190526040902054818110156109fc5760405162461bcd60e51b815260040161039690610e30565b610a0682826110ac565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610a3c908490611094565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a86919061107d565b60405180910390a350505050565b6001600160a01b038216610aba5760405162461bcd60e51b815260040161039690610f37565b610ac682600083610697565b6001600160a01b03821660009081526020819052604090205481811015610aff5760405162461bcd60e51b815260040161039690610d66565b610b0982826110ac565b6001600160a01b03841660009081526020819052604081209190915560028054849290610b379084906110ac565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061095f90869061107d565b80356001600160a01b03811681146105b957600080fd5b600060208284031215610ba2578081fd5b610bab82610b7a565b9392505050565b60008060408385031215610bc4578081fd5b610bcd83610b7a565b9150610bdb60208401610b7a565b90509250929050565b600080600060608486031215610bf8578081fd5b610c0184610b7a565b9250610c0f60208501610b7a565b9150604084013590509250925092565b60008060408385031215610c31578182fd5b610c3a83610b7a565b946020939093013593505050565b600060208284031215610c59578081fd5b81518015158114610bab578182fd5b600060208284031215610c79578081fd5b5035919050565b600060208284031215610c91578081fd5b5051919050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b81811015610cfc57858101830151858201604001528201610ce0565b81811115610d0d5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156110a7576110a76110fe565b500190565b6000828210156110be576110be6110fe565b500390565b6002810460018216806110d757607f821691505b602082108114156110f857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d804960aae78f4d207c421b6b8df865dcee0633adb086e7b8763bf3a2f8acaf564736f6c63430008010033
Deployed Bytecode Sourcemap
21122:492:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6279:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8446:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7399:108::-;;;:::i;:::-;;;;;;;:::i;9097:422::-;;;;;;:::i;:::-;;:::i;7241:93::-;;;:::i;:::-;;;;;;;:::i;9928:215::-;;;;;;:::i;:::-;;:::i;15464:91::-;;;;;;:::i;:::-;;:::i;:::-;;21421:190;;;;;;:::i;:::-;;:::i;7570:127::-;;;;;;:::i;:::-;;:::i;17903:148::-;;;:::i;15874:332::-;;;;;;:::i;:::-;;:::i;17252:87::-;;;:::i;:::-;;;;;;;:::i;6498:104::-;;;:::i;21298:115::-;;;:::i;10646:377::-;;;;;;:::i;:::-;;:::i;7910:175::-;;;;;;:::i;:::-;;:::i;8148:151::-;;;;;;:::i;:::-;;:::i;18206:244::-;;;;;;:::i;:::-;;:::i;6279:100::-;6333:13;6366:5;6359:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6279:100;:::o;8446:169::-;8529:4;8546:39;8555:12;:10;:12::i;:::-;8569:7;8578:6;8546:8;:39::i;:::-;-1:-1:-1;8603:4:0;8446:169;;;;:::o;7399:108::-;7487:12;;7399:108;:::o;9097:422::-;9203:4;9220:36;9230:6;9238:9;9249:6;9220:9;:36::i;:::-;-1:-1:-1;;;;;9296:19:0;;9269:24;9296:19;;;:11;:19;;;;;9269:24;9316:12;:10;:12::i;:::-;-1:-1:-1;;;;;9296:33:0;-1:-1:-1;;;;;9296:33:0;;;;;;;;;;;;;9269:60;;9368:6;9348:16;:26;;9340:79;;;;-1:-1:-1;;;9340:79:0;;;;;;;:::i;:::-;;;;;;;;;9430:57;9439:6;9447:12;:10;:12::i;:::-;9461:25;9480:6;9461:16;:25;:::i;:::-;9430:8;:57::i;:::-;-1:-1:-1;9507:4:0;;9097:422;-1:-1:-1;;;;9097:422:0:o;7241:93::-;7324:2;7241:93;:::o;9928:215::-;10016:4;10033:80;10042:12;:10;:12::i;:::-;10056:7;10102:10;10065:11;:25;10077:12;:10;:12::i;:::-;-1:-1:-1;;;;;10065:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10065:25:0;;;:34;;;;;;;;;;:47;;;;:::i;15464:91::-;15520:27;15526:12;:10;:12::i;:::-;15540:6;15520:5;:27::i;:::-;15464:91;:::o;21421:190::-;20139:1;20736:7;;:19;;20728:63;;;;-1:-1:-1;;;20728:63:0;;;;;;;:::i;:::-;20139:1;20869:7;:18;17483:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;17472:23:0::1;:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;17472:23:0::1;;17464:68;;;;-1:-1:-1::0;;;17464:68:0::1;;;;;;;:::i;:::-;21521:14:::2;-1:-1:-1::0;;;;;21514:31:0::2;;21546:7;:5;:7::i;:::-;21555:47;::::0;-1:-1:-1;;;21555:47:0;;-1:-1:-1;;;;;21555:32:0;::::2;::::0;::::2;::::0;:47:::2;::::0;21596:4:::2;::::0;21555:47:::2;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21514:89;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;20095:1:0;21048:7;:22;21421:190::o;7570:127::-;-1:-1:-1;;;;;7671:18:0;;7644:7;7671:18;;;;;;;;;;;7570:127;;;;:::o;17903:148::-;17483:12;:10;:12::i;:::-;-1:-1:-1;;;;;17472:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17472:23:0;;17464:68;;;;-1:-1:-1;;;17464:68:0;;;;;;;:::i;:::-;17994:6:::1;::::0;17973:40:::1;::::0;18010:1:::1;::::0;-1:-1:-1;;;;;17994:6:0::1;::::0;17973:40:::1;::::0;18010:1;;17973:40:::1;18024:6;:19:::0;;-1:-1:-1;;;;;;18024:19:0::1;::::0;;17903:148::o;15874:332::-;15951:24;15978:32;15988:7;15997:12;:10;:12::i;15978:32::-;15951:59;;16049:6;16029:16;:26;;16021:75;;;;-1:-1:-1;;;16021:75:0;;;;;;;:::i;:::-;16107:58;16116:7;16125:12;:10;:12::i;:::-;16139:25;16158:6;16139:16;:25;:::i;16107:58::-;16176:22;16182:7;16191:6;16176:5;:22::i;:::-;15874:332;;;:::o;17252:87::-;17325:6;;-1:-1:-1;;;;;17325:6:0;17252:87;:::o;6498:104::-;6554:13;6587:7;6580:14;;;;;:::i;21298:115::-;17483:12;:10;:12::i;:::-;-1:-1:-1;;;;;17472:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17472:23:0;;17464:68;;;;-1:-1:-1;;;17464:68:0;;;;;;;:::i;:::-;21365:7:::1;:5;:7::i;:::-;-1:-1:-1::0;;;;;21357:25:0::1;:48;21383:21;21357:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;10646:377:::0;10739:4;10756:24;10783:11;:25;10795:12;:10;:12::i;:::-;-1:-1:-1;;;;;10783:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10783:25:0;;;:34;;;;;;;;;;;-1:-1:-1;10836:35:0;;;;10828:85;;;;-1:-1:-1;;;10828:85:0;;;;;;;:::i;:::-;10924:67;10933:12;:10;:12::i;:::-;10947:7;10956:34;10975:15;10956:16;:34;:::i;10924:67::-;-1:-1:-1;11011:4:0;;10646:377;-1:-1:-1;;;10646:377:0:o;7910:175::-;7996:4;8013:42;8023:12;:10;:12::i;:::-;8037:9;8048:6;8013:9;:42::i;8148:151::-;-1:-1:-1;;;;;8264:18:0;;;8237:7;8264:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8148:151::o;18206:244::-;17483:12;:10;:12::i;:::-;-1:-1:-1;;;;;17472:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17472:23:0;;17464:68;;;;-1:-1:-1;;;17464:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18295:22:0;::::1;18287:73;;;;-1:-1:-1::0;;;18287:73:0::1;;;;;;;:::i;:::-;18397:6;::::0;18376:38:::1;::::0;-1:-1:-1;;;;;18376:38:0;;::::1;::::0;18397:6:::1;::::0;18376:38:::1;::::0;18397:6:::1;::::0;18376:38:::1;18425:6;:17:::0;;-1:-1:-1;;;;;;18425:17:0::1;-1:-1:-1::0;;;;;18425:17:0;;;::::1;::::0;;;::::1;::::0;;18206:244::o;3924:98::-;4004:10;3924:98;:::o;14002:346::-;-1:-1:-1;;;;;14104:19:0;;14096:68;;;;-1:-1:-1;;;14096:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14183:21:0;;14175:68;;;;-1:-1:-1;;;14175:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14256:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;14308:32;;;;;14286:6;;14308:32;:::i;:::-;;;;;;;;14002:346;;;:::o;11513:604::-;-1:-1:-1;;;;;11619:20:0;;11611:70;;;;-1:-1:-1;;;11611:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11700:23:0;;11692:71;;;;-1:-1:-1;;;11692:71:0;;;;;;;:::i;:::-;11776:47;11797:6;11805:9;11816:6;11776:20;:47::i;:::-;-1:-1:-1;;;;;11860:17:0;;11836:21;11860:17;;;;;;;;;;;11896:23;;;;11888:74;;;;-1:-1:-1;;;11888:74:0;;;;;;;:::i;:::-;11993:22;12009:6;11993:13;:22;:::i;:::-;-1:-1:-1;;;;;11973:17:0;;;:9;:17;;;;;;;;;;;:42;;;;12026:20;;;;;;;;:30;;12050:6;;11973:9;12026:30;;12050:6;;12026:30;:::i;:::-;;;;;;;;12091:9;-1:-1:-1;;;;;12074:35:0;12083:6;-1:-1:-1;;;;;12074:35:0;;12102:6;12074:35;;;;;;:::i;:::-;;;;;;;;11513:604;;;;:::o;13070:494::-;-1:-1:-1;;;;;13154:21:0;;13146:67;;;;-1:-1:-1;;;13146:67:0;;;;;;;:::i;:::-;13226:49;13247:7;13264:1;13268:6;13226:20;:49::i;:::-;-1:-1:-1;;;;;13313:18:0;;13288:22;13313:18;;;;;;;;;;;13350:24;;;;13342:71;;;;-1:-1:-1;;;13342:71:0;;;;;;;:::i;:::-;13445:23;13462:6;13445:14;:23;:::i;:::-;-1:-1:-1;;;;;13424:18:0;;:9;:18;;;;;;;;;;:44;;;;13479:12;:22;;13495:6;;13424:9;13479:22;;13495:6;;13479:22;:::i;:::-;;;;-1:-1:-1;;13519:37:0;;13545:1;;-1:-1:-1;;;;;13519:37:0;;;;;;;13549:6;;13519:37;:::i;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;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;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:297::-;;1414:2;1402:9;1393:7;1389:23;1385:32;1382:2;;;1435:6;1427;1420:22;1382:2;1472:9;1466:16;1525:5;1518:13;1511:21;1504:5;1501:32;1491:2;;1552:6;1544;1537:22;1596:190;;1708:2;1696:9;1687:7;1683:23;1679:32;1676:2;;;1729:6;1721;1714:22;1676:2;-1:-1:-1;1757:23:1;;1666:120;-1:-1:-1;1666:120:1:o;1791:194::-;;1914:2;1902:9;1893:7;1889:23;1885:32;1882:2;;;1935:6;1927;1920:22;1882:2;-1:-1:-1;1963:16:1;;1872:113;-1:-1:-1;1872:113:1:o;1990:203::-;-1:-1:-1;;;;;2154:32:1;;;;2136:51;;2124:2;2109:18;;2091:102::o;2198:274::-;-1:-1:-1;;;;;2390:32:1;;;;2372:51;;2454:2;2439:18;;2432:34;2360:2;2345:18;;2327:145::o;2477:187::-;2642:14;;2635:22;2617:41;;2605:2;2590:18;;2572:92::o;2669:603::-;;2810:2;2839;2828:9;2821:21;2871:6;2865:13;2914:6;2909:2;2898:9;2894:18;2887:34;2939:4;2952:140;2966:6;2963:1;2960:13;2952:140;;;3061:14;;;3057:23;;3051:30;3027:17;;;3046:2;3023:26;3016:66;2981:10;;2952:140;;;3110:6;3107:1;3104:13;3101:2;;;3180:4;3175:2;3166:6;3155:9;3151:22;3147:31;3140:45;3101:2;-1:-1:-1;3256:2:1;3235:15;-1:-1:-1;;3231:29:1;3216:45;;;;3263:2;3212:54;;2790:482;-1:-1:-1;;;2790:482:1:o;3277:399::-;3479:2;3461:21;;;3518:2;3498:18;;;3491:30;3557:34;3552:2;3537:18;;3530:62;-1:-1:-1;;;3623:2:1;3608:18;;3601:33;3666:3;3651:19;;3451:225::o;3681:398::-;3883:2;3865:21;;;3922:2;3902:18;;;3895:30;3961:34;3956:2;3941:18;;3934:62;-1:-1:-1;;;4027:2:1;4012:18;;4005:32;4069:3;4054:19;;3855:224::o;4084:402::-;4286:2;4268:21;;;4325:2;4305:18;;;4298:30;4364:34;4359:2;4344:18;;4337:62;-1:-1:-1;;;4430:2:1;4415:18;;4408:36;4476:3;4461:19;;4258:228::o;4491:398::-;4693:2;4675:21;;;4732:2;4712:18;;;4705:30;4771:34;4766:2;4751:18;;4744:62;-1:-1:-1;;;4837:2:1;4822:18;;4815:32;4879:3;4864:19;;4665:224::o;4894:402::-;5096:2;5078:21;;;5135:2;5115:18;;;5108:30;5174:34;5169:2;5154:18;;5147:62;-1:-1:-1;;;5240:2:1;5225:18;;5218:36;5286:3;5271:19;;5068:228::o;5301:404::-;5503:2;5485:21;;;5542:2;5522:18;;;5515:30;5581:34;5576:2;5561:18;;5554:62;-1:-1:-1;;;5647:2:1;5632:18;;5625:38;5695:3;5680:19;;5475:230::o;5710:356::-;5912:2;5894:21;;;5931:18;;;5924:30;5990:34;5985:2;5970:18;;5963:62;6057:2;6042:18;;5884:182::o;6071:400::-;6273:2;6255:21;;;6312:2;6292:18;;;6285:30;6351:34;6346:2;6331:18;;6324:62;-1:-1:-1;;;6417:2:1;6402:18;;6395:34;6461:3;6446:19;;6245:226::o;6476:397::-;6678:2;6660:21;;;6717:2;6697:18;;;6690:30;6756:34;6751:2;6736:18;;6729:62;-1:-1:-1;;;6822:2:1;6807:18;;6800:31;6863:3;6848:19;;6650:223::o;6878:401::-;7080:2;7062:21;;;7119:2;7099:18;;;7092:30;7158:34;7153:2;7138:18;;7131:62;-1:-1:-1;;;7224:2:1;7209:18;;7202:35;7269:3;7254:19;;7052:227::o;7284:400::-;7486:2;7468:21;;;7525:2;7505:18;;;7498:30;7564:34;7559:2;7544:18;;7537:62;-1:-1:-1;;;7630:2:1;7615:18;;7608:34;7674:3;7659:19;;7458:226::o;7689:355::-;7891:2;7873:21;;;7930:2;7910:18;;;7903:30;7969:33;7964:2;7949:18;;7942:61;8035:2;8020:18;;7863:181::o;8049:401::-;8251:2;8233:21;;;8290:2;8270:18;;;8263:30;8329:34;8324:2;8309:18;;8302:62;-1:-1:-1;;;8395:2:1;8380:18;;8373:35;8440:3;8425:19;;8223:227::o;8455:177::-;8601:25;;;8589:2;8574:18;;8556:76::o;8637:184::-;8809:4;8797:17;;;;8779:36;;8767:2;8752:18;;8734:87::o;8826:128::-;;8897:1;8893:6;8890:1;8887:13;8884:2;;;8903:18;;:::i;:::-;-1:-1:-1;8939:9:1;;8874:80::o;8959:125::-;;9027:1;9024;9021:8;9018:2;;;9032:18;;:::i;:::-;-1:-1:-1;9069:9:1;;9008:76::o;9089:380::-;9174:1;9164:12;;9221:1;9211:12;;;9232:2;;9286:4;9278:6;9274:17;9264:27;;9232:2;9339;9331:6;9328:14;9308:18;9305:38;9302:2;;;9385:10;9380:3;9376:20;9373:1;9366:31;9420:4;9417:1;9410:15;9448:4;9445:1;9438:15;9302:2;;9144:325;;;:::o;9474:127::-;9535:10;9530:3;9526:20;9523:1;9516:31;9566:4;9563:1;9556:15;9590:4;9587:1;9580:15
Swarm Source
ipfs://d804960aae78f4d207c421b6b8df865dcee0633adb086e7b8763bf3a2f8acaf5
Loading...
Loading
Loading...
Loading
OVERVIEW
LESS is the first-ever platform to offer cross-chain trading services in one place. Our distinctive and comprehensive platform allows you to trade smartly with real-time data, discover the best rates using integrated DEXes, as well as, launch and invest in new and promising projects.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 100.00% | $620.09 | 0.0195 | $12.09 |
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.