Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
MEME
Overview
Max Total Supply
10,000,000,000 MECA
Holders
235 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MecaToken
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-08 */ /** *Submitted for verification at Etherscan.io on 2023-08-07 */ /** *Submitted for verification at Etherscan.io on 2023-08-07 */ /** *Submitted for verification at Etherscan.io on 2023-04-14 */ // Sources flattened with hardhat v2.7.0 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address 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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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; _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; } _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 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 {} } pragma solidity ^0.8.18; contract MecaToken is ERC20, Ownable{ //bool public shouldLimitUniswapTokenTransfer; bool public shouldEnableDenyList; //uint256 public maxHoldingAmount; //uint256 public minHoldingAmount; //address public uniswapV2Addr; mapping(address => bool) public denylists; // 10 Billion uint256 public constant _totalSupply = 10000000000*(10**18); constructor() ERC20("Meca", "MECA") payable { super._mint(msg.sender, _totalSupply); } function denyAddr(address _address, bool shouldDeny) external onlyOwner { denylists[_address] = shouldDeny; } function EnableDenyLists(bool _denylistEnabled) external onlyOwner { shouldEnableDenyList = _denylistEnabled; } // function associateUniV2Addr(bool _shouldLimitUniswapTokenTransfer, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner { // shouldLimitUniswapTokenTransfer = _shouldLimitUniswapTokenTransfer; // uniswapV2Addr = _uniswapV2Pair; // maxHoldingAmount = _maxHoldingAmount; // minHoldingAmount = _minHoldingAmount; // } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { require(!shouldEnableDenyList || (!denylists[to] && !denylists[from]), "Your account is forbidden to transfer."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","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":"bool","name":"_denylistEnabled","type":"bool"}],"name":"EnableDenyLists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"shouldDeny","type":"bool"}],"name":"denyAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"denylists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shouldEnableDenyList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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
60806040526040518060400160405280600481526020017f4d656361000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d454341000000000000000000000000000000000000000000000000000000008152508160039081620000819190620006a9565b508060049081620000939190620006a9565b505050620000b6620000aa620000df60201b60201c565b620000e760201b60201c565b620000d9336b204fce5e3e25026110000000620001ad60201b62000c031760201c565b62000943565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200021f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021690620007f1565b60405180910390fd5b62000233600083836200032560201b60201c565b806002600082825462000247919062000842565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200029e919062000842565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030591906200088e565b60405180910390a362000321600083836200042a60201b60201c565b5050565b600560149054906101000a900460ff161580620003e35750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003e25750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b62000425576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041c9062000921565b60405180910390fd5b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004b157607f821691505b602082108103620004c757620004c662000469565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005317fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004f2565b6200053d8683620004f2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200058a620005846200057e8462000555565b6200055f565b62000555565b9050919050565b6000819050919050565b620005a68362000569565b620005be620005b58262000591565b848454620004ff565b825550505050565b600090565b620005d5620005c6565b620005e28184846200059b565b505050565b5b818110156200060a57620005fe600082620005cb565b600181019050620005e8565b5050565b601f82111562000659576200062381620004cd565b6200062e84620004e2565b810160208510156200063e578190505b620006566200064d85620004e2565b830182620005e7565b50505b505050565b600082821c905092915050565b60006200067e600019846008026200065e565b1980831691505092915050565b60006200069983836200066b565b9150826002028217905092915050565b620006b4826200042f565b67ffffffffffffffff811115620006d057620006cf6200043a565b5b620006dc825462000498565b620006e98282856200060e565b600060209050601f8311600181146200072157600084156200070c578287015190505b6200071885826200068b565b86555062000788565b601f1984166200073186620004cd565b60005b828110156200075b5784890151825560018201915060208501945060208101905062000734565b868310156200077b578489015162000777601f8916826200066b565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007d9601f8362000790565b9150620007e682620007a1565b602082019050919050565b600060208201905081810360008301526200080c81620007ca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200084f8262000555565b91506200085c8362000555565b925082820190508082111562000877576200087662000813565b5b92915050565b620008888162000555565b82525050565b6000602082019050620008a560008301846200087d565b92915050565b7f596f7572206163636f756e7420697320666f7262696464656e20746f2074726160008201527f6e736665722e0000000000000000000000000000000000000000000000000000602082015250565b60006200090960268362000790565b91506200091682620008ab565b604082019050919050565b600060208201905081810360008301526200093c81620008fa565b9050919050565b611e1580620009536000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb14610320578063b097609014610350578063dd62ed3e1461036e578063f2fde38b1461039e578063f4c07706146103ba57610121565b806370a082311461027a578063715018a6146102aa5780638da5cb5b146102b457806395d89b41146102d2578063a457c2d7146102f057610121565b806329973e73116100f457806329973e73146101c2578063313ce567146101f2578063388c84e114610210578063395093511461022c5780633eaaf86b1461025c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d6565b60405161013b919061140d565b60405180910390f35b61015e600480360381019061015991906114c8565b610468565b60405161016b9190611523565b60405180910390f35b61017c610486565b604051610189919061154d565b60405180910390f35b6101ac60048036038101906101a79190611568565b610490565b6040516101b99190611523565b60405180910390f35b6101dc60048036038101906101d791906115bb565b610588565b6040516101e99190611523565b60405180910390f35b6101fa6105a8565b6040516102079190611604565b60405180910390f35b61022a6004803603810190610225919061164b565b6105b1565b005b610246600480360381019061024191906114c8565b61064a565b6040516102539190611523565b60405180910390f35b6102646106f6565b604051610271919061154d565b60405180910390f35b610294600480360381019061028f91906115bb565b610706565b6040516102a1919061154d565b60405180910390f35b6102b261074e565b005b6102bc6107d6565b6040516102c99190611687565b60405180910390f35b6102da610800565b6040516102e7919061140d565b60405180910390f35b61030a600480360381019061030591906114c8565b610892565b6040516103179190611523565b60405180910390f35b61033a600480360381019061033591906114c8565b61097d565b6040516103479190611523565b60405180910390f35b61035861099b565b6040516103659190611523565b60405180910390f35b610388600480360381019061038391906116a2565b6109ae565b604051610395919061154d565b60405180910390f35b6103b860048036038101906103b391906115bb565b610a35565b005b6103d460048036038101906103cf91906116e2565b610b2c565b005b6060600380546103e590611751565b80601f016020809104026020016040519081016040528092919081815260200182805461041190611751565b801561045e5780601f106104335761010080835404028352916020019161045e565b820191906000526020600020905b81548152906001019060200180831161044157829003601f168201915b5050505050905090565b600061047c610475610d62565b8484610d6a565b6001905092915050565b6000600254905090565b600061049d848484610f33565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104e8610d62565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055f906117f4565b60405180910390fd5b61057c85610574610d62565b858403610d6a565b60019150509392505050565b60066020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b6105b9610d62565b73ffffffffffffffffffffffffffffffffffffffff166105d76107d6565b73ffffffffffffffffffffffffffffffffffffffff161461062d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062490611860565b60405180910390fd5b80600560146101000a81548160ff02191690831515021790555050565b60006106ec610657610d62565b848460016000610665610d62565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106e791906118af565b610d6a565b6001905092915050565b6b204fce5e3e2502611000000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610756610d62565b73ffffffffffffffffffffffffffffffffffffffff166107746107d6565b73ffffffffffffffffffffffffffffffffffffffff16146107ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c190611860565b60405180910390fd5b6107d460006111b2565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461080f90611751565b80601f016020809104026020016040519081016040528092919081815260200182805461083b90611751565b80156108885780601f1061085d57610100808354040283529160200191610888565b820191906000526020600020905b81548152906001019060200180831161086b57829003601f168201915b5050505050905090565b600080600160006108a1610d62565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561095e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095590611955565b60405180910390fd5b610972610969610d62565b85858403610d6a565b600191505092915050565b600061099161098a610d62565b8484610f33565b6001905092915050565b600560149054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a3d610d62565b73ffffffffffffffffffffffffffffffffffffffff16610a5b6107d6565b73ffffffffffffffffffffffffffffffffffffffff1614610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa890611860565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b17906119e7565b60405180910390fd5b610b29816111b2565b50565b610b34610d62565b73ffffffffffffffffffffffffffffffffffffffff16610b526107d6565b73ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90611860565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6990611a53565b60405180910390fd5b610c7e60008383611278565b8060026000828254610c9091906118af565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ce591906118af565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d4a919061154d565b60405180910390a3610d5e60008383611378565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090611ae5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90611b77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f26919061154d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990611c09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100890611c9b565b60405180910390fd5b61101c838383611278565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990611d2d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461113591906118af565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611199919061154d565b60405180910390a36111ac848484611378565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600560149054906101000a900460ff1615806113345750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113335750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a90611dbf565b60405180910390fd5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113b757808201518184015260208101905061139c565b60008484015250505050565b6000601f19601f8301169050919050565b60006113df8261137d565b6113e98185611388565b93506113f9818560208601611399565b611402816113c3565b840191505092915050565b6000602082019050818103600083015261142781846113d4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061145f82611434565b9050919050565b61146f81611454565b811461147a57600080fd5b50565b60008135905061148c81611466565b92915050565b6000819050919050565b6114a581611492565b81146114b057600080fd5b50565b6000813590506114c28161149c565b92915050565b600080604083850312156114df576114de61142f565b5b60006114ed8582860161147d565b92505060206114fe858286016114b3565b9150509250929050565b60008115159050919050565b61151d81611508565b82525050565b60006020820190506115386000830184611514565b92915050565b61154781611492565b82525050565b6000602082019050611562600083018461153e565b92915050565b6000806000606084860312156115815761158061142f565b5b600061158f8682870161147d565b93505060206115a08682870161147d565b92505060406115b1868287016114b3565b9150509250925092565b6000602082840312156115d1576115d061142f565b5b60006115df8482850161147d565b91505092915050565b600060ff82169050919050565b6115fe816115e8565b82525050565b600060208201905061161960008301846115f5565b92915050565b61162881611508565b811461163357600080fd5b50565b6000813590506116458161161f565b92915050565b6000602082840312156116615761166061142f565b5b600061166f84828501611636565b91505092915050565b61168181611454565b82525050565b600060208201905061169c6000830184611678565b92915050565b600080604083850312156116b9576116b861142f565b5b60006116c78582860161147d565b92505060206116d88582860161147d565b9150509250929050565b600080604083850312156116f9576116f861142f565b5b60006117078582860161147d565b925050602061171885828601611636565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061176957607f821691505b60208210810361177c5761177b611722565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006117de602883611388565b91506117e982611782565b604082019050919050565b6000602082019050818103600083015261180d816117d1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061184a602083611388565b915061185582611814565b602082019050919050565b600060208201905081810360008301526118798161183d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118ba82611492565b91506118c583611492565b92508282019050808211156118dd576118dc611880565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061193f602583611388565b915061194a826118e3565b604082019050919050565b6000602082019050818103600083015261196e81611932565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119d1602683611388565b91506119dc82611975565b604082019050919050565b60006020820190508181036000830152611a00816119c4565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a3d601f83611388565b9150611a4882611a07565b602082019050919050565b60006020820190508181036000830152611a6c81611a30565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611acf602483611388565b9150611ada82611a73565b604082019050919050565b60006020820190508181036000830152611afe81611ac2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b61602283611388565b9150611b6c82611b05565b604082019050919050565b60006020820190508181036000830152611b9081611b54565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611bf3602583611388565b9150611bfe82611b97565b604082019050919050565b60006020820190508181036000830152611c2281611be6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c85602383611388565b9150611c9082611c29565b604082019050919050565b60006020820190508181036000830152611cb481611c78565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d17602683611388565b9150611d2282611cbb565b604082019050919050565b60006020820190508181036000830152611d4681611d0a565b9050919050565b7f596f7572206163636f756e7420697320666f7262696464656e20746f2074726160008201527f6e736665722e0000000000000000000000000000000000000000000000000000602082015250565b6000611da9602683611388565b9150611db482611d4d565b604082019050919050565b60006020820190508181036000830152611dd881611d9c565b905091905056fea26469706673582212207f0d2819dd0a8a2352b550ea41ff568dc6e25d37e5d584acc8cc28f0b9a7026d64736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb14610320578063b097609014610350578063dd62ed3e1461036e578063f2fde38b1461039e578063f4c07706146103ba57610121565b806370a082311461027a578063715018a6146102aa5780638da5cb5b146102b457806395d89b41146102d2578063a457c2d7146102f057610121565b806329973e73116100f457806329973e73146101c2578063313ce567146101f2578063388c84e114610210578063395093511461022c5780633eaaf86b1461025c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d6565b60405161013b919061140d565b60405180910390f35b61015e600480360381019061015991906114c8565b610468565b60405161016b9190611523565b60405180910390f35b61017c610486565b604051610189919061154d565b60405180910390f35b6101ac60048036038101906101a79190611568565b610490565b6040516101b99190611523565b60405180910390f35b6101dc60048036038101906101d791906115bb565b610588565b6040516101e99190611523565b60405180910390f35b6101fa6105a8565b6040516102079190611604565b60405180910390f35b61022a6004803603810190610225919061164b565b6105b1565b005b610246600480360381019061024191906114c8565b61064a565b6040516102539190611523565b60405180910390f35b6102646106f6565b604051610271919061154d565b60405180910390f35b610294600480360381019061028f91906115bb565b610706565b6040516102a1919061154d565b60405180910390f35b6102b261074e565b005b6102bc6107d6565b6040516102c99190611687565b60405180910390f35b6102da610800565b6040516102e7919061140d565b60405180910390f35b61030a600480360381019061030591906114c8565b610892565b6040516103179190611523565b60405180910390f35b61033a600480360381019061033591906114c8565b61097d565b6040516103479190611523565b60405180910390f35b61035861099b565b6040516103659190611523565b60405180910390f35b610388600480360381019061038391906116a2565b6109ae565b604051610395919061154d565b60405180910390f35b6103b860048036038101906103b391906115bb565b610a35565b005b6103d460048036038101906103cf91906116e2565b610b2c565b005b6060600380546103e590611751565b80601f016020809104026020016040519081016040528092919081815260200182805461041190611751565b801561045e5780601f106104335761010080835404028352916020019161045e565b820191906000526020600020905b81548152906001019060200180831161044157829003601f168201915b5050505050905090565b600061047c610475610d62565b8484610d6a565b6001905092915050565b6000600254905090565b600061049d848484610f33565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104e8610d62565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055f906117f4565b60405180910390fd5b61057c85610574610d62565b858403610d6a565b60019150509392505050565b60066020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b6105b9610d62565b73ffffffffffffffffffffffffffffffffffffffff166105d76107d6565b73ffffffffffffffffffffffffffffffffffffffff161461062d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062490611860565b60405180910390fd5b80600560146101000a81548160ff02191690831515021790555050565b60006106ec610657610d62565b848460016000610665610d62565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106e791906118af565b610d6a565b6001905092915050565b6b204fce5e3e2502611000000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610756610d62565b73ffffffffffffffffffffffffffffffffffffffff166107746107d6565b73ffffffffffffffffffffffffffffffffffffffff16146107ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c190611860565b60405180910390fd5b6107d460006111b2565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461080f90611751565b80601f016020809104026020016040519081016040528092919081815260200182805461083b90611751565b80156108885780601f1061085d57610100808354040283529160200191610888565b820191906000526020600020905b81548152906001019060200180831161086b57829003601f168201915b5050505050905090565b600080600160006108a1610d62565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561095e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095590611955565b60405180910390fd5b610972610969610d62565b85858403610d6a565b600191505092915050565b600061099161098a610d62565b8484610f33565b6001905092915050565b600560149054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a3d610d62565b73ffffffffffffffffffffffffffffffffffffffff16610a5b6107d6565b73ffffffffffffffffffffffffffffffffffffffff1614610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa890611860565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b17906119e7565b60405180910390fd5b610b29816111b2565b50565b610b34610d62565b73ffffffffffffffffffffffffffffffffffffffff16610b526107d6565b73ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90611860565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6990611a53565b60405180910390fd5b610c7e60008383611278565b8060026000828254610c9091906118af565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ce591906118af565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d4a919061154d565b60405180910390a3610d5e60008383611378565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090611ae5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90611b77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f26919061154d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990611c09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100890611c9b565b60405180910390fd5b61101c838383611278565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990611d2d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461113591906118af565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611199919061154d565b60405180910390a36111ac848484611378565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600560149054906101000a900460ff1615806113345750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113335750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a90611dbf565b60405180910390fd5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113b757808201518184015260208101905061139c565b60008484015250505050565b6000601f19601f8301169050919050565b60006113df8261137d565b6113e98185611388565b93506113f9818560208601611399565b611402816113c3565b840191505092915050565b6000602082019050818103600083015261142781846113d4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061145f82611434565b9050919050565b61146f81611454565b811461147a57600080fd5b50565b60008135905061148c81611466565b92915050565b6000819050919050565b6114a581611492565b81146114b057600080fd5b50565b6000813590506114c28161149c565b92915050565b600080604083850312156114df576114de61142f565b5b60006114ed8582860161147d565b92505060206114fe858286016114b3565b9150509250929050565b60008115159050919050565b61151d81611508565b82525050565b60006020820190506115386000830184611514565b92915050565b61154781611492565b82525050565b6000602082019050611562600083018461153e565b92915050565b6000806000606084860312156115815761158061142f565b5b600061158f8682870161147d565b93505060206115a08682870161147d565b92505060406115b1868287016114b3565b9150509250925092565b6000602082840312156115d1576115d061142f565b5b60006115df8482850161147d565b91505092915050565b600060ff82169050919050565b6115fe816115e8565b82525050565b600060208201905061161960008301846115f5565b92915050565b61162881611508565b811461163357600080fd5b50565b6000813590506116458161161f565b92915050565b6000602082840312156116615761166061142f565b5b600061166f84828501611636565b91505092915050565b61168181611454565b82525050565b600060208201905061169c6000830184611678565b92915050565b600080604083850312156116b9576116b861142f565b5b60006116c78582860161147d565b92505060206116d88582860161147d565b9150509250929050565b600080604083850312156116f9576116f861142f565b5b60006117078582860161147d565b925050602061171885828601611636565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061176957607f821691505b60208210810361177c5761177b611722565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006117de602883611388565b91506117e982611782565b604082019050919050565b6000602082019050818103600083015261180d816117d1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061184a602083611388565b915061185582611814565b602082019050919050565b600060208201905081810360008301526118798161183d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118ba82611492565b91506118c583611492565b92508282019050808211156118dd576118dc611880565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061193f602583611388565b915061194a826118e3565b604082019050919050565b6000602082019050818103600083015261196e81611932565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119d1602683611388565b91506119dc82611975565b604082019050919050565b60006020820190508181036000830152611a00816119c4565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a3d601f83611388565b9150611a4882611a07565b602082019050919050565b60006020820190508181036000830152611a6c81611a30565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611acf602483611388565b9150611ada82611a73565b604082019050919050565b60006020820190508181036000830152611afe81611ac2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b61602283611388565b9150611b6c82611b05565b604082019050919050565b60006020820190508181036000830152611b9081611b54565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611bf3602583611388565b9150611bfe82611b97565b604082019050919050565b60006020820190508181036000830152611c2281611be6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c85602383611388565b9150611c9082611c29565b604082019050919050565b60006020820190508181036000830152611cb481611c78565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d17602683611388565b9150611d2282611cbb565b604082019050919050565b60006020820190508181036000830152611d4681611d0a565b9050919050565b7f596f7572206163636f756e7420697320666f7262696464656e20746f2074726160008201527f6e736665722e0000000000000000000000000000000000000000000000000000602082015250565b6000611da9602683611388565b9150611db482611d4d565b604082019050919050565b60006020820190508181036000830152611dd881611d9c565b905091905056fea26469706673582212207f0d2819dd0a8a2352b550ea41ff568dc6e25d37e5d584acc8cc28f0b9a7026d64736f6c63430008120033
Deployed Bytecode Sourcemap
19514:1447:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9525:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11692:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10645:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12343:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19765:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10487:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20148:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13244:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19838:59;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10816:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2926:103;;;:::i;:::-;;2275:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9744:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13962:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11156:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19609:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11394:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3184:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20017:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9525:100;9579:13;9612:5;9605:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9525:100;:::o;11692:169::-;11775:4;11792:39;11801:12;:10;:12::i;:::-;11815:7;11824:6;11792:8;:39::i;:::-;11849:4;11842:11;;11692:169;;;;:::o;10645:108::-;10706:7;10733:12;;10726:19;;10645:108;:::o;12343:492::-;12483:4;12500:36;12510:6;12518:9;12529:6;12500:9;:36::i;:::-;12549:24;12576:11;:19;12588:6;12576:19;;;;;;;;;;;;;;;:33;12596:12;:10;:12::i;:::-;12576:33;;;;;;;;;;;;;;;;12549:60;;12648:6;12628:16;:26;;12620:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12735:57;12744:6;12752:12;:10;:12::i;:::-;12785:6;12766:16;:25;12735:8;:57::i;:::-;12823:4;12816:11;;;12343:492;;;;;:::o;19765:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;10487:93::-;10545:5;10570:2;10563:9;;10487:93;:::o;20148:125::-;2506:12;:10;:12::i;:::-;2495:23;;:7;:5;:7::i;:::-;:23;;;2487:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20249:16:::1;20226:20;;:39;;;;;;;;;;;;;;;;;;20148:125:::0;:::o;13244:215::-;13332:4;13349:80;13358:12;:10;:12::i;:::-;13372:7;13418:10;13381:11;:25;13393:12;:10;:12::i;:::-;13381:25;;;;;;;;;;;;;;;:34;13407:7;13381:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13349:8;:80::i;:::-;13447:4;13440:11;;13244:215;;;;:::o;19838:59::-;19877:20;19838:59;:::o;10816:127::-;10890:7;10917:9;:18;10927:7;10917:18;;;;;;;;;;;;;;;;10910:25;;10816:127;;;:::o;2926:103::-;2506:12;:10;:12::i;:::-;2495:23;;:7;:5;:7::i;:::-;:23;;;2487:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2991:30:::1;3018:1;2991:18;:30::i;:::-;2926:103::o:0;2275:87::-;2321:7;2348:6;;;;;;;;;;;2341:13;;2275:87;:::o;9744:104::-;9800:13;9833:7;9826:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9744:104;:::o;13962:413::-;14055:4;14072:24;14099:11;:25;14111:12;:10;:12::i;:::-;14099:25;;;;;;;;;;;;;;;:34;14125:7;14099:34;;;;;;;;;;;;;;;;14072:61;;14172:15;14152:16;:35;;14144:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14265:67;14274:12;:10;:12::i;:::-;14288:7;14316:15;14297:16;:34;14265:8;:67::i;:::-;14363:4;14356:11;;;13962:413;;;;:::o;11156:175::-;11242:4;11259:42;11269:12;:10;:12::i;:::-;11283:9;11294:6;11259:9;:42::i;:::-;11319:4;11312:11;;11156:175;;;;:::o;19609:32::-;;;;;;;;;;;;;:::o;11394:151::-;11483:7;11510:11;:18;11522:5;11510:18;;;;;;;;;;;;;;;:27;11529:7;11510:27;;;;;;;;;;;;;;;;11503:34;;11394:151;;;;:::o;3184:201::-;2506:12;:10;:12::i;:::-;2495:23;;:7;:5;:7::i;:::-;:23;;;2487:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3293:1:::1;3273:22;;:8;:22;;::::0;3265:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3349:28;3368:8;3349:18;:28::i;:::-;3184:201:::0;:::o;20017:123::-;2506:12;:10;:12::i;:::-;2495:23;;:7;:5;:7::i;:::-;:23;;;2487:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20122:10:::1;20100:9;:19;20110:8;20100:19;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;20017:123:::0;;:::o;15885:399::-;15988:1;15969:21;;:7;:21;;;15961:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16039:49;16068:1;16072:7;16081:6;16039:20;:49::i;:::-;16117:6;16101:12;;:22;;;;;;;:::i;:::-;;;;;;;;16156:6;16134:9;:18;16144:7;16134:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;16199:7;16178:37;;16195:1;16178:37;;;16208:6;16178:37;;;;;;:::i;:::-;;;;;;;;16228:48;16256:1;16260:7;16269:6;16228:19;:48::i;:::-;15885:399;;:::o;993:98::-;1046:7;1073:10;1066:17;;993:98;:::o;17646:380::-;17799:1;17782:19;;:5;:19;;;17774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17880:1;17861:21;;:7;:21;;;17853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17964:6;17934:11;:18;17946:5;17934:18;;;;;;;;;;;;;;;:27;17953:7;17934:27;;;;;;;;;;;;;;;:36;;;;18002:7;17986:32;;17995:5;17986:32;;;18011:6;17986:32;;;;;;:::i;:::-;;;;;;;;17646:380;;;:::o;14865:733::-;15023:1;15005:20;;:6;:20;;;14997:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15107:1;15086:23;;:9;:23;;;15078:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15162:47;15183:6;15191:9;15202:6;15162:20;:47::i;:::-;15222:21;15246:9;:17;15256:6;15246:17;;;;;;;;;;;;;;;;15222:41;;15299:6;15282:13;:23;;15274:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15420:6;15404:13;:22;15384:9;:17;15394:6;15384:17;;;;;;;;;;;;;;;:42;;;;15472:6;15448:9;:20;15458:9;15448:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15513:9;15496:35;;15505:6;15496:35;;;15524:6;15496:35;;;;;;:::i;:::-;;;;;;;;15544:46;15564:6;15572:9;15583:6;15544:19;:46::i;:::-;14986:612;14865:733;;;:::o;3545:191::-;3619:16;3638:6;;;;;;;;;;;3619:25;;3664:8;3655:6;;:17;;;;;;;;;;;;;;;;;;3719:8;3688:40;;3709:8;3688:40;;;;;;;;;;;;3608:128;3545:191;:::o;20695:263::-;20847:20;;;;;;;;;;;20846:21;:61;;;;20873:9;:13;20883:2;20873:13;;;;;;;;;;;;;;;;;;;;;;;;;20872:14;:34;;;;;20891:9;:15;20901:4;20891:15;;;;;;;;;;;;;;;;;;;;;;;;;20890:16;20872:34;20846:61;20838:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;20695:263;;;:::o;19355:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:116::-;5258:21;5273:5;5258:21;:::i;:::-;5251:5;5248:32;5238:60;;5294:1;5291;5284:12;5238:60;5188:116;:::o;5310:133::-;5353:5;5391:6;5378:20;5369:29;;5407:30;5431:5;5407:30;:::i;:::-;5310:133;;;;:::o;5449:323::-;5505:6;5554:2;5542:9;5533:7;5529:23;5525:32;5522:119;;;5560:79;;:::i;:::-;5522:119;5680:1;5705:50;5747:7;5738:6;5727:9;5723:22;5705:50;:::i;:::-;5695:60;;5651:114;5449:323;;;;:::o;5778:118::-;5865:24;5883:5;5865:24;:::i;:::-;5860:3;5853:37;5778:118;;:::o;5902:222::-;5995:4;6033:2;6022:9;6018:18;6010:26;;6046:71;6114:1;6103:9;6099:17;6090:6;6046:71;:::i;:::-;5902:222;;;;:::o;6130:474::-;6198:6;6206;6255:2;6243:9;6234:7;6230:23;6226:32;6223:119;;;6261:79;;:::i;:::-;6223:119;6381:1;6406:53;6451:7;6442:6;6431:9;6427:22;6406:53;:::i;:::-;6396:63;;6352:117;6508:2;6534:53;6579:7;6570:6;6559:9;6555:22;6534:53;:::i;:::-;6524:63;;6479:118;6130:474;;;;;:::o;6610:468::-;6675:6;6683;6732:2;6720:9;6711:7;6707:23;6703:32;6700:119;;;6738:79;;:::i;:::-;6700:119;6858:1;6883:53;6928:7;6919:6;6908:9;6904:22;6883:53;:::i;:::-;6873:63;;6829:117;6985:2;7011:50;7053:7;7044:6;7033:9;7029:22;7011:50;:::i;:::-;7001:60;;6956:115;6610:468;;;;;:::o;7084:180::-;7132:77;7129:1;7122:88;7229:4;7226:1;7219:15;7253:4;7250:1;7243:15;7270:320;7314:6;7351:1;7345:4;7341:12;7331:22;;7398:1;7392:4;7388:12;7419:18;7409:81;;7475:4;7467:6;7463:17;7453:27;;7409:81;7537:2;7529:6;7526:14;7506:18;7503:38;7500:84;;7556:18;;:::i;:::-;7500:84;7321:269;7270:320;;;:::o;7596:227::-;7736:34;7732:1;7724:6;7720:14;7713:58;7805:10;7800:2;7792:6;7788:15;7781:35;7596:227;:::o;7829:366::-;7971:3;7992:67;8056:2;8051:3;7992:67;:::i;:::-;7985:74;;8068:93;8157:3;8068:93;:::i;:::-;8186:2;8181:3;8177:12;8170:19;;7829:366;;;:::o;8201:419::-;8367:4;8405:2;8394:9;8390:18;8382:26;;8454:9;8448:4;8444:20;8440:1;8429:9;8425:17;8418:47;8482:131;8608:4;8482:131;:::i;:::-;8474:139;;8201:419;;;:::o;8626:182::-;8766:34;8762:1;8754:6;8750:14;8743:58;8626:182;:::o;8814:366::-;8956:3;8977:67;9041:2;9036:3;8977:67;:::i;:::-;8970:74;;9053:93;9142:3;9053:93;:::i;:::-;9171:2;9166:3;9162:12;9155:19;;8814:366;;;:::o;9186:419::-;9352:4;9390:2;9379:9;9375:18;9367:26;;9439:9;9433:4;9429:20;9425:1;9414:9;9410:17;9403:47;9467:131;9593:4;9467:131;:::i;:::-;9459:139;;9186:419;;;:::o;9611:180::-;9659:77;9656:1;9649:88;9756:4;9753:1;9746:15;9780:4;9777:1;9770:15;9797:191;9837:3;9856:20;9874:1;9856:20;:::i;:::-;9851:25;;9890:20;9908:1;9890:20;:::i;:::-;9885:25;;9933:1;9930;9926:9;9919:16;;9954:3;9951:1;9948:10;9945:36;;;9961:18;;:::i;:::-;9945:36;9797:191;;;;:::o;9994:224::-;10134:34;10130:1;10122:6;10118:14;10111:58;10203:7;10198:2;10190:6;10186:15;10179:32;9994:224;:::o;10224:366::-;10366:3;10387:67;10451:2;10446:3;10387:67;:::i;:::-;10380:74;;10463:93;10552:3;10463:93;:::i;:::-;10581:2;10576:3;10572:12;10565:19;;10224:366;;;:::o;10596:419::-;10762:4;10800:2;10789:9;10785:18;10777:26;;10849:9;10843:4;10839:20;10835:1;10824:9;10820:17;10813:47;10877:131;11003:4;10877:131;:::i;:::-;10869:139;;10596:419;;;:::o;11021:225::-;11161:34;11157:1;11149:6;11145:14;11138:58;11230:8;11225:2;11217:6;11213:15;11206:33;11021:225;:::o;11252:366::-;11394:3;11415:67;11479:2;11474:3;11415:67;:::i;:::-;11408:74;;11491:93;11580:3;11491:93;:::i;:::-;11609:2;11604:3;11600:12;11593:19;;11252:366;;;:::o;11624:419::-;11790:4;11828:2;11817:9;11813:18;11805:26;;11877:9;11871:4;11867:20;11863:1;11852:9;11848:17;11841:47;11905:131;12031:4;11905:131;:::i;:::-;11897:139;;11624:419;;;:::o;12049:181::-;12189:33;12185:1;12177:6;12173:14;12166:57;12049:181;:::o;12236:366::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:419::-;12774:4;12812:2;12801:9;12797:18;12789:26;;12861:9;12855:4;12851:20;12847:1;12836:9;12832:17;12825:47;12889:131;13015:4;12889:131;:::i;:::-;12881:139;;12608:419;;;:::o;13033:223::-;13173:34;13169:1;13161:6;13157:14;13150:58;13242:6;13237:2;13229:6;13225:15;13218:31;13033:223;:::o;13262:366::-;13404:3;13425:67;13489:2;13484:3;13425:67;:::i;:::-;13418:74;;13501:93;13590:3;13501:93;:::i;:::-;13619:2;13614:3;13610:12;13603:19;;13262:366;;;:::o;13634:419::-;13800:4;13838:2;13827:9;13823:18;13815:26;;13887:9;13881:4;13877:20;13873:1;13862:9;13858:17;13851:47;13915:131;14041:4;13915:131;:::i;:::-;13907:139;;13634:419;;;:::o;14059:221::-;14199:34;14195:1;14187:6;14183:14;14176:58;14268:4;14263:2;14255:6;14251:15;14244:29;14059:221;:::o;14286:366::-;14428:3;14449:67;14513:2;14508:3;14449:67;:::i;:::-;14442:74;;14525:93;14614:3;14525:93;:::i;:::-;14643:2;14638:3;14634:12;14627:19;;14286:366;;;:::o;14658:419::-;14824:4;14862:2;14851:9;14847:18;14839:26;;14911:9;14905:4;14901:20;14897:1;14886:9;14882:17;14875:47;14939:131;15065:4;14939:131;:::i;:::-;14931:139;;14658:419;;;:::o;15083:224::-;15223:34;15219:1;15211:6;15207:14;15200:58;15292:7;15287:2;15279:6;15275:15;15268:32;15083:224;:::o;15313:366::-;15455:3;15476:67;15540:2;15535:3;15476:67;:::i;:::-;15469:74;;15552:93;15641:3;15552:93;:::i;:::-;15670:2;15665:3;15661:12;15654:19;;15313:366;;;:::o;15685:419::-;15851:4;15889:2;15878:9;15874:18;15866:26;;15938:9;15932:4;15928:20;15924:1;15913:9;15909:17;15902:47;15966:131;16092:4;15966:131;:::i;:::-;15958:139;;15685:419;;;:::o;16110:222::-;16250:34;16246:1;16238:6;16234:14;16227:58;16319:5;16314:2;16306:6;16302:15;16295:30;16110:222;:::o;16338:366::-;16480:3;16501:67;16565:2;16560:3;16501:67;:::i;:::-;16494:74;;16577:93;16666:3;16577:93;:::i;:::-;16695:2;16690:3;16686:12;16679:19;;16338:366;;;:::o;16710:419::-;16876:4;16914:2;16903:9;16899:18;16891:26;;16963:9;16957:4;16953:20;16949:1;16938:9;16934:17;16927:47;16991:131;17117:4;16991:131;:::i;:::-;16983:139;;16710:419;;;:::o;17135:225::-;17275:34;17271:1;17263:6;17259:14;17252:58;17344:8;17339:2;17331:6;17327:15;17320:33;17135:225;:::o;17366:366::-;17508:3;17529:67;17593:2;17588:3;17529:67;:::i;:::-;17522:74;;17605:93;17694:3;17605:93;:::i;:::-;17723:2;17718:3;17714:12;17707:19;;17366:366;;;:::o;17738:419::-;17904:4;17942:2;17931:9;17927:18;17919:26;;17991:9;17985:4;17981:20;17977:1;17966:9;17962:17;17955:47;18019:131;18145:4;18019:131;:::i;:::-;18011:139;;17738:419;;;:::o;18163:225::-;18303:34;18299:1;18291:6;18287:14;18280:58;18372:8;18367:2;18359:6;18355:15;18348:33;18163:225;:::o;18394:366::-;18536:3;18557:67;18621:2;18616:3;18557:67;:::i;:::-;18550:74;;18633:93;18722:3;18633:93;:::i;:::-;18751:2;18746:3;18742:12;18735:19;;18394:366;;;:::o;18766:419::-;18932:4;18970:2;18959:9;18955:18;18947:26;;19019:9;19013:4;19009:20;19005:1;18994:9;18990:17;18983:47;19047:131;19173:4;19047:131;:::i;:::-;19039:139;;18766:419;;;:::o
Swarm Source
ipfs://7f0d2819dd0a8a2352b550ea41ff568dc6e25d37e5d584acc8cc28f0b9a7026d
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.