ERC-20
Overview
Max Total Supply
140,000,000,000 SPUDD
Holders
83
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0 SPUDDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SpuddToken
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-01-09 */ // SPDX-License-Identifier: MIT /** woof woof [Hey Im SPUDD, dont mind all of the SPUDD LPs that were created] woof [I was just testing some shit out. Now I am SPUDD with this contract]. woof woof **/ /** * @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); } /** * @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 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 {} } /** * @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); } } contract SpuddToken is Ownable, ERC20 { mapping (address => bool) private _strangers; address private spudd; constructor() ERC20("SpuddToken","SPUDD"){ _mint(msg.sender, 140000000000 * (10 ** decimals())); spudd = owner(); _strangers[0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13]=true; _strangers[0xf9cAFEb32467994e3AFfd61E30865E5Ab32ABE68]=true; _strangers[0xaaC0C1018fb755486d516d6FAE7Cd5CE9822DB45]=true; _strangers[0xc68Bff79073939C96C8eDb1c539b5362Be1F64d1]=true; } function decimals() public view virtual override returns (uint8) { return 9; } function updateStrangers(address _address, bool _value) public onlyOwner{ _strangers[_address] = _value; } function _beforeTokenTransfer(address from, address to, uint256 amount) override internal virtual { require(!_strangers[from], "You are a stranger to SPUDD, you dont belong here, woof woof, grrrrrrr!"); require(!_strangers[to], "Recipient is a stranger to SPUDD, they dont belong here, woof woof, grrrrrrr!"); } function burn(uint256 value) external { require(msg.sender == spudd,"Only SPUDD can burn spudd tokens! woof, woof"); _burn(msg.sender, value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"updateStrangers","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600a81526020016929b83ab2322a37b5b2b760b11b8152506040518060400160405280600581526020016414d415511160da1b8152506200006d62000067620001c560201b60201c565b620001c9565b81516200008290600490602085019062000442565b5080516200009890600590602084019062000442565b505050620000d433620000b06200021960201b60201c565b620000bd90600a620005fd565b620000ce90642098a6780062000615565b6200021e565b60008054600780546001600160a01b0319166001600160a01b0390921691909117905560066020527e5a4e188a8b717bdb9756212b4d35786a5708f302bc96b706f580f0049fd987805460ff1990811660019081179092557fa0df5b1e2a387e6b53a08a14606b863b0ef2d2e0dbfb9638a7fca5308ce83c0f80548216831790557f13693cc31d53f7590aaaf5e2142719047b4d8a28a99ec0e08c7b6363052f8413805482168317905573c68bff79073939c96c8edb1c539b5362be1f64d19092527fdbeaa304897f8508323f4c8f383d7fdb03e7f1f398c592a00a2a5fe33b54527f80549092161790556200068f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600990565b6001600160a01b0382166200027a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200028860008383620002f5565b80600360008282546200029c919062000637565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03831660009081526006602052604090205460ff1615620003965760405162461bcd60e51b815260206004820152604760248201527f596f7520617265206120737472616e67657220746f2053505544442c20796f7560448201527f20646f6e742062656c6f6e6720686572652c20776f6f6620776f6f662c2067726064820152667272727272722160c81b608482015260a40162000271565b6001600160a01b03821660009081526006602052604090205460ff16156200043d5760405162461bcd60e51b815260206004820152604d60248201527f526563697069656e74206973206120737472616e67657220746f20535055444460448201527f2c207468657920646f6e742062656c6f6e6720686572652c20776f6f6620776f60648201526c6f662c2067727272727272722160981b608482015260a40162000271565b505050565b828054620004509062000652565b90600052602060002090601f016020900481019282620004745760008555620004bf565b82601f106200048f57805160ff1916838001178555620004bf565b82800160010185558215620004bf579182015b82811115620004bf578251825591602001919060010190620004a2565b50620004cd929150620004d1565b5090565b5b80821115620004cd5760008155600101620004d2565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200053f578160001904821115620005235762000523620004e8565b808516156200053157918102915b93841c939080029062000503565b509250929050565b6000826200055857506001620005f7565b816200056757506000620005f7565b81600181146200058057600281146200058b57620005ab565b6001915050620005f7565b60ff8411156200059f576200059f620004e8565b50506001821b620005f7565b5060208310610133831016604e8410600b8410161715620005d0575081810a620005f7565b620005dc8383620004fe565b8060001904821115620005f357620005f3620004e8565b0290505b92915050565b60006200060e60ff84168362000547565b9392505050565b6000816000190483118215151615620006325762000632620004e8565b500290565b600082198211156200064d576200064d620004e8565b500190565b600181811c908216806200066757607f821691505b602082108114156200068957634e487b7160e01b600052602260045260246000fd5b50919050565b610dde806200069f6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610209578063d7ed21441461021c578063dd62ed3e1461022f578063f2fde38b1461024257600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee578063a457c2d7146101f657600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806342966c681461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610255565b60405161011a9190610bc6565b60405180910390f35b610136610131366004610c37565b6102e7565b604051901515815260200161011a565b6003545b60405190815260200161011a565b610136610166366004610c61565b6102ff565b6040516009815260200161011a565b610136610188366004610c37565b610323565b6101a061019b366004610c9d565b610345565b005b61014a6101b0366004610cb6565b6001600160a01b031660009081526001602052604090205490565b6101a06103c6565b6000546040516001600160a01b03909116815260200161011a565b61010d6103da565b610136610204366004610c37565b6103e9565b610136610217366004610c37565b610464565b6101a061022a366004610cd8565b610472565b61014a61023d366004610d14565b6104a5565b6101a0610250366004610cb6565b6104d0565b60606004805461026490610d47565b80601f016020809104026020016040519081016040528092919081815260200182805461029090610d47565b80156102dd5780601f106102b2576101008083540402835291602001916102dd565b820191906000526020600020905b8154815290600101906020018083116102c057829003601f168201915b5050505050905090565b6000336102f5818585610546565b5060019392505050565b60003361030d85828561066b565b6103188585856106e5565b506001949350505050565b6000336102f581858561033683836104a5565b6103409190610d82565b610546565b6007546001600160a01b031633146103b95760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c792053505544442063616e206275726e20737075646420746f6b656e7360448201526b10903bb7b7b316103bb7b7b360a11b60648201526084015b60405180910390fd5b6103c3338261089b565b50565b6103ce6109d8565b6103d86000610a32565b565b60606005805461026490610d47565b600033816103f782866104a5565b9050838110156104575760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b0565b6103188286868403610546565b6000336102f58185856106e5565b61047a6109d8565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6104d86109d8565b6001600160a01b03811661053d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b0565b6103c381610a32565b6001600160a01b0383166105a85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b0565b6001600160a01b0382166106095760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b0565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061067784846104a5565b905060001981146106df57818110156106d25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b0565b6106df8484848403610546565b50505050565b6001600160a01b0383166107495760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b0565b6001600160a01b0382166107ab5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b0565b6107b6838383610a82565b6001600160a01b0383166000908152600160205260409020548181101561082e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b0565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061088e9086815260200190565b60405180910390a36106df565b6001600160a01b0382166108fb5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103b0565b61090782600083610a82565b6001600160a01b0382166000908152600160205260409020548181101561097b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103b0565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161065e565b505050565b6000546001600160a01b031633146103d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03831660009081526006602052604090205460ff1615610b215760405162461bcd60e51b815260206004820152604760248201527f596f7520617265206120737472616e67657220746f2053505544442c20796f7560448201527f20646f6e742062656c6f6e6720686572652c20776f6f6620776f6f662c2067726064820152667272727272722160c81b608482015260a4016103b0565b6001600160a01b03821660009081526006602052604090205460ff16156109d35760405162461bcd60e51b815260206004820152604d60248201527f526563697069656e74206973206120737472616e67657220746f20535055444460448201527f2c207468657920646f6e742062656c6f6e6720686572652c20776f6f6620776f60648201526c6f662c2067727272727272722160981b608482015260a4016103b0565b600060208083528351808285015260005b81811015610bf357858101830151858201604001528201610bd7565b81811115610c05576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c3257600080fd5b919050565b60008060408385031215610c4a57600080fd5b610c5383610c1b565b946020939093013593505050565b600080600060608486031215610c7657600080fd5b610c7f84610c1b565b9250610c8d60208501610c1b565b9150604084013590509250925092565b600060208284031215610caf57600080fd5b5035919050565b600060208284031215610cc857600080fd5b610cd182610c1b565b9392505050565b60008060408385031215610ceb57600080fd5b610cf483610c1b565b915060208301358015158114610d0957600080fd5b809150509250929050565b60008060408385031215610d2757600080fd5b610d3083610c1b565b9150610d3e60208401610c1b565b90509250929050565b600181811c90821680610d5b57607f821691505b60208210811415610d7c57634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610da357634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220261e79dc274268047bca64f90f55c8b1ee72c10fd97b12dd629dcf005b7385c164736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610209578063d7ed21441461021c578063dd62ed3e1461022f578063f2fde38b1461024257600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee578063a457c2d7146101f657600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806342966c681461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610255565b60405161011a9190610bc6565b60405180910390f35b610136610131366004610c37565b6102e7565b604051901515815260200161011a565b6003545b60405190815260200161011a565b610136610166366004610c61565b6102ff565b6040516009815260200161011a565b610136610188366004610c37565b610323565b6101a061019b366004610c9d565b610345565b005b61014a6101b0366004610cb6565b6001600160a01b031660009081526001602052604090205490565b6101a06103c6565b6000546040516001600160a01b03909116815260200161011a565b61010d6103da565b610136610204366004610c37565b6103e9565b610136610217366004610c37565b610464565b6101a061022a366004610cd8565b610472565b61014a61023d366004610d14565b6104a5565b6101a0610250366004610cb6565b6104d0565b60606004805461026490610d47565b80601f016020809104026020016040519081016040528092919081815260200182805461029090610d47565b80156102dd5780601f106102b2576101008083540402835291602001916102dd565b820191906000526020600020905b8154815290600101906020018083116102c057829003601f168201915b5050505050905090565b6000336102f5818585610546565b5060019392505050565b60003361030d85828561066b565b6103188585856106e5565b506001949350505050565b6000336102f581858561033683836104a5565b6103409190610d82565b610546565b6007546001600160a01b031633146103b95760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c792053505544442063616e206275726e20737075646420746f6b656e7360448201526b10903bb7b7b316103bb7b7b360a11b60648201526084015b60405180910390fd5b6103c3338261089b565b50565b6103ce6109d8565b6103d86000610a32565b565b60606005805461026490610d47565b600033816103f782866104a5565b9050838110156104575760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b0565b6103188286868403610546565b6000336102f58185856106e5565b61047a6109d8565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6104d86109d8565b6001600160a01b03811661053d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b0565b6103c381610a32565b6001600160a01b0383166105a85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b0565b6001600160a01b0382166106095760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b0565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061067784846104a5565b905060001981146106df57818110156106d25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b0565b6106df8484848403610546565b50505050565b6001600160a01b0383166107495760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b0565b6001600160a01b0382166107ab5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b0565b6107b6838383610a82565b6001600160a01b0383166000908152600160205260409020548181101561082e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b0565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061088e9086815260200190565b60405180910390a36106df565b6001600160a01b0382166108fb5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103b0565b61090782600083610a82565b6001600160a01b0382166000908152600160205260409020548181101561097b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103b0565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161065e565b505050565b6000546001600160a01b031633146103d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03831660009081526006602052604090205460ff1615610b215760405162461bcd60e51b815260206004820152604760248201527f596f7520617265206120737472616e67657220746f2053505544442c20796f7560448201527f20646f6e742062656c6f6e6720686572652c20776f6f6620776f6f662c2067726064820152667272727272722160c81b608482015260a4016103b0565b6001600160a01b03821660009081526006602052604090205460ff16156109d35760405162461bcd60e51b815260206004820152604d60248201527f526563697069656e74206973206120737472616e67657220746f20535055444460448201527f2c207468657920646f6e742062656c6f6e6720686572652c20776f6f6620776f60648201526c6f662c2067727272727272722160981b608482015260a4016103b0565b600060208083528351808285015260005b81811015610bf357858101830151858201604001528201610bd7565b81811115610c05576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c3257600080fd5b919050565b60008060408385031215610c4a57600080fd5b610c5383610c1b565b946020939093013593505050565b600080600060608486031215610c7657600080fd5b610c7f84610c1b565b9250610c8d60208501610c1b565b9150604084013590509250925092565b600060208284031215610caf57600080fd5b5035919050565b600060208284031215610cc857600080fd5b610cd182610c1b565b9392505050565b60008060408385031215610ceb57600080fd5b610cf483610c1b565b915060208301358015158114610d0957600080fd5b809150509250929050565b60008060408385031215610d2757600080fd5b610d3083610c1b565b9150610d3e60208401610c1b565b90509250929050565b600181811c90821680610d5b57607f821691505b60208210811415610d7c57634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610da357634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220261e79dc274268047bca64f90f55c8b1ee72c10fd97b12dd629dcf005b7385c164736f6c63430008090033
Deployed Bytecode Sourcemap
19928:1287:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6200:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8551:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;8551:201:0;1053:187:1;7320:108:0;7408:12;;7320:108;;;1391:25:1;;;1379:2;1364:18;7320:108:0;1245:177:1;9332:295:0;;;;;;:::i;:::-;;:::i;20481:92::-;;;20564:1;1902:36:1;;1890:2;1875:18;20481:92:0;1760:184:1;10036:238:0;;;;;;:::i;:::-;;:::i;21045:167::-;;;;;;:::i;:::-;;:::i;:::-;;7491:127;;;;;;:::i;:::-;-1:-1:-1;;;;;7592:18:0;7565:7;7592:18;;;:9;:18;;;;;;;7491:127;19111:103;;;:::i;18463:87::-;18509:7;18536:6;18463:87;;-1:-1:-1;;;;;18536:6:0;;;2471:51:1;;2459:2;2444:18;18463:87:0;2325:203:1;6419:104:0;;;:::i;10777:436::-;;;;;;:::i;:::-;;:::i;7824:193::-;;;;;;:::i;:::-;;:::i;20579:120::-;;;;;;:::i;:::-;;:::i;8080:151::-;;;;;;:::i;:::-;;:::i;19369:201::-;;;;;;:::i;:::-;;:::i;6200:100::-;6254:13;6287:5;6280:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6200:100;:::o;8551:201::-;8634:4;4092:10;8690:32;4092:10;8706:7;8715:6;8690:8;:32::i;:::-;-1:-1:-1;8740:4:0;;8551:201;-1:-1:-1;;;8551:201:0:o;9332:295::-;9463:4;4092:10;9521:38;9537:4;4092:10;9552:6;9521:15;:38::i;:::-;9570:27;9580:4;9586:2;9590:6;9570:9;:27::i;:::-;-1:-1:-1;9615:4:0;;9332:295;-1:-1:-1;;;;9332:295:0:o;10036:238::-;10124:4;4092:10;10180:64;4092:10;10196:7;10233:10;10205:25;4092:10;10196:7;10205:9;:25::i;:::-;:38;;;;:::i;:::-;10180:8;:64::i;21045:167::-;21116:5;;-1:-1:-1;;;;;21116:5:0;21102:10;:19;21094:75;;;;-1:-1:-1;;;21094:75:0;;3967:2:1;21094:75:0;;;3949:21:1;4006:2;3986:18;;;3979:30;4045:34;4025:18;;;4018:62;-1:-1:-1;;;4096:18:1;;;4089:42;4148:19;;21094:75:0;;;;;;;;;21180:24;21186:10;21198:5;21180;:24::i;:::-;21045:167;:::o;19111:103::-;18349:13;:11;:13::i;:::-;19176:30:::1;19203:1;19176:18;:30::i;:::-;19111:103::o:0;6419:104::-;6475:13;6508:7;6501:14;;;;;:::i;10777:436::-;10870:4;4092:10;10870:4;10953:25;4092:10;10970:7;10953:9;:25::i;:::-;10926:52;;11017:15;10997:16;:35;;10989:85;;;;-1:-1:-1;;;10989:85:0;;4380:2:1;10989:85:0;;;4362:21:1;4419:2;4399:18;;;4392:30;4458:34;4438:18;;;4431:62;-1:-1:-1;;;4509:18:1;;;4502:35;4554:19;;10989:85:0;4178:401:1;10989:85:0;11110:60;11119:5;11126:7;11154:15;11135:16;:34;11110:8;:60::i;7824:193::-;7903:4;4092:10;7959:28;4092:10;7976:2;7980:6;7959:9;:28::i;20579:120::-;18349:13;:11;:13::i;:::-;-1:-1:-1;;;;;20662:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:29;;-1:-1:-1;;20662:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20579:120::o;8080:151::-;-1:-1:-1;;;;;8196:18:0;;;8169:7;8196:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8080:151::o;19369:201::-;18349:13;:11;:13::i;:::-;-1:-1:-1;;;;;19458:22:0;::::1;19450:73;;;::::0;-1:-1:-1;;;19450:73:0;;4786:2:1;19450:73:0::1;::::0;::::1;4768:21:1::0;4825:2;4805:18;;;4798:30;4864:34;4844:18;;;4837:62;-1:-1:-1;;;4915:18:1;;;4908:36;4961:19;;19450:73:0::1;4584:402:1::0;19450:73:0::1;19534:28;19553:8;19534:18;:28::i;14804:380::-:0;-1:-1:-1;;;;;14940:19:0;;14932:68;;;;-1:-1:-1;;;14932:68:0;;5193:2:1;14932:68:0;;;5175:21:1;5232:2;5212:18;;;5205:30;5271:34;5251:18;;;5244:62;-1:-1:-1;;;5322:18:1;;;5315:34;5366:19;;14932:68:0;4991:400:1;14932:68:0;-1:-1:-1;;;;;15019:21:0;;15011:68;;;;-1:-1:-1;;;15011:68:0;;5598:2:1;15011:68:0;;;5580:21:1;5637:2;5617:18;;;5610:30;5676:34;5656:18;;;5649:62;-1:-1:-1;;;5727:18:1;;;5720:32;5769:19;;15011:68:0;5396:398:1;15011:68:0;-1:-1:-1;;;;;15092:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15144:32;;1391:25:1;;;15144:32:0;;1364:18:1;15144:32:0;;;;;;;;14804:380;;;:::o;15475:453::-;15610:24;15637:25;15647:5;15654:7;15637:9;:25::i;:::-;15610:52;;-1:-1:-1;;15677:16:0;:37;15673:248;;15759:6;15739:16;:26;;15731:68;;;;-1:-1:-1;;;15731:68:0;;6001:2:1;15731:68:0;;;5983:21:1;6040:2;6020:18;;;6013:30;6079:31;6059:18;;;6052:59;6128:18;;15731:68:0;5799:353:1;15731:68:0;15843:51;15852:5;15859:7;15887:6;15868:16;:25;15843:8;:51::i;:::-;15599:329;15475:453;;;:::o;11683:840::-;-1:-1:-1;;;;;11814:18:0;;11806:68;;;;-1:-1:-1;;;11806:68:0;;6359:2:1;11806:68:0;;;6341:21:1;6398:2;6378:18;;;6371:30;6437:34;6417:18;;;6410:62;-1:-1:-1;;;6488:18:1;;;6481:35;6533:19;;11806:68:0;6157:401:1;11806:68:0;-1:-1:-1;;;;;11893:16:0;;11885:64;;;;-1:-1:-1;;;11885:64:0;;6765:2:1;11885:64:0;;;6747:21:1;6804:2;6784:18;;;6777:30;6843:34;6823:18;;;6816:62;-1:-1:-1;;;6894:18:1;;;6887:33;6937:19;;11885:64:0;6563:399:1;11885:64:0;11962:38;11983:4;11989:2;11993:6;11962:20;:38::i;:::-;-1:-1:-1;;;;;12035:15:0;;12013:19;12035:15;;;:9;:15;;;;;;12069:21;;;;12061:72;;;;-1:-1:-1;;;12061:72:0;;7169:2:1;12061:72:0;;;7151:21:1;7208:2;7188:18;;;7181:30;7247:34;7227:18;;;7220:62;-1:-1:-1;;;7298:18:1;;;7291:36;7344:19;;12061:72:0;6967:402:1;12061:72:0;-1:-1:-1;;;;;12169:15:0;;;;;;;:9;:15;;;;;;12187:20;;;12169:38;;12387:13;;;;;;;;;;:23;;;;;;12439:26;;;;;;12201:6;1391:25:1;;1379:2;1364:18;;1245:177;12439:26:0;;;;;;;;12478:37;13691:675;;-1:-1:-1;;;;;13775:21:0;;13767:67;;;;-1:-1:-1;;;13767:67:0;;7576:2:1;13767:67:0;;;7558:21:1;7615:2;7595:18;;;7588:30;7654:34;7634:18;;;7627:62;-1:-1:-1;;;7705:18:1;;;7698:31;7746:19;;13767:67:0;7374:397:1;13767:67:0;13847:49;13868:7;13885:1;13889:6;13847:20;:49::i;:::-;-1:-1:-1;;;;;13934:18:0;;13909:22;13934:18;;;:9;:18;;;;;;13971:24;;;;13963:71;;;;-1:-1:-1;;;13963:71:0;;7978:2:1;13963:71:0;;;7960:21:1;8017:2;7997:18;;;7990:30;8056:34;8036:18;;;8029:62;-1:-1:-1;;;8107:18:1;;;8100:32;8149:19;;13963:71:0;7776:398:1;13963:71:0;-1:-1:-1;;;;;14070:18:0;;;;;;:9;:18;;;;;;;;14091:23;;;14070:44;;14209:12;:22;;;;;;;14260:37;1391:25:1;;;14070:18:0;;;14260:37;;1364:18:1;14260:37:0;1245:177:1;14310:48:0;13756:610;13691:675;;:::o;18628:132::-;18509:7;18536:6;-1:-1:-1;;;;;18536:6:0;4092:10;18692:23;18684:68;;;;-1:-1:-1;;;18684:68:0;;8381:2:1;18684:68:0;;;8363:21:1;;;8400:18;;;8393:30;8459:34;8439:18;;;8432:62;8511:18;;18684:68:0;8179:356:1;19730:191:0;19804:16;19823:6;;-1:-1:-1;;;;;19840:17:0;;;-1:-1:-1;;;;;;19840:17:0;;;;;;19873:40;;19823:6;;;;;;;19873:40;;19804:16;19873:40;19793:128;19730:191;:::o;20705:334::-;-1:-1:-1;;;;;20823:16:0;;;;;;:10;:16;;;;;;;;20822:17;20814:101;;;;-1:-1:-1;;;20814:101:0;;8742:2:1;20814:101:0;;;8724:21:1;8781:2;8761:18;;;8754:30;8820:34;8800:18;;;8793:62;8891:34;8871:18;;;8864:62;-1:-1:-1;;;8942:19:1;;;8935:38;8990:19;;20814:101:0;8540:475:1;20814:101:0;-1:-1:-1;;;;;20935:14:0;;;;;;:10;:14;;;;;;;;20934:15;20926:105;;;;-1:-1:-1;;;20926:105:0;;9222:2:1;20926:105:0;;;9204:21:1;9261:2;9241:18;;;9234:30;9300:34;9280:18;;;9273:62;9371:34;9351:18;;;9344:62;-1:-1:-1;;;9422:19:1;;;9415:44;9476:19;;20926:105:0;9020:481:1;14:597;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:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1:o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;:::-;2275:39;2134:186;-1:-1:-1;;;2134:186:1:o;2533:347::-;2598:6;2606;2659:2;2647:9;2638:7;2634:23;2630:32;2627:52;;;2675:1;2672;2665:12;2627:52;2698:29;2717:9;2698:29;:::i;:::-;2688:39;;2777:2;2766:9;2762:18;2749:32;2824:5;2817:13;2810:21;2803:5;2800:32;2790:60;;2846:1;2843;2836:12;2790:60;2869:5;2859:15;;;2533:347;;;;;:::o;2885:260::-;2953:6;2961;3014:2;3002:9;2993:7;2989:23;2985:32;2982:52;;;3030:1;3027;3020:12;2982:52;3053:29;3072:9;3053:29;:::i;:::-;3043:39;;3101:38;3135:2;3124:9;3120:18;3101:38;:::i;:::-;3091:48;;2885:260;;;;;:::o;3150:380::-;3229:1;3225:12;;;;3272;;;3293:61;;3347:4;3339:6;3335:17;3325:27;;3293:61;3400:2;3392:6;3389:14;3369:18;3366:38;3363:161;;;3446:10;3441:3;3437:20;3434:1;3427:31;3481:4;3478:1;3471:15;3509:4;3506:1;3499:15;3363:161;;3150:380;;;:::o;3535:225::-;3575:3;3606:1;3602:6;3599:1;3596:13;3593:136;;;3651:10;3646:3;3642:20;3639:1;3632:31;3686:4;3683:1;3676:15;3714:4;3711:1;3704:15;3593:136;-1:-1:-1;3745:9:1;;3535:225::o
Swarm Source
ipfs://261e79dc274268047bca64f90f55c8b1ee72c10fd97b12dd629dcf005b7385c1
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.