Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
4,200,000,000,000 wwojak
Holders
18
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000001245117322921 wwojakValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Wwojak
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Wwojak is ERC20, Ownable { uint256 public buyFeePercent; uint256 public sellFeePercent; address public deadwallet = 0x000000000000000000000000000000000000dEaD; mapping(address => bool) public _isBlacklisted; mapping(address => bool) public _isWhitelisted; constructor() ERC20("Wwojak Token", "wwojak") { _mint(msg.sender, 42000*100000000 * (10**18)); _isWhitelisted[msg.sender]=true; buyFeePercent = 0; sellFeePercent = 0; } function _transfer(address from,address to,uint256 amount) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!_isBlacklisted[from] && !_isBlacklisted[to], "black address"); if(amount == 0) { super._transfer(from, to, 0); return; } bool contractF = isContract(from); bool contractT = isContract(to); bool takeFee = true; if(_isWhitelisted[from] || _isWhitelisted[to]){ takeFee=false; } if(takeFee){ uint256 fees; if (contractF) { fees = (amount*buyFeePercent)/100; } if (contractT) { fees = (amount*sellFeePercent)/100; } if(fees>0) super._transfer(from,deadwallet,fees); amount=amount-fees; } super._transfer(from, to, amount); } function setBuyFeePercent(uint256 _buyFeePercent) external onlyOwner { require(_buyFeePercent <= 100, "Fee is too high"); buyFeePercent = _buyFeePercent; } function setSellFeePercent(uint256 _sellFeePercent) external onlyOwner { require(_sellFeePercent <= 100, "Fee is too high"); sellFeePercent = _sellFeePercent; } function setWhitelist(address[] calldata addresses, bool flag) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { _isWhitelisted[addresses[i]] = flag; } } function setBlacklist(address[] calldata accounts, bool flag) public onlyOwner { for(uint256 i = 0; i < accounts.length; i++) { _isBlacklisted[accounts[i]] = flag; } } function isContract(address account) internal view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
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":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadwallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"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":"sellFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFeePercent","type":"uint256"}],"name":"setBuyFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFeePercent","type":"uint256"}],"name":"setSellFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600880546001600160a01b03191661dead1790553480156200002557600080fd5b506040518060400160405280600c81526020016b2bbbb7b530b5902a37b5b2b760a11b8152506040518060400160405280600681526020016577776f6a616b60d01b81525081600390816200007b9190620002ad565b5060046200008a8282620002ad565b505050620000a7620000a1620000e860201b60201c565b620000ec565b620000c0336c3502ee929df4b7e73e400000006200013e565b336000908152600a60205260408120805460ff191660011790556006819055600755620003a1565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001995760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001ad919062000379565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200023457607f821691505b6020821081036200025557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200020457600081815260208120601f850160051c81016020861015620002845750805b601f850160051c820191505b81811015620002a55782815560010162000290565b505050505050565b81516001600160401b03811115620002c957620002c962000209565b620002e181620002da84546200021f565b846200025b565b602080601f831160018114620003195760008415620003005750858301515b600019600386901b1c1916600185901b178555620002a5565b600085815260208120601f198616915b828110156200034a5788860151825594840194600190910190840162000329565b5085821015620003695787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200039b57634e487b7160e01b600052601160045260246000fd5b92915050565b610fb480620003b16000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80638da5cb5b116100c3578063a9059cbb1161007c578063a9059cbb146102df578063b0dc78c5146102f2578063cc3fdd4c14610305578063dd62ed3e1461030e578063e0d30d9b14610321578063f2fde38b1461032a57600080fd5b80638da5cb5b14610256578063950eb5d51461027b57806395d89b411461028e5780639cee214214610296578063a2b8a947146102b9578063a457c2d7146102cc57600080fd5b806323b872dd1161011557806323b872dd146101dd578063313ce567146101f057806339509351146101ff5780633c271a051461021257806370a0823114610225578063715018a61461024e57600080fd5b806306fdde0314610152578063095ea7b3146101705780630e85d1e31461019357806318160ddd146101a85780631cdd3be3146101ba575b600080fd5b61015a61033d565b6040516101679190610c4f565b60405180910390f35b61018361017e366004610cb9565b6103cf565b6040519015158152602001610167565b6101a66101a1366004610ce3565b6103e9565b005b6002545b604051908152602001610167565b6101836101c8366004610d6e565b60096020526000908152604090205460ff1681565b6101836101eb366004610d90565b610468565b60405160128152602001610167565b61018361020d366004610cb9565b61048c565b6101a6610220366004610ce3565b6104ae565b6101ac610233366004610d6e565b6001600160a01b031660009081526020819052604090205490565b6101a6610527565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610167565b6101a6610289366004610dcc565b61053b565b61015a610590565b6101836102a4366004610d6e565b600a6020526000908152604090205460ff1681565b6101a66102c7366004610dcc565b61059f565b6101836102da366004610cb9565b6105ef565b6101836102ed366004610cb9565b61066a565b600854610263906001600160a01b031681565b6101ac60065481565b6101ac61031c366004610de5565b610678565b6101ac60075481565b6101a6610338366004610d6e565b6106a3565b60606003805461034c90610e18565b80601f016020809104026020016040519081016040528092919081815260200182805461037890610e18565b80156103c55780601f1061039a576101008083540402835291602001916103c5565b820191906000526020600020905b8154815290600101906020018083116103a857829003601f168201915b5050505050905090565b6000336103dd81858561071c565b60019150505b92915050565b6103f1610840565b60005b8281101561046257816009600086868581811061041357610413610e52565b90506020020160208101906104289190610d6e565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061045a81610e7e565b9150506103f4565b50505050565b60003361047685828561089a565b61048185858561090e565b506001949350505050565b6000336103dd81858561049f8383610678565b6104a99190610e97565b61071c565b6104b6610840565b60005b828110156104625781600a60008686858181106104d8576104d8610e52565b90506020020160208101906104ed9190610d6e565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061051f81610e7e565b9150506104b9565b61052f610840565b6105396000610ad3565b565b610543610840565b606481111561058b5760405162461bcd60e51b815260206004820152600f60248201526e08ccaca40d2e640e8dede40d0d2ced608b1b60448201526064015b60405180910390fd5b600655565b60606004805461034c90610e18565b6105a7610840565b60648111156105ea5760405162461bcd60e51b815260206004820152600f60248201526e08ccaca40d2e640e8dede40d0d2ced608b1b6044820152606401610582565b600755565b600033816105fd8286610678565b90508381101561065d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610582565b610481828686840361071c565b6000336103dd81858561090e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106ab610840565b6001600160a01b0381166107105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610582565b61071981610ad3565b50565b6001600160a01b03831661077e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610582565b6001600160a01b0382166107df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610582565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146105395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610582565b60006108a68484610678565b9050600019811461046257818110156109015760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610582565b610462848484840361071c565b6001600160a01b0383166109345760405162461bcd60e51b815260040161058290610eaa565b6001600160a01b03821661095a5760405162461bcd60e51b815260040161058290610eef565b6001600160a01b03831660009081526009602052604090205460ff1615801561099c57506001600160a01b03821660009081526009602052604090205460ff16155b6109d85760405162461bcd60e51b815260206004820152600d60248201526c626c61636b206164647265737360981b6044820152606401610582565b806000036109f1576109ec83836000610b25565b505050565b6001600160a01b0383166000908152600a6020526040902054833b151590833b15159060019060ff1680610a3d57506001600160a01b0385166000908152600a602052604090205460ff165b15610a46575060005b8015610ac05760008315610a7157606460065486610a649190610f32565b610a6e9190610f49565b90505b8215610a9457606460075486610a879190610f32565b610a919190610f49565b90505b8015610ab257600854610ab29088906001600160a01b031683610b25565b610abc8186610f6b565b9450505b610acb868686610b25565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610b4b5760405162461bcd60e51b815260040161058290610eaa565b6001600160a01b038216610b715760405162461bcd60e51b815260040161058290610eef565b6001600160a01b03831660009081526020819052604090205481811015610be95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610582565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610462565b600060208083528351808285015260005b81811015610c7c57858101830151858201604001528201610c60565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610cb457600080fd5b919050565b60008060408385031215610ccc57600080fd5b610cd583610c9d565b946020939093013593505050565b600080600060408486031215610cf857600080fd5b833567ffffffffffffffff80821115610d1057600080fd5b818601915086601f830112610d2457600080fd5b813581811115610d3357600080fd5b8760208260051b8501011115610d4857600080fd5b602092830195509350508401358015158114610d6357600080fd5b809150509250925092565b600060208284031215610d8057600080fd5b610d8982610c9d565b9392505050565b600080600060608486031215610da557600080fd5b610dae84610c9d565b9250610dbc60208501610c9d565b9150604084013590509250925092565b600060208284031215610dde57600080fd5b5035919050565b60008060408385031215610df857600080fd5b610e0183610c9d565b9150610e0f60208401610c9d565b90509250929050565b600181811c90821680610e2c57607f821691505b602082108103610e4c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610e9057610e90610e68565b5060010190565b808201808211156103e3576103e3610e68565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176103e3576103e3610e68565b600082610f6657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156103e3576103e3610e6856fea26469706673582212204d07d3270540ca206dfdb8bf96106f0e97426f489f17e78f044b211220d5d43664736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80638da5cb5b116100c3578063a9059cbb1161007c578063a9059cbb146102df578063b0dc78c5146102f2578063cc3fdd4c14610305578063dd62ed3e1461030e578063e0d30d9b14610321578063f2fde38b1461032a57600080fd5b80638da5cb5b14610256578063950eb5d51461027b57806395d89b411461028e5780639cee214214610296578063a2b8a947146102b9578063a457c2d7146102cc57600080fd5b806323b872dd1161011557806323b872dd146101dd578063313ce567146101f057806339509351146101ff5780633c271a051461021257806370a0823114610225578063715018a61461024e57600080fd5b806306fdde0314610152578063095ea7b3146101705780630e85d1e31461019357806318160ddd146101a85780631cdd3be3146101ba575b600080fd5b61015a61033d565b6040516101679190610c4f565b60405180910390f35b61018361017e366004610cb9565b6103cf565b6040519015158152602001610167565b6101a66101a1366004610ce3565b6103e9565b005b6002545b604051908152602001610167565b6101836101c8366004610d6e565b60096020526000908152604090205460ff1681565b6101836101eb366004610d90565b610468565b60405160128152602001610167565b61018361020d366004610cb9565b61048c565b6101a6610220366004610ce3565b6104ae565b6101ac610233366004610d6e565b6001600160a01b031660009081526020819052604090205490565b6101a6610527565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610167565b6101a6610289366004610dcc565b61053b565b61015a610590565b6101836102a4366004610d6e565b600a6020526000908152604090205460ff1681565b6101a66102c7366004610dcc565b61059f565b6101836102da366004610cb9565b6105ef565b6101836102ed366004610cb9565b61066a565b600854610263906001600160a01b031681565b6101ac60065481565b6101ac61031c366004610de5565b610678565b6101ac60075481565b6101a6610338366004610d6e565b6106a3565b60606003805461034c90610e18565b80601f016020809104026020016040519081016040528092919081815260200182805461037890610e18565b80156103c55780601f1061039a576101008083540402835291602001916103c5565b820191906000526020600020905b8154815290600101906020018083116103a857829003601f168201915b5050505050905090565b6000336103dd81858561071c565b60019150505b92915050565b6103f1610840565b60005b8281101561046257816009600086868581811061041357610413610e52565b90506020020160208101906104289190610d6e565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061045a81610e7e565b9150506103f4565b50505050565b60003361047685828561089a565b61048185858561090e565b506001949350505050565b6000336103dd81858561049f8383610678565b6104a99190610e97565b61071c565b6104b6610840565b60005b828110156104625781600a60008686858181106104d8576104d8610e52565b90506020020160208101906104ed9190610d6e565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061051f81610e7e565b9150506104b9565b61052f610840565b6105396000610ad3565b565b610543610840565b606481111561058b5760405162461bcd60e51b815260206004820152600f60248201526e08ccaca40d2e640e8dede40d0d2ced608b1b60448201526064015b60405180910390fd5b600655565b60606004805461034c90610e18565b6105a7610840565b60648111156105ea5760405162461bcd60e51b815260206004820152600f60248201526e08ccaca40d2e640e8dede40d0d2ced608b1b6044820152606401610582565b600755565b600033816105fd8286610678565b90508381101561065d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610582565b610481828686840361071c565b6000336103dd81858561090e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106ab610840565b6001600160a01b0381166107105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610582565b61071981610ad3565b50565b6001600160a01b03831661077e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610582565b6001600160a01b0382166107df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610582565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146105395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610582565b60006108a68484610678565b9050600019811461046257818110156109015760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610582565b610462848484840361071c565b6001600160a01b0383166109345760405162461bcd60e51b815260040161058290610eaa565b6001600160a01b03821661095a5760405162461bcd60e51b815260040161058290610eef565b6001600160a01b03831660009081526009602052604090205460ff1615801561099c57506001600160a01b03821660009081526009602052604090205460ff16155b6109d85760405162461bcd60e51b815260206004820152600d60248201526c626c61636b206164647265737360981b6044820152606401610582565b806000036109f1576109ec83836000610b25565b505050565b6001600160a01b0383166000908152600a6020526040902054833b151590833b15159060019060ff1680610a3d57506001600160a01b0385166000908152600a602052604090205460ff165b15610a46575060005b8015610ac05760008315610a7157606460065486610a649190610f32565b610a6e9190610f49565b90505b8215610a9457606460075486610a879190610f32565b610a919190610f49565b90505b8015610ab257600854610ab29088906001600160a01b031683610b25565b610abc8186610f6b565b9450505b610acb868686610b25565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610b4b5760405162461bcd60e51b815260040161058290610eaa565b6001600160a01b038216610b715760405162461bcd60e51b815260040161058290610eef565b6001600160a01b03831660009081526020819052604090205481811015610be95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610582565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610462565b600060208083528351808285015260005b81811015610c7c57858101830151858201604001528201610c60565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610cb457600080fd5b919050565b60008060408385031215610ccc57600080fd5b610cd583610c9d565b946020939093013593505050565b600080600060408486031215610cf857600080fd5b833567ffffffffffffffff80821115610d1057600080fd5b818601915086601f830112610d2457600080fd5b813581811115610d3357600080fd5b8760208260051b8501011115610d4857600080fd5b602092830195509350508401358015158114610d6357600080fd5b809150509250925092565b600060208284031215610d8057600080fd5b610d8982610c9d565b9392505050565b600080600060608486031215610da557600080fd5b610dae84610c9d565b9250610dbc60208501610c9d565b9150604084013590509250925092565b600060208284031215610dde57600080fd5b5035919050565b60008060408385031215610df857600080fd5b610e0183610c9d565b9150610e0f60208401610c9d565b90509250929050565b600181811c90821680610e2c57607f821691505b602082108103610e4c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610e9057610e90610e68565b5060010190565b808201808211156103e3576103e3610e68565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176103e3576103e3610e68565b600082610f6657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156103e3576103e3610e6856fea26469706673582212204d07d3270540ca206dfdb8bf96106f0e97426f489f17e78f044b211220d5d43664736f6c63430008120033
Deployed Bytecode Sourcemap
168:2479:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:6;;1162:22;1144:41;;1132:2;1117:18;4444:197:1;1004:187:6;2260:199:5;;;;;;:::i;:::-;;:::i;:::-;;3255:106:1;3342:12;;3255:106;;;2129:25:6;;;2117:2;2102:18;3255:106:1;1983:177:6;353:46:5;;;;;;:::i;:::-;;;;;;;;;;;;;;;;5203:256:1;;;;;;:::i;:::-;;:::i;3104:91::-;;;3186:2;2831:36:6;;2819:2;2804:18;3104:91:1;2689:184:6;5854:234:1;;;;;;:::i;:::-;;:::i;2049:205:5:-;;;;;;:::i;:::-;;:::i;3419:125:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3519:18:1;3493:7;3519:18;;;;;;;;;;;;3419:125;1824:101:0;;;:::i;1201:85::-;1273:6;;-1:-1:-1;;;;;1273:6:0;1201:85;;;-1:-1:-1;;;;;3042:32:6;;;3024:51;;3012:2;2997:18;1201:85:0;2878:203:6;1682:175:5;;;;;;:::i;:::-;;:::i;2369:102:1:-;;;:::i;405:46:5:-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;1863:180;;;;;;:::i;:::-;;:::i;6575:427:1:-;;;;;;:::i;:::-;;:::i;3740:189::-;;;;;;:::i;:::-;;:::i;277:70:5:-;;;;;-1:-1:-1;;;;;277:70:5;;;208:28;;;;;;3987:149:1;;;;;;:::i;:::-;;:::i;242:29:5:-;;;;;;2074:198:0;;;;;;:::i;:::-;;:::i;2158:98:1:-;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;719:10:4;4581:32:1;719:10:4;4597:7:1;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;;:::o;2260:199:5:-;1094:13:0;:11;:13::i;:::-;2353:9:5::1;2349:104;2368:19:::0;;::::1;2349:104;;;2438:4;2408:14;:27;2423:8;;2432:1;2423:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2408:27:5::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2408:27:5;:34;;-1:-1:-1;;2408:34:5::1;::::0;::::1;;::::0;;;::::1;::::0;;2389:3;::::1;::::0;::::1;:::i;:::-;;;;2349:104;;;;2260:199:::0;;;:::o;5203:256:1:-;5300:4;719:10:4;5356:38:1;5372:4;719:10:4;5387:6:1;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;-1:-1:-1;5448:4:1;;5203:256;-1:-1:-1;;;;5203:256:1:o;5854:234::-;5942:4;719:10:4;5996:64:1;719:10:4;6012:7:1;6049:10;6021:25;719:10:4;6012:7:1;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;2049:205:5:-;1094:13:0;:11;:13::i;:::-;2146:9:5::1;2141:107;2161:20:::0;;::::1;2141:107;;;2233:4;2202:14;:28;2217:9;;2227:1;2217:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2202:28:5::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2202:28:5;:35;;-1:-1:-1;;2202:35:5::1;::::0;::::1;;::::0;;;::::1;::::0;;2183:3;::::1;::::0;::::1;:::i;:::-;;;;2141:107;;1824:101:0::0;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;1682:175:5:-;1094:13:0;:11;:13::i;:::-;1787:3:5::1;1769:14;:21;;1761:49;;;::::0;-1:-1:-1;;;1761:49:5;;4657:2:6;1761:49:5::1;::::0;::::1;4639:21:6::0;4696:2;4676:18;;;4669:30;-1:-1:-1;;;4715:18:6;;;4708:45;4770:18;;1761:49:5::1;;;;;;;;;1820:13;:30:::0;1682:175::o;2369:102:1:-;2425:13;2457:7;2450:14;;;;;:::i;1863:180:5:-;1094:13:0;:11;:13::i;:::-;1971:3:5::1;1952:15;:22;;1944:50;;;::::0;-1:-1:-1;;;1944:50:5;;4657:2:6;1944:50:5::1;::::0;::::1;4639:21:6::0;4696:2;4676:18;;;4669:30;-1:-1:-1;;;4715:18:6;;;4708:45;4770:18;;1944:50:5::1;4455:339:6::0;1944:50:5::1;2004:14;:32:::0;1863:180::o;6575:427:1:-;6668:4;719:10:4;6668:4:1;6749:25;719:10:4;6766:7:1;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;-1:-1:-1;;;6784:85:1;;5001:2:6;6784:85:1;;;4983:21:6;5040:2;5020:18;;;5013:30;5079:34;5059:18;;;5052:62;-1:-1:-1;;;5130:18:6;;;5123:35;5175:19;;6784:85:1;4799:401:6;6784:85:1;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;3740:189::-;3819:4;719:10:4;3873:28:1;719:10:4;3890:2:1;3894:6;3873:9;:28::i;3987:149::-;-1:-1:-1;;;;;4102:18:1;;;4076:7;4102:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3987:149::o;2074:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:0;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:0;;5407:2:6;2154:73:0::1;::::0;::::1;5389:21:6::0;5446:2;5426:18;;;5419:30;5485:34;5465:18;;;5458:62;-1:-1:-1;;;5536:18:6;;;5529:36;5582:19;;2154:73:0::1;5205:402:6::0;2154:73:0::1;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;10457:340:1:-;-1:-1:-1;;;;;10558:19:1;;10550:68;;;;-1:-1:-1;;;10550:68:1;;5814:2:6;10550:68:1;;;5796:21:6;5853:2;5833:18;;;5826:30;5892:34;5872:18;;;5865:62;-1:-1:-1;;;5943:18:6;;;5936:34;5987:19;;10550:68:1;5612:400:6;10550:68:1;-1:-1:-1;;;;;10636:21:1;;10628:68;;;;-1:-1:-1;;;10628:68:1;;6219:2:6;10628:68:1;;;6201:21:6;6258:2;6238:18;;;6231:30;6297:34;6277:18;;;6270:62;-1:-1:-1;;;6348:18:6;;;6341:32;6390:19;;10628:68:1;6017:398:6;10628:68:1;-1:-1:-1;;;;;10707:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10758:32;;2129:25:6;;;10758:32:1;;2102:18:6;10758:32:1;;;;;;;10457:340;;;:::o;1359:130:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;719:10:4;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;6622:2:6;1414:68:0;;;6604:21:6;;;6641:18;;;6634:30;6700:34;6680:18;;;6673:62;6752:18;;1414:68:0;6420:356:6;11078:411:1;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;-1:-1:-1;;11244:16:1;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;-1:-1:-1;;;11297:68:1;;6983:2:6;11297:68:1;;;6965:21:6;7022:2;7002:18;;;6995:30;7061:31;7041:18;;;7034:59;7110:18;;11297:68:1;6781:353:6;11297:68:1;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;669:1007:5:-;-1:-1:-1;;;;;764:18:5;;756:68;;;;-1:-1:-1;;;756:68:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;842:16:5;;834:64;;;;-1:-1:-1;;;834:64:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;917:20:5;;;;;;:14;:20;;;;;;;;916:21;:44;;;;-1:-1:-1;;;;;;942:18:5;;;;;;:14;:18;;;;;;;;941:19;916:44;908:70;;;;-1:-1:-1;;;908:70:5;;8151:2:6;908:70:5;;;8133:21:6;8190:2;8170:18;;;8163:30;-1:-1:-1;;;8209:18:6;;;8202:43;8262:18;;908:70:5;7949:337:6;908:70:5;992:6;1002:1;992:11;989:89;;1019:28;1035:4;1041:2;1045:1;1019:15;:28::i;:::-;669:1007;;;:::o;989:89::-;-1:-1:-1;;;;;1205:20:5;;1088:14;1205:20;;;:14;:20;;;;;;2586;;2624:8;;;2586:20;;2624:8;;;1188:4;;1205:20;;;:42;;-1:-1:-1;;;;;;1229:18:5;;;;;;:14;:18;;;;;;;;1205:42;1202:84;;;-1:-1:-1;1270:5:5;1202:84;1299:7;1296:331;;;1321:12;1351:9;1347:81;;;1410:3;1395:13;;1388:6;:20;;;;:::i;:::-;1387:26;;;;:::i;:::-;1380:33;;1347:81;1445:9;1441:82;;;1505:3;1489:14;;1482:6;:21;;;;:::i;:::-;1481:27;;;;:::i;:::-;1474:34;;1441:82;1539:6;;1536:48;;1568:10;;1547:37;;1563:4;;-1:-1:-1;;;;;1568:10:5;1579:4;1547:15;:37::i;:::-;1605:11;1612:4;1605:6;:11;:::i;:::-;1598:18;;1307:320;1296:331;1636:33;1652:4;1658:2;1662:6;1636:15;:33::i;:::-;746:930;;;669:1007;;;:::o;2426:187:0:-;2518:6;;;-1:-1:-1;;;;;2534:17:0;;;-1:-1:-1;;;;;;2534:17:0;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;7456:788:1:-;-1:-1:-1;;;;;7552:18:1;;7544:68;;;;-1:-1:-1;;;7544:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;7630:16:1;;7622:64;;;;-1:-1:-1;;;7622:64:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;7768:15:1;;7746:19;7768:15;;;;;;;;;;;7801:21;;;;7793:72;;;;-1:-1:-1;;;7793:72:1;;9021:2:6;7793:72:1;;;9003:21:6;9060:2;9040:18;;;9033:30;9099:34;9079:18;;;9072:62;-1:-1:-1;;;9150:18:6;;;9143:36;9196:19;;7793:72:1;8819:402:6;7793:72:1;-1:-1:-1;;;;;7899:15:1;;;:9;:15;;;;;;;;;;;7917:20;;;7899:38;;8114:13;;;;;;;;;;:23;;;;;;8163:26;;2129:25:6;;;8114:13:1;;8163:26;;2102:18:6;8163:26:1;;;;;;;8200:37;669:1007:5;14:548:6;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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:6;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:6:o;1196:782::-;1288:6;1296;1304;1357:2;1345:9;1336:7;1332:23;1328:32;1325:52;;;1373:1;1370;1363:12;1325:52;1413:9;1400:23;1442:18;1483:2;1475:6;1472:14;1469:34;;;1499:1;1496;1489:12;1469:34;1537:6;1526:9;1522:22;1512:32;;1582:7;1575:4;1571:2;1567:13;1563:27;1553:55;;1604:1;1601;1594:12;1553:55;1644:2;1631:16;1670:2;1662:6;1659:14;1656:34;;;1686:1;1683;1676:12;1656:34;1741:7;1734:4;1724:6;1721:1;1717:14;1713:2;1709:23;1705:34;1702:47;1699:67;;;1762:1;1759;1752:12;1699:67;1793:4;1785:13;;;;-1:-1:-1;1817:6:6;-1:-1:-1;;1858:20:6;;1845:34;1915:13;;1908:21;1898:32;;1888:60;;1944:1;1941;1934:12;1888:60;1967:5;1957:15;;;1196:782;;;;;:::o;2165:186::-;2224:6;2277:2;2265:9;2256:7;2252:23;2248:32;2245:52;;;2293:1;2290;2283:12;2245:52;2316:29;2335:9;2316:29;:::i;:::-;2306:39;2165:186;-1:-1:-1;;;2165:186:6:o;2356:328::-;2433:6;2441;2449;2502:2;2490:9;2481:7;2477:23;2473:32;2470:52;;;2518:1;2515;2508:12;2470:52;2541:29;2560:9;2541:29;:::i;:::-;2531:39;;2589:38;2623:2;2612:9;2608:18;2589:38;:::i;:::-;2579:48;;2674:2;2663:9;2659:18;2646:32;2636:42;;2356:328;;;;;:::o;3086:180::-;3145:6;3198:2;3186:9;3177:7;3173:23;3169:32;3166:52;;;3214:1;3211;3204:12;3166:52;-1:-1:-1;3237:23:6;;3086:180;-1:-1:-1;3086:180:6:o;3271:260::-;3339:6;3347;3400:2;3388:9;3379:7;3375:23;3371:32;3368:52;;;3416:1;3413;3406:12;3368:52;3439:29;3458:9;3439:29;:::i;:::-;3429:39;;3487:38;3521:2;3510:9;3506:18;3487:38;:::i;:::-;3477:48;;3271:260;;;;;:::o;3536:380::-;3615:1;3611:12;;;;3658;;;3679:61;;3733:4;3725:6;3721:17;3711:27;;3679:61;3786:2;3778:6;3775:14;3755:18;3752:38;3749:161;;3832:10;3827:3;3823:20;3820:1;3813:31;3867:4;3864:1;3857:15;3895:4;3892:1;3885:15;3749:161;;3536:380;;;:::o;3921:127::-;3982:10;3977:3;3973:20;3970:1;3963:31;4013:4;4010:1;4003:15;4037:4;4034:1;4027:15;4053:127;4114:10;4109:3;4105:20;4102:1;4095:31;4145:4;4142:1;4135:15;4169:4;4166:1;4159:15;4185:135;4224:3;4245:17;;;4242:43;;4265:18;;:::i;:::-;-1:-1:-1;4312:1:6;4301:13;;4185:135::o;4325:125::-;4390:9;;;4411:10;;;4408:36;;;4424:18;;:::i;7139:401::-;7341:2;7323:21;;;7380:2;7360:18;;;7353:30;7419:34;7414:2;7399:18;;7392:62;-1:-1:-1;;;7485:2:6;7470:18;;7463:35;7530:3;7515:19;;7139:401::o;7545:399::-;7747:2;7729:21;;;7786:2;7766:18;;;7759:30;7825:34;7820:2;7805:18;;7798:62;-1:-1:-1;;;7891:2:6;7876:18;;7869:33;7934:3;7919:19;;7545:399::o;8291:168::-;8364:9;;;8395;;8412:15;;;8406:22;;8392:37;8382:71;;8433:18;;:::i;8464:217::-;8504:1;8530;8520:132;;8574:10;8569:3;8565:20;8562:1;8555:31;8609:4;8606:1;8599:15;8637:4;8634:1;8627:15;8520:132;-1:-1:-1;8666:9:6;;8464:217::o;8686:128::-;8753:9;;;8774:11;;;8771:37;;;8788:18;;:::i
Swarm Source
ipfs://4d07d3270540ca206dfdb8bf96106f0e97426f489f17e78f044b211220d5d436
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.