ERC-20
Overview
Max Total Supply
9,942,439,282.806435457395924771 WODIU
Holders
102
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
45,525,791.927133270900503241 WODIUValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Token
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-23 */ // Sources flattened with hardhat v2.12.2 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File contracts/Token.sol pragma solidity ^0.8.0; contract Token is ERC20 { address public pair; uint public burnAmount; constructor( address _factory, address _pairToken ) ERC20("WODIU", "WODIU") { pair = IUniswapV2Factory(_factory).createPair(address(this), _pairToken); _mint(0x851Ee4E2241bF69F5c746c5B35b08819c9eb8C76, 100e8 * 10 ** decimals()); } function _transfer(address from, address to, uint256 amount) internal override { if(from == pair){ // buy _buy(from, to, amount); }else if(to == pair){ // sell _sell(from, to, amount); }else{ // others super._transfer(from, to, amount); } } function _buy(address from, address to, uint256 amount) internal { burnAmount += amount * 15 / 10000; super._transfer(from, to, amount); } function _sell(address from, address to, uint256 amount) internal { burnAmount += amount * 15 / 10000; super._transfer(from, to, amount); } function rebase() public { uint limit = getPoolAmount() * 29 / 10000; uint amount = burnAmount; if(amount > limit) { amount = limit; } _burn(pair, amount); IUniswapV2Pair(pair).sync(); burnAmount -= amount; } function getPoolAmount() internal view returns (uint) { (uint amount0, uint amount1, uint _t) = IUniswapV2Pair(pair).getReserves(); return IUniswapV2Pair(pair).token0() == address(this) ? amount0 : amount1; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_factory","type":"address"},{"internalType":"address","name":"_pairToken","type":"address"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnAmount","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rebase","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620026f6380380620026f68339818101604052810190620000379190620003d3565b6040518060400160405280600581526020017f574f4449550000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f574f4449550000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000694565b508060049081620000c6919062000694565b5050508173ffffffffffffffffffffffffffffffffffffffff1663c9c6539630836040518363ffffffff1660e01b8152600401620001069291906200078c565b6020604051808303816000875af115801562000126573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014c9190620007b9565b600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001e173851ee4e2241bf69f5c746c5b35b08819c9eb8c76620001b5620001e960201b60201c565b600a620001c391906200097b565b6402540be400620001d59190620009cc565b620001f260201b60201c565b505062000b03565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000264576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025b9062000a78565b60405180910390fd5b62000278600083836200035f60201b60201c565b80600260008282546200028c919062000a9a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033f919062000ae6565b60405180910390a36200035b600083836200036460201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200039b826200036e565b9050919050565b620003ad816200038e565b8114620003b957600080fd5b50565b600081519050620003cd81620003a2565b92915050565b60008060408385031215620003ed57620003ec62000369565b5b6000620003fd85828601620003bc565b92505060206200041085828601620003bc565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200049c57607f821691505b602082108103620004b257620004b162000454565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200051c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004dd565b620005288683620004dd565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005756200056f620005698462000540565b6200054a565b62000540565b9050919050565b6000819050919050565b620005918362000554565b620005a9620005a0826200057c565b848454620004ea565b825550505050565b600090565b620005c0620005b1565b620005cd81848462000586565b505050565b5b81811015620005f557620005e9600082620005b6565b600181019050620005d3565b5050565b601f82111562000644576200060e81620004b8565b6200061984620004cd565b8101602085101562000629578190505b620006416200063885620004cd565b830182620005d2565b50505b505050565b600082821c905092915050565b6000620006696000198460080262000649565b1980831691505092915050565b600062000684838362000656565b9150826002028217905092915050565b6200069f826200041a565b67ffffffffffffffff811115620006bb57620006ba62000425565b5b620006c7825462000483565b620006d4828285620005f9565b600060209050601f8311600181146200070c5760008415620006f7578287015190505b62000703858262000676565b86555062000773565b601f1984166200071c86620004b8565b60005b8281101562000746578489015182556001820191506020850194506020810190506200071f565b8683101562000766578489015162000762601f89168262000656565b8355505b6001600288020188555050505b505050505050565b62000786816200038e565b82525050565b6000604082019050620007a360008301856200077b565b620007b260208301846200077b565b9392505050565b600060208284031215620007d257620007d162000369565b5b6000620007e284828501620003bc565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200087957808604811115620008515762000850620007eb565b5b6001851615620008615780820291505b808102905062000871856200081a565b945062000831565b94509492505050565b60008262000894576001905062000967565b81620008a4576000905062000967565b8160018114620008bd5760028114620008c857620008fe565b600191505062000967565b60ff841115620008dd57620008dc620007eb565b5b8360020a915084821115620008f757620008f6620007eb565b5b5062000967565b5060208310610133831016604e8410600b8410161715620009385782820a905083811115620009325762000931620007eb565b5b62000967565b62000947848484600162000827565b92509050818404811115620009615762000960620007eb565b5b81810290505b9392505050565b600060ff82169050919050565b6000620009888262000540565b915062000995836200096e565b9250620009c47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000882565b905092915050565b6000620009d98262000540565b9150620009e68362000540565b9250828202620009f68162000540565b9150828204841483151762000a105762000a0f620007eb565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a60601f8362000a17565b915062000a6d8262000a28565b602082019050919050565b6000602082019050818103600083015262000a938162000a51565b9050919050565b600062000aa78262000540565b915062000ab48362000540565b925082820190508082111562000acf5762000ace620007eb565b5b92915050565b62000ae08162000540565b82525050565b600060208201905062000afd600083018462000ad5565b92915050565b611be38062000b136000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a8aa1b3111610066578063a8aa1b3114610275578063a9059cbb14610293578063af14052c146102c3578063dd62ed3e146102cd576100ea565b806370a08231146101f757806395d89b4114610227578063a457c2d714610245576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a9578063486a7e6b146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fd565b6040516101049190611185565b60405180910390f35b61012760048036038101906101229190611240565b61038f565b604051610134919061129b565b60405180910390f35b6101456103b2565b60405161015291906112c5565b60405180910390f35b610175600480360381019061017091906112e0565b6103bc565b604051610182919061129b565b60405180910390f35b6101936103eb565b6040516101a0919061134f565b60405180910390f35b6101c360048036038101906101be9190611240565b6103f4565b6040516101d0919061129b565b60405180910390f35b6101e161042b565b6040516101ee91906112c5565b60405180910390f35b610211600480360381019061020c919061136a565b610431565b60405161021e91906112c5565b60405180910390f35b61022f610479565b60405161023c9190611185565b60405180910390f35b61025f600480360381019061025a9190611240565b61050b565b60405161026c919061129b565b60405180910390f35b61027d610582565b60405161028a91906113a6565b60405180910390f35b6102ad60048036038101906102a89190611240565b6105a8565b6040516102ba919061129b565b60405180910390f35b6102cb6105cb565b005b6102e760048036038101906102e291906113c1565b6106ce565b6040516102f491906112c5565b60405180910390f35b60606003805461030c90611430565b80601f016020809104026020016040519081016040528092919081815260200182805461033890611430565b80156103855780601f1061035a57610100808354040283529160200191610385565b820191906000526020600020905b81548152906001019060200180831161036857829003601f168201915b5050505050905090565b60008061039a610755565b90506103a781858561075d565b600191505092915050565b6000600254905090565b6000806103c7610755565b90506103d4858285610926565b6103df8585856109b2565b60019150509392505050565b60006012905090565b6000806103ff610755565b905061042081858561041185896106ce565b61041b9190611490565b61075d565b600191505092915050565b60065481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461048890611430565b80601f01602080910402602001604051908101604052809291908181526020018280546104b490611430565b80156105015780601f106104d657610100808354040283529160200191610501565b820191906000526020600020905b8154815290600101906020018083116104e457829003601f168201915b5050505050905090565b600080610516610755565b9050600061052482866106ce565b905083811015610569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056090611536565b60405180910390fd5b610576828686840361075d565b60019250505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806105b3610755565b90506105c08185856109b2565b600191505092915050565b6000612710601d6105da610a8e565b6105e49190611556565b6105ee91906115c7565b90506000600654905081811115610603578190505b61062f600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610c24565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561069957600080fd5b505af11580156106ad573d6000803e3d6000fd5b5050505080600660008282546106c391906115f8565b925050819055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c39061169e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361083b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083290611730565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161091991906112c5565b60405180910390a3505050565b600061093284846106ce565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109ac578181101561099e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109959061179c565b60405180910390fd5b6109ab848484840361075d565b5b50505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a1757610a12838383610df1565b610a89565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7c57610a77838383610e33565b610a88565b610a87838383610e75565b5b5b505050565b600080600080600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610b01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b25919061183e565b63ffffffff1692506dffffffffffffffffffffffffffff1692506dffffffffffffffffffffffffffff1692503073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf991906118a6565b73ffffffffffffffffffffffffffffffffffffffff1614610c1a5781610c1c565b825b935050505090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90611945565b60405180910390fd5b610c9f826000836110eb565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c906119d7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dd891906112c5565b60405180910390a3610dec836000846110f0565b505050565b612710600f82610e019190611556565b610e0b91906115c7565b60066000828254610e1c9190611490565b92505081905550610e2e838383610e75565b505050565b612710600f82610e439190611556565b610e4d91906115c7565b60066000828254610e5e9190611490565b92505081905550610e70838383610e75565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90611a69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90611afb565b60405180910390fd5b610f5e8383836110eb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb90611b8d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110d291906112c5565b60405180910390a36110e58484846110f0565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561112f578082015181840152602081019050611114565b60008484015250505050565b6000601f19601f8301169050919050565b6000611157826110f5565b6111618185611100565b9350611171818560208601611111565b61117a8161113b565b840191505092915050565b6000602082019050818103600083015261119f818461114c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111d7826111ac565b9050919050565b6111e7816111cc565b81146111f257600080fd5b50565b600081359050611204816111de565b92915050565b6000819050919050565b61121d8161120a565b811461122857600080fd5b50565b60008135905061123a81611214565b92915050565b60008060408385031215611257576112566111a7565b5b6000611265858286016111f5565b92505060206112768582860161122b565b9150509250929050565b60008115159050919050565b61129581611280565b82525050565b60006020820190506112b0600083018461128c565b92915050565b6112bf8161120a565b82525050565b60006020820190506112da60008301846112b6565b92915050565b6000806000606084860312156112f9576112f86111a7565b5b6000611307868287016111f5565b9350506020611318868287016111f5565b92505060406113298682870161122b565b9150509250925092565b600060ff82169050919050565b61134981611333565b82525050565b60006020820190506113646000830184611340565b92915050565b6000602082840312156113805761137f6111a7565b5b600061138e848285016111f5565b91505092915050565b6113a0816111cc565b82525050565b60006020820190506113bb6000830184611397565b92915050565b600080604083850312156113d8576113d76111a7565b5b60006113e6858286016111f5565b92505060206113f7858286016111f5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061144857607f821691505b60208210810361145b5761145a611401565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061149b8261120a565b91506114a68361120a565b92508282019050808211156114be576114bd611461565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611520602583611100565b915061152b826114c4565b604082019050919050565b6000602082019050818103600083015261154f81611513565b9050919050565b60006115618261120a565b915061156c8361120a565b925082820261157a8161120a565b9150828204841483151761159157611590611461565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006115d28261120a565b91506115dd8361120a565b9250826115ed576115ec611598565b5b828204905092915050565b60006116038261120a565b915061160e8361120a565b925082820390508181111561162657611625611461565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611688602483611100565b91506116938261162c565b604082019050919050565b600060208201905081810360008301526116b78161167b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061171a602283611100565b9150611725826116be565b604082019050919050565b600060208201905081810360008301526117498161170d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611786601d83611100565b915061179182611750565b602082019050919050565b600060208201905081810360008301526117b581611779565b9050919050565b60006dffffffffffffffffffffffffffff82169050919050565b6117df816117bc565b81146117ea57600080fd5b50565b6000815190506117fc816117d6565b92915050565b600063ffffffff82169050919050565b61181b81611802565b811461182657600080fd5b50565b60008151905061183881611812565b92915050565b600080600060608486031215611857576118566111a7565b5b6000611865868287016117ed565b9350506020611876868287016117ed565b925050604061188786828701611829565b9150509250925092565b6000815190506118a0816111de565b92915050565b6000602082840312156118bc576118bb6111a7565b5b60006118ca84828501611891565b91505092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061192f602183611100565b915061193a826118d3565b604082019050919050565b6000602082019050818103600083015261195e81611922565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006119c1602283611100565b91506119cc82611965565b604082019050919050565b600060208201905081810360008301526119f0816119b4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a53602583611100565b9150611a5e826119f7565b604082019050919050565b60006020820190508181036000830152611a8281611a46565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ae5602383611100565b9150611af082611a89565b604082019050919050565b60006020820190508181036000830152611b1481611ad8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b77602683611100565b9150611b8282611b1b565b604082019050919050565b60006020820190508181036000830152611ba681611b6a565b905091905056fea264697066735822122020d9b03aca3862b63b211f1065716ea4ace10d0cb458350c44c4cbf6799acd2964736f6c634300081100330000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a8aa1b3111610066578063a8aa1b3114610275578063a9059cbb14610293578063af14052c146102c3578063dd62ed3e146102cd576100ea565b806370a08231146101f757806395d89b4114610227578063a457c2d714610245576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a9578063486a7e6b146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fd565b6040516101049190611185565b60405180910390f35b61012760048036038101906101229190611240565b61038f565b604051610134919061129b565b60405180910390f35b6101456103b2565b60405161015291906112c5565b60405180910390f35b610175600480360381019061017091906112e0565b6103bc565b604051610182919061129b565b60405180910390f35b6101936103eb565b6040516101a0919061134f565b60405180910390f35b6101c360048036038101906101be9190611240565b6103f4565b6040516101d0919061129b565b60405180910390f35b6101e161042b565b6040516101ee91906112c5565b60405180910390f35b610211600480360381019061020c919061136a565b610431565b60405161021e91906112c5565b60405180910390f35b61022f610479565b60405161023c9190611185565b60405180910390f35b61025f600480360381019061025a9190611240565b61050b565b60405161026c919061129b565b60405180910390f35b61027d610582565b60405161028a91906113a6565b60405180910390f35b6102ad60048036038101906102a89190611240565b6105a8565b6040516102ba919061129b565b60405180910390f35b6102cb6105cb565b005b6102e760048036038101906102e291906113c1565b6106ce565b6040516102f491906112c5565b60405180910390f35b60606003805461030c90611430565b80601f016020809104026020016040519081016040528092919081815260200182805461033890611430565b80156103855780601f1061035a57610100808354040283529160200191610385565b820191906000526020600020905b81548152906001019060200180831161036857829003601f168201915b5050505050905090565b60008061039a610755565b90506103a781858561075d565b600191505092915050565b6000600254905090565b6000806103c7610755565b90506103d4858285610926565b6103df8585856109b2565b60019150509392505050565b60006012905090565b6000806103ff610755565b905061042081858561041185896106ce565b61041b9190611490565b61075d565b600191505092915050565b60065481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461048890611430565b80601f01602080910402602001604051908101604052809291908181526020018280546104b490611430565b80156105015780601f106104d657610100808354040283529160200191610501565b820191906000526020600020905b8154815290600101906020018083116104e457829003601f168201915b5050505050905090565b600080610516610755565b9050600061052482866106ce565b905083811015610569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056090611536565b60405180910390fd5b610576828686840361075d565b60019250505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806105b3610755565b90506105c08185856109b2565b600191505092915050565b6000612710601d6105da610a8e565b6105e49190611556565b6105ee91906115c7565b90506000600654905081811115610603578190505b61062f600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610c24565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561069957600080fd5b505af11580156106ad573d6000803e3d6000fd5b5050505080600660008282546106c391906115f8565b925050819055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c39061169e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361083b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083290611730565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161091991906112c5565b60405180910390a3505050565b600061093284846106ce565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109ac578181101561099e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109959061179c565b60405180910390fd5b6109ab848484840361075d565b5b50505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a1757610a12838383610df1565b610a89565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7c57610a77838383610e33565b610a88565b610a87838383610e75565b5b5b505050565b600080600080600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610b01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b25919061183e565b63ffffffff1692506dffffffffffffffffffffffffffff1692506dffffffffffffffffffffffffffff1692503073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf991906118a6565b73ffffffffffffffffffffffffffffffffffffffff1614610c1a5781610c1c565b825b935050505090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90611945565b60405180910390fd5b610c9f826000836110eb565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c906119d7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dd891906112c5565b60405180910390a3610dec836000846110f0565b505050565b612710600f82610e019190611556565b610e0b91906115c7565b60066000828254610e1c9190611490565b92505081905550610e2e838383610e75565b505050565b612710600f82610e439190611556565b610e4d91906115c7565b60066000828254610e5e9190611490565b92505081905550610e70838383610e75565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90611a69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90611afb565b60405180910390fd5b610f5e8383836110eb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb90611b8d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110d291906112c5565b60405180910390a36110e58484846110f0565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561112f578082015181840152602081019050611114565b60008484015250505050565b6000601f19601f8301169050919050565b6000611157826110f5565b6111618185611100565b9350611171818560208601611111565b61117a8161113b565b840191505092915050565b6000602082019050818103600083015261119f818461114c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111d7826111ac565b9050919050565b6111e7816111cc565b81146111f257600080fd5b50565b600081359050611204816111de565b92915050565b6000819050919050565b61121d8161120a565b811461122857600080fd5b50565b60008135905061123a81611214565b92915050565b60008060408385031215611257576112566111a7565b5b6000611265858286016111f5565b92505060206112768582860161122b565b9150509250929050565b60008115159050919050565b61129581611280565b82525050565b60006020820190506112b0600083018461128c565b92915050565b6112bf8161120a565b82525050565b60006020820190506112da60008301846112b6565b92915050565b6000806000606084860312156112f9576112f86111a7565b5b6000611307868287016111f5565b9350506020611318868287016111f5565b92505060406113298682870161122b565b9150509250925092565b600060ff82169050919050565b61134981611333565b82525050565b60006020820190506113646000830184611340565b92915050565b6000602082840312156113805761137f6111a7565b5b600061138e848285016111f5565b91505092915050565b6113a0816111cc565b82525050565b60006020820190506113bb6000830184611397565b92915050565b600080604083850312156113d8576113d76111a7565b5b60006113e6858286016111f5565b92505060206113f7858286016111f5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061144857607f821691505b60208210810361145b5761145a611401565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061149b8261120a565b91506114a68361120a565b92508282019050808211156114be576114bd611461565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611520602583611100565b915061152b826114c4565b604082019050919050565b6000602082019050818103600083015261154f81611513565b9050919050565b60006115618261120a565b915061156c8361120a565b925082820261157a8161120a565b9150828204841483151761159157611590611461565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006115d28261120a565b91506115dd8361120a565b9250826115ed576115ec611598565b5b828204905092915050565b60006116038261120a565b915061160e8361120a565b925082820390508181111561162657611625611461565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611688602483611100565b91506116938261162c565b604082019050919050565b600060208201905081810360008301526116b78161167b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061171a602283611100565b9150611725826116be565b604082019050919050565b600060208201905081810360008301526117498161170d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611786601d83611100565b915061179182611750565b602082019050919050565b600060208201905081810360008301526117b581611779565b9050919050565b60006dffffffffffffffffffffffffffff82169050919050565b6117df816117bc565b81146117ea57600080fd5b50565b6000815190506117fc816117d6565b92915050565b600063ffffffff82169050919050565b61181b81611802565b811461182657600080fd5b50565b60008151905061183881611812565b92915050565b600080600060608486031215611857576118566111a7565b5b6000611865868287016117ed565b9350506020611876868287016117ed565b925050604061188786828701611829565b9150509250925092565b6000815190506118a0816111de565b92915050565b6000602082840312156118bc576118bb6111a7565b5b60006118ca84828501611891565b91505092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061192f602183611100565b915061193a826118d3565b604082019050919050565b6000602082019050818103600083015261195e81611922565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006119c1602283611100565b91506119cc82611965565b604082019050919050565b600060208201905081810360008301526119f0816119b4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a53602583611100565b9150611a5e826119f7565b604082019050919050565b60006020820190508181036000830152611a8281611a46565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ae5602383611100565b9150611af082611a89565b604082019050919050565b60006020820190508181036000830152611b1481611ad8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b77602683611100565b9150611b8282611b1b565b604082019050919050565b60006020820190508181036000830152611ba681611b6a565b905091905056fea264697066735822122020d9b03aca3862b63b211f1065716ea4ace10d0cb458350c44c4cbf6799acd2964736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
-----Decoded View---------------
Arg [0] : _factory (address): 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f
Arg [1] : _pairToken (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f
Arg [1] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode Sourcemap
21321:1660:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6754:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9105:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7874:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9886:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7716:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10590:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21381:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8045:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6973:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11331:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21355:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8378:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22431:290;;;:::i;:::-;;8634:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6754:100;6808:13;6841:5;6834:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6754:100;:::o;9105:201::-;9188:4;9205:13;9221:12;:10;:12::i;:::-;9205:28;;9244:32;9253:5;9260:7;9269:6;9244:8;:32::i;:::-;9294:4;9287:11;;;9105:201;;;;:::o;7874:108::-;7935:7;7962:12;;7955:19;;7874:108;:::o;9886:295::-;10017:4;10034:15;10052:12;:10;:12::i;:::-;10034:30;;10075:38;10091:4;10097:7;10106:6;10075:15;:38::i;:::-;10124:27;10134:4;10140:2;10144:6;10124:9;:27::i;:::-;10169:4;10162:11;;;9886:295;;;;;:::o;7716:93::-;7774:5;7799:2;7792:9;;7716:93;:::o;10590:238::-;10678:4;10695:13;10711:12;:10;:12::i;:::-;10695:28;;10734:64;10743:5;10750:7;10787:10;10759:25;10769:5;10776:7;10759:9;:25::i;:::-;:38;;;;:::i;:::-;10734:8;:64::i;:::-;10816:4;10809:11;;;10590:238;;;;:::o;21381:22::-;;;;:::o;8045:127::-;8119:7;8146:9;:18;8156:7;8146:18;;;;;;;;;;;;;;;;8139:25;;8045:127;;;:::o;6973:104::-;7029:13;7062:7;7055:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6973:104;:::o;11331:436::-;11424:4;11441:13;11457:12;:10;:12::i;:::-;11441:28;;11480:24;11507:25;11517:5;11524:7;11507:9;:25::i;:::-;11480:52;;11571:15;11551:16;:35;;11543:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11664:60;11673:5;11680:7;11708:15;11689:16;:34;11664:8;:60::i;:::-;11755:4;11748:11;;;;11331:436;;;;:::o;21355:19::-;;;;;;;;;;;;;:::o;8378:193::-;8457:4;8474:13;8490:12;:10;:12::i;:::-;8474:28;;8513;8523:5;8530:2;8534:6;8513:9;:28::i;:::-;8559:4;8552:11;;;8378:193;;;;:::o;22431:290::-;22468:10;22504:5;22499:2;22481:15;:13;:15::i;:::-;:20;;;;:::i;:::-;:28;;;;:::i;:::-;22468:41;;22520:11;22534:10;;22520:24;;22567:5;22558:6;:14;22555:60;;;22598:5;22589:14;;22555:60;22625:19;22631:4;;;;;;;;;;;22637:6;22625:5;:19::i;:::-;22670:4;;;;;;;;;;;22655:25;;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22707:6;22693:10;;:20;;;;;;;:::i;:::-;;;;;;;;22457:264;;22431:290::o;8634:151::-;8723:7;8750:11;:18;8762:5;8750:18;;;;;;;;;;;;;;;:27;8769:7;8750:27;;;;;;;;;;;;;;;;8743:34;;8634:151;;;;:::o;753:98::-;806:7;833:10;826:17;;753:98;:::o;15358:380::-;15511:1;15494:19;;:5;:19;;;15486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15592:1;15573:21;;:7;:21;;;15565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15676:6;15646:11;:18;15658:5;15646:18;;;;;;;;;;;;;;;:27;15665:7;15646:27;;;;;;;;;;;;;;;:36;;;;15714:7;15698:32;;15707:5;15698:32;;;15723:6;15698:32;;;;;;:::i;:::-;;;;;;;;15358:380;;;:::o;16029:453::-;16164:24;16191:25;16201:5;16208:7;16191:9;:25::i;:::-;16164:52;;16251:17;16231:16;:37;16227:248;;16313:6;16293:16;:26;;16285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16397:51;16406:5;16413:7;16441:6;16422:16;:25;16397:8;:51::i;:::-;16227:248;16153:329;16029:453;;;:::o;21708:360::-;21809:4;;;;;;;;;;;21801:12;;:4;:12;;;21798:263;;21849:22;21854:4;21860:2;21864:6;21849:4;:22::i;:::-;21798:263;;;21898:4;;;;;;;;;;;21891:11;;:2;:11;;;21888:173;;21939:23;21945:4;21951:2;21955:6;21939:5;:23::i;:::-;21888:173;;;22016:33;22032:4;22038:2;22042:6;22016:15;:33::i;:::-;21888:173;21798:263;21708:360;;;:::o;22731:231::-;22779:4;22797:12;22811;22825:7;22851:4;;;;;;;;;;;22836:32;;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22796:74;;;;;;;;;;;;22929:4;22888:46;;22903:4;;;;;;;;;;;22888:27;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:46;;;:66;;22947:7;22888:66;;;22937:7;22888:66;22881:73;;;;;22731:231;:::o;14245:675::-;14348:1;14329:21;;:7;:21;;;14321:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14401:49;14422:7;14439:1;14443:6;14401:20;:49::i;:::-;14463:22;14488:9;:18;14498:7;14488:18;;;;;;;;;;;;;;;;14463:43;;14543:6;14525:14;:24;;14517:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14662:6;14645:14;:23;14624:9;:18;14634:7;14624:18;;;;;;;;;;;;;;;:44;;;;14779:6;14763:12;;:22;;;;;;;;;;;14840:1;14814:37;;14823:7;14814:37;;;14844:6;14814:37;;;;;;:::i;:::-;;;;;;;;14864:48;14884:7;14901:1;14905:6;14864:19;:48::i;:::-;14310:610;14245:675;;:::o;22076:175::-;22184:5;22179:2;22170:6;:11;;;;:::i;:::-;:19;;;;:::i;:::-;22156:10;;:33;;;;;;;:::i;:::-;;;;;;;;22200;22216:4;22222:2;22226:6;22200:15;:33::i;:::-;22076:175;;;:::o;22259:164::-;22366:5;22361:2;22352:6;:11;;;;:::i;:::-;:19;;;;:::i;:::-;22338:10;;:33;;;;;;;:::i;:::-;;;;;;;;22382;22398:4;22404:2;22408:6;22382:15;:33::i;:::-;22259:164;;;:::o;12237:840::-;12384:1;12368:18;;:4;:18;;;12360:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12461:1;12447:16;;:2;:16;;;12439:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12516:38;12537:4;12543:2;12547:6;12516:20;:38::i;:::-;12567:19;12589:9;:15;12599:4;12589:15;;;;;;;;;;;;;;;;12567:37;;12638:6;12623:11;:21;;12615:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12755:6;12741:11;:20;12723:9;:15;12733:4;12723:15;;;;;;;;;;;;;;;:38;;;;12958:6;12941:9;:13;12951:2;12941:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13008:2;12993:26;;13002:4;12993:26;;;13012:6;12993:26;;;;;;:::i;:::-;;;;;;;;13032:37;13052:4;13058:2;13062:6;13032:19;:37::i;:::-;12349:728;12237:840;;;:::o;17082:125::-;;;;:::o;17811:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:224::-;7055:34;7051:1;7043:6;7039:14;7032:58;7124:7;7119:2;7111:6;7107:15;7100:32;6915:224;:::o;7145:366::-;7287:3;7308:67;7372:2;7367:3;7308:67;:::i;:::-;7301:74;;7384:93;7473:3;7384:93;:::i;:::-;7502:2;7497:3;7493:12;7486:19;;7145:366;;;:::o;7517:419::-;7683:4;7721:2;7710:9;7706:18;7698:26;;7770:9;7764:4;7760:20;7756:1;7745:9;7741:17;7734:47;7798:131;7924:4;7798:131;:::i;:::-;7790:139;;7517:419;;;:::o;7942:410::-;7982:7;8005:20;8023:1;8005:20;:::i;:::-;8000:25;;8039:20;8057:1;8039:20;:::i;:::-;8034:25;;8094:1;8091;8087:9;8116:30;8134:11;8116:30;:::i;:::-;8105:41;;8295:1;8286:7;8282:15;8279:1;8276:22;8256:1;8249:9;8229:83;8206:139;;8325:18;;:::i;:::-;8206:139;7990:362;7942:410;;;;:::o;8358:180::-;8406:77;8403:1;8396:88;8503:4;8500:1;8493:15;8527:4;8524:1;8517:15;8544:185;8584:1;8601:20;8619:1;8601:20;:::i;:::-;8596:25;;8635:20;8653:1;8635:20;:::i;:::-;8630:25;;8674:1;8664:35;;8679:18;;:::i;:::-;8664:35;8721:1;8718;8714:9;8709:14;;8544:185;;;;:::o;8735:194::-;8775:4;8795:20;8813:1;8795:20;:::i;:::-;8790:25;;8829:20;8847:1;8829:20;:::i;:::-;8824:25;;8873:1;8870;8866:9;8858:17;;8897:1;8891:4;8888:11;8885:37;;;8902:18;;:::i;:::-;8885:37;8735:194;;;;:::o;8935:223::-;9075:34;9071:1;9063:6;9059:14;9052:58;9144:6;9139:2;9131:6;9127:15;9120:31;8935:223;:::o;9164:366::-;9306:3;9327:67;9391:2;9386:3;9327:67;:::i;:::-;9320:74;;9403:93;9492:3;9403:93;:::i;:::-;9521:2;9516:3;9512:12;9505:19;;9164:366;;;:::o;9536:419::-;9702:4;9740:2;9729:9;9725:18;9717:26;;9789:9;9783:4;9779:20;9775:1;9764:9;9760:17;9753:47;9817:131;9943:4;9817:131;:::i;:::-;9809:139;;9536:419;;;:::o;9961:221::-;10101:34;10097:1;10089:6;10085:14;10078:58;10170:4;10165:2;10157:6;10153:15;10146:29;9961:221;:::o;10188:366::-;10330:3;10351:67;10415:2;10410:3;10351:67;:::i;:::-;10344:74;;10427:93;10516:3;10427:93;:::i;:::-;10545:2;10540:3;10536:12;10529:19;;10188:366;;;:::o;10560:419::-;10726:4;10764:2;10753:9;10749:18;10741:26;;10813:9;10807:4;10803:20;10799:1;10788:9;10784:17;10777:47;10841:131;10967:4;10841:131;:::i;:::-;10833:139;;10560:419;;;:::o;10985:179::-;11125:31;11121:1;11113:6;11109:14;11102:55;10985:179;:::o;11170:366::-;11312:3;11333:67;11397:2;11392:3;11333:67;:::i;:::-;11326:74;;11409:93;11498:3;11409:93;:::i;:::-;11527:2;11522:3;11518:12;11511:19;;11170:366;;;:::o;11542:419::-;11708:4;11746:2;11735:9;11731:18;11723:26;;11795:9;11789:4;11785:20;11781:1;11770:9;11766:17;11759:47;11823:131;11949:4;11823:131;:::i;:::-;11815:139;;11542:419;;;:::o;11967:114::-;12004:7;12044:30;12037:5;12033:42;12022:53;;11967:114;;;:::o;12087:122::-;12160:24;12178:5;12160:24;:::i;:::-;12153:5;12150:35;12140:63;;12199:1;12196;12189:12;12140:63;12087:122;:::o;12215:143::-;12272:5;12303:6;12297:13;12288:22;;12319:33;12346:5;12319:33;:::i;:::-;12215:143;;;;:::o;12364:93::-;12400:7;12440:10;12433:5;12429:22;12418:33;;12364:93;;;:::o;12463:120::-;12535:23;12552:5;12535:23;:::i;:::-;12528:5;12525:34;12515:62;;12573:1;12570;12563:12;12515:62;12463:120;:::o;12589:141::-;12645:5;12676:6;12670:13;12661:22;;12692:32;12718:5;12692:32;:::i;:::-;12589:141;;;;:::o;12736:661::-;12823:6;12831;12839;12888:2;12876:9;12867:7;12863:23;12859:32;12856:119;;;12894:79;;:::i;:::-;12856:119;13014:1;13039:64;13095:7;13086:6;13075:9;13071:22;13039:64;:::i;:::-;13029:74;;12985:128;13152:2;13178:64;13234:7;13225:6;13214:9;13210:22;13178:64;:::i;:::-;13168:74;;13123:129;13291:2;13317:63;13372:7;13363:6;13352:9;13348:22;13317:63;:::i;:::-;13307:73;;13262:128;12736:661;;;;;:::o;13403:143::-;13460:5;13491:6;13485:13;13476:22;;13507:33;13534:5;13507:33;:::i;:::-;13403:143;;;;:::o;13552:351::-;13622:6;13671:2;13659:9;13650:7;13646:23;13642:32;13639:119;;;13677:79;;:::i;:::-;13639:119;13797:1;13822:64;13878:7;13869:6;13858:9;13854:22;13822:64;:::i;:::-;13812:74;;13768:128;13552:351;;;;:::o;13909:220::-;14049:34;14045:1;14037:6;14033:14;14026:58;14118:3;14113:2;14105:6;14101:15;14094:28;13909:220;:::o;14135:366::-;14277:3;14298:67;14362:2;14357:3;14298:67;:::i;:::-;14291:74;;14374:93;14463:3;14374:93;:::i;:::-;14492:2;14487:3;14483:12;14476:19;;14135:366;;;:::o;14507:419::-;14673:4;14711:2;14700:9;14696:18;14688:26;;14760:9;14754:4;14750:20;14746:1;14735:9;14731:17;14724:47;14788:131;14914:4;14788:131;:::i;:::-;14780:139;;14507:419;;;:::o;14932:221::-;15072:34;15068:1;15060:6;15056:14;15049:58;15141:4;15136:2;15128:6;15124:15;15117:29;14932:221;:::o;15159:366::-;15301:3;15322:67;15386:2;15381:3;15322:67;:::i;:::-;15315:74;;15398:93;15487:3;15398:93;:::i;:::-;15516:2;15511:3;15507:12;15500:19;;15159:366;;;:::o;15531:419::-;15697:4;15735:2;15724:9;15720:18;15712:26;;15784:9;15778:4;15774:20;15770:1;15759:9;15755:17;15748:47;15812:131;15938:4;15812:131;:::i;:::-;15804:139;;15531:419;;;:::o;15956:224::-;16096:34;16092:1;16084:6;16080:14;16073:58;16165:7;16160:2;16152:6;16148:15;16141:32;15956:224;:::o;16186:366::-;16328:3;16349:67;16413:2;16408:3;16349:67;:::i;:::-;16342:74;;16425:93;16514:3;16425:93;:::i;:::-;16543:2;16538:3;16534:12;16527:19;;16186:366;;;:::o;16558:419::-;16724:4;16762:2;16751:9;16747:18;16739:26;;16811:9;16805:4;16801:20;16797:1;16786:9;16782:17;16775:47;16839:131;16965:4;16839:131;:::i;:::-;16831:139;;16558:419;;;:::o;16983:222::-;17123:34;17119:1;17111:6;17107:14;17100:58;17192:5;17187:2;17179:6;17175:15;17168:30;16983:222;:::o;17211:366::-;17353:3;17374:67;17438:2;17433:3;17374:67;:::i;:::-;17367:74;;17450:93;17539:3;17450:93;:::i;:::-;17568:2;17563:3;17559:12;17552:19;;17211:366;;;:::o;17583:419::-;17749:4;17787:2;17776:9;17772:18;17764:26;;17836:9;17830:4;17826:20;17822:1;17811:9;17807:17;17800:47;17864:131;17990:4;17864:131;:::i;:::-;17856:139;;17583:419;;;:::o;18008:225::-;18148:34;18144:1;18136:6;18132:14;18125:58;18217:8;18212:2;18204:6;18200:15;18193:33;18008:225;:::o;18239:366::-;18381:3;18402:67;18466:2;18461:3;18402:67;:::i;:::-;18395:74;;18478:93;18567:3;18478:93;:::i;:::-;18596:2;18591:3;18587:12;18580:19;;18239:366;;;:::o;18611:419::-;18777:4;18815:2;18804:9;18800:18;18792:26;;18864:9;18858:4;18854:20;18850:1;18839:9;18835:17;18828:47;18892:131;19018:4;18892:131;:::i;:::-;18884:139;;18611:419;;;:::o
Swarm Source
ipfs://20d9b03aca3862b63b211f1065716ea4ace10d0cb458350c44c4cbf6799acd29
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.