Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MpeppeToken
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-04-14 */ // SPDX-License-Identifier: MIT pragma solidity =0.8.6; /** * @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 ); } /** * @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); } /** * @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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 internal _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @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 _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract MpeppeToken is ERC20, Ownable { mapping(address => bool) public _isExcludedFromFee; string private _name = unicode"Mpeppé"; string private _symbol = "$MPEPE"; uint256 private totalSupply_ = 7_690_420_000; uint8 private _decimals = 18; uint256 private _burnFee = 1; uint256 private _previousBurnFee = _burnFee; constructor() payable { //exclude owner, feeaccount and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _mint(_msgSender(), totalSupply_ * 10**decimals()); } receive() external payable {} function getBalance() private view returns (uint256) { return address(this).balance; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return _decimals; } function getBurnFee() public view returns (uint256) { return _burnFee; } function isExcludedFromFee(address account) public view returns (bool) { return _isExcludedFromFee[account]; } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual override { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); uint256 senderBalance = balanceOf(sender); require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); _beforeTokenTransfer(sender, recipient, amount); bool takeFee = true; if (_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]) { takeFee = false; } _tokenTransfer(sender, recipient, amount, takeFee); } function _tokenTransfer( address from, address to, uint256 value, bool takeFee ) private { if (!takeFee) { removeAllFee(); } _transferStandard(from, to, value); if (!takeFee) { restoreAllFee(); } } function removeAllFee() private { if (_burnFee == 0) return; _previousBurnFee = _burnFee; _burnFee = 0; } function restoreAllFee() private { _burnFee = _previousBurnFee; } function _transferStandard( address from, address to, uint256 amount ) private { uint256 transferAmount = _getTransferValues(amount); _balances[from] = _balances[from] - amount; _balances[to] = _balances[to] + transferAmount; burnFeeTransfer(from, amount); emit Transfer(from, to, transferAmount); } function _getTransferValues(uint256 amount) private view returns (uint256) { uint256 taxValue = _getCompleteTaxValue(amount); uint256 transferAmount = amount - taxValue; return transferAmount; } function _getCompleteTaxValue(uint256 amount) private view returns (uint256) { uint256 allTaxes = _burnFee; uint256 taxValue = (amount * allTaxes) / 100; return taxValue; } function burnFeeTransfer(address sender, uint256 amount) private { uint256 burnFee = (amount * _burnFee) / 100; if (burnFee > 0) { _totalSupply = _totalSupply - burnFee; emit Transfer(sender, address(0), burnFee); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","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":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405260076080819052664d70657070c3a960c81b60a09081526200002891908162000265565b5060408051808201909152600680825265244d5045504560d01b6020909201918252620000589160089162000265565b506401ca627f20600955600a805460ff191660121790556001600b819055600c556200008b620000853390565b62000123565b600160066000620000a960055461010090046001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260069092529020805490911660011790556200011d620000f53390565b600a5460ff166200010890600a6200036f565b6009546200011791906200043d565b6200017d565b620004b2565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001d85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001ec91906200030b565b90915550506001600160a01b038216600090815260208190526040812080548392906200021b9084906200030b565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b82805462000273906200045f565b90600052602060002090601f016020900481019282620002975760008555620002e2565b82601f10620002b257805160ff1916838001178555620002e2565b82800160010185558215620002e2579182015b82811115620002e2578251825591602001919060010190620002c5565b50620002f0929150620002f4565b5090565b5b80821115620002f05760008155600101620002f5565b600082198211156200032157620003216200049c565b500190565b600181815b80851115620003675781600019048211156200034b576200034b6200049c565b808516156200035957918102915b93841c93908002906200032b565b509250929050565b60006200038060ff84168362000387565b9392505050565b600082620003985750600162000437565b81620003a75750600062000437565b8160018114620003c05760028114620003cb57620003eb565b600191505062000437565b60ff841115620003df57620003df6200049c565b50506001821b62000437565b5060208310610133831016604e8410600b841016171562000410575081810a62000437565b6200041c838362000326565b80600019048211156200043357620004336200049c565b0290505b92915050565b60008160001904831182151516156200045a576200045a6200049c565b500290565b600181811c908216806200047457607f821691505b602082108114156200049657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610f0c80620004c26000396000f3fe6080604052600436106101185760003560e01c8063715018a6116100a0578063a9059cbb11610064578063a9059cbb14610341578063aa4b10d114610361578063dd62ed3e14610376578063ea2f0b37146103bc578063f2fde38b146103dc57600080fd5b8063715018a614610291578063768dc710146102a65780638da5cb5b146102d657806395d89b411461030c578063a457c2d71461032157600080fd5b8063313ce567116100e7578063313ce567146101be57806339509351146101e0578063437823ec146102005780635342acb41461022257806370a082311461025b57600080fd5b806306fdde0314610124578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019e57600080fd5b3661011f57005b600080fd5b34801561013057600080fd5b506101396103fc565b6040516101469190610d8b565b60405180910390f35b34801561015b57600080fd5b5061016f61016a366004610d61565b61048e565b6040519015158152602001610146565b34801561018b57600080fd5b506002545b604051908152602001610146565b3480156101aa57600080fd5b5061016f6101b9366004610d25565b6104a4565b3480156101ca57600080fd5b50600a5460405160ff9091168152602001610146565b3480156101ec57600080fd5b5061016f6101fb366004610d61565b610553565b34801561020c57600080fd5b5061022061021b366004610cd0565b61058f565b005b34801561022e57600080fd5b5061016f61023d366004610cd0565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561026757600080fd5b50610190610276366004610cd0565b6001600160a01b031660009081526020819052604090205490565b34801561029d57600080fd5b506102206105e3565b3480156102b257600080fd5b5061016f6102c1366004610cd0565b60066020526000908152604090205460ff1681565b3480156102e257600080fd5b5060055461010090046001600160a01b03166040516001600160a01b039091168152602001610146565b34801561031857600080fd5b5061013961061f565b34801561032d57600080fd5b5061016f61033c366004610d61565b61062e565b34801561034d57600080fd5b5061016f61035c366004610d61565b6106c7565b34801561036d57600080fd5b50600b54610190565b34801561038257600080fd5b50610190610391366004610cf2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156103c857600080fd5b506102206103d7366004610cd0565b6106d4565b3480156103e857600080fd5b506102206103f7366004610cd0565b610725565b60606007805461040b90610e85565b80601f016020809104026020016040519081016040528092919081815260200182805461043790610e85565b80156104845780601f1061045957610100808354040283529160200191610484565b820191906000526020600020905b81548152906001019060200180831161046757829003601f168201915b5050505050905090565b600061049b3384846107c6565b50600192915050565b60006104b18484846108eb565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561053b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61054885338584036107c6565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161049b91859061058a908690610e15565b6107c6565b6005546001600160a01b036101009091041633146105bf5760405162461bcd60e51b815260040161053290610de0565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6005546001600160a01b036101009091041633146106135760405162461bcd60e51b815260040161053290610de0565b61061d6000610a87565b565b60606008805461040b90610e85565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106b05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610532565b6106bd33858584036107c6565b5060019392505050565b600061049b3384846108eb565b6005546001600160a01b036101009091041633146107045760405162461bcd60e51b815260040161053290610de0565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6005546001600160a01b036101009091041633146107555760405162461bcd60e51b815260040161053290610de0565b6001600160a01b0381166107ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610532565b6107c381610a87565b50565b6001600160a01b0383166108285760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610532565b6001600160a01b0382166108895760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610532565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661094f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610532565b6001600160a01b0382166109b15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610532565b6001600160a01b03831660009081526020819052604090205481811015610a295760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610532565b6001600160a01b03841660009081526006602052604090205460019060ff1680610a6b57506001600160a01b03841660009081526006602052604090205460ff165b15610a74575060005b610a8085858584610ae6565b5050505050565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b505050565b80610af357610af3610b14565b610afe848484610b2a565b80610b0e57610b0e600c54600b55565b50505050565b600b54610b1d57565b600b8054600c5560009055565b6000610b3582610c02565b6001600160a01b038516600090815260208190526040902054909150610b5c908390610e6e565b6001600160a01b038086166000908152602081905260408082209390935590851681522054610b8c908290610e15565b6001600160a01b038416600090815260208190526040902055610baf8483610c24565b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bf491815260200190565b60405180910390a350505050565b600080610c0e83610c97565b90506000610c1c8285610e6e565b949350505050565b60006064600b5483610c369190610e4f565b610c409190610e2d565b90508015610ae15780600254610c569190610e6e565b6002556040518181526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016108de565b600b54600090816064610caa8386610e4f565b610c1c9190610e2d565b80356001600160a01b0381168114610ccb57600080fd5b919050565b600060208284031215610ce257600080fd5b610ceb82610cb4565b9392505050565b60008060408385031215610d0557600080fd5b610d0e83610cb4565b9150610d1c60208401610cb4565b90509250929050565b600080600060608486031215610d3a57600080fd5b610d4384610cb4565b9250610d5160208501610cb4565b9150604084013590509250925092565b60008060408385031215610d7457600080fd5b610d7d83610cb4565b946020939093013593505050565b600060208083528351808285015260005b81811015610db857858101830151858201604001528201610d9c565b81811115610dca576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e2857610e28610ec0565b500190565b600082610e4a57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610e6957610e69610ec0565b500290565b600082821015610e8057610e80610ec0565b500390565b600181811c90821680610e9957607f821691505b60208210811415610eba57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d7f35ae45faee5710014cd7c7d7f8101fa558de7d31ee2c9cf5ddaf9c08747d364736f6c63430008060033
Deployed Bytecode
0x6080604052600436106101185760003560e01c8063715018a6116100a0578063a9059cbb11610064578063a9059cbb14610341578063aa4b10d114610361578063dd62ed3e14610376578063ea2f0b37146103bc578063f2fde38b146103dc57600080fd5b8063715018a614610291578063768dc710146102a65780638da5cb5b146102d657806395d89b411461030c578063a457c2d71461032157600080fd5b8063313ce567116100e7578063313ce567146101be57806339509351146101e0578063437823ec146102005780635342acb41461022257806370a082311461025b57600080fd5b806306fdde0314610124578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019e57600080fd5b3661011f57005b600080fd5b34801561013057600080fd5b506101396103fc565b6040516101469190610d8b565b60405180910390f35b34801561015b57600080fd5b5061016f61016a366004610d61565b61048e565b6040519015158152602001610146565b34801561018b57600080fd5b506002545b604051908152602001610146565b3480156101aa57600080fd5b5061016f6101b9366004610d25565b6104a4565b3480156101ca57600080fd5b50600a5460405160ff9091168152602001610146565b3480156101ec57600080fd5b5061016f6101fb366004610d61565b610553565b34801561020c57600080fd5b5061022061021b366004610cd0565b61058f565b005b34801561022e57600080fd5b5061016f61023d366004610cd0565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561026757600080fd5b50610190610276366004610cd0565b6001600160a01b031660009081526020819052604090205490565b34801561029d57600080fd5b506102206105e3565b3480156102b257600080fd5b5061016f6102c1366004610cd0565b60066020526000908152604090205460ff1681565b3480156102e257600080fd5b5060055461010090046001600160a01b03166040516001600160a01b039091168152602001610146565b34801561031857600080fd5b5061013961061f565b34801561032d57600080fd5b5061016f61033c366004610d61565b61062e565b34801561034d57600080fd5b5061016f61035c366004610d61565b6106c7565b34801561036d57600080fd5b50600b54610190565b34801561038257600080fd5b50610190610391366004610cf2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156103c857600080fd5b506102206103d7366004610cd0565b6106d4565b3480156103e857600080fd5b506102206103f7366004610cd0565b610725565b60606007805461040b90610e85565b80601f016020809104026020016040519081016040528092919081815260200182805461043790610e85565b80156104845780601f1061045957610100808354040283529160200191610484565b820191906000526020600020905b81548152906001019060200180831161046757829003601f168201915b5050505050905090565b600061049b3384846107c6565b50600192915050565b60006104b18484846108eb565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561053b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61054885338584036107c6565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161049b91859061058a908690610e15565b6107c6565b6005546001600160a01b036101009091041633146105bf5760405162461bcd60e51b815260040161053290610de0565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6005546001600160a01b036101009091041633146106135760405162461bcd60e51b815260040161053290610de0565b61061d6000610a87565b565b60606008805461040b90610e85565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106b05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610532565b6106bd33858584036107c6565b5060019392505050565b600061049b3384846108eb565b6005546001600160a01b036101009091041633146107045760405162461bcd60e51b815260040161053290610de0565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6005546001600160a01b036101009091041633146107555760405162461bcd60e51b815260040161053290610de0565b6001600160a01b0381166107ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610532565b6107c381610a87565b50565b6001600160a01b0383166108285760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610532565b6001600160a01b0382166108895760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610532565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661094f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610532565b6001600160a01b0382166109b15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610532565b6001600160a01b03831660009081526020819052604090205481811015610a295760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610532565b6001600160a01b03841660009081526006602052604090205460019060ff1680610a6b57506001600160a01b03841660009081526006602052604090205460ff165b15610a74575060005b610a8085858584610ae6565b5050505050565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b505050565b80610af357610af3610b14565b610afe848484610b2a565b80610b0e57610b0e600c54600b55565b50505050565b600b54610b1d57565b600b8054600c5560009055565b6000610b3582610c02565b6001600160a01b038516600090815260208190526040902054909150610b5c908390610e6e565b6001600160a01b038086166000908152602081905260408082209390935590851681522054610b8c908290610e15565b6001600160a01b038416600090815260208190526040902055610baf8483610c24565b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bf491815260200190565b60405180910390a350505050565b600080610c0e83610c97565b90506000610c1c8285610e6e565b949350505050565b60006064600b5483610c369190610e4f565b610c409190610e2d565b90508015610ae15780600254610c569190610e6e565b6002556040518181526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016108de565b600b54600090816064610caa8386610e4f565b610c1c9190610e2d565b80356001600160a01b0381168114610ccb57600080fd5b919050565b600060208284031215610ce257600080fd5b610ceb82610cb4565b9392505050565b60008060408385031215610d0557600080fd5b610d0e83610cb4565b9150610d1c60208401610cb4565b90509250929050565b600080600060608486031215610d3a57600080fd5b610d4384610cb4565b9250610d5160208501610cb4565b9150604084013590509250925092565b60008060408385031215610d7457600080fd5b610d7d83610cb4565b946020939093013593505050565b600060208083528351808285015260005b81811015610db857858101830151858201604001528201610d9c565b81811115610dca576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e2857610e28610ec0565b500190565b600082610e4a57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610e6957610e69610ec0565b500290565b600082821015610e8057610e80610ec0565b500390565b600181811c90821680610e9957607f821691505b60208210811415610eba57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d7f35ae45faee5710014cd7c7d7f8101fa558de7d31ee2c9cf5ddaf9c08747d364736f6c63430008060033
Deployed Bytecode Sourcemap
18586:4037:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19360:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10526:210;;;;;;;;;;-1:-1:-1;10526:210:0;;;;;:::i;:::-;;:::i;:::-;;;1613:14:1;;1606:22;1588:41;;1576:2;1561:18;10526:210:0;1543:92:1;9338:108:0;;;;;;;;;;-1:-1:-1;9426:12:0;;9338:108;;;5996:25:1;;;5984:2;5969:18;9338:108:0;5951:76:1;11218:529:0;;;;;;;;;;-1:-1:-1;11218:529:0;;;;;:::i;:::-;;:::i;19580:100::-;;;;;;;;;;-1:-1:-1;19663:9:0;;19580:100;;19663:9;;;;6174:36:1;;6162:2;6147:18;19580:100:0;6129:87:1;12156:297:0;;;;;;;;;;-1:-1:-1;12156:297:0;;;;;:::i;:::-;;:::i;19914:111::-;;;;;;;;;;-1:-1:-1;19914:111:0;;;;;:::i;:::-;;:::i;:::-;;19782:124;;;;;;;;;;-1:-1:-1;19782:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;19871:27:0;19847:4;19871:27;;;:18;:27;;;;;;;;;19782:124;9509:177;;;;;;;;;;-1:-1:-1;9509:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;9660:18:0;9628:7;9660:18;;;;;;;;;;;;9509:177;5783:103;;;;;;;;;;;;;:::i;18632:50::-;;;;;;;;;;-1:-1:-1;18632:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;5132:87;;;;;;;;;;-1:-1:-1;5205:6:0;;;;;-1:-1:-1;;;;;5205:6:0;5132:87;;-1:-1:-1;;;;;1404:32:1;;;1386:51;;1374:2;1359:18;5132:87:0;1341:102:1;19468:104:0;;;;;;;;;;;;;:::i;12956:482::-;;;;;;;;;;-1:-1:-1;12956:482:0;;;;;:::i;:::-;;:::i;9899:216::-;;;;;;;;;;-1:-1:-1;9899:216:0;;;;;:::i;:::-;;:::i;19688:86::-;;;;;;;;;;-1:-1:-1;19758:8:0;;19688:86;;10178:201;;;;;;;;;;-1:-1:-1;10178:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;10344:18:0;;;10312:7;10344:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10178:201;20033:110;;;;;;;;;;-1:-1:-1;20033:110:0;;;;;:::i;:::-;;:::i;6041:238::-;;;;;;;;;;-1:-1:-1;6041:238:0;;;;;:::i;:::-;;:::i;19360:100::-;19414:13;19447:5;19440:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19360:100;:::o;10526:210::-;10645:4;10667:39;4054:10;10690:7;10699:6;10667:8;:39::i;:::-;-1:-1:-1;10724:4:0;10526:210;;;;:::o;11218:529::-;11358:4;11375:36;11385:6;11393:9;11404:6;11375:9;:36::i;:::-;-1:-1:-1;;;;;11451:19:0;;11424:24;11451:19;;;:11;:19;;;;;;;;4054:10;11451:33;;;;;;;;11517:26;;;;11495:116;;;;-1:-1:-1;;;11495:116:0;;4065:2:1;11495:116:0;;;4047:21:1;4104:2;4084:18;;;4077:30;4143:34;4123:18;;;4116:62;-1:-1:-1;;;4194:18:1;;;4187:38;4242:19;;11495:116:0;;;;;;;;;11647:57;11656:6;4054:10;11697:6;11678:16;:25;11647:8;:57::i;:::-;-1:-1:-1;11735:4:0;;11218:529;-1:-1:-1;;;;11218:529:0:o;12156:297::-;4054:10;12271:4;12365:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12365:34:0;;;;;;;;;;12271:4;;12293:130;;12343:7;;12365:47;;12402:10;;12365:47;:::i;:::-;12293:8;:130::i;19914:111::-;5205:6;;-1:-1:-1;;;;;5205:6:0;;;;;4054:10;5352:23;5344:68;;;;-1:-1:-1;;;5344:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19983:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;19983:34:0::1;20013:4;19983:34;::::0;;19914:111::o;5783:103::-;5205:6;;-1:-1:-1;;;;;5205:6:0;;;;;4054:10;5352:23;5344:68;;;;-1:-1:-1;;;5344:68:0;;;;;;;:::i;:::-;5848:30:::1;5875:1;5848:18;:30::i;:::-;5783:103::o:0;19468:104::-;19524:13;19557:7;19550:14;;;;;:::i;12956:482::-;4054:10;13076:4;13125:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13125:34:0;;;;;;;;;;13192:35;;;;13170:122;;;;-1:-1:-1;;;13170:122:0;;5646:2:1;13170:122:0;;;5628:21:1;5685:2;5665:18;;;5658:30;5724:34;5704:18;;;5697:62;-1:-1:-1;;;5775:18:1;;;5768:35;5820:19;;13170:122:0;5618:227:1;13170:122:0;13328:67;4054:10;13351:7;13379:15;13360:16;:34;13328:8;:67::i;:::-;-1:-1:-1;13426:4:0;;12956:482;-1:-1:-1;;;12956:482:0:o;9899:216::-;10021:4;10043:42;4054:10;10067:9;10078:6;10043:9;:42::i;20033:110::-;5205:6;;-1:-1:-1;;;;;5205:6:0;;;;;4054:10;5352:23;5344:68;;;;-1:-1:-1;;;5344:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20100:27:0::1;20130:5;20100:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;20100:35:0::1;::::0;;20033:110::o;6041:238::-;5205:6;;-1:-1:-1;;;;;5205:6:0;;;;;4054:10;5352:23;5344:68;;;;-1:-1:-1;;;5344:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6144:22:0;::::1;6122:110;;;::::0;-1:-1:-1;;;6122:110:0;;2848:2:1;6122:110:0::1;::::0;::::1;2830:21:1::0;2887:2;2867:18;;;2860:30;2926:34;2906:18;;;2899:62;-1:-1:-1;;;2977:18:1;;;2970:36;3023:19;;6122:110:0::1;2820:228:1::0;6122:110:0::1;6243:28;6262:8;6243:18;:28::i;:::-;6041:238:::0;:::o;16746:380::-;-1:-1:-1;;;;;16882:19:0;;16874:68;;;;-1:-1:-1;;;16874:68:0;;5241:2:1;16874:68:0;;;5223:21:1;5280:2;5260:18;;;5253:30;5319:34;5299:18;;;5292:62;-1:-1:-1;;;5370:18:1;;;5363:34;5414:19;;16874:68:0;5213:226:1;16874:68:0;-1:-1:-1;;;;;16961:21:0;;16953:68;;;;-1:-1:-1;;;16953:68:0;;3255:2:1;16953:68:0;;;3237:21:1;3294:2;3274:18;;;3267:30;3333:34;3313:18;;;3306:62;-1:-1:-1;;;3384:18:1;;;3377:32;3426:19;;16953:68:0;3227:224:1;16953:68:0;-1:-1:-1;;;;;17034:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17086:32;;5996:25:1;;;17086:32:0;;5969:18:1;17086:32:0;;;;;;;;16746:380;;;:::o;20151:749::-;-1:-1:-1;;;;;20300:20:0;;20292:70;;;;-1:-1:-1;;;20292:70:0;;4835:2:1;20292:70:0;;;4817:21:1;4874:2;4854:18;;;4847:30;4913:34;4893:18;;;4886:62;-1:-1:-1;;;4964:18:1;;;4957:35;5009:19;;20292:70:0;4807:227:1;20292:70:0;-1:-1:-1;;;;;20381:23:0;;20373:71;;;;-1:-1:-1;;;20373:71:0;;2444:2:1;20373:71:0;;;2426:21:1;2483:2;2463:18;;;2456:30;2522:34;2502:18;;;2495:62;-1:-1:-1;;;2573:18:1;;;2566:33;2616:19;;20373:71:0;2416:225:1;20373:71:0;-1:-1:-1;;;;;9660:18:0;;20455:21;9660:18;;;;;;;;;;;20529:23;;;;20507:111;;;;-1:-1:-1;;;20507:111:0;;3658:2:1;20507:111:0;;;3640:21:1;3697:2;3677:18;;;3670:30;3736:34;3716:18;;;3709:62;-1:-1:-1;;;3787:18:1;;;3780:36;3833:19;;20507:111:0;3630:228:1;20507:111:0;-1:-1:-1;;;;;20727:26:0;;20691:12;20727:26;;;:18;:26;;;;;;20706:4;;20727:26;;;:59;;-1:-1:-1;;;;;;20757:29:0;;;;;;:18;:29;;;;;;;;20727:59;20723:107;;;-1:-1:-1;20813:5:0;20723:107;20842:50;20857:6;20865:9;20876:6;20884:7;20842:14;:50::i;:::-;20281:619;;20151:749;;;:::o;6439:191::-;6532:6;;;-1:-1:-1;;;;;6549:17:0;;;6532:6;6549:17;;;-1:-1:-1;;;;;;6549:17:0;;;;;;6582:40;;6532:6;;;;;;;;6582:40;;6513:16;;6582:40;6502:128;6439:191;:::o;17726:125::-;;;;:::o;20908:318::-;21054:7;21049:55;;21078:14;:12;:14::i;:::-;21116:34;21134:4;21140:2;21144:5;21116:17;:34::i;:::-;21168:7;21163:56;;21192:15;21438:16;;21427:8;:27;21383:79;21192:15;20908:318;;;;:::o;21234:141::-;21281:8;;21277:26;;21234:141::o;21277:26::-;21334:8;;;21315:16;:27;-1:-1:-1;21355:12:0;;21234:141::o;21470:387::-;21592:22;21617:26;21636:6;21617:18;:26::i;:::-;-1:-1:-1;;;;;21674:15:0;;:9;:15;;;;;;;;;;;21592:51;;-1:-1:-1;21674:24:0;;21692:6;;21674:24;:::i;:::-;-1:-1:-1;;;;;21656:15:0;;;:9;:15;;;;;;;;;;;:42;;;;21725:13;;;;;;;:30;;21741:14;;21725:30;:::i;:::-;-1:-1:-1;;;;;21709:13:0;;:9;:13;;;;;;;;;;:46;21768:29;21784:4;21790:6;21768:15;:29::i;:::-;21830:2;-1:-1:-1;;;;;21815:34:0;21824:4;-1:-1:-1;;;;;21815:34:0;;21834:14;21815:34;;;;5996:25:1;;5984:2;5969:18;;5951:76;21815:34:0;;;;;;;;21581:276;21470:387;;;:::o;21865:226::-;21931:7;21951:16;21970:28;21991:6;21970:20;:28::i;:::-;21951:47;-1:-1:-1;22009:22:0;22034:17;21951:47;22034:6;:17;:::i;:::-;22009:42;21865:226;-1:-1:-1;;;;21865:226:0:o;22343:275::-;22419:15;22459:3;22447:8;;22438:6;:17;;;;:::i;:::-;22437:25;;;;:::i;:::-;22419:43;-1:-1:-1;22477:11:0;;22473:138;;22535:7;22520:12;;:22;;;;:::i;:::-;22505:12;:37;22562;;5996:25:1;;;22587:1:0;;-1:-1:-1;;;;;22562:37:0;;;;;5984:2:1;5969:18;22562:37:0;5951:76:1;22099:236:0;22238:8;;22194:7;;;22298:3;22277:17;22238:8;22277:6;:17;:::i;:::-;22276:25;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;:::-;333:39;262:116;-1:-1:-1;;;262:116:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:2;;;1126:1;1123;1116:12;1078:2;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;1068:167:1:o;1640:597::-;1752:4;1781:2;1810;1799:9;1792:21;1842:6;1836:13;1885:6;1880:2;1869:9;1865:18;1858:34;1910:1;1920:140;1934:6;1931:1;1928:13;1920:140;;;2029:14;;;2025:23;;2019:30;1995:17;;;2014:2;1991:26;1984:66;1949:10;;1920:140;;;2078:6;2075:1;2072:13;2069:2;;;2148:1;2143:2;2134:6;2123:9;2119:22;2115:31;2108:42;2069:2;-1:-1:-1;2221:2:1;2200:15;-1:-1:-1;;2196:29:1;2181:45;;;;2228:2;2177:54;;1761:476;-1:-1:-1;;;1761:476:1:o;4272:356::-;4474:2;4456:21;;;4493:18;;;4486:30;4552:34;4547:2;4532:18;;4525:62;4619:2;4604:18;;4446:182::o;6221:128::-;6261:3;6292:1;6288:6;6285:1;6282:13;6279:2;;;6298:18;;:::i;:::-;-1:-1:-1;6334:9:1;;6269:80::o;6354:217::-;6394:1;6420;6410:2;;6464:10;6459:3;6455:20;6452:1;6445:31;6499:4;6496:1;6489:15;6527:4;6524:1;6517:15;6410:2;-1:-1:-1;6556:9:1;;6400:171::o;6576:168::-;6616:7;6682:1;6678;6674:6;6670:14;6667:1;6664:21;6659:1;6652:9;6645:17;6641:45;6638:2;;;6689:18;;:::i;:::-;-1:-1:-1;6729:9:1;;6628:116::o;6749:125::-;6789:4;6817:1;6814;6811:8;6808:2;;;6822:18;;:::i;:::-;-1:-1:-1;6859:9:1;;6798:76::o;6879:380::-;6958:1;6954:12;;;;7001;;;7022:2;;7076:4;7068:6;7064:17;7054:27;;7022:2;7129;7121:6;7118:14;7098:18;7095:38;7092:2;;;7175:10;7170:3;7166:20;7163:1;7156:31;7210:4;7207:1;7200:15;7238:4;7235:1;7228:15;7092:2;;6934:325;;;:::o;7264:127::-;7325:10;7320:3;7316:20;7313:1;7306:31;7356:4;7353:1;7346:15;7380:4;7377:1;7370:15
Swarm Source
ipfs://d7f35ae45faee5710014cd7c7d7f8101fa558de7d31ee2c9cf5ddaf9c08747d3
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.