ERC-20
Overview
Max Total Supply
80,627.515485278964717281 $MULAN2
Holders
300
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.139545157497963196 $MULAN2Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
mulanV2
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-05-07 */ // Sources flattened with hardhat v2.2.1 https://hardhat.org // File contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File contracts/token/ERC20/extensions/IERC20Metadata.sol /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File contracts/utils/Context.sol /* * @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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File contracts/token/ERC20/ERC20.sol /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to 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 { } } // File contracts/access/Ownable.sol /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File contracts/mulan/WhitelistForSelf.sol abstract contract WhitelistForSelf is Ownable { // caller mapping(address => bool) public canBeModified; function addRelationByOwner(address caller) external virtual onlyOwner { canBeModified[caller] = true; } modifier allowModification() { require(canBeModified[msg.sender], "modification not allowed"); _; } } // File contracts/mulan/mulanV2.sol contract mulanV2 is ERC20, WhitelistForSelf { constructor() ERC20("Mulan.Finance V2", "$MULAN2") {} function mintByWhitelist(address _to, uint256 _amount ) external allowModification { _mint(_to, _amount); } function mint(address _to, uint256 _amount ) external onlyOwner { _mint(_to, _amount); } }
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":"caller","type":"address"}],"name":"addRelationByOwner","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"canBeModified","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintByWhitelist","outputs":[],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601081526020017f4d756c616e2e46696e616e6365205632000000000000000000000000000000008152506040518060400160405280600781526020017f244d554c414e320000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000171565b508060049080519060200190620000af92919062000171565b5050506000620000c46200016960201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000286565b600033905090565b8280546200017f9062000221565b90600052602060002090601f016020900481019282620001a35760008555620001ef565b82601f10620001be57805160ff1916838001178555620001ef565b82800160010185558215620001ef579182015b82811115620001ee578251825591602001919060010190620001d1565b5b509050620001fe919062000202565b5090565b5b808211156200021d57600081600090555060010162000203565b5090565b600060028204905060018216806200023a57607f821691505b6020821081141562000251576200025062000257565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611d0780620002966000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102e1578063a457c2d7146102ff578063a9059cbb1461032f578063dd62ed3e1461035f578063f2fde38b1461038f57610116565b806370a082311461026d578063715018a61461029d5780637fd3d3a4146102a75780638da5cb5b146102c357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633bee93621461020557806340c10f191461023557806366e9975f1461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103ab565b604051610130919061191c565b60405180910390f35b610153600480360381019061014e9190611445565b61043d565b6040516101609190611901565b60405180910390f35b61017161045b565b60405161017e9190611a9e565b60405180910390f35b6101a1600480360381019061019c91906113f6565b610465565b6040516101ae9190611901565b60405180910390f35b6101bf610566565b6040516101cc9190611ab9565b60405180910390f35b6101ef60048036038101906101ea9190611445565b61056f565b6040516101fc9190611901565b60405180910390f35b61021f600480360381019061021a9190611391565b61061b565b60405161022c9190611901565b60405180910390f35b61024f600480360381019061024a9190611445565b61063b565b005b61026b60048036038101906102669190611445565b6106c5565b005b61028760048036038101906102829190611391565b61075f565b6040516102949190611a9e565b60405180910390f35b6102a56107a7565b005b6102c160048036038101906102bc9190611391565b6108e4565b005b6102cb6109bb565b6040516102d891906118e6565b60405180910390f35b6102e96109e5565b6040516102f6919061191c565b60405180910390f35b61031960048036038101906103149190611445565b610a77565b6040516103269190611901565b60405180910390f35b61034960048036038101906103449190611445565b610b6b565b6040516103569190611901565b60405180910390f35b610379600480360381019061037491906113ba565b610b89565b6040516103869190611a9e565b60405180910390f35b6103a960048036038101906103a49190611391565b610c10565b005b6060600380546103ba90611c02565b80601f01602080910402602001604051908101604052809291908181526020018280546103e690611c02565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600061045161044a610dbc565b8484610dc4565b6001905092915050565b6000600254905090565b6000610472848484610f8f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104bd610dbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561053d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610534906119be565b60405180910390fd5b61055a85610549610dbc565b85846105559190611b46565b610dc4565b60019150509392505050565b60006012905090565b600061061161057c610dbc565b84846001600061058a610dbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461060c9190611af0565b610dc4565b6001905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b610643610dbc565b73ffffffffffffffffffffffffffffffffffffffff166106616109bb565b73ffffffffffffffffffffffffffffffffffffffff16146106b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ae906119de565b60405180910390fd5b6106c1828261120e565b5050565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610751576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610748906119fe565b60405180910390fd5b61075b828261120e565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107af610dbc565b73ffffffffffffffffffffffffffffffffffffffff166107cd6109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081a906119de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6108ec610dbc565b73ffffffffffffffffffffffffffffffffffffffff1661090a6109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610957906119de565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109f490611c02565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2090611c02565b8015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b820191906000526020600020905b815481529060010190602001808311610a5057829003601f168201915b5050505050905090565b60008060016000610a86610dbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a90611a5e565b60405180910390fd5b610b60610b4e610dbc565b858584610b5b9190611b46565b610dc4565b600191505092915050565b6000610b7f610b78610dbc565b8484610f8f565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c18610dbc565b73ffffffffffffffffffffffffffffffffffffffff16610c366109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c83906119de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf39061195e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90611a3e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b9061197e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f829190611a9e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690611a1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110669061193e565b60405180910390fd5b61107a838383611362565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f79061199e565b60405180910390fd5b818161110c9190611b46565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461119c9190611af0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112009190611a9e565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127590611a7e565b60405180910390fd5b61128a60008383611362565b806002600082825461129c9190611af0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112f19190611af0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113569190611a9e565b60405180910390a35050565b505050565b60008135905061137681611ca3565b92915050565b60008135905061138b81611cba565b92915050565b6000602082840312156113a357600080fd5b60006113b184828501611367565b91505092915050565b600080604083850312156113cd57600080fd5b60006113db85828601611367565b92505060206113ec85828601611367565b9150509250929050565b60008060006060848603121561140b57600080fd5b600061141986828701611367565b935050602061142a86828701611367565b925050604061143b8682870161137c565b9150509250925092565b6000806040838503121561145857600080fd5b600061146685828601611367565b92505060206114778582860161137c565b9150509250929050565b61148a81611b7a565b82525050565b61149981611b8c565b82525050565b60006114aa82611ad4565b6114b48185611adf565b93506114c4818560208601611bcf565b6114cd81611c92565b840191505092915050565b60006114e5602383611adf565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061154b602683611adf565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115b1602283611adf565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611617602683611adf565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061167d602883611adf565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116e3602083611adf565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611723601883611adf565b91507f6d6f64696669636174696f6e206e6f7420616c6c6f77656400000000000000006000830152602082019050919050565b6000611763602583611adf565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117c9602483611adf565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061182f602583611adf565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611895601f83611adf565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6118d181611bb8565b82525050565b6118e081611bc2565b82525050565b60006020820190506118fb6000830184611481565b92915050565b60006020820190506119166000830184611490565b92915050565b60006020820190508181036000830152611936818461149f565b905092915050565b60006020820190508181036000830152611957816114d8565b9050919050565b600060208201905081810360008301526119778161153e565b9050919050565b60006020820190508181036000830152611997816115a4565b9050919050565b600060208201905081810360008301526119b78161160a565b9050919050565b600060208201905081810360008301526119d781611670565b9050919050565b600060208201905081810360008301526119f7816116d6565b9050919050565b60006020820190508181036000830152611a1781611716565b9050919050565b60006020820190508181036000830152611a3781611756565b9050919050565b60006020820190508181036000830152611a57816117bc565b9050919050565b60006020820190508181036000830152611a7781611822565b9050919050565b60006020820190508181036000830152611a9781611888565b9050919050565b6000602082019050611ab360008301846118c8565b92915050565b6000602082019050611ace60008301846118d7565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611afb82611bb8565b9150611b0683611bb8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b3b57611b3a611c34565b5b828201905092915050565b6000611b5182611bb8565b9150611b5c83611bb8565b925082821015611b6f57611b6e611c34565b5b828203905092915050565b6000611b8582611b98565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611bed578082015181840152602081019050611bd2565b83811115611bfc576000848401525b50505050565b60006002820490506001821680611c1a57607f821691505b60208210811415611c2e57611c2d611c63565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611cac81611b7a565b8114611cb757600080fd5b50565b611cc381611bb8565b8114611cce57600080fd5b5056fea2646970667358221220eaf9cf2a25c92b668572549a11f4e92e15572179e973470095ec3887f765cf7964736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102e1578063a457c2d7146102ff578063a9059cbb1461032f578063dd62ed3e1461035f578063f2fde38b1461038f57610116565b806370a082311461026d578063715018a61461029d5780637fd3d3a4146102a75780638da5cb5b146102c357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633bee93621461020557806340c10f191461023557806366e9975f1461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103ab565b604051610130919061191c565b60405180910390f35b610153600480360381019061014e9190611445565b61043d565b6040516101609190611901565b60405180910390f35b61017161045b565b60405161017e9190611a9e565b60405180910390f35b6101a1600480360381019061019c91906113f6565b610465565b6040516101ae9190611901565b60405180910390f35b6101bf610566565b6040516101cc9190611ab9565b60405180910390f35b6101ef60048036038101906101ea9190611445565b61056f565b6040516101fc9190611901565b60405180910390f35b61021f600480360381019061021a9190611391565b61061b565b60405161022c9190611901565b60405180910390f35b61024f600480360381019061024a9190611445565b61063b565b005b61026b60048036038101906102669190611445565b6106c5565b005b61028760048036038101906102829190611391565b61075f565b6040516102949190611a9e565b60405180910390f35b6102a56107a7565b005b6102c160048036038101906102bc9190611391565b6108e4565b005b6102cb6109bb565b6040516102d891906118e6565b60405180910390f35b6102e96109e5565b6040516102f6919061191c565b60405180910390f35b61031960048036038101906103149190611445565b610a77565b6040516103269190611901565b60405180910390f35b61034960048036038101906103449190611445565b610b6b565b6040516103569190611901565b60405180910390f35b610379600480360381019061037491906113ba565b610b89565b6040516103869190611a9e565b60405180910390f35b6103a960048036038101906103a49190611391565b610c10565b005b6060600380546103ba90611c02565b80601f01602080910402602001604051908101604052809291908181526020018280546103e690611c02565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600061045161044a610dbc565b8484610dc4565b6001905092915050565b6000600254905090565b6000610472848484610f8f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104bd610dbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561053d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610534906119be565b60405180910390fd5b61055a85610549610dbc565b85846105559190611b46565b610dc4565b60019150509392505050565b60006012905090565b600061061161057c610dbc565b84846001600061058a610dbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461060c9190611af0565b610dc4565b6001905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b610643610dbc565b73ffffffffffffffffffffffffffffffffffffffff166106616109bb565b73ffffffffffffffffffffffffffffffffffffffff16146106b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ae906119de565b60405180910390fd5b6106c1828261120e565b5050565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610751576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610748906119fe565b60405180910390fd5b61075b828261120e565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107af610dbc565b73ffffffffffffffffffffffffffffffffffffffff166107cd6109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081a906119de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6108ec610dbc565b73ffffffffffffffffffffffffffffffffffffffff1661090a6109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610957906119de565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109f490611c02565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2090611c02565b8015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b820191906000526020600020905b815481529060010190602001808311610a5057829003601f168201915b5050505050905090565b60008060016000610a86610dbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a90611a5e565b60405180910390fd5b610b60610b4e610dbc565b858584610b5b9190611b46565b610dc4565b600191505092915050565b6000610b7f610b78610dbc565b8484610f8f565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c18610dbc565b73ffffffffffffffffffffffffffffffffffffffff16610c366109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c83906119de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf39061195e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90611a3e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b9061197e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f829190611a9e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690611a1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110669061193e565b60405180910390fd5b61107a838383611362565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f79061199e565b60405180910390fd5b818161110c9190611b46565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461119c9190611af0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112009190611a9e565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127590611a7e565b60405180910390fd5b61128a60008383611362565b806002600082825461129c9190611af0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112f19190611af0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113569190611a9e565b60405180910390a35050565b505050565b60008135905061137681611ca3565b92915050565b60008135905061138b81611cba565b92915050565b6000602082840312156113a357600080fd5b60006113b184828501611367565b91505092915050565b600080604083850312156113cd57600080fd5b60006113db85828601611367565b92505060206113ec85828601611367565b9150509250929050565b60008060006060848603121561140b57600080fd5b600061141986828701611367565b935050602061142a86828701611367565b925050604061143b8682870161137c565b9150509250925092565b6000806040838503121561145857600080fd5b600061146685828601611367565b92505060206114778582860161137c565b9150509250929050565b61148a81611b7a565b82525050565b61149981611b8c565b82525050565b60006114aa82611ad4565b6114b48185611adf565b93506114c4818560208601611bcf565b6114cd81611c92565b840191505092915050565b60006114e5602383611adf565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061154b602683611adf565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115b1602283611adf565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611617602683611adf565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061167d602883611adf565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116e3602083611adf565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611723601883611adf565b91507f6d6f64696669636174696f6e206e6f7420616c6c6f77656400000000000000006000830152602082019050919050565b6000611763602583611adf565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117c9602483611adf565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061182f602583611adf565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611895601f83611adf565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6118d181611bb8565b82525050565b6118e081611bc2565b82525050565b60006020820190506118fb6000830184611481565b92915050565b60006020820190506119166000830184611490565b92915050565b60006020820190508181036000830152611936818461149f565b905092915050565b60006020820190508181036000830152611957816114d8565b9050919050565b600060208201905081810360008301526119778161153e565b9050919050565b60006020820190508181036000830152611997816115a4565b9050919050565b600060208201905081810360008301526119b78161160a565b9050919050565b600060208201905081810360008301526119d781611670565b9050919050565b600060208201905081810360008301526119f7816116d6565b9050919050565b60006020820190508181036000830152611a1781611716565b9050919050565b60006020820190508181036000830152611a3781611756565b9050919050565b60006020820190508181036000830152611a57816117bc565b9050919050565b60006020820190508181036000830152611a7781611822565b9050919050565b60006020820190508181036000830152611a9781611888565b9050919050565b6000602082019050611ab360008301846118c8565b92915050565b6000602082019050611ace60008301846118d7565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611afb82611bb8565b9150611b0683611bb8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b3b57611b3a611c34565b5b828201905092915050565b6000611b5182611bb8565b9150611b5c83611bb8565b925082821015611b6f57611b6e611c34565b5b828203905092915050565b6000611b8582611b98565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611bed578082015181840152602081019050611bd2565b83811115611bfc576000848401525b50505050565b60006002820490506001821680611c1a57607f821691505b60208210811415611c2e57611c2d611c63565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611cac81611b7a565b8114611cb757600080fd5b50565b611cc381611bb8565b8114611cce57600080fd5b5056fea2646970667358221220eaf9cf2a25c92b668572549a11f4e92e15572179e973470095ec3887f765cf7964736f6c63430008000033
Deployed Bytecode Sourcemap
17948:348:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6429:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8596:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7549:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9247:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7391:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10078:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17590:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18191:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18062:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7720:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16907:148;;;:::i;:::-;;17644:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16256:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6648:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10796:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8060:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8298:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17210:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6429:100;6483:13;6516:5;6509:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6429:100;:::o;8596:169::-;8679:4;8696:39;8705:12;:10;:12::i;:::-;8719:7;8728:6;8696:8;:39::i;:::-;8753:4;8746:11;;8596:169;;;;:::o;7549:108::-;7610:7;7637:12;;7630:19;;7549:108;:::o;9247:422::-;9353:4;9370:36;9380:6;9388:9;9399:6;9370:9;:36::i;:::-;9419:24;9446:11;:19;9458:6;9446:19;;;;;;;;;;;;;;;:33;9466:12;:10;:12::i;:::-;9446:33;;;;;;;;;;;;;;;;9419:60;;9518:6;9498:16;:26;;9490:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9580:57;9589:6;9597:12;:10;:12::i;:::-;9630:6;9611:16;:25;;;;:::i;:::-;9580:8;:57::i;:::-;9657:4;9650:11;;;9247:422;;;;;:::o;7391:93::-;7449:5;7474:2;7467:9;;7391:93;:::o;10078:215::-;10166:4;10183:80;10192:12;:10;:12::i;:::-;10206:7;10252:10;10215:11;:25;10227:12;:10;:12::i;:::-;10215:25;;;;;;;;;;;;;;;:34;10241:7;10215:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10183:8;:80::i;:::-;10281:4;10274:11;;10078:215;;;;:::o;17590:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;18191:102::-;16487:12;:10;:12::i;:::-;16476:23;;:7;:5;:7::i;:::-;:23;;;16468:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18266:19:::1;18272:3;18277:7;18266:5;:19::i;:::-;18191:102:::0;;:::o;18062:121::-;17818:13;:25;17832:10;17818:25;;;;;;;;;;;;;;;;;;;;;;;;;17810:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;18156:19:::1;18162:3;18167:7;18156:5;:19::i;:::-;18062:121:::0;;:::o;7720:127::-;7794:7;7821:9;:18;7831:7;7821:18;;;;;;;;;;;;;;;;7814:25;;7720:127;;;:::o;16907:148::-;16487:12;:10;:12::i;:::-;16476:23;;:7;:5;:7::i;:::-;:23;;;16468:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17014:1:::1;16977:40;;16998:6;;;;;;;;;;;16977:40;;;;;;;;;;;;17045:1;17028:6;;:19;;;;;;;;;;;;;;;;;;16907:148::o:0;17644:118::-;16487:12;:10;:12::i;:::-;16476:23;;:7;:5;:7::i;:::-;:23;;;16468:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17750:4:::1;17726:13;:21;17740:6;17726:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;17644:118:::0;:::o;16256:87::-;16302:7;16329:6;;;;;;;;;;;16322:13;;16256:87;:::o;6648:104::-;6704:13;6737:7;6730:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6648:104;:::o;10796:377::-;10889:4;10906:24;10933:11;:25;10945:12;:10;:12::i;:::-;10933:25;;;;;;;;;;;;;;;:34;10959:7;10933:34;;;;;;;;;;;;;;;;10906:61;;11006:15;10986:16;:35;;10978:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11074:67;11083:12;:10;:12::i;:::-;11097:7;11125:15;11106:16;:34;;;;:::i;:::-;11074:8;:67::i;:::-;11161:4;11154:11;;;10796:377;;;;:::o;8060:175::-;8146:4;8163:42;8173:12;:10;:12::i;:::-;8187:9;8198:6;8163:9;:42::i;:::-;8223:4;8216:11;;8060:175;;;;:::o;8298:151::-;8387:7;8414:11;:18;8426:5;8414:18;;;;;;;;;;;;;;;:27;8433:7;8414:27;;;;;;;;;;;;;;;;8407:34;;8298:151;;;;:::o;17210:244::-;16487:12;:10;:12::i;:::-;16476:23;;:7;:5;:7::i;:::-;:23;;;16468:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17319:1:::1;17299:22;;:8;:22;;;;17291:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17409:8;17380:38;;17401:6;;;;;;;;;;;17380:38;;;;;;;;;;;;17438:8;17429:6;;:17;;;;;;;;;;;;;;;;;;17210:244:::0;:::o;4056:98::-;4109:7;4136:10;4129:17;;4056:98;:::o;14152:346::-;14271:1;14254:19;;:5;:19;;;;14246:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14352:1;14333:21;;:7;:21;;;;14325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14436:6;14406:11;:18;14418:5;14406:18;;;;;;;;;;;;;;;:27;14425:7;14406:27;;;;;;;;;;;;;;;:36;;;;14474:7;14458:32;;14467:5;14458:32;;;14483:6;14458:32;;;;;;:::i;:::-;;;;;;;;14152:346;;;:::o;11663:604::-;11787:1;11769:20;;:6;:20;;;;11761:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11871:1;11850:23;;:9;:23;;;;11842:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11926:47;11947:6;11955:9;11966:6;11926:20;:47::i;:::-;11986:21;12010:9;:17;12020:6;12010:17;;;;;;;;;;;;;;;;11986:41;;12063:6;12046:13;:23;;12038:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12159:6;12143:13;:22;;;;:::i;:::-;12123:9;:17;12133:6;12123:17;;;;;;;;;;;;;;;:42;;;;12200:6;12176:9;:20;12186:9;12176:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12241:9;12224:35;;12233:6;12224:35;;;12252:6;12224:35;;;;;;:::i;:::-;;;;;;;;11663:604;;;;:::o;12549:338::-;12652:1;12633:21;;:7;:21;;;;12625:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12703:49;12732:1;12736:7;12745:6;12703:20;:49::i;:::-;12781:6;12765:12;;:22;;;;;;;:::i;:::-;;;;;;;;12820:6;12798:9;:18;12808:7;12798:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;12863:7;12842:37;;12859:1;12842:37;;;12872:6;12842:37;;;;;;:::i;:::-;;;;;;;;12549:338;;:::o;15101:92::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:367::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2818:34;2814:1;2809:3;2805:11;2798:55;2884:5;2879:2;2874:3;2870:12;2863:27;2916:2;2911:3;2907:12;2900:19;;2704:221;;;:::o;2931:370::-;;3094:67;3158:2;3153:3;3094:67;:::i;:::-;3087:74;;3191:34;3187:1;3182:3;3178:11;3171:55;3257:8;3252:2;3247:3;3243:12;3236:30;3292:2;3287:3;3283:12;3276:19;;3077:224;;;:::o;3307:366::-;;3470:67;3534:2;3529:3;3470:67;:::i;:::-;3463:74;;3567:34;3563:1;3558:3;3554:11;3547:55;3633:4;3628:2;3623:3;3619:12;3612:26;3664:2;3659:3;3655:12;3648:19;;3453:220;;;:::o;3679:370::-;;3842:67;3906:2;3901:3;3842:67;:::i;:::-;3835:74;;3939:34;3935:1;3930:3;3926:11;3919:55;4005:8;4000:2;3995:3;3991:12;3984:30;4040:2;4035:3;4031:12;4024:19;;3825:224;;;:::o;4055:372::-;;4218:67;4282:2;4277:3;4218:67;:::i;:::-;4211:74;;4315:34;4311:1;4306:3;4302:11;4295:55;4381:10;4376:2;4371:3;4367:12;4360:32;4418:2;4413:3;4409:12;4402:19;;4201:226;;;:::o;4433:330::-;;4596:67;4660:2;4655:3;4596:67;:::i;:::-;4589:74;;4693:34;4689:1;4684:3;4680:11;4673:55;4754:2;4749:3;4745:12;4738:19;;4579:184;;;:::o;4769:322::-;;4932:67;4996:2;4991:3;4932:67;:::i;:::-;4925:74;;5029:26;5025:1;5020:3;5016:11;5009:47;5082:2;5077:3;5073:12;5066:19;;4915:176;;;:::o;5097:369::-;;5260:67;5324:2;5319:3;5260:67;:::i;:::-;5253:74;;5357:34;5353:1;5348:3;5344:11;5337:55;5423:7;5418:2;5413:3;5409:12;5402:29;5457:2;5452:3;5448:12;5441:19;;5243:223;;;:::o;5472:368::-;;5635:67;5699:2;5694:3;5635:67;:::i;:::-;5628:74;;5732:34;5728:1;5723:3;5719:11;5712:55;5798:6;5793:2;5788:3;5784:12;5777:28;5831:2;5826:3;5822:12;5815:19;;5618:222;;;:::o;5846:369::-;;6009:67;6073:2;6068:3;6009:67;:::i;:::-;6002:74;;6106:34;6102:1;6097:3;6093:11;6086:55;6172:7;6167:2;6162:3;6158:12;6151:29;6206:2;6201:3;6197:12;6190:19;;5992:223;;;:::o;6221:329::-;;6384:67;6448:2;6443:3;6384:67;:::i;:::-;6377:74;;6481:33;6477:1;6472:3;6468:11;6461:54;6541:2;6536:3;6532:12;6525:19;;6367:183;;;:::o;6556:118::-;6643:24;6661:5;6643:24;:::i;:::-;6638:3;6631:37;6621:53;;:::o;6680:112::-;6763:22;6779:5;6763:22;:::i;:::-;6758:3;6751:35;6741:51;;:::o;6798:222::-;;6929:2;6918:9;6914:18;6906:26;;6942:71;7010:1;6999:9;6995:17;6986:6;6942:71;:::i;:::-;6896:124;;;;:::o;7026:210::-;;7151:2;7140:9;7136:18;7128:26;;7164:65;7226:1;7215:9;7211:17;7202:6;7164:65;:::i;:::-;7118:118;;;;:::o;7242:313::-;;7393:2;7382:9;7378:18;7370:26;;7442:9;7436:4;7432:20;7428:1;7417:9;7413:17;7406:47;7470:78;7543:4;7534:6;7470:78;:::i;:::-;7462:86;;7360:195;;;;:::o;7561:419::-;;7765:2;7754:9;7750:18;7742:26;;7814:9;7808:4;7804:20;7800:1;7789:9;7785:17;7778:47;7842:131;7968:4;7842:131;:::i;:::-;7834:139;;7732:248;;;:::o;7986:419::-;;8190:2;8179:9;8175:18;8167:26;;8239:9;8233:4;8229:20;8225:1;8214:9;8210:17;8203:47;8267:131;8393:4;8267:131;:::i;:::-;8259:139;;8157:248;;;:::o;8411:419::-;;8615:2;8604:9;8600:18;8592:26;;8664:9;8658:4;8654:20;8650:1;8639:9;8635:17;8628:47;8692:131;8818:4;8692:131;:::i;:::-;8684:139;;8582:248;;;:::o;8836:419::-;;9040:2;9029:9;9025:18;9017:26;;9089:9;9083:4;9079:20;9075:1;9064:9;9060:17;9053:47;9117:131;9243:4;9117:131;:::i;:::-;9109:139;;9007:248;;;:::o;9261:419::-;;9465:2;9454:9;9450:18;9442:26;;9514:9;9508:4;9504:20;9500:1;9489:9;9485:17;9478:47;9542:131;9668:4;9542:131;:::i;:::-;9534:139;;9432:248;;;:::o;9686:419::-;;9890:2;9879:9;9875:18;9867:26;;9939:9;9933:4;9929:20;9925:1;9914:9;9910:17;9903:47;9967:131;10093:4;9967:131;:::i;:::-;9959:139;;9857:248;;;:::o;10111:419::-;;10315:2;10304:9;10300:18;10292:26;;10364:9;10358:4;10354:20;10350:1;10339:9;10335:17;10328:47;10392:131;10518:4;10392:131;:::i;:::-;10384:139;;10282:248;;;:::o;10536:419::-;;10740:2;10729:9;10725:18;10717:26;;10789:9;10783:4;10779:20;10775:1;10764:9;10760:17;10753:47;10817:131;10943:4;10817:131;:::i;:::-;10809:139;;10707:248;;;:::o;10961:419::-;;11165:2;11154:9;11150:18;11142:26;;11214:9;11208:4;11204:20;11200:1;11189:9;11185:17;11178:47;11242:131;11368:4;11242:131;:::i;:::-;11234:139;;11132:248;;;:::o;11386:419::-;;11590:2;11579:9;11575:18;11567:26;;11639:9;11633:4;11629:20;11625:1;11614:9;11610:17;11603:47;11667:131;11793:4;11667:131;:::i;:::-;11659:139;;11557:248;;;:::o;11811:419::-;;12015:2;12004:9;12000:18;11992:26;;12064:9;12058:4;12054:20;12050:1;12039:9;12035:17;12028:47;12092:131;12218:4;12092:131;:::i;:::-;12084:139;;11982:248;;;:::o;12236:222::-;;12367:2;12356:9;12352:18;12344:26;;12380:71;12448:1;12437:9;12433:17;12424:6;12380:71;:::i;:::-;12334:124;;;;:::o;12464:214::-;;12591:2;12580:9;12576:18;12568:26;;12604:67;12668:1;12657:9;12653:17;12644:6;12604:67;:::i;:::-;12558:120;;;;:::o;12684:99::-;;12770:5;12764:12;12754:22;;12743:40;;;:::o;12789:169::-;;12907:6;12902:3;12895:19;12947:4;12942:3;12938:14;12923:29;;12885:73;;;;:::o;12964:305::-;;13023:20;13041:1;13023:20;:::i;:::-;13018:25;;13057:20;13075:1;13057:20;:::i;:::-;13052:25;;13211:1;13143:66;13139:74;13136:1;13133:81;13130:2;;;13217:18;;:::i;:::-;13130:2;13261:1;13258;13254:9;13247:16;;13008:261;;;;:::o;13275:191::-;;13335:20;13353:1;13335:20;:::i;:::-;13330:25;;13369:20;13387:1;13369:20;:::i;:::-;13364:25;;13408:1;13405;13402:8;13399:2;;;13413:18;;:::i;:::-;13399:2;13458:1;13455;13451:9;13443:17;;13320:146;;;;:::o;13472:96::-;;13538:24;13556:5;13538:24;:::i;:::-;13527:35;;13517:51;;;:::o;13574:90::-;;13651:5;13644:13;13637:21;13626:32;;13616:48;;;:::o;13670:126::-;;13747:42;13740:5;13736:54;13725:65;;13715:81;;;:::o;13802:77::-;;13868:5;13857:16;;13847:32;;;:::o;13885:86::-;;13960:4;13953:5;13949:16;13938:27;;13928:43;;;:::o;13977:307::-;14045:1;14055:113;14069:6;14066:1;14063:13;14055:113;;;14154:1;14149:3;14145:11;14139:18;14135:1;14130:3;14126:11;14119:39;14091:2;14088:1;14084:10;14079:15;;14055:113;;;14186:6;14183:1;14180:13;14177:2;;;14266:1;14257:6;14252:3;14248:16;14241:27;14177:2;14026:258;;;;:::o;14290:320::-;;14371:1;14365:4;14361:12;14351:22;;14418:1;14412:4;14408:12;14439:18;14429:2;;14495:4;14487:6;14483:17;14473:27;;14429:2;14557;14549:6;14546:14;14526:18;14523:38;14520:2;;;14576:18;;:::i;:::-;14520:2;14341:269;;;;:::o;14616:180::-;14664:77;14661:1;14654:88;14761:4;14758:1;14751:15;14785:4;14782:1;14775:15;14802:180;14850:77;14847:1;14840:88;14947:4;14944:1;14937:15;14971:4;14968:1;14961:15;14988:102;;15080:2;15076:7;15071:2;15064:5;15060:14;15056:28;15046:38;;15036:54;;;:::o;15096:122::-;15169:24;15187:5;15169:24;:::i;:::-;15162:5;15159:35;15149:2;;15208:1;15205;15198:12;15149:2;15139:79;:::o;15224:122::-;15297:24;15315:5;15297:24;:::i;:::-;15290:5;15287:35;15277:2;;15336:1;15333;15326:12;15277:2;15267:79;:::o
Swarm Source
ipfs://eaf9cf2a25c92b668572549a11f4e92e15572179e973470095ec3887f765cf79
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.