ERC-20
Overview
Max Total Supply
1,000,000,000 $HYPER
Holders
6
Market
Price
$0.00 @ 0.000000 S
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
90,646,674.569812595022779509 $HYPERValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
HYPER
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-02-28 */ /** Welcome to Hypersonic! In the ever-evolving world of cryptocurrency, speed and efficiency are paramount. Hypersonic is here to revolutionize the way you experience digital transactions. Built on cutting-edge blockchain technology, Hypersonic ensures lightning-fast transactions, high throughput, and low latency, making every transfer as seamless as sending a text message. https://t.me/hypersonicexchange https://hypersonic.exchange/ https://x.com/hypersonic_ex/ */ pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/[email protected]/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 default value returned by this function, unless * it's 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @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 {} } // File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: @openzeppelin/[email protected]/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } } // File: contracts/froq.sol pragma solidity ^0.8.16; contract HYPER is ERC20, ERC20Burnable, Ownable { constructor(address initialOwner) ERC20("Hyper Sonic", "$HYPER") Ownable() { require(initialOwner != address(0), "Invalid owner address"); _mint(msg.sender, 1000000000 * 10 ** decimals()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[],"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
608060405234801561000f575f80fd5b506040516123603803806123608339818101604052810190610031919061041b565b6040518060400160405280600b81526020017f487970657220536f6e69630000000000000000000000000000000000000000008152506040518060400160405280600681526020017f244859504552000000000000000000000000000000000000000000000000000081525081600390816100ac9190610680565b5080600490816100bc9190610680565b5050506100db6100d061018760201b60201c565b61018e60201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610140906107a9565b60405180910390fd5b6101813361015b61025160201b60201c565b600a610167919061092f565b633b9aca006101769190610979565b61025960201b60201c565b50610a7d565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102be90610a04565b60405180910390fd5b6102d85f83836103b360201b60201c565b8060025f8282546102e99190610a22565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103969190610a64565b60405180910390a36103af5f83836103b860201b60201c565b5050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6103ea826103c1565b9050919050565b6103fa816103e0565b8114610404575f80fd5b50565b5f81519050610415816103f1565b92915050565b5f602082840312156104305761042f6103bd565b5b5f61043d84828501610407565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806104c157607f821691505b6020821081036104d4576104d361047d565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105367fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826104fb565b61054086836104fb565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61058461057f61057a84610558565b610561565b610558565b9050919050565b5f819050919050565b61059d8361056a565b6105b16105a98261058b565b848454610507565b825550505050565b5f90565b6105c56105b9565b6105d0818484610594565b505050565b5b818110156105f3576105e85f826105bd565b6001810190506105d6565b5050565b601f82111561063857610609816104da565b610612846104ec565b81016020851015610621578190505b61063561062d856104ec565b8301826105d5565b50505b505050565b5f82821c905092915050565b5f6106585f198460080261063d565b1980831691505092915050565b5f6106708383610649565b9150826002028217905092915050565b61068982610446565b67ffffffffffffffff8111156106a2576106a1610450565b5b6106ac82546104aa565b6106b78282856105f7565b5f60209050601f8311600181146106e8575f84156106d6578287015190505b6106e08582610665565b865550610747565b601f1984166106f6866104da565b5f5b8281101561071d578489015182556001820191506020850194506020810190506106f8565b8683101561073a5784890151610736601f891682610649565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f496e76616c6964206f776e6572206164647265737300000000000000000000005f82015250565b5f61079360158361074f565b915061079e8261075f565b602082019050919050565b5f6020820190508181035f8301526107c081610787565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561084957808604811115610825576108246107c7565b5b60018516156108345780820291505b8081029050610842856107f4565b9450610809565b94509492505050565b5f82610861576001905061091c565b8161086e575f905061091c565b8160018114610884576002811461088e576108bd565b600191505061091c565b60ff8411156108a05761089f6107c7565b5b8360020a9150848211156108b7576108b66107c7565b5b5061091c565b5060208310610133831016604e8410600b84101617156108f25782820a9050838111156108ed576108ec6107c7565b5b61091c565b6108ff8484846001610800565b92509050818404811115610916576109156107c7565b5b81810290505b9392505050565b5f60ff82169050919050565b5f61093982610558565b915061094483610923565b92506109717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610852565b905092915050565b5f61098382610558565b915061098e83610558565b925082820261099c81610558565b915082820484148315176109b3576109b26107c7565b5b5092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6109ee601f8361074f565b91506109f9826109ba565b602082019050919050565b5f6020820190508181035f830152610a1b816109e2565b9050919050565b5f610a2c82610558565b9150610a3783610558565b9250828201905080821115610a4f57610a4e6107c7565b5b92915050565b610a5e81610558565b82525050565b5f602082019050610a775f830184610a55565b92915050565b6118d680610a8a5f395ff3fe608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063715018a611610095578063a457c2d711610064578063a457c2d71461029a578063a9059cbb146102ca578063dd62ed3e146102fa578063f2fde38b1461032a576100fe565b8063715018a61461023857806379cc6790146102425780638da5cb5b1461025e57806395d89b411461027c576100fe565b8063313ce567116100d1578063313ce5671461019e57806339509351146101bc57806342966c68146101ec57806370a0823114610208576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a610346565b6040516101179190610f8b565b60405180910390f35b61013a6004803603810190610135919061103c565b6103d6565b6040516101479190611094565b60405180910390f35b6101586103f8565b60405161016591906110bc565b60405180910390f35b610188600480360381019061018391906110d5565b610401565b6040516101959190611094565b60405180910390f35b6101a661042f565b6040516101b39190611140565b60405180910390f35b6101d660048036038101906101d1919061103c565b610437565b6040516101e39190611094565b60405180910390f35b61020660048036038101906102019190611159565b61046d565b005b610222600480360381019061021d9190611184565b610481565b60405161022f91906110bc565b60405180910390f35b6102406104c6565b005b61025c6004803603810190610257919061103c565b6104d9565b005b6102666104f9565b60405161027391906111be565b60405180910390f35b610284610521565b6040516102919190610f8b565b60405180910390f35b6102b460048036038101906102af919061103c565b6105b1565b6040516102c19190611094565b60405180910390f35b6102e460048036038101906102df919061103c565b610626565b6040516102f19190611094565b60405180910390f35b610314600480360381019061030f91906111d7565b610648565b60405161032191906110bc565b60405180910390f35b610344600480360381019061033f9190611184565b6106ca565b005b60606003805461035590611242565b80601f016020809104026020016040519081016040528092919081815260200182805461038190611242565b80156103cc5780601f106103a3576101008083540402835291602001916103cc565b820191905f5260205f20905b8154815290600101906020018083116103af57829003601f168201915b5050505050905090565b5f806103e061074c565b90506103ed818585610753565b600191505092915050565b5f600254905090565b5f8061040b61074c565b9050610418858285610916565b6104238585856109a1565b60019150509392505050565b5f6012905090565b5f8061044161074c565b90506104628185856104538589610648565b61045d919061129f565b610753565b600191505092915050565b61047e61047861074c565b82610c0d565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104ce610dd0565b6104d75f610e4e565b565b6104eb826104e561074c565b83610916565b6104f58282610c0d565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461053090611242565b80601f016020809104026020016040519081016040528092919081815260200182805461055c90611242565b80156105a75780601f1061057e576101008083540402835291602001916105a7565b820191905f5260205f20905b81548152906001019060200180831161058a57829003601f168201915b5050505050905090565b5f806105bb61074c565b90505f6105c88286610648565b90508381101561060d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060490611342565b60405180910390fd5b61061a8286868403610753565b60019250505092915050565b5f8061063061074c565b905061063d8185856109a1565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106d2610dd0565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610740576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610737906113d0565b60405180910390fd5b61074981610e4e565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b89061145e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361082f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610826906114ec565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161090991906110bc565b60405180910390a3505050565b5f6109218484610648565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461099b578181101561098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098490611554565b60405180910390fd5b61099a8484848403610753565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a06906115e2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7490611670565b60405180910390fd5b610a88838383610f11565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b02906116fe565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bf491906110bc565b60405180910390a3610c07848484610f16565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c729061178c565b60405180910390fd5b610c86825f83610f11565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d009061181a565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db891906110bc565b60405180910390a3610dcb835f84610f16565b505050565b610dd861074c565b73ffffffffffffffffffffffffffffffffffffffff16610df66104f9565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390611882565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610f5d82610f1b565b610f678185610f25565b9350610f77818560208601610f35565b610f8081610f43565b840191505092915050565b5f6020820190508181035f830152610fa38184610f53565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fd882610faf565b9050919050565b610fe881610fce565b8114610ff2575f80fd5b50565b5f8135905061100381610fdf565b92915050565b5f819050919050565b61101b81611009565b8114611025575f80fd5b50565b5f8135905061103681611012565b92915050565b5f806040838503121561105257611051610fab565b5b5f61105f85828601610ff5565b925050602061107085828601611028565b9150509250929050565b5f8115159050919050565b61108e8161107a565b82525050565b5f6020820190506110a75f830184611085565b92915050565b6110b681611009565b82525050565b5f6020820190506110cf5f8301846110ad565b92915050565b5f805f606084860312156110ec576110eb610fab565b5b5f6110f986828701610ff5565b935050602061110a86828701610ff5565b925050604061111b86828701611028565b9150509250925092565b5f60ff82169050919050565b61113a81611125565b82525050565b5f6020820190506111535f830184611131565b92915050565b5f6020828403121561116e5761116d610fab565b5b5f61117b84828501611028565b91505092915050565b5f6020828403121561119957611198610fab565b5b5f6111a684828501610ff5565b91505092915050565b6111b881610fce565b82525050565b5f6020820190506111d15f8301846111af565b92915050565b5f80604083850312156111ed576111ec610fab565b5b5f6111fa85828601610ff5565b925050602061120b85828601610ff5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061125957607f821691505b60208210810361126c5761126b611215565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112a982611009565b91506112b483611009565b92508282019050808211156112cc576112cb611272565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61132c602583610f25565b9150611337826112d2565b604082019050919050565b5f6020820190508181035f83015261135981611320565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6113ba602683610f25565b91506113c582611360565b604082019050919050565b5f6020820190508181035f8301526113e7816113ae565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611448602483610f25565b9150611453826113ee565b604082019050919050565b5f6020820190508181035f8301526114758161143c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6114d6602283610f25565b91506114e18261147c565b604082019050919050565b5f6020820190508181035f830152611503816114ca565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61153e601d83610f25565b91506115498261150a565b602082019050919050565b5f6020820190508181035f83015261156b81611532565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6115cc602583610f25565b91506115d782611572565b604082019050919050565b5f6020820190508181035f8301526115f9816115c0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61165a602383610f25565b915061166582611600565b604082019050919050565b5f6020820190508181035f8301526116878161164e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6116e8602683610f25565b91506116f38261168e565b604082019050919050565b5f6020820190508181035f830152611715816116dc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611776602183610f25565b91506117818261171c565b604082019050919050565b5f6020820190508181035f8301526117a38161176a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611804602283610f25565b915061180f826117aa565b604082019050919050565b5f6020820190508181035f830152611831816117f8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61186c602083610f25565b915061187782611838565b602082019050919050565b5f6020820190508181035f83015261189981611860565b905091905056fea264697066735822122051f8ed800ea8a71bab6806c058d026ebc4b4c771035933cdee3df1c7a4792c9c64736f6c634300081900330000000000000000000000004d2b3c2ede2cd20e2d50d90c98461abdbb1a3001
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063715018a611610095578063a457c2d711610064578063a457c2d71461029a578063a9059cbb146102ca578063dd62ed3e146102fa578063f2fde38b1461032a576100fe565b8063715018a61461023857806379cc6790146102425780638da5cb5b1461025e57806395d89b411461027c576100fe565b8063313ce567116100d1578063313ce5671461019e57806339509351146101bc57806342966c68146101ec57806370a0823114610208576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a610346565b6040516101179190610f8b565b60405180910390f35b61013a6004803603810190610135919061103c565b6103d6565b6040516101479190611094565b60405180910390f35b6101586103f8565b60405161016591906110bc565b60405180910390f35b610188600480360381019061018391906110d5565b610401565b6040516101959190611094565b60405180910390f35b6101a661042f565b6040516101b39190611140565b60405180910390f35b6101d660048036038101906101d1919061103c565b610437565b6040516101e39190611094565b60405180910390f35b61020660048036038101906102019190611159565b61046d565b005b610222600480360381019061021d9190611184565b610481565b60405161022f91906110bc565b60405180910390f35b6102406104c6565b005b61025c6004803603810190610257919061103c565b6104d9565b005b6102666104f9565b60405161027391906111be565b60405180910390f35b610284610521565b6040516102919190610f8b565b60405180910390f35b6102b460048036038101906102af919061103c565b6105b1565b6040516102c19190611094565b60405180910390f35b6102e460048036038101906102df919061103c565b610626565b6040516102f19190611094565b60405180910390f35b610314600480360381019061030f91906111d7565b610648565b60405161032191906110bc565b60405180910390f35b610344600480360381019061033f9190611184565b6106ca565b005b60606003805461035590611242565b80601f016020809104026020016040519081016040528092919081815260200182805461038190611242565b80156103cc5780601f106103a3576101008083540402835291602001916103cc565b820191905f5260205f20905b8154815290600101906020018083116103af57829003601f168201915b5050505050905090565b5f806103e061074c565b90506103ed818585610753565b600191505092915050565b5f600254905090565b5f8061040b61074c565b9050610418858285610916565b6104238585856109a1565b60019150509392505050565b5f6012905090565b5f8061044161074c565b90506104628185856104538589610648565b61045d919061129f565b610753565b600191505092915050565b61047e61047861074c565b82610c0d565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104ce610dd0565b6104d75f610e4e565b565b6104eb826104e561074c565b83610916565b6104f58282610c0d565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461053090611242565b80601f016020809104026020016040519081016040528092919081815260200182805461055c90611242565b80156105a75780601f1061057e576101008083540402835291602001916105a7565b820191905f5260205f20905b81548152906001019060200180831161058a57829003601f168201915b5050505050905090565b5f806105bb61074c565b90505f6105c88286610648565b90508381101561060d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060490611342565b60405180910390fd5b61061a8286868403610753565b60019250505092915050565b5f8061063061074c565b905061063d8185856109a1565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106d2610dd0565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610740576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610737906113d0565b60405180910390fd5b61074981610e4e565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b89061145e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361082f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610826906114ec565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161090991906110bc565b60405180910390a3505050565b5f6109218484610648565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461099b578181101561098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098490611554565b60405180910390fd5b61099a8484848403610753565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a06906115e2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7490611670565b60405180910390fd5b610a88838383610f11565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b02906116fe565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bf491906110bc565b60405180910390a3610c07848484610f16565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c729061178c565b60405180910390fd5b610c86825f83610f11565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d009061181a565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db891906110bc565b60405180910390a3610dcb835f84610f16565b505050565b610dd861074c565b73ffffffffffffffffffffffffffffffffffffffff16610df66104f9565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390611882565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610f5d82610f1b565b610f678185610f25565b9350610f77818560208601610f35565b610f8081610f43565b840191505092915050565b5f6020820190508181035f830152610fa38184610f53565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fd882610faf565b9050919050565b610fe881610fce565b8114610ff2575f80fd5b50565b5f8135905061100381610fdf565b92915050565b5f819050919050565b61101b81611009565b8114611025575f80fd5b50565b5f8135905061103681611012565b92915050565b5f806040838503121561105257611051610fab565b5b5f61105f85828601610ff5565b925050602061107085828601611028565b9150509250929050565b5f8115159050919050565b61108e8161107a565b82525050565b5f6020820190506110a75f830184611085565b92915050565b6110b681611009565b82525050565b5f6020820190506110cf5f8301846110ad565b92915050565b5f805f606084860312156110ec576110eb610fab565b5b5f6110f986828701610ff5565b935050602061110a86828701610ff5565b925050604061111b86828701611028565b9150509250925092565b5f60ff82169050919050565b61113a81611125565b82525050565b5f6020820190506111535f830184611131565b92915050565b5f6020828403121561116e5761116d610fab565b5b5f61117b84828501611028565b91505092915050565b5f6020828403121561119957611198610fab565b5b5f6111a684828501610ff5565b91505092915050565b6111b881610fce565b82525050565b5f6020820190506111d15f8301846111af565b92915050565b5f80604083850312156111ed576111ec610fab565b5b5f6111fa85828601610ff5565b925050602061120b85828601610ff5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061125957607f821691505b60208210810361126c5761126b611215565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112a982611009565b91506112b483611009565b92508282019050808211156112cc576112cb611272565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61132c602583610f25565b9150611337826112d2565b604082019050919050565b5f6020820190508181035f83015261135981611320565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6113ba602683610f25565b91506113c582611360565b604082019050919050565b5f6020820190508181035f8301526113e7816113ae565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611448602483610f25565b9150611453826113ee565b604082019050919050565b5f6020820190508181035f8301526114758161143c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6114d6602283610f25565b91506114e18261147c565b604082019050919050565b5f6020820190508181035f830152611503816114ca565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61153e601d83610f25565b91506115498261150a565b602082019050919050565b5f6020820190508181035f83015261156b81611532565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6115cc602583610f25565b91506115d782611572565b604082019050919050565b5f6020820190508181035f8301526115f9816115c0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61165a602383610f25565b915061166582611600565b604082019050919050565b5f6020820190508181035f8301526116878161164e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6116e8602683610f25565b91506116f38261168e565b604082019050919050565b5f6020820190508181035f830152611715816116dc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611776602183610f25565b91506117818261171c565b604082019050919050565b5f6020820190508181035f8301526117a38161176a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611804602283610f25565b915061180f826117aa565b604082019050919050565b5f6020820190508181035f830152611831816117f8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61186c602083610f25565b915061187782611838565b602082019050919050565b5f6020820190508181035f83015261189981611860565b905091905056fea264697066735822122051f8ed800ea8a71bab6806c058d026ebc4b4c771035933cdee3df1c7a4792c9c64736f6c63430008190033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004d2b3c2ede2cd20e2d50d90c98461abdbb1a3001
-----Decoded View---------------
Arg [0] : initialOwner (address): 0x4D2b3C2EdE2cD20E2D50d90c98461ABDbB1A3001
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004d2b3c2ede2cd20e2d50d90c98461abdbb1a3001
Deployed Bytecode Sourcemap
21911:272:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6986:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9346:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8115:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10127:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7957:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10797:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18568:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8286:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21031:103;;;:::i;:::-;;18978:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20390:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7205:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11538:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8619:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8875:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21289:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6986:100;7040:13;7073:5;7066:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6986:100;:::o;9346:201::-;9429:4;9446:13;9462:12;:10;:12::i;:::-;9446:28;;9485:32;9494:5;9501:7;9510:6;9485:8;:32::i;:::-;9535:4;9528:11;;;9346:201;;;;:::o;8115:108::-;8176:7;8203:12;;8196:19;;8115:108;:::o;10127:261::-;10224:4;10241:15;10259:12;:10;:12::i;:::-;10241:30;;10282:38;10298:4;10304:7;10313:6;10282:15;:38::i;:::-;10331:27;10341:4;10347:2;10351:6;10331:9;:27::i;:::-;10376:4;10369:11;;;10127:261;;;;;:::o;7957:93::-;8015:5;8040:2;8033:9;;7957:93;:::o;10797:238::-;10885:4;10902:13;10918:12;:10;:12::i;:::-;10902:28;;10941:64;10950:5;10957:7;10994:10;10966:25;10976:5;10983:7;10966:9;:25::i;:::-;:38;;;;:::i;:::-;10941:8;:64::i;:::-;11023:4;11016:11;;;10797:238;;;;:::o;18568:91::-;18624:27;18630:12;:10;:12::i;:::-;18644:6;18624:5;:27::i;:::-;18568:91;:::o;8286:127::-;8360:7;8387:9;:18;8397:7;8387:18;;;;;;;;;;;;;;;;8380:25;;8286:127;;;:::o;21031:103::-;20276:13;:11;:13::i;:::-;21096:30:::1;21123:1;21096:18;:30::i;:::-;21031:103::o:0;18978:164::-;19055:46;19071:7;19080:12;:10;:12::i;:::-;19094:6;19055:15;:46::i;:::-;19112:22;19118:7;19127:6;19112:5;:22::i;:::-;18978:164;;:::o;20390:87::-;20436:7;20463:6;;;;;;;;;;;20456:13;;20390:87;:::o;7205:104::-;7261:13;7294:7;7287:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7205:104;:::o;11538:436::-;11631:4;11648:13;11664:12;:10;:12::i;:::-;11648:28;;11687:24;11714:25;11724:5;11731:7;11714:9;:25::i;:::-;11687:52;;11778:15;11758:16;:35;;11750:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11871:60;11880:5;11887:7;11915:15;11896:16;:34;11871:8;:60::i;:::-;11962:4;11955:11;;;;11538:436;;;;:::o;8619:193::-;8698:4;8715:13;8731:12;:10;:12::i;:::-;8715:28;;8754;8764:5;8771:2;8775:6;8754:9;:28::i;:::-;8800:4;8793:11;;;8619:193;;;;:::o;8875:151::-;8964:7;8991:11;:18;9003:5;8991:18;;;;;;;;;;;;;;;:27;9010:7;8991:27;;;;;;;;;;;;;;;;8984:34;;8875:151;;;;:::o;21289:201::-;20276:13;:11;:13::i;:::-;21398:1:::1;21378:22;;:8;:22;;::::0;21370:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21454:28;21473:8;21454:18;:28::i;:::-;21289:201:::0;:::o;4618:98::-;4671:7;4698:10;4691:17;;4618:98;:::o;15531:346::-;15650:1;15633:19;;:5;:19;;;15625:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15731:1;15712:21;;:7;:21;;;15704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15815:6;15785:11;:18;15797:5;15785:18;;;;;;;;;;;;;;;:27;15804:7;15785:27;;;;;;;;;;;;;;;:36;;;;15853:7;15837:32;;15846:5;15837:32;;;15862:6;15837:32;;;;;;:::i;:::-;;;;;;;;15531:346;;;:::o;16168:419::-;16269:24;16296:25;16306:5;16313:7;16296:9;:25::i;:::-;16269:52;;16356:17;16336:16;:37;16332:248;;16418:6;16398:16;:26;;16390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16502:51;16511:5;16518:7;16546:6;16527:16;:25;16502:8;:51::i;:::-;16332:248;16258:329;16168:419;;;:::o;12444:806::-;12557:1;12541:18;;:4;:18;;;12533:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12634:1;12620:16;;:2;:16;;;12612:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12689:38;12710:4;12716:2;12720:6;12689:20;:38::i;:::-;12740:19;12762:9;:15;12772:4;12762:15;;;;;;;;;;;;;;;;12740:37;;12811:6;12796:11;:21;;12788:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12928:6;12914:11;:20;12896:9;:15;12906:4;12896:15;;;;;;;;;;;;;;;:38;;;;13131:6;13114:9;:13;13124:2;13114:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13181:2;13166:26;;13175:4;13166:26;;;13185:6;13166:26;;;;;;:::i;:::-;;;;;;;;13205:37;13225:4;13231:2;13235:6;13205:19;:37::i;:::-;12522:728;12444:806;;;:::o;14418:675::-;14521:1;14502:21;;:7;:21;;;14494:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14574:49;14595:7;14612:1;14616:6;14574:20;:49::i;:::-;14636:22;14661:9;:18;14671:7;14661:18;;;;;;;;;;;;;;;;14636:43;;14716:6;14698:14;:24;;14690:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14835:6;14818:14;:23;14797:9;:18;14807:7;14797:18;;;;;;;;;;;;;;;:44;;;;14952:6;14936:12;;:22;;;;;;;;;;;15013:1;14987:37;;14996:7;14987:37;;;15017:6;14987:37;;;;;;:::i;:::-;;;;;;;;15037:48;15057:7;15074:1;15078:6;15037:19;:48::i;:::-;14483:610;14418:675;;:::o;20555:132::-;20630:12;:10;:12::i;:::-;20619:23;;:7;:5;:7::i;:::-;:23;;;20611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20555:132::o;21650:191::-;21724:16;21743:6;;;;;;;;;;;21724:25;;21769:8;21760:6;;:17;;;;;;;;;;;;;;;;;;21824:8;21793:40;;21814:8;21793:40;;;;;;;;;;;;21713:128;21650:191;:::o;17187:91::-;;;;:::o;17882:90::-;;;;:::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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:118::-;5503:24;5521:5;5503:24;:::i;:::-;5498:3;5491:37;5416:118;;:::o;5540:222::-;5633:4;5671:2;5660:9;5656:18;5648:26;;5684:71;5752:1;5741:9;5737:17;5728:6;5684:71;:::i;:::-;5540:222;;;;:::o;5768:474::-;5836:6;5844;5893:2;5881:9;5872:7;5868:23;5864:32;5861:119;;;5899:79;;:::i;:::-;5861:119;6019:1;6044:53;6089:7;6080:6;6069:9;6065:22;6044:53;:::i;:::-;6034:63;;5990:117;6146:2;6172:53;6217:7;6208:6;6197:9;6193:22;6172:53;:::i;:::-;6162:63;;6117:118;5768:474;;;;;:::o;6248:180::-;6296:77;6293:1;6286:88;6393:4;6390:1;6383:15;6417:4;6414:1;6407:15;6434:320;6478:6;6515:1;6509:4;6505:12;6495:22;;6562:1;6556:4;6552:12;6583:18;6573:81;;6639:4;6631:6;6627:17;6617:27;;6573:81;6701:2;6693:6;6690:14;6670:18;6667:38;6664:84;;6720:18;;:::i;:::-;6664:84;6485:269;6434:320;;;:::o;6760:180::-;6808:77;6805:1;6798:88;6905:4;6902:1;6895:15;6929:4;6926:1;6919:15;6946:191;6986:3;7005:20;7023:1;7005:20;:::i;:::-;7000:25;;7039:20;7057:1;7039:20;:::i;:::-;7034:25;;7082:1;7079;7075:9;7068:16;;7103:3;7100:1;7097:10;7094:36;;;7110:18;;:::i;:::-;7094:36;6946:191;;;;:::o;7143:224::-;7283:34;7279:1;7271:6;7267:14;7260:58;7352:7;7347:2;7339:6;7335:15;7328:32;7143:224;:::o;7373:366::-;7515:3;7536:67;7600:2;7595:3;7536:67;:::i;:::-;7529:74;;7612:93;7701:3;7612:93;:::i;:::-;7730:2;7725:3;7721:12;7714:19;;7373:366;;;:::o;7745:419::-;7911:4;7949:2;7938:9;7934:18;7926:26;;7998:9;7992:4;7988:20;7984:1;7973:9;7969:17;7962:47;8026:131;8152:4;8026:131;:::i;:::-;8018:139;;7745:419;;;:::o;8170:225::-;8310:34;8306:1;8298:6;8294:14;8287:58;8379:8;8374:2;8366:6;8362:15;8355:33;8170:225;:::o;8401:366::-;8543:3;8564:67;8628:2;8623:3;8564:67;:::i;:::-;8557:74;;8640:93;8729:3;8640:93;:::i;:::-;8758:2;8753:3;8749:12;8742:19;;8401:366;;;:::o;8773:419::-;8939:4;8977:2;8966:9;8962:18;8954:26;;9026:9;9020:4;9016:20;9012:1;9001:9;8997:17;8990:47;9054:131;9180:4;9054:131;:::i;:::-;9046:139;;8773:419;;;:::o;9198:223::-;9338:34;9334:1;9326:6;9322:14;9315:58;9407:6;9402:2;9394:6;9390:15;9383:31;9198:223;:::o;9427:366::-;9569:3;9590:67;9654:2;9649:3;9590:67;:::i;:::-;9583:74;;9666:93;9755:3;9666:93;:::i;:::-;9784:2;9779:3;9775:12;9768:19;;9427:366;;;:::o;9799:419::-;9965:4;10003:2;9992:9;9988:18;9980:26;;10052:9;10046:4;10042:20;10038:1;10027:9;10023:17;10016:47;10080:131;10206:4;10080:131;:::i;:::-;10072:139;;9799:419;;;:::o;10224:221::-;10364:34;10360:1;10352:6;10348:14;10341:58;10433:4;10428:2;10420:6;10416:15;10409:29;10224:221;:::o;10451:366::-;10593:3;10614:67;10678:2;10673:3;10614:67;:::i;:::-;10607:74;;10690:93;10779:3;10690:93;:::i;:::-;10808:2;10803:3;10799:12;10792:19;;10451:366;;;:::o;10823:419::-;10989:4;11027:2;11016:9;11012:18;11004:26;;11076:9;11070:4;11066:20;11062:1;11051:9;11047:17;11040:47;11104:131;11230:4;11104:131;:::i;:::-;11096:139;;10823:419;;;:::o;11248:179::-;11388:31;11384:1;11376:6;11372:14;11365:55;11248:179;:::o;11433:366::-;11575:3;11596:67;11660:2;11655:3;11596:67;:::i;:::-;11589:74;;11672:93;11761:3;11672:93;:::i;:::-;11790:2;11785:3;11781:12;11774:19;;11433:366;;;:::o;11805:419::-;11971:4;12009:2;11998:9;11994:18;11986:26;;12058:9;12052:4;12048:20;12044:1;12033:9;12029:17;12022:47;12086:131;12212:4;12086:131;:::i;:::-;12078:139;;11805:419;;;:::o;12230:224::-;12370:34;12366:1;12358:6;12354:14;12347:58;12439:7;12434:2;12426:6;12422:15;12415:32;12230:224;:::o;12460:366::-;12602:3;12623:67;12687:2;12682:3;12623:67;:::i;:::-;12616:74;;12699:93;12788:3;12699:93;:::i;:::-;12817:2;12812:3;12808:12;12801:19;;12460:366;;;:::o;12832:419::-;12998:4;13036:2;13025:9;13021:18;13013:26;;13085:9;13079:4;13075:20;13071:1;13060:9;13056:17;13049:47;13113:131;13239:4;13113:131;:::i;:::-;13105:139;;12832:419;;;:::o;13257:222::-;13397:34;13393:1;13385:6;13381:14;13374:58;13466:5;13461:2;13453:6;13449:15;13442:30;13257:222;:::o;13485:366::-;13627:3;13648:67;13712:2;13707:3;13648:67;:::i;:::-;13641:74;;13724:93;13813:3;13724:93;:::i;:::-;13842:2;13837:3;13833:12;13826:19;;13485:366;;;:::o;13857:419::-;14023:4;14061:2;14050:9;14046:18;14038:26;;14110:9;14104:4;14100:20;14096:1;14085:9;14081:17;14074:47;14138:131;14264:4;14138:131;:::i;:::-;14130:139;;13857:419;;;:::o;14282:225::-;14422:34;14418:1;14410:6;14406:14;14399:58;14491:8;14486:2;14478:6;14474:15;14467:33;14282:225;:::o;14513:366::-;14655:3;14676:67;14740:2;14735:3;14676:67;:::i;:::-;14669:74;;14752:93;14841:3;14752:93;:::i;:::-;14870:2;14865:3;14861:12;14854:19;;14513:366;;;:::o;14885:419::-;15051:4;15089:2;15078:9;15074:18;15066:26;;15138:9;15132:4;15128:20;15124:1;15113:9;15109:17;15102:47;15166:131;15292:4;15166:131;:::i;:::-;15158:139;;14885:419;;;:::o;15310:220::-;15450:34;15446:1;15438:6;15434:14;15427:58;15519:3;15514:2;15506:6;15502:15;15495:28;15310:220;:::o;15536:366::-;15678:3;15699:67;15763:2;15758:3;15699:67;:::i;:::-;15692:74;;15775:93;15864:3;15775:93;:::i;:::-;15893:2;15888:3;15884:12;15877:19;;15536:366;;;:::o;15908:419::-;16074:4;16112:2;16101:9;16097:18;16089:26;;16161:9;16155:4;16151:20;16147:1;16136:9;16132:17;16125:47;16189:131;16315:4;16189:131;:::i;:::-;16181:139;;15908:419;;;:::o;16333:221::-;16473:34;16469:1;16461:6;16457:14;16450:58;16542:4;16537:2;16529:6;16525:15;16518:29;16333:221;:::o;16560:366::-;16702:3;16723:67;16787:2;16782:3;16723:67;:::i;:::-;16716:74;;16799:93;16888:3;16799:93;:::i;:::-;16917:2;16912:3;16908:12;16901:19;;16560:366;;;:::o;16932:419::-;17098:4;17136:2;17125:9;17121:18;17113:26;;17185:9;17179:4;17175:20;17171:1;17160:9;17156:17;17149:47;17213:131;17339:4;17213:131;:::i;:::-;17205:139;;16932:419;;;:::o;17357:182::-;17497:34;17493:1;17485:6;17481:14;17474:58;17357:182;:::o;17545:366::-;17687:3;17708:67;17772:2;17767:3;17708:67;:::i;:::-;17701:74;;17784:93;17873:3;17784:93;:::i;:::-;17902:2;17897:3;17893:12;17886:19;;17545:366;;;:::o;17917:419::-;18083:4;18121:2;18110:9;18106:18;18098:26;;18170:9;18164:4;18160:20;18156:1;18145:9;18141:17;18134:47;18198:131;18324:4;18198:131;:::i;:::-;18190:139;;17917:419;;;:::o
Swarm Source
ipfs://51f8ed800ea8a71bab6806c058d026ebc4b4c771035933cdee3df1c7a4792c9c
[ 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.