Overview
Max Total Supply
228,630,000 MU
Holders
336 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Muverse
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-16 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) 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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: MU(1).sol pragma solidity ^0.8.9; contract Muverse is ERC20, Ownable { uint public MAX_NUM; uint public VC_Backers; uint public Advisors; uint public Node; uint public Community_Treasury; uint public Muverse_Team; uint public IEO; uint public AirDrop; mapping(address => bool) public whiteList; modifier onlyWhite() { require(whiteList[msg.sender] == true, "not authorized"); _; } constructor() ERC20("Muverse Token", "MU") { whiteList[msg.sender] = true; MAX_NUM = 1000000000 * 10 ** decimals(); VC_Backers = 200000000 * 10 ** decimals(); Advisors = 75000000 * 10 ** decimals(); Node = 400000000 * 10 ** decimals(); Community_Treasury = 100000000 * 10 ** decimals(); Muverse_Team = 150000000 * 10 ** decimals(); IEO = 50000000 * 10 ** decimals(); AirDrop = 25000000 * 10 ** decimals(); } function mint(address to, uint256 amount) public onlyWhite { require(totalSupply() + amount <= MAX_NUM, "not MAX"); _mint(to, amount); } function setWhite(address _adr) public onlyOwner{ require(whiteList[_adr] == false, "it is white"); whiteList[_adr] = true; } function removeWhite(address _adr) public onlyOwner{ require(whiteList[_adr] == true, "it is not white"); whiteList[_adr] = false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":[],"name":"Advisors","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AirDrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Community_Treasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IEO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NUM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Muverse_Team","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Node","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VC_Backers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":[{"internalType":"address","name":"_adr","type":"address"}],"name":"removeWhite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_adr","type":"address"}],"name":"setWhite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600d81526c26babb32b939b2902a37b5b2b760991b6020808301918252835180850190945260028452614d5560f01b90840152815191929162000061916003916200021b565b508051620000779060049060208401906200021b565b505050620000946200008e620001c560201b60201c565b620001c9565b336000908152600e60205260409020805460ff19166001179055620000b7601290565b620000c490600a620003d6565b620000d490633b9aca00620003ee565b600655620000e56012600a620003d6565b620000f590630bebc200620003ee565b600755620001066012600a620003d6565b620001169063047868c0620003ee565b600855620001276012600a620003d6565b62000137906317d78400620003ee565b600955620001486012600a620003d6565b62000158906305f5e100620003ee565b600a5560126200016a90600a620003d6565b6200017a906308f0d180620003ee565b600b556200018b6012600a620003d6565b6200019b906302faf080620003ee565b600c55620001ac6012600a620003d6565b620001bc9063017d7840620003ee565b600d556200044d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002299062000410565b90600052602060002090601f0160209004810192826200024d576000855562000298565b82601f106200026857805160ff191683800117855562000298565b8280016001018555821562000298579182015b82811115620002985782518255916020019190600101906200027b565b50620002a6929150620002aa565b5090565b5b80821115620002a65760008155600101620002ab565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000318578160001904821115620002fc57620002fc620002c1565b808516156200030a57918102915b93841c9390800290620002dc565b509250929050565b6000826200033157506001620003d0565b816200034057506000620003d0565b8160018114620003595760028114620003645762000384565b6001915050620003d0565b60ff841115620003785762000378620002c1565b50506001821b620003d0565b5060208310610133831016604e8410600b8410161715620003a9575081810a620003d0565b620003b58383620002d7565b8060001904821115620003cc57620003cc620002c1565b0290505b92915050565b6000620003e760ff84168362000320565b9392505050565b60008160001904831182151516156200040b576200040b620002c1565b500290565b600181811c908216806200042557607f821691505b602082108114156200044757634e487b7160e01b600052602260045260246000fd5b50919050565b610dd3806200045d6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80638da5cb5b116100de578063d589996811610097578063dd62ed3e11610071578063dd62ed3e14610329578063e23d26781461033c578063e560586b14610345578063f2fde38b1461034e57600080fd5b8063d589996814610304578063d9f85fbd1461030d578063dad69c201461031657600080fd5b80638da5cb5b1461029f578063939c0a66146102ba57806395d89b41146102c3578063a457c2d7146102cb578063a9059cbb146102de578063c03646ba146102f157600080fd5b8063313ce5671161014b57806340c10f191161012557806340c10f191461025057806350af38b61461026557806370a082311461026e578063715018a61461029757600080fd5b8063313ce5671461020b578063372c12b11461021a578063395093511461023d57600080fd5b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101d45780631e3024fe146101e65780631e5cb450146101ef57806323b872dd146101f8575b600080fd5b61019b610361565b6040516101a89190610c10565b60405180910390f35b6101c46101bf366004610c81565b6103f3565b60405190151581526020016101a8565b6002545b6040519081526020016101a8565b6101d860065481565b6101d8600b5481565b6101c4610206366004610cab565b61040b565b604051601281526020016101a8565b6101c4610228366004610ce7565b600e6020526000908152604090205460ff1681565b6101c461024b366004610c81565b61042f565b61026361025e366004610c81565b610451565b005b6101d8600a5481565b6101d861027c366004610ce7565b6001600160a01b031660009081526020819052604090205490565b610263610508565b6005546040516001600160a01b0390911681526020016101a8565b6101d8600d5481565b61019b61051c565b6101c46102d9366004610c81565b61052b565b6101c46102ec366004610c81565b6105a6565b6102636102ff366004610ce7565b6105b4565b6101d860085481565b6101d8600c5481565b610263610324366004610ce7565b610637565b6101d8610337366004610d09565b6106bf565b6101d860095481565b6101d860075481565b61026361035c366004610ce7565b6106ea565b60606003805461037090610d3c565b80601f016020809104026020016040519081016040528092919081815260200182805461039c90610d3c565b80156103e95780601f106103be576101008083540402835291602001916103e9565b820191906000526020600020905b8154815290600101906020018083116103cc57829003601f168201915b5050505050905090565b600033610401818585610763565b5060019392505050565b600033610419858285610887565b610424858585610901565b506001949350505050565b60003361040181858561044283836106bf565b61044c9190610d77565b610763565b336000908152600e602052604090205460ff1615156001146104ab5760405162461bcd60e51b815260206004820152600e60248201526d1b9bdd08185d5d1a1bdc9a5e995960921b60448201526064015b60405180910390fd5b600654816104b860025490565b6104c29190610d77565b11156104fa5760405162461bcd60e51b81526020600482015260076024820152660dcdee8409a82b60cb1b60448201526064016104a2565b6105048282610aa5565b5050565b610510610b64565b61051a6000610bbe565b565b60606004805461037090610d3c565b6000338161053982866106bf565b9050838110156105995760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104a2565b6104248286868403610763565b600033610401818585610901565b6105bc610b64565b6001600160a01b0381166000908152600e602052604090205460ff16156106135760405162461bcd60e51b815260206004820152600b60248201526a697420697320776869746560a81b60448201526064016104a2565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b61063f610b64565b6001600160a01b0381166000908152600e602052604090205460ff16151560011461069e5760405162461bcd60e51b815260206004820152600f60248201526e6974206973206e6f7420776869746560881b60448201526064016104a2565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106f2610b64565b6001600160a01b0381166107575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a2565b61076081610bbe565b50565b6001600160a01b0383166107c55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104a2565b6001600160a01b0382166108265760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104a2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061089384846106bf565b905060001981146108fb57818110156108ee5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104a2565b6108fb8484848403610763565b50505050565b6001600160a01b0383166109655760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104a2565b6001600160a01b0382166109c75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104a2565b6001600160a01b03831660009081526020819052604090205481811015610a3f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104a2565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108fb565b6001600160a01b038216610afb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104a2565b8060026000828254610b0d9190610d77565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b0316331461051a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a2565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610c3d57858101830151858201604001528201610c21565b81811115610c4f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c7c57600080fd5b919050565b60008060408385031215610c9457600080fd5b610c9d83610c65565b946020939093013593505050565b600080600060608486031215610cc057600080fd5b610cc984610c65565b9250610cd760208501610c65565b9150604084013590509250925092565b600060208284031215610cf957600080fd5b610d0282610c65565b9392505050565b60008060408385031215610d1c57600080fd5b610d2583610c65565b9150610d3360208401610c65565b90509250929050565b600181811c90821680610d5057607f821691505b60208210811415610d7157634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610d9857634e487b7160e01b600052601160045260246000fd5b50019056fea26469706673582212206986373b95721400f822366d2283079fdaf8d2613c9594d41e359902b6c41b0264736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80638da5cb5b116100de578063d589996811610097578063dd62ed3e11610071578063dd62ed3e14610329578063e23d26781461033c578063e560586b14610345578063f2fde38b1461034e57600080fd5b8063d589996814610304578063d9f85fbd1461030d578063dad69c201461031657600080fd5b80638da5cb5b1461029f578063939c0a66146102ba57806395d89b41146102c3578063a457c2d7146102cb578063a9059cbb146102de578063c03646ba146102f157600080fd5b8063313ce5671161014b57806340c10f191161012557806340c10f191461025057806350af38b61461026557806370a082311461026e578063715018a61461029757600080fd5b8063313ce5671461020b578063372c12b11461021a578063395093511461023d57600080fd5b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101d45780631e3024fe146101e65780631e5cb450146101ef57806323b872dd146101f8575b600080fd5b61019b610361565b6040516101a89190610c10565b60405180910390f35b6101c46101bf366004610c81565b6103f3565b60405190151581526020016101a8565b6002545b6040519081526020016101a8565b6101d860065481565b6101d8600b5481565b6101c4610206366004610cab565b61040b565b604051601281526020016101a8565b6101c4610228366004610ce7565b600e6020526000908152604090205460ff1681565b6101c461024b366004610c81565b61042f565b61026361025e366004610c81565b610451565b005b6101d8600a5481565b6101d861027c366004610ce7565b6001600160a01b031660009081526020819052604090205490565b610263610508565b6005546040516001600160a01b0390911681526020016101a8565b6101d8600d5481565b61019b61051c565b6101c46102d9366004610c81565b61052b565b6101c46102ec366004610c81565b6105a6565b6102636102ff366004610ce7565b6105b4565b6101d860085481565b6101d8600c5481565b610263610324366004610ce7565b610637565b6101d8610337366004610d09565b6106bf565b6101d860095481565b6101d860075481565b61026361035c366004610ce7565b6106ea565b60606003805461037090610d3c565b80601f016020809104026020016040519081016040528092919081815260200182805461039c90610d3c565b80156103e95780601f106103be576101008083540402835291602001916103e9565b820191906000526020600020905b8154815290600101906020018083116103cc57829003601f168201915b5050505050905090565b600033610401818585610763565b5060019392505050565b600033610419858285610887565b610424858585610901565b506001949350505050565b60003361040181858561044283836106bf565b61044c9190610d77565b610763565b336000908152600e602052604090205460ff1615156001146104ab5760405162461bcd60e51b815260206004820152600e60248201526d1b9bdd08185d5d1a1bdc9a5e995960921b60448201526064015b60405180910390fd5b600654816104b860025490565b6104c29190610d77565b11156104fa5760405162461bcd60e51b81526020600482015260076024820152660dcdee8409a82b60cb1b60448201526064016104a2565b6105048282610aa5565b5050565b610510610b64565b61051a6000610bbe565b565b60606004805461037090610d3c565b6000338161053982866106bf565b9050838110156105995760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104a2565b6104248286868403610763565b600033610401818585610901565b6105bc610b64565b6001600160a01b0381166000908152600e602052604090205460ff16156106135760405162461bcd60e51b815260206004820152600b60248201526a697420697320776869746560a81b60448201526064016104a2565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b61063f610b64565b6001600160a01b0381166000908152600e602052604090205460ff16151560011461069e5760405162461bcd60e51b815260206004820152600f60248201526e6974206973206e6f7420776869746560881b60448201526064016104a2565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106f2610b64565b6001600160a01b0381166107575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a2565b61076081610bbe565b50565b6001600160a01b0383166107c55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104a2565b6001600160a01b0382166108265760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104a2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061089384846106bf565b905060001981146108fb57818110156108ee5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104a2565b6108fb8484848403610763565b50505050565b6001600160a01b0383166109655760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104a2565b6001600160a01b0382166109c75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104a2565b6001600160a01b03831660009081526020819052604090205481811015610a3f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104a2565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108fb565b6001600160a01b038216610afb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104a2565b8060026000828254610b0d9190610d77565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b0316331461051a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a2565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610c3d57858101830151858201604001528201610c21565b81811115610c4f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c7c57600080fd5b919050565b60008060408385031215610c9457600080fd5b610c9d83610c65565b946020939093013593505050565b600080600060608486031215610cc057600080fd5b610cc984610c65565b9250610cd760208501610c65565b9150604084013590509250925092565b600060208284031215610cf957600080fd5b610d0282610c65565b9392505050565b60008060408385031215610d1c57600080fd5b610d2583610c65565b9150610d3360208401610c65565b90509250929050565b600181811c90821680610d5057607f821691505b60208210811415610d7157634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610d9857634e487b7160e01b600052601160045260246000fd5b50019056fea26469706673582212206986373b95721400f822366d2283079fdaf8d2613c9594d41e359902b6c41b0264736f6c63430008090033
Deployed Bytecode Sourcemap
20594:1448:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9351:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11702:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11702:201:0;1053:187:1;10471:108:0;10559:12;;10471:108;;;1391:25:1;;;1379:2;1364:18;10471:108:0;1245:177:1;20636:19:0;;;;;;20778:24;;;;;;12483:295;;;;;;:::i;:::-;;:::i;10313:93::-;;;10396:2;1902:36:1;;1890:2;1875:18;10313:93:0;1760:184:1;20861:41:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;13187:238;;;;;;:::i;:::-;;:::i;21546:169::-;;;;;;:::i;:::-;;:::i;:::-;;20741:30;;;;;;10642:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10743:18:0;10716:7;10743:18;;;;;;;;;;;;10642:127;2776:103;;;:::i;2128:87::-;2201:6;;2128:87;;-1:-1:-1;;;;;2201:6:0;;;2286:51:1;;2274:2;2259:18;2128:87:0;2140:203:1;20831:19:0;;;;;;9570:104;;;:::i;13928:436::-;;;;;;:::i;:::-;;:::i;10975:193::-;;;;;;:::i;:::-;;:::i;21725:148::-;;;;;;:::i;:::-;;:::i;20691:20::-;;;;;;20809:15;;;;;;21882:155;;;;;;:::i;:::-;;:::i;11231:151::-;;;;;;:::i;:::-;;:::i;20718:16::-;;;;;;20662:22;;;;;;3034:201;;;;;;:::i;:::-;;:::i;9351:100::-;9405:13;9438:5;9431:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9351:100;:::o;11702:201::-;11785:4;759:10;11841:32;759:10;11857:7;11866:6;11841:8;:32::i;:::-;-1:-1:-1;11891:4:0;;11702:201;-1:-1:-1;;;11702:201:0:o;12483:295::-;12614:4;759:10;12672:38;12688:4;759:10;12703:6;12672:15;:38::i;:::-;12721:27;12731:4;12737:2;12741:6;12721:9;:27::i;:::-;-1:-1:-1;12766:4:0;;12483:295;-1:-1:-1;;;;12483:295:0:o;13187:238::-;13275:4;759:10;13331:64;759:10;13347:7;13384:10;13356:25;759:10;13347:7;13356:9;:25::i;:::-;:38;;;;:::i;:::-;13331:8;:64::i;21546:169::-;20967:10;20957:21;;;;:9;:21;;;;;;;;:29;;:21;:29;20949:56;;;;-1:-1:-1;;;20949:56:0;;3430:2:1;20949:56:0;;;3412:21:1;3469:2;3449:18;;;3442:30;-1:-1:-1;;;3488:18:1;;;3481:44;3542:18;;20949:56:0;;;;;;;;;21650:7:::1;;21640:6;21624:13;10559:12:::0;;;10471:108;21624:13:::1;:22;;;;:::i;:::-;:33;;21616:53;;;::::0;-1:-1:-1;;;21616:53:0;;3773:2:1;21616:53:0::1;::::0;::::1;3755:21:1::0;3812:1;3792:18;;;3785:29;-1:-1:-1;;;3830:18:1;;;3823:37;3877:18;;21616:53:0::1;3571:330:1::0;21616:53:0::1;21690:17;21696:2;21700:6;21690:5;:17::i;:::-;21546:169:::0;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;9570:104::-;9626:13;9659:7;9652:14;;;;;:::i;13928:436::-;14021:4;759:10;14021:4;14104:25;759:10;14121:7;14104:9;:25::i;:::-;14077:52;;14168:15;14148:16;:35;;14140:85;;;;-1:-1:-1;;;14140:85:0;;4108:2:1;14140:85:0;;;4090:21:1;4147:2;4127:18;;;4120:30;4186:34;4166:18;;;4159:62;-1:-1:-1;;;4237:18:1;;;4230:35;4282:19;;14140:85:0;3906:401:1;14140:85:0;14261:60;14270:5;14277:7;14305:15;14286:16;:34;14261:8;:60::i;10975:193::-;11054:4;759:10;11110:28;759:10;11127:2;11131:6;11110:9;:28::i;21725:148::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;21792:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;;::::1;;:24;21784:48;;;::::0;-1:-1:-1;;;21784:48:0;;4514:2:1;21784:48:0::1;::::0;::::1;4496:21:1::0;4553:2;4533:18;;;4526:30;-1:-1:-1;;;4572:18:1;;;4565:41;4623:18;;21784:48:0::1;4312:335:1::0;21784:48:0::1;-1:-1:-1::0;;;;;21843:15:0::1;;::::0;;;:9:::1;:15;::::0;;;;:22;;-1:-1:-1;;21843:22:0::1;21861:4;21843:22;::::0;;21725:148::o;21882:155::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;21952:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;;::::1;;:23;;:15:::0;:23:::1;21944:51;;;::::0;-1:-1:-1;;;21944:51:0;;4854:2:1;21944:51:0::1;::::0;::::1;4836:21:1::0;4893:2;4873:18;;;4866:30;-1:-1:-1;;;4912:18:1;;;4905:45;4967:18;;21944:51:0::1;4652:339:1::0;21944:51:0::1;-1:-1:-1::0;;;;;22006:15:0::1;22024:5;22006:15:::0;;;:9:::1;:15;::::0;;;;:23;;-1:-1:-1;;22006:23:0::1;::::0;;21882:155::o;11231:151::-;-1:-1:-1;;;;;11347:18:0;;;11320:7;11347:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11231:151::o;3034:201::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3123:22:0;::::1;3115:73;;;::::0;-1:-1:-1;;;3115:73:0;;5198:2:1;3115:73:0::1;::::0;::::1;5180:21:1::0;5237:2;5217:18;;;5210:30;5276:34;5256:18;;;5249:62;-1:-1:-1;;;5327:18:1;;;5320:36;5373:19;;3115:73:0::1;4996:402:1::0;3115:73:0::1;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;17955:380::-;-1:-1:-1;;;;;18091:19:0;;18083:68;;;;-1:-1:-1;;;18083:68:0;;5605:2:1;18083:68:0;;;5587:21:1;5644:2;5624:18;;;5617:30;5683:34;5663:18;;;5656:62;-1:-1:-1;;;5734:18:1;;;5727:34;5778:19;;18083:68:0;5403:400:1;18083:68:0;-1:-1:-1;;;;;18170:21:0;;18162:68;;;;-1:-1:-1;;;18162:68:0;;6010:2:1;18162:68:0;;;5992:21:1;6049:2;6029:18;;;6022:30;6088:34;6068:18;;;6061:62;-1:-1:-1;;;6139:18:1;;;6132:32;6181:19;;18162:68:0;5808:398:1;18162:68:0;-1:-1:-1;;;;;18243:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18295:32;;1391:25:1;;;18295:32:0;;1364:18:1;18295:32:0;;;;;;;17955:380;;;:::o;18626:453::-;18761:24;18788:25;18798:5;18805:7;18788:9;:25::i;:::-;18761:52;;-1:-1:-1;;18828:16:0;:37;18824:248;;18910:6;18890:16;:26;;18882:68;;;;-1:-1:-1;;;18882:68:0;;6413:2:1;18882:68:0;;;6395:21:1;6452:2;6432:18;;;6425:30;6491:31;6471:18;;;6464:59;6540:18;;18882:68:0;6211:353:1;18882:68:0;18994:51;19003:5;19010:7;19038:6;19019:16;:25;18994:8;:51::i;:::-;18750:329;18626:453;;;:::o;14834:840::-;-1:-1:-1;;;;;14965:18:0;;14957:68;;;;-1:-1:-1;;;14957:68:0;;6771:2:1;14957:68:0;;;6753:21:1;6810:2;6790:18;;;6783:30;6849:34;6829:18;;;6822:62;-1:-1:-1;;;6900:18:1;;;6893:35;6945:19;;14957:68:0;6569:401:1;14957:68:0;-1:-1:-1;;;;;15044:16:0;;15036:64;;;;-1:-1:-1;;;15036:64:0;;7177:2:1;15036:64:0;;;7159:21:1;7216:2;7196:18;;;7189:30;7255:34;7235:18;;;7228:62;-1:-1:-1;;;7306:18:1;;;7299:33;7349:19;;15036:64:0;6975:399:1;15036:64:0;-1:-1:-1;;;;;15186:15:0;;15164:19;15186:15;;;;;;;;;;;15220:21;;;;15212:72;;;;-1:-1:-1;;;15212:72:0;;7581:2:1;15212:72:0;;;7563:21:1;7620:2;7600:18;;;7593:30;7659:34;7639:18;;;7632:62;-1:-1:-1;;;7710:18:1;;;7703:36;7756:19;;15212:72:0;7379:402:1;15212:72:0;-1:-1:-1;;;;;15320:15:0;;;:9;:15;;;;;;;;;;;15338:20;;;15320:38;;15538:13;;;;;;;;;;:23;;;;;;15590:26;;1391:25:1;;;15538:13:0;;15590:26;;1364:18:1;15590:26:0;;;;;;;15629:37;19679:125;15961:548;-1:-1:-1;;;;;16045:21:0;;16037:65;;;;-1:-1:-1;;;16037:65:0;;7988:2:1;16037:65:0;;;7970:21:1;8027:2;8007:18;;;8000:30;8066:33;8046:18;;;8039:61;8117:18;;16037:65:0;7786:355:1;16037:65:0;16193:6;16177:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16348:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;16403:37;1391:25:1;;;16403:37:0;;1364:18:1;16403:37:0;;;;;;;21546:169;;:::o;2293:132::-;2201:6;;-1:-1:-1;;;;;2201:6:0;759:10;2357:23;2349:68;;;;-1:-1:-1;;;2349:68:0;;8348:2:1;2349:68:0;;;8330:21:1;;;8367:18;;;8360:30;8426:34;8406:18;;;8399:62;8478:18;;2349:68:0;8146:356:1;3395:191:0;3488:6;;;-1:-1:-1;;;;;3505:17:0;;;-1:-1:-1;;;;;;3505:17:0;;;;;;;3538:40;;3488:6;;;3505:17;3488:6;;3538:40;;3469:16;;3538:40;3458:128;3395:191;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;2998:225::-;3038:3;3069:1;3065:6;3062:1;3059:13;3056:136;;;3114:10;3109:3;3105:20;3102:1;3095:31;3149:4;3146:1;3139:15;3177:4;3174:1;3167:15;3056:136;-1:-1:-1;3208:9:1;;2998:225::o
Swarm Source
ipfs://6986373b95721400f822366d2283079fdaf8d2613c9594d41e359902b6c41b02
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.