Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 YEJI
Holders
339
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
141,532.794737597257560603 YEJIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
YEJI
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity Multiple files format)
/* Kim Yeji's got that main character energy, making even Yusuf Dikeç's chill vibe look like a supporting role. WEBSITE: https://yejierc20.xyz TELEGRAM: https://t.me/YeJi_portal TWITTER: https://x.com/yejithecoolest */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "./Ownable.sol"; import "./ERC20.sol"; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } interface IUniswapV2Router02 is IUniswapV2Router01 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract YEJI is ERC20, Ownable { uint256 private _totalSupply = 1 * 10**9 * 10**18; bool private publicSale = false; mapping (address => bool) private whitelist; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; mapping (address => bool) private automatedMarketMakerPairs; constructor() ERC20("Kim Yeji", "YEJI") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); setWhitelist(); _mint(msg.sender, _totalSupply); } function setWhitelist() internal { } function enablePublicSale() external onlyOwner() { publicSale = true; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The uniswap pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) { if (automatedMarketMakerPairs[from] && !publicSale) { require(whitelist[to], "No public sale."); } } super._transfer(from, to, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./IERC20Metadata.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 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"enablePublicSale","outputs":[],"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":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c06040526b033b2e3c9fd0803ce80000006006555f60075f6101000a81548160ff021916908315150217905550348015610038575f80fd5b506040518060400160405280600881526020017f4b696d2059656a690000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f59454a490000000000000000000000000000000000000000000000000000000081525081600390816100b491906107b0565b5080600490816100c491906107b0565b5050506100e36100d86102ee60201b60201c565b6102f560201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610178573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061019c91906108dd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610201573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061022591906108dd565b6040518363ffffffff1660e01b8152600401610242929190610917565b6020604051808303815f875af115801561025e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061028291906108dd565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506102c860a05160016103b860201b60201c565b6102d661041060201b60201c565b6102e83360065461041260201b60201c565b50610a3e565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047790610998565b60405180910390fd5b6104915f838361056c60201b60201c565b8060025f8282546104a291906109e3565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161054f9190610a25565b60405180910390a36105685f838361057160201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806105f157607f821691505b602082108103610604576106036105ad565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026106667fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261062b565b610670868361062b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6106b46106af6106aa84610688565b610691565b610688565b9050919050565b5f819050919050565b6106cd8361069a565b6106e16106d9826106bb565b848454610637565b825550505050565b5f90565b6106f56106e9565b6107008184846106c4565b505050565b5b81811015610723576107185f826106ed565b600181019050610706565b5050565b601f821115610768576107398161060a565b6107428461061c565b81016020851015610751578190505b61076561075d8561061c565b830182610705565b50505b505050565b5f82821c905092915050565b5f6107885f198460080261076d565b1980831691505092915050565b5f6107a08383610779565b9150826002028217905092915050565b6107b982610576565b67ffffffffffffffff8111156107d2576107d1610580565b5b6107dc82546105da565b6107e7828285610727565b5f60209050601f831160018114610818575f8415610806578287015190505b6108108582610795565b865550610877565b601f1984166108268661060a565b5f5b8281101561084d57848901518255600182019150602085019450602081019050610828565b8683101561086a5784890151610866601f891682610779565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6108ac82610883565b9050919050565b6108bc816108a2565b81146108c6575f80fd5b50565b5f815190506108d7816108b3565b92915050565b5f602082840312156108f2576108f161087f565b5b5f6108ff848285016108c9565b91505092915050565b610911816108a2565b82525050565b5f60408201905061092a5f830185610908565b6109376020830184610908565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610982601f8361093e565b915061098d8261094e565b602082019050919050565b5f6020820190508181035f8301526109af81610976565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6109ed82610688565b91506109f883610688565b9250828201905080821115610a1057610a0f6109b6565b5b92915050565b610a1f81610688565b82525050565b5f602082019050610a385f830184610a16565b92915050565b60805160a051611c61610a665f395f81816104f7015261063301525f61043a0152611c615ff3fe608060405234801561000f575f80fd5b5060043610610114575f3560e01c806370a08231116100a05780639a7a23d61161006f5780639a7a23d6146102be578063a457c2d7146102da578063a9059cbb1461030a578063dd62ed3e1461033a578063f2fde38b1461036a57610114565b806370a0823114610248578063715018a6146102785780638da5cb5b1461028257806395d89b41146102a057610114565b80632316b4da116100e75780632316b4da146101a257806323b872dd146101ac578063313ce567146101dc57806339509351146101fa57806349bd5a5e1461022a57610114565b806306fdde0314610118578063095ea7b3146101365780631694505e1461016657806318160ddd14610184575b5f80fd5b610120610386565b60405161012d91906111d7565b60405180910390f35b610150600480360381019061014b9190611288565b610416565b60405161015d91906112e0565b60405180910390f35b61016e610438565b60405161017b9190611354565b60405180910390f35b61018c61045c565b604051610199919061137c565b60405180910390f35b6101aa610465565b005b6101c660048036038101906101c19190611395565b610489565b6040516101d391906112e0565b60405180910390f35b6101e46104b7565b6040516101f19190611400565b60405180910390f35b610214600480360381019061020f9190611288565b6104bf565b60405161022191906112e0565b60405180910390f35b6102326104f5565b60405161023f9190611428565b60405180910390f35b610262600480360381019061025d9190611441565b610519565b60405161026f919061137c565b60405180910390f35b61028061055e565b005b61028a610571565b6040516102979190611428565b60405180910390f35b6102a8610599565b6040516102b591906111d7565b60405180910390f35b6102d860048036038101906102d39190611496565b610629565b005b6102f460048036038101906102ef9190611288565b6106cd565b60405161030191906112e0565b60405180910390f35b610324600480360381019061031f9190611288565b610742565b60405161033191906112e0565b60405180910390f35b610354600480360381019061034f91906114d4565b610764565b604051610361919061137c565b60405180910390f35b610384600480360381019061037f9190611441565b6107e6565b005b6060600380546103959061153f565b80601f01602080910402602001604051908101604052809291908181526020018280546103c19061153f565b801561040c5780601f106103e35761010080835404028352916020019161040c565b820191905f5260205f20905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b5f80610420610868565b905061042d81858561086f565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b61046d610a32565b600160075f6101000a81548160ff021916908315150217905550565b5f80610493610868565b90506104a0858285610ab0565b6104ab858585610b3b565b60019150509392505050565b5f6012905090565b5f806104c9610868565b90506104ea8185856104db8589610764565b6104e5919061159c565b61086f565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610566610a32565b61056f5f610dd6565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105a89061153f565b80601f01602080910402602001604051908101604052809291908181526020018280546105d49061153f565b801561061f5780601f106105f65761010080835404028352916020019161061f565b820191905f5260205f20905b81548152906001019060200180831161060257829003601f168201915b5050505050905090565b610631610a32565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b690611665565b60405180910390fd5b6106c98282610e99565b5050565b5f806106d7610868565b90505f6106e48286610764565b905083811015610729576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610720906116f3565b60405180910390fd5b610736828686840361086f565b60019250505092915050565b5f8061074c610868565b9050610759818585610b3b565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107ee610a32565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361085c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085390611781565b60405180910390fd5b61086581610dd6565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d49061180f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361094b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109429061189d565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a25919061137c565b60405180910390a3505050565b610a3a610868565b73ffffffffffffffffffffffffffffffffffffffff16610a58610571565b73ffffffffffffffffffffffffffffffffffffffff1614610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa590611905565b60405180910390fd5b565b5f610abb8484610764565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b355781811015610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e9061196d565b60405180910390fd5b610b34848484840361086f565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba0906119fb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e90611a89565b60405180910390fd5b5f8111610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5090611b17565b60405180910390fd5b610c61610571565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ccf5750610c9f610571565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610dc65760095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015610d36575060075f9054906101000a900460ff16155b15610dc55760085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90611b7f565b60405180910390fd5b5b5b610dd1838383610ef1565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f56906119fb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490611a89565b60405180910390fd5b610fd883838361115d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290611c0d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611144919061137c565b60405180910390a3611157848484611162565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6111a982611167565b6111b38185611171565b93506111c3818560208601611181565b6111cc8161118f565b840191505092915050565b5f6020820190508181035f8301526111ef818461119f565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611224826111fb565b9050919050565b6112348161121a565b811461123e575f80fd5b50565b5f8135905061124f8161122b565b92915050565b5f819050919050565b61126781611255565b8114611271575f80fd5b50565b5f813590506112828161125e565b92915050565b5f806040838503121561129e5761129d6111f7565b5b5f6112ab85828601611241565b92505060206112bc85828601611274565b9150509250929050565b5f8115159050919050565b6112da816112c6565b82525050565b5f6020820190506112f35f8301846112d1565b92915050565b5f819050919050565b5f61131c611317611312846111fb565b6112f9565b6111fb565b9050919050565b5f61132d82611302565b9050919050565b5f61133e82611323565b9050919050565b61134e81611334565b82525050565b5f6020820190506113675f830184611345565b92915050565b61137681611255565b82525050565b5f60208201905061138f5f83018461136d565b92915050565b5f805f606084860312156113ac576113ab6111f7565b5b5f6113b986828701611241565b93505060206113ca86828701611241565b92505060406113db86828701611274565b9150509250925092565b5f60ff82169050919050565b6113fa816113e5565b82525050565b5f6020820190506114135f8301846113f1565b92915050565b6114228161121a565b82525050565b5f60208201905061143b5f830184611419565b92915050565b5f60208284031215611456576114556111f7565b5b5f61146384828501611241565b91505092915050565b611475816112c6565b811461147f575f80fd5b50565b5f813590506114908161146c565b92915050565b5f80604083850312156114ac576114ab6111f7565b5b5f6114b985828601611241565b92505060206114ca85828601611482565b9150509250929050565b5f80604083850312156114ea576114e96111f7565b5b5f6114f785828601611241565b925050602061150885828601611241565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061155657607f821691505b60208210810361156957611568611512565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6115a682611255565b91506115b183611255565b92508282019050808211156115c9576115c861156f565b5b92915050565b7f54686520756e697377617020706169722063616e6e6f742062652072656d6f765f8201527f65642066726f6d206175746f6d617465644d61726b65744d616b65725061697260208201527f7300000000000000000000000000000000000000000000000000000000000000604082015250565b5f61164f604183611171565b915061165a826115cf565b606082019050919050565b5f6020820190508181035f83015261167c81611643565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6116dd602583611171565b91506116e882611683565b604082019050919050565b5f6020820190508181035f83015261170a816116d1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61176b602683611171565b915061177682611711565b604082019050919050565b5f6020820190508181035f8301526117988161175f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6117f9602483611171565b91506118048261179f565b604082019050919050565b5f6020820190508181035f830152611826816117ed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611887602283611171565b91506118928261182d565b604082019050919050565b5f6020820190508181035f8301526118b48161187b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6118ef602083611171565b91506118fa826118bb565b602082019050919050565b5f6020820190508181035f83015261191c816118e3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611957601d83611171565b915061196282611923565b602082019050919050565b5f6020820190508181035f8301526119848161194b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6119e5602583611171565b91506119f08261198b565b604082019050919050565b5f6020820190508181035f830152611a12816119d9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611a73602383611171565b9150611a7e82611a19565b604082019050919050565b5f6020820190508181035f830152611aa081611a67565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f611b01602983611171565b9150611b0c82611aa7565b604082019050919050565b5f6020820190508181035f830152611b2e81611af5565b9050919050565b7f4e6f207075626c69632073616c652e00000000000000000000000000000000005f82015250565b5f611b69600f83611171565b9150611b7482611b35565b602082019050919050565b5f6020820190508181035f830152611b9681611b5d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611bf7602683611171565b9150611c0282611b9d565b604082019050919050565b5f6020820190508181035f830152611c2481611beb565b905091905056fea264697066735822122080e31efe3c5f212b5443e287904686bef86606e190654755d4f77ad00cfe77b664736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610114575f3560e01c806370a08231116100a05780639a7a23d61161006f5780639a7a23d6146102be578063a457c2d7146102da578063a9059cbb1461030a578063dd62ed3e1461033a578063f2fde38b1461036a57610114565b806370a0823114610248578063715018a6146102785780638da5cb5b1461028257806395d89b41146102a057610114565b80632316b4da116100e75780632316b4da146101a257806323b872dd146101ac578063313ce567146101dc57806339509351146101fa57806349bd5a5e1461022a57610114565b806306fdde0314610118578063095ea7b3146101365780631694505e1461016657806318160ddd14610184575b5f80fd5b610120610386565b60405161012d91906111d7565b60405180910390f35b610150600480360381019061014b9190611288565b610416565b60405161015d91906112e0565b60405180910390f35b61016e610438565b60405161017b9190611354565b60405180910390f35b61018c61045c565b604051610199919061137c565b60405180910390f35b6101aa610465565b005b6101c660048036038101906101c19190611395565b610489565b6040516101d391906112e0565b60405180910390f35b6101e46104b7565b6040516101f19190611400565b60405180910390f35b610214600480360381019061020f9190611288565b6104bf565b60405161022191906112e0565b60405180910390f35b6102326104f5565b60405161023f9190611428565b60405180910390f35b610262600480360381019061025d9190611441565b610519565b60405161026f919061137c565b60405180910390f35b61028061055e565b005b61028a610571565b6040516102979190611428565b60405180910390f35b6102a8610599565b6040516102b591906111d7565b60405180910390f35b6102d860048036038101906102d39190611496565b610629565b005b6102f460048036038101906102ef9190611288565b6106cd565b60405161030191906112e0565b60405180910390f35b610324600480360381019061031f9190611288565b610742565b60405161033191906112e0565b60405180910390f35b610354600480360381019061034f91906114d4565b610764565b604051610361919061137c565b60405180910390f35b610384600480360381019061037f9190611441565b6107e6565b005b6060600380546103959061153f565b80601f01602080910402602001604051908101604052809291908181526020018280546103c19061153f565b801561040c5780601f106103e35761010080835404028352916020019161040c565b820191905f5260205f20905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b5f80610420610868565b905061042d81858561086f565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b61046d610a32565b600160075f6101000a81548160ff021916908315150217905550565b5f80610493610868565b90506104a0858285610ab0565b6104ab858585610b3b565b60019150509392505050565b5f6012905090565b5f806104c9610868565b90506104ea8185856104db8589610764565b6104e5919061159c565b61086f565b600191505092915050565b7f0000000000000000000000008dd59e9d0223b54f8a2a90fbab8f8a6099159df081565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610566610a32565b61056f5f610dd6565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105a89061153f565b80601f01602080910402602001604051908101604052809291908181526020018280546105d49061153f565b801561061f5780601f106105f65761010080835404028352916020019161061f565b820191905f5260205f20905b81548152906001019060200180831161060257829003601f168201915b5050505050905090565b610631610a32565b7f0000000000000000000000008dd59e9d0223b54f8a2a90fbab8f8a6099159df073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b690611665565b60405180910390fd5b6106c98282610e99565b5050565b5f806106d7610868565b90505f6106e48286610764565b905083811015610729576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610720906116f3565b60405180910390fd5b610736828686840361086f565b60019250505092915050565b5f8061074c610868565b9050610759818585610b3b565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107ee610a32565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361085c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085390611781565b60405180910390fd5b61086581610dd6565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d49061180f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361094b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109429061189d565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a25919061137c565b60405180910390a3505050565b610a3a610868565b73ffffffffffffffffffffffffffffffffffffffff16610a58610571565b73ffffffffffffffffffffffffffffffffffffffff1614610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa590611905565b60405180910390fd5b565b5f610abb8484610764565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b355781811015610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e9061196d565b60405180910390fd5b610b34848484840361086f565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba0906119fb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e90611a89565b60405180910390fd5b5f8111610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5090611b17565b60405180910390fd5b610c61610571565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ccf5750610c9f610571565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610dc65760095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015610d36575060075f9054906101000a900460ff16155b15610dc55760085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90611b7f565b60405180910390fd5b5b5b610dd1838383610ef1565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f56906119fb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490611a89565b60405180910390fd5b610fd883838361115d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290611c0d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611144919061137c565b60405180910390a3611157848484611162565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6111a982611167565b6111b38185611171565b93506111c3818560208601611181565b6111cc8161118f565b840191505092915050565b5f6020820190508181035f8301526111ef818461119f565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611224826111fb565b9050919050565b6112348161121a565b811461123e575f80fd5b50565b5f8135905061124f8161122b565b92915050565b5f819050919050565b61126781611255565b8114611271575f80fd5b50565b5f813590506112828161125e565b92915050565b5f806040838503121561129e5761129d6111f7565b5b5f6112ab85828601611241565b92505060206112bc85828601611274565b9150509250929050565b5f8115159050919050565b6112da816112c6565b82525050565b5f6020820190506112f35f8301846112d1565b92915050565b5f819050919050565b5f61131c611317611312846111fb565b6112f9565b6111fb565b9050919050565b5f61132d82611302565b9050919050565b5f61133e82611323565b9050919050565b61134e81611334565b82525050565b5f6020820190506113675f830184611345565b92915050565b61137681611255565b82525050565b5f60208201905061138f5f83018461136d565b92915050565b5f805f606084860312156113ac576113ab6111f7565b5b5f6113b986828701611241565b93505060206113ca86828701611241565b92505060406113db86828701611274565b9150509250925092565b5f60ff82169050919050565b6113fa816113e5565b82525050565b5f6020820190506114135f8301846113f1565b92915050565b6114228161121a565b82525050565b5f60208201905061143b5f830184611419565b92915050565b5f60208284031215611456576114556111f7565b5b5f61146384828501611241565b91505092915050565b611475816112c6565b811461147f575f80fd5b50565b5f813590506114908161146c565b92915050565b5f80604083850312156114ac576114ab6111f7565b5b5f6114b985828601611241565b92505060206114ca85828601611482565b9150509250929050565b5f80604083850312156114ea576114e96111f7565b5b5f6114f785828601611241565b925050602061150885828601611241565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061155657607f821691505b60208210810361156957611568611512565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6115a682611255565b91506115b183611255565b92508282019050808211156115c9576115c861156f565b5b92915050565b7f54686520756e697377617020706169722063616e6e6f742062652072656d6f765f8201527f65642066726f6d206175746f6d617465644d61726b65744d616b65725061697260208201527f7300000000000000000000000000000000000000000000000000000000000000604082015250565b5f61164f604183611171565b915061165a826115cf565b606082019050919050565b5f6020820190508181035f83015261167c81611643565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6116dd602583611171565b91506116e882611683565b604082019050919050565b5f6020820190508181035f83015261170a816116d1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61176b602683611171565b915061177682611711565b604082019050919050565b5f6020820190508181035f8301526117988161175f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6117f9602483611171565b91506118048261179f565b604082019050919050565b5f6020820190508181035f830152611826816117ed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611887602283611171565b91506118928261182d565b604082019050919050565b5f6020820190508181035f8301526118b48161187b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6118ef602083611171565b91506118fa826118bb565b602082019050919050565b5f6020820190508181035f83015261191c816118e3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611957601d83611171565b915061196282611923565b602082019050919050565b5f6020820190508181035f8301526119848161194b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6119e5602583611171565b91506119f08261198b565b604082019050919050565b5f6020820190508181035f830152611a12816119d9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611a73602383611171565b9150611a7e82611a19565b604082019050919050565b5f6020820190508181035f830152611aa081611a67565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f611b01602983611171565b9150611b0c82611aa7565b604082019050919050565b5f6020820190508181035f830152611b2e81611af5565b9050919050565b7f4e6f207075626c69632073616c652e00000000000000000000000000000000005f82015250565b5f611b69600f83611171565b9150611b7482611b35565b602082019050919050565b5f6020820190508181035f830152611b9681611b5d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611bf7602683611171565b9150611c0282611b9d565b604082019050919050565b5f6020820190508181035f830152611c2481611beb565b905091905056fea264697066735822122080e31efe3c5f212b5443e287904686bef86606e190654755d4f77ad00cfe77b664736f6c634300081a0033
Deployed Bytecode Sourcemap
1489:1970:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2133:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4410:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1678:51:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3221:106:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2370:85:5;;;:::i;:::-;;5169:286:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3070:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5850:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1736:38:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3385:125:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:4;;;:::i;:::-;;1194:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2344:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2463:252:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6571:427:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3706:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3953:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:198:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2133:98:1;2187:13;2219:5;2212:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2133:98;:::o;4410:197::-;4493:4;4509:13;4525:12;:10;:12::i;:::-;4509:28;;4547:32;4556:5;4563:7;4572:6;4547:8;:32::i;:::-;4596:4;4589:11;;;4410:197;;;;:::o;1678:51:5:-;;;:::o;3221:106:1:-;3282:7;3308:12;;3301:19;;3221:106;:::o;2370:85:5:-;1087:13:4;:11;:13::i;:::-;2443:4:5::1;2430:10;;:17;;;;;;;;;;;;;;;;;;2370:85::o:0;5169:286:1:-;5296:4;5312:15;5330:12;:10;:12::i;:::-;5312:30;;5352:38;5368:4;5374:7;5383:6;5352:15;:38::i;:::-;5400:27;5410:4;5416:2;5420:6;5400:9;:27::i;:::-;5444:4;5437:11;;;5169:286;;;;;:::o;3070:91::-;3128:5;3152:2;3145:9;;3070:91;:::o;5850:234::-;5938:4;5954:13;5970:12;:10;:12::i;:::-;5954:28;;5992:64;6001:5;6008:7;6045:10;6017:25;6027:5;6034:7;6017:9;:25::i;:::-;:38;;;;:::i;:::-;5992:8;:64::i;:::-;6073:4;6066:11;;;5850:234;;;;:::o;1736:38:5:-;;;:::o;3385:125:1:-;3459:7;3485:9;:18;3495:7;3485:18;;;;;;;;;;;;;;;;3478:25;;3385:125;;;:::o;1824:101:4:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;1194:85::-;1240:7;1266:6;;;;;;;;;;;1259:13;;1194:85;:::o;2344:102:1:-;2400:13;2432:7;2425:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2344:102;:::o;2463:252:5:-;1087:13:4;:11;:13::i;:::-;2570::5::1;2562:21;;:4;:21;;::::0;2554:99:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2666:41;2695:4;2701:5;2666:28;:41::i;:::-;2463:252:::0;;:::o;6571:427:1:-;6664:4;6680:13;6696:12;:10;:12::i;:::-;6680:28;;6718:24;6745:25;6755:5;6762:7;6745:9;:25::i;:::-;6718:52;;6808:15;6788:16;:35;;6780:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6899:60;6908:5;6915:7;6943:15;6924:16;:34;6899:8;:60::i;:::-;6987:4;6980:11;;;;6571:427;;;;:::o;3706:189::-;3785:4;3801:13;3817:12;:10;:12::i;:::-;3801:28;;3839;3849:5;3856:2;3860:6;3839:9;:28::i;:::-;3884:4;3877:11;;;3706:189;;;;:::o;3953:149::-;4042:7;4068:11;:18;4080:5;4068:18;;;;;;;;;;;;;;;:27;4087:7;4068:27;;;;;;;;;;;;;;;;4061:34;;3953:149;;;;:::o;2074:198:4:-;1087:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;::::0;2154:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;10483:370:1:-;10631:1;10614:19;;:5;:19;;;10606:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10711:1;10692:21;;:7;:21;;;10684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10793:6;10763:11;:18;10775:5;10763:18;;;;;;;;;;;;;;;:27;10782:7;10763:27;;;;;;;;;;;;;;;:36;;;;10830:7;10814:32;;10823:5;10814:32;;;10839:6;10814:32;;;;;;:::i;:::-;;;;;;;;10483:370;;;:::o;1352:130:4:-;1426:12;:10;:12::i;:::-;1415:23;;:7;:5;:7::i;:::-;:23;;;1407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1352:130::o;11134:441:1:-;11264:24;11291:25;11301:5;11308:7;11291:9;:25::i;:::-;11264:52;;11350:17;11330:16;:37;11326:243;;11411:6;11391:16;:26;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11493:51;11502:5;11509:7;11537:6;11518:16;:25;11493:8;:51::i;:::-;11326:243;11254:321;11134:441;;;:::o;2861:595:5:-;3009:1;2993:18;;:4;:18;;;2985:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3086:1;3072:16;;:2;:16;;;3064:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;3156:1;3147:6;:10;3139:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;3227:7;:5;:7::i;:::-;3219:15;;:4;:15;;;;:32;;;;;3244:7;:5;:7::i;:::-;3238:13;;:2;:13;;;;3219:32;3216:187;;;3270:25;:31;3296:4;3270:31;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;3306:10;;;;;;;;;;;3305:11;3270:46;3266:126;;;3346:9;:13;3356:2;3346:13;;;;;;;;;;;;;;;;;;;;;;;;;3338:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;3266:126;3216:187;3415:33;3431:4;3437:2;3441:6;3415:15;:33::i;:::-;2861:595;;;:::o;2426:187:4:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;2723:130:5:-;2840:5;2806:25;:31;2832:4;2806:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;2723:130;;:::o;7452:818:1:-;7594:1;7578:18;;:4;:18;;;7570:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7670:1;7656:16;;:2;:16;;;7648:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7723:38;7744:4;7750:2;7754:6;7723:20;:38::i;:::-;7772:19;7794:9;:15;7804:4;7794:15;;;;;;;;;;;;;;;;7772:37;;7842:6;7827:11;:21;;7819:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7957:6;7943:11;:20;7925:9;:15;7935:4;7925:15;;;;;;;;;;;;;;;:38;;;;8157:6;8140:9;:13;8150:2;8140:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8204:2;8189:26;;8198:4;8189:26;;;8208:6;8189:26;;;;;;:::i;:::-;;;;;;;;8226:37;8246:4;8252:2;8256:6;8226:19;:37::i;:::-;7560:710;7452:818;;;:::o;12159:121::-;;;;:::o;12868:120::-;;;;:::o;7:99:6:-;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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:60::-;3367:3;3388:5;3381:12;;3339:60;;;:::o;3405:142::-;3455:9;3488:53;3506:34;3515:24;3533:5;3515:24;:::i;:::-;3506:34;:::i;:::-;3488:53;:::i;:::-;3475:66;;3405:142;;;:::o;3553:126::-;3603:9;3636:37;3667:5;3636:37;:::i;:::-;3623:50;;3553:126;;;:::o;3685:152::-;3761:9;3794:37;3825:5;3794:37;:::i;:::-;3781:50;;3685:152;;;:::o;3843:183::-;3956:63;4013:5;3956:63;:::i;:::-;3951:3;3944:76;3843:183;;:::o;4032:274::-;4151:4;4189:2;4178:9;4174:18;4166:26;;4202:97;4296:1;4285:9;4281:17;4272:6;4202:97;:::i;:::-;4032:274;;;;:::o;4312:118::-;4399:24;4417:5;4399:24;:::i;:::-;4394:3;4387:37;4312:118;;:::o;4436:222::-;4529:4;4567:2;4556:9;4552:18;4544:26;;4580:71;4648:1;4637:9;4633:17;4624:6;4580:71;:::i;:::-;4436:222;;;;:::o;4664:619::-;4741:6;4749;4757;4806:2;4794:9;4785:7;4781:23;4777:32;4774:119;;;4812:79;;:::i;:::-;4774:119;4932:1;4957:53;5002:7;4993:6;4982:9;4978:22;4957:53;:::i;:::-;4947:63;;4903:117;5059:2;5085:53;5130:7;5121:6;5110:9;5106:22;5085:53;:::i;:::-;5075:63;;5030:118;5187:2;5213:53;5258:7;5249:6;5238:9;5234:22;5213:53;:::i;:::-;5203:63;;5158:118;4664:619;;;;;:::o;5289:86::-;5324:7;5364:4;5357:5;5353:16;5342:27;;5289:86;;;:::o;5381:112::-;5464:22;5480:5;5464:22;:::i;:::-;5459:3;5452:35;5381:112;;:::o;5499:214::-;5588:4;5626:2;5615:9;5611:18;5603:26;;5639:67;5703:1;5692:9;5688:17;5679:6;5639:67;:::i;:::-;5499:214;;;;:::o;5719:118::-;5806:24;5824:5;5806:24;:::i;:::-;5801:3;5794:37;5719:118;;:::o;5843:222::-;5936:4;5974:2;5963:9;5959:18;5951:26;;5987:71;6055:1;6044:9;6040:17;6031:6;5987:71;:::i;:::-;5843:222;;;;:::o;6071:329::-;6130:6;6179:2;6167:9;6158:7;6154:23;6150:32;6147:119;;;6185:79;;:::i;:::-;6147:119;6305:1;6330:53;6375:7;6366:6;6355:9;6351:22;6330:53;:::i;:::-;6320:63;;6276:117;6071:329;;;;:::o;6406:116::-;6476:21;6491:5;6476:21;:::i;:::-;6469:5;6466:32;6456:60;;6512:1;6509;6502:12;6456:60;6406:116;:::o;6528:133::-;6571:5;6609:6;6596:20;6587:29;;6625:30;6649:5;6625:30;:::i;:::-;6528:133;;;;:::o;6667:468::-;6732:6;6740;6789:2;6777:9;6768:7;6764:23;6760:32;6757:119;;;6795:79;;:::i;:::-;6757:119;6915:1;6940:53;6985:7;6976:6;6965:9;6961:22;6940:53;:::i;:::-;6930:63;;6886:117;7042:2;7068:50;7110:7;7101:6;7090:9;7086:22;7068:50;:::i;:::-;7058:60;;7013:115;6667:468;;;;;:::o;7141:474::-;7209:6;7217;7266:2;7254:9;7245:7;7241:23;7237:32;7234:119;;;7272:79;;:::i;:::-;7234:119;7392:1;7417:53;7462:7;7453:6;7442:9;7438:22;7417:53;:::i;:::-;7407:63;;7363:117;7519:2;7545:53;7590:7;7581:6;7570:9;7566:22;7545:53;:::i;:::-;7535:63;;7490:118;7141:474;;;;;:::o;7621:180::-;7669:77;7666:1;7659:88;7766:4;7763:1;7756:15;7790:4;7787:1;7780:15;7807:320;7851:6;7888:1;7882:4;7878:12;7868:22;;7935:1;7929:4;7925:12;7956:18;7946:81;;8012:4;8004:6;8000:17;7990:27;;7946:81;8074:2;8066:6;8063:14;8043:18;8040:38;8037:84;;8093:18;;:::i;:::-;8037:84;7858:269;7807:320;;;:::o;8133:180::-;8181:77;8178:1;8171:88;8278:4;8275:1;8268:15;8302:4;8299:1;8292:15;8319:191;8359:3;8378:20;8396:1;8378:20;:::i;:::-;8373:25;;8412:20;8430:1;8412:20;:::i;:::-;8407:25;;8455:1;8452;8448:9;8441:16;;8476:3;8473:1;8470:10;8467:36;;;8483:18;;:::i;:::-;8467:36;8319:191;;;;:::o;8516:289::-;8656:34;8652:1;8644:6;8640:14;8633:58;8725:34;8720:2;8712:6;8708:15;8701:59;8794:3;8789:2;8781:6;8777:15;8770:28;8516:289;:::o;8811:366::-;8953:3;8974:67;9038:2;9033:3;8974:67;:::i;:::-;8967:74;;9050:93;9139:3;9050:93;:::i;:::-;9168:2;9163:3;9159:12;9152:19;;8811:366;;;:::o;9183:419::-;9349:4;9387:2;9376:9;9372:18;9364:26;;9436:9;9430:4;9426:20;9422:1;9411:9;9407:17;9400:47;9464:131;9590:4;9464:131;:::i;:::-;9456:139;;9183:419;;;:::o;9608:224::-;9748:34;9744:1;9736:6;9732:14;9725:58;9817:7;9812:2;9804:6;9800:15;9793:32;9608:224;:::o;9838:366::-;9980:3;10001:67;10065:2;10060:3;10001:67;:::i;:::-;9994:74;;10077:93;10166:3;10077:93;:::i;:::-;10195:2;10190:3;10186:12;10179:19;;9838:366;;;:::o;10210:419::-;10376:4;10414:2;10403:9;10399:18;10391:26;;10463:9;10457:4;10453:20;10449:1;10438:9;10434:17;10427:47;10491:131;10617:4;10491:131;:::i;:::-;10483:139;;10210:419;;;:::o;10635:225::-;10775:34;10771:1;10763:6;10759:14;10752:58;10844:8;10839:2;10831:6;10827:15;10820:33;10635:225;:::o;10866:366::-;11008:3;11029:67;11093:2;11088:3;11029:67;:::i;:::-;11022:74;;11105:93;11194:3;11105:93;:::i;:::-;11223:2;11218:3;11214:12;11207:19;;10866:366;;;:::o;11238:419::-;11404:4;11442:2;11431:9;11427:18;11419:26;;11491:9;11485:4;11481:20;11477:1;11466:9;11462:17;11455:47;11519:131;11645:4;11519:131;:::i;:::-;11511:139;;11238:419;;;:::o;11663:223::-;11803:34;11799:1;11791:6;11787:14;11780:58;11872:6;11867:2;11859:6;11855:15;11848:31;11663:223;:::o;11892:366::-;12034:3;12055:67;12119:2;12114:3;12055:67;:::i;:::-;12048:74;;12131:93;12220:3;12131:93;:::i;:::-;12249:2;12244:3;12240:12;12233:19;;11892:366;;;:::o;12264:419::-;12430:4;12468:2;12457:9;12453:18;12445:26;;12517:9;12511:4;12507:20;12503:1;12492:9;12488:17;12481:47;12545:131;12671:4;12545:131;:::i;:::-;12537:139;;12264:419;;;:::o;12689:221::-;12829:34;12825:1;12817:6;12813:14;12806:58;12898:4;12893:2;12885:6;12881:15;12874:29;12689:221;:::o;12916:366::-;13058:3;13079:67;13143:2;13138:3;13079:67;:::i;:::-;13072:74;;13155:93;13244:3;13155:93;:::i;:::-;13273:2;13268:3;13264:12;13257:19;;12916:366;;;:::o;13288:419::-;13454:4;13492:2;13481:9;13477:18;13469:26;;13541:9;13535:4;13531:20;13527:1;13516:9;13512:17;13505:47;13569:131;13695:4;13569:131;:::i;:::-;13561:139;;13288:419;;;:::o;13713:182::-;13853:34;13849:1;13841:6;13837:14;13830:58;13713:182;:::o;13901:366::-;14043:3;14064:67;14128:2;14123:3;14064:67;:::i;:::-;14057:74;;14140:93;14229:3;14140:93;:::i;:::-;14258:2;14253:3;14249:12;14242:19;;13901:366;;;:::o;14273:419::-;14439:4;14477:2;14466:9;14462:18;14454:26;;14526:9;14520:4;14516:20;14512:1;14501:9;14497:17;14490:47;14554:131;14680:4;14554:131;:::i;:::-;14546:139;;14273:419;;;:::o;14698:179::-;14838:31;14834:1;14826:6;14822:14;14815:55;14698:179;:::o;14883:366::-;15025:3;15046:67;15110:2;15105:3;15046:67;:::i;:::-;15039:74;;15122:93;15211:3;15122:93;:::i;:::-;15240:2;15235:3;15231:12;15224:19;;14883:366;;;:::o;15255:419::-;15421:4;15459:2;15448:9;15444:18;15436:26;;15508:9;15502:4;15498:20;15494:1;15483:9;15479:17;15472:47;15536:131;15662:4;15536:131;:::i;:::-;15528:139;;15255:419;;;:::o;15680:224::-;15820:34;15816:1;15808:6;15804:14;15797:58;15889:7;15884:2;15876:6;15872:15;15865:32;15680:224;:::o;15910:366::-;16052:3;16073:67;16137:2;16132:3;16073:67;:::i;:::-;16066:74;;16149:93;16238:3;16149:93;:::i;:::-;16267:2;16262:3;16258:12;16251:19;;15910:366;;;:::o;16282:419::-;16448:4;16486:2;16475:9;16471:18;16463:26;;16535:9;16529:4;16525:20;16521:1;16510:9;16506:17;16499:47;16563:131;16689:4;16563:131;:::i;:::-;16555:139;;16282:419;;;:::o;16707:222::-;16847:34;16843:1;16835:6;16831:14;16824:58;16916:5;16911:2;16903:6;16899:15;16892:30;16707:222;:::o;16935:366::-;17077:3;17098:67;17162:2;17157:3;17098:67;:::i;:::-;17091:74;;17174:93;17263:3;17174:93;:::i;:::-;17292:2;17287:3;17283:12;17276:19;;16935:366;;;:::o;17307:419::-;17473:4;17511:2;17500:9;17496:18;17488:26;;17560:9;17554:4;17550:20;17546:1;17535:9;17531:17;17524:47;17588:131;17714:4;17588:131;:::i;:::-;17580:139;;17307:419;;;:::o;17732:228::-;17872:34;17868:1;17860:6;17856:14;17849:58;17941:11;17936:2;17928:6;17924:15;17917:36;17732:228;:::o;17966:366::-;18108:3;18129:67;18193:2;18188:3;18129:67;:::i;:::-;18122:74;;18205:93;18294:3;18205:93;:::i;:::-;18323:2;18318:3;18314:12;18307:19;;17966:366;;;:::o;18338:419::-;18504:4;18542:2;18531:9;18527:18;18519:26;;18591:9;18585:4;18581:20;18577:1;18566:9;18562:17;18555:47;18619:131;18745:4;18619:131;:::i;:::-;18611:139;;18338:419;;;:::o;18763:165::-;18903:17;18899:1;18891:6;18887:14;18880:41;18763:165;:::o;18934:366::-;19076:3;19097:67;19161:2;19156:3;19097:67;:::i;:::-;19090:74;;19173:93;19262:3;19173:93;:::i;:::-;19291:2;19286:3;19282:12;19275:19;;18934:366;;;:::o;19306:419::-;19472:4;19510:2;19499:9;19495:18;19487:26;;19559:9;19553:4;19549:20;19545:1;19534:9;19530:17;19523:47;19587:131;19713:4;19587:131;:::i;:::-;19579:139;;19306:419;;;:::o;19731:225::-;19871:34;19867:1;19859:6;19855:14;19848:58;19940:8;19935:2;19927:6;19923:15;19916:33;19731:225;:::o;19962:366::-;20104:3;20125:67;20189:2;20184:3;20125:67;:::i;:::-;20118:74;;20201:93;20290:3;20201:93;:::i;:::-;20319:2;20314:3;20310:12;20303:19;;19962:366;;;:::o;20334:419::-;20500:4;20538:2;20527:9;20523:18;20515:26;;20587:9;20581:4;20577:20;20573:1;20562:9;20558:17;20551:47;20615:131;20741:4;20615:131;:::i;:::-;20607:139;;20334:419;;;:::o
Swarm Source
ipfs://80e31efe3c5f212b5443e287904686bef86606e190654755d4f77ad00cfe77b6
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.