ERC-20
Overview
Max Total Supply
2,736,521.819509546296287876 INUS
Holders
278
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:
InulandStaking
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-14 */ // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/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/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/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/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.1 (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.zeppelin.solutions/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 Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The 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; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `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; _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; } _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 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/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: contracts/InulandStaking.sol //SPDX-License-Identifier: MIT pragma solidity 0.8.7; /** * @title Inuland Staking Contract * @author Inuland Dev */ contract InulandStaking is ERC20("INUS", "INUS"), Ownable { using SafeMath for uint256; using Address for address; /** * @notice Keeping track of user and its token */ struct UserInfo { uint256[] stakedTokens; // TokenId => Locked Days mapping(uint256 => uint256) lockedDays; // TokenId => Block time mapping(uint256 => uint256) stakedDate; // TokenId => Mining Power mapping(uint256 => uint256) miningPower; uint256 amountStaked; mapping(uint256 => uint256) lastRewardUpdated; } struct MintingPowerProofs { bytes32[] proof; } /** * @notice map User Addresses to their info */ mapping(address => UserInfo) public stakeUserInfo; /** * @notice staked nft => user address */ mapping(uint256 => address) public tokenOwners; address InulandCollectionAddress; address private contractExtension; uint256 dailyReward = 1 ether; uint256[] boosters = [102, 104, 105, 106, 107, 108, 109]; uint256 rewardInterwal = 86400; bytes32 private miningPowerRoot; modifier onlyExtensionContract() { require(msg.sender == contractExtension); _; } // Verify that a given leaf is in the tree. function _verify( bytes32 _leafNode, bytes32[] memory proof ) internal view returns (bool) { return MerkleProof.verify(proof, miningPowerRoot, _leafNode); } // Generate the leaf node (just the hash of tokenID concatenated with the account address) function _leaf(uint256[] memory miningLeaf) internal pure returns (bytes32) { return keccak256(abi.encodePacked(miningLeaf)); } function setMiningPowerRoot(bytes32 _root) public onlyOwner { miningPowerRoot = _root; } //initital minting for Launch pads | Liquidity function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); } function setRewardInterval(uint256 _interval) public onlyOwner{ rewardInterwal = _interval; } //extending functions for Furture upgrades function setContractExtension(address _contractExtenstion) public onlyOwner { contractExtension = _contractExtenstion; } function mintFromExtentionContract(address _to, uint256 _amount) external onlyExtensionContract { _mint(_to, _amount); } function burnFromExtentionContract(address _to, uint256 _amount) external onlyExtensionContract { _burn(_to, _amount); } constructor(address _inulandCollectionAddress) { InulandCollectionAddress = _inulandCollectionAddress; } function setBooster(uint256[] memory _booster) public onlyOwner { boosters = _booster; } function setDailyReward(uint256 _dailyReward) public onlyOwner { //wei dailyReward = _dailyReward; } function stake(uint256 _id, uint256 _lockedDays, uint256 _miningPower, bytes32[] calldata _proof) public { _stake(msg.sender, _id, _lockedDays,_miningPower, _proof); } function batchStake(uint256[] memory _ids, uint256 _lockedDays, uint256[] memory _miningPower, MintingPowerProofs[] calldata proofs) public { for (uint256 i = 0; i < _ids.length; ++i) { _stake(msg.sender, _ids[i], _lockedDays, _miningPower[i], proofs[i].proof); } } function unstake(uint256 _id) public { _unstake(msg.sender, _id); } function batchUnstake(uint256[] memory _ids) public { for (uint256 i = 0; i < _ids.length; ++i) { _unstake(msg.sender, _ids[i]); } } function claimRewards() public { uint256 rewards = getStakingRewards(msg.sender); _mint(msg.sender, rewards); //update last reward date _updateLastUpdated(msg.sender); } function _updateLastUpdated(address _user) internal { UserInfo storage user = stakeUserInfo[_user]; for (uint256 i; i < user.stakedTokens.length; i++) { user.lastRewardUpdated[user.stakedTokens[i]] = block.timestamp; } } function getMiningPower(address _user, uint256 _tokenId) public view returns (uint256){ UserInfo storage user = stakeUserInfo[_user]; return user.miningPower[_tokenId]; } function getStakingRewards(address _user) public view returns (uint256) { uint256 time = block.timestamp; UserInfo storage user = stakeUserInfo[_user]; uint256 clamableRewards; for (uint256 i; i < user.stakedTokens.length; i++) { if (user.stakedTokens[i] != 0) { uint256 nftMiningPower = user.miningPower[user.stakedTokens[i]]; //first time if (user.lastRewardUpdated[user.stakedTokens[i]] == 0) { if (user.stakedDate[user.stakedTokens[i]] == 0) { clamableRewards += 0; } else { uint256 normalReward = dailyReward .mul( time.sub(user.stakedDate[user.stakedTokens[i]]) ) .div(rewardInterwal) .mul(nftMiningPower); //calculate locked day rewards if (user.lockedDays[user.stakedTokens[i]] == 14) { clamableRewards += (normalReward * 112) / 100; } else if ( user.lockedDays[user.stakedTokens[i]] == 30 ) { clamableRewards += (normalReward * 140) / 100; } else if ( user.lockedDays[user.stakedTokens[i]] == 60 ) { clamableRewards += (normalReward * 180) / 100; } else if ( user.lockedDays[user.stakedTokens[i]] == 90 ) { clamableRewards += (normalReward * 200) / 100; } else { clamableRewards += (normalReward * 112) / 100; } } } else { //calculate rewards from the last reward updated date uint256 normalReward = dailyReward .mul( time.sub( user.lastRewardUpdated[user.stakedTokens[i]] ) ) .div(rewardInterwal); //calculate locked day rewards if (user.lockedDays[user.stakedTokens[i]] == 14) { clamableRewards += (normalReward * 112) / 100; } else if (user.lockedDays[user.stakedTokens[i]] == 30) { clamableRewards += (normalReward * 140) / 100; } else if (user.lockedDays[user.stakedTokens[i]] == 60) { clamableRewards += (normalReward * 180) / 100; } else if (user.lockedDays[user.stakedTokens[i]] == 90) { clamableRewards += (normalReward * 200) / 100; } else { clamableRewards += (normalReward * 112) / 100; } } } } //booster rewards // [102,104,105,106,107,108,109]; if (user.amountStaked >= 35) { clamableRewards = clamableRewards.mul(boosters[6]).div(100); } else if (user.amountStaked >= 30) { clamableRewards = clamableRewards.mul(boosters[5]).div(100); } else if (user.amountStaked >= 25) { clamableRewards = clamableRewards.mul(boosters[4]).div(100); } else if (user.amountStaked >= 20) { clamableRewards = clamableRewards.mul(boosters[3]).div(100); } else if (user.amountStaked >= 15) { clamableRewards = clamableRewards.mul(boosters[2]).div(100); } else if (user.amountStaked >= 10) { clamableRewards = clamableRewards.mul(boosters[1]).div(100); } else if (user.amountStaked >= 5) { clamableRewards = clamableRewards.mul(boosters[0]).div(100); } return clamableRewards; } function testVerify( bytes32[] calldata proof, uint256 id, uint256 power) public view { uint256[] memory t = new uint256[](2); t[0] = id; t[1] = power; require( _verify(_leaf(t), proof), "Invalid proof" ); } function _stake( address _user, uint256 _id, uint256 _lockedDays, uint256 _miningPower, bytes32[] calldata proof ) internal { uint256[] memory t = new uint256[](2); UserInfo storage user = stakeUserInfo[_user]; t[0] = _id; t[1] = _miningPower; require( _verify(_leaf(t), proof), "Invalid Mining Data proof" ); IERC721(InulandCollectionAddress).transferFrom( _user, address(this), _id ); user.miningPower[_id] = _miningPower; user.amountStaked += 1; user.stakedDate[_id] = block.timestamp; user.lockedDays[_id] = _lockedDays; user.stakedTokens.push(_id); tokenOwners[_id] = _user; } function whenUnstake(address _user, uint256 _id) public view returns (bool,uint256){ UserInfo storage user = stakeUserInfo[_user]; if( block.timestamp > (user.stakedDate[_id] + (user.lockedDays[_id] * rewardInterwal)) ){ return (true, block.timestamp - (user.stakedDate[_id] + (user.lockedDays[_id] * rewardInterwal))); }else{ return (true, block.timestamp - (user.stakedDate[_id] + (user.lockedDays[_id] * rewardInterwal))); } } function _unstake(address _user, uint256 _id) internal { UserInfo storage user = stakeUserInfo[_user]; require( tokenOwners[_id] == _user, "Inuland._unstake: Sender doesn't owns this token" ); //check locked require( block.timestamp > (user.stakedDate[_id] + (user.lockedDays[_id] * rewardInterwal)), "You cant Unstake right now"); _removeElement(user.stakedTokens, _id); user.amountStaked -= 1; delete tokenOwners[_id]; if (user.stakedTokens.length == 0) { delete stakeUserInfo[_user]; } IERC721(InulandCollectionAddress).transferFrom( address(this), _user, _id ); } //-------------------------------Functions for website-------------------------------/ function getUserInfo(address _user) public view returns (uint256[] memory) { UserInfo storage user = stakeUserInfo[_user]; return (user.stakedTokens); } function getLockedDays(uint256 _id) public view returns (uint256) { UserInfo storage user = stakeUserInfo[tokenOwners[_id]]; return user.lockedDays[_id]; } function getStakedDate(uint256 _id) public view returns (uint256) { UserInfo storage user = stakeUserInfo[tokenOwners[_id]]; return user.stakedDate[_id]; } function _removeElement(uint256[] storage _array, uint256 _element) internal { for (uint256 i; i < _array.length; i++) { if (_array[i] == _element) { _array[i] = _array[_array.length - 1]; _array.pop(); break; } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_inulandCollectionAddress","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":"_ids","type":"uint256[]"},{"internalType":"uint256","name":"_lockedDays","type":"uint256"},{"internalType":"uint256[]","name":"_miningPower","type":"uint256[]"},{"components":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"internalType":"struct InulandStaking.MintingPowerProofs[]","name":"proofs","type":"tuple[]"}],"name":"batchStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"batchUnstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnFromExtentionContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRewards","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":"uint256","name":"_id","type":"uint256"}],"name":"getLockedDays","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getMiningPower","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getStakedDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getStakingRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getUserInfo","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintFromExtentionContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_booster","type":"uint256[]"}],"name":"setBooster","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractExtenstion","type":"address"}],"name":"setContractExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dailyReward","type":"uint256"}],"name":"setDailyReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMiningPowerRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_interval","type":"uint256"}],"name":"setRewardInterval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_lockedDays","type":"uint256"},{"internalType":"uint256","name":"_miningPower","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakeUserInfo","outputs":[{"internalType":"uint256","name":"amountStaked","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"power","type":"uint256"}],"name":"testVerify","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenOwners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"whenUnstake","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
670de0b6b3a7640000600a5561016060405260666080908152606860a052606960c052606a60e052606b61010052606c61012052606d610140526200004990600b9060076200016f565b5062015180600c553480156200005e57600080fd5b50604051620028d5380380620028d5833981016040819052620000819162000258565b604080518082018252600480825263494e555360e01b602080840182815285518087019096529285528401528151919291620000c091600391620001c4565b508051620000d6906004906020840190620001c4565b505050620000f3620000ed6200011960201b60201c565b6200011d565b600880546001600160a01b0319166001600160a01b0392909216919091179055620002c7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054828255906000526020600020908101928215620001b2579160200282015b82811115620001b2578251829060ff1690559160200191906001019062000190565b50620001c092915062000241565b5090565b828054620001d2906200028a565b90600052602060002090601f016020900481019282620001f65760008555620001b2565b82601f106200021157805160ff1916838001178555620001b2565b82800160010185558215620001b2579182015b82811115620001b257825182559160200191906001019062000224565b5b80821115620001c0576000815560010162000242565b6000602082840312156200026b57600080fd5b81516001600160a01b03811681146200028357600080fd5b9392505050565b600181811c908216806200029f57607f821691505b60208210811415620002c157634e487b7160e01b600052602260045260246000fd5b50919050565b6125fe80620002d76000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c806340c10f1911610125578063a457c2d7116100ad578063dd62ed3e1161007c578063dd62ed3e1461051a578063e3e8421314610553578063ee1a60d114610566578063f2fde38b146105a7578063f8a14f46146105ba57600080fd5b8063a457c2d7146104ce578063a9059cbb146104e1578063bcccf6c7146104f4578063d2acd13d1461050757600080fd5b8063750ba6fc116100f4578063750ba6fc146104685780637a5d1e621461047b5780638bd2ef7b1461048e5780638da5cb5b146104a157806395d89b41146104c657600080fd5b806340c10f19146104045780636386c1c71461041757806370a0823114610437578063715018a61461046057600080fd5b806321efe200116101a85780632e17de78116101775780632e17de781461039d578063313ce567146103b0578063372500ab146103bf57806339509351146103c75780633c178630146103da57600080fd5b806321efe2001461031a57806323221d2b1461032d57806323b872dd14610350578063289879461461036357600080fd5b80630cdca63f116101ef5780630cdca63f146102c6578063145d09a2146102d957806318160ddd146102ec57806319819c0b146102f45780632001699e1461030757600080fd5b806306fdde0314610221578063095ea7b31461023f578063099d47d9146102625780630aa43533146102b1575b600080fd5b6102296105e3565b60405161023691906123b6565b60405180910390f35b61025261024d36600461218a565b610675565b6040519015158152602001610236565b6102a36102703660046122d3565b6000818152600760209081526040808320546001600160a01b031683526006825280832093835260019093019052205490565b604051908152602001610236565b6102c46102bf3660046122d3565b61068b565b005b6102c46102d436600461218a565b6106c3565b6102c46102e7366004612205565b6106e8565b6002546102a3565b6102c46103023660046122ec565b610725565b6102c461031536600461223a565b61073a565b6102a3610328366004612100565b6107ca565b6102a361033b366004612100565b60066020526000908152604090206004015481565b61025261035e36600461214e565b610dcc565b6102a361037136600461218a565b6001600160a01b0391909116600090815260066020908152604080832093835260039093019052205490565b6102c46103ab3660046122d3565b610e76565b60405160128152602001610236565b6102c4610e83565b6102526103d536600461218a565b610ea3565b6103ed6103e836600461218a565b610edf565b604080519215158352602083019190915201610236565b6102c461041236600461218a565b610fb0565b61042a610425366004612100565b610fe4565b6040516102369190612372565b6102a3610445366004612100565b6001600160a01b031660009081526020819052604090205490565b6102c4611055565b6102c461047636600461218a565b61108b565b6102c46104893660046122d3565b6110a2565b6102c461049c366004612100565b6110d1565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610236565b61022961111d565b6102526104dc36600461218a565b61112c565b6102526104ef36600461218a565b6111c5565b6102c46105023660046121b4565b6111d2565b6102c4610515366004612205565b6112b4565b6102a361052836600461211b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102c46105613660046122d3565b6112f3565b6102a36105743660046122d3565b6000818152600760209081526040808320546001600160a01b031683526006825280832093835260029093019052205490565b6102c46105b5366004612100565b611322565b6104ae6105c83660046122d3565b6007602052600090815260409020546001600160a01b031681565b6060600380546105f29061251a565b80601f016020809104026020016040519081016040528092919081815260200182805461061e9061251a565b801561066b5780601f106106405761010080835404028352916020019161066b565b820191906000526020600020905b81548152906001019060200180831161064e57829003601f168201915b5050505050905090565b60006106823384846113ba565b50600192915050565b6005546001600160a01b031633146106be5760405162461bcd60e51b81526004016106b59061240b565b60405180910390fd5b600a55565b6009546001600160a01b031633146106da57600080fd5b6106e482826114df565b5050565b6005546001600160a01b031633146107125760405162461bcd60e51b81526004016106b59061240b565b80516106e490600b906020840190611f84565b61073333868686868661162a565b5050505050565b60005b85518110156107c2576107b23387838151811061075c5761075c61259c565b6020026020010151878785815181106107775761077761259c565b60200260200101518787878181106107915761079161259c565b90506020028101906107a3919061248a565b6107ad9080612440565b61162a565b6107bb81612555565b905061073d565b505050505050565b6001600160a01b0381166000908152600660205260408120429082805b8254811015610c87578260000181815481106108055761080561259c565b9060005260206000200154600014610c755760008360030160008560000184815481106108345761083461259c565b9060005260206000200154815260200190815260200160002054905083600501600085600001848154811061086b5761086b61259c565b906000526020600020015481526020019081526020016000205460001415610ab6578360020160008560000184815481106108a8576108a861259c565b9060005260206000200154815260200190815260200160002054600014156108dc576108d56000846124aa565b9250610c73565b600061094782610941600c5461093b6109328a60020160008c6000018b815481106109095761090961259c565b90600052602060002001548152602001908152602001600020548c61183490919063ffffffff16565b600a5490611847565b90611853565b90611847565b90508460010160008660000185815481106109645761096461259c565b9060005260206000200154815260200190815260200160002054600e14156109ae5760646109938260706124e4565b61099d91906124c2565b6109a790856124aa565b9350610ab0565b8460010160008660000185815481106109c9576109c961259c565b9060005260206000200154815260200190815260200160002054601e14156109f857606461099382608c6124e4565b846001016000866000018581548110610a1357610a1361259c565b9060005260206000200154815260200190815260200160002054603c1415610a425760646109938260b46124e4565b846001016000866000018581548110610a5d57610a5d61259c565b9060005260206000200154815260200190815260200160002054605a1415610a8c5760646109938260c86124e4565b6064610a998260706124e4565b610aa391906124c2565b610aad90856124aa565b93505b50610c73565b6000610b08600c5461093b6109328860050160008a6000018981548110610adf57610adf61259c565b90600052602060002001548152602001908152602001600020548a61183490919063ffffffff16565b9050846001016000866000018581548110610b2557610b2561259c565b9060005260206000200154815260200190815260200160002054600e1415610b6f576064610b548260706124e4565b610b5e91906124c2565b610b6890856124aa565b9350610c71565b846001016000866000018581548110610b8a57610b8a61259c565b9060005260206000200154815260200190815260200160002054601e1415610bb9576064610b5482608c6124e4565b846001016000866000018581548110610bd457610bd461259c565b9060005260206000200154815260200190815260200160002054603c1415610c03576064610b548260b46124e4565b846001016000866000018581548110610c1e57610c1e61259c565b9060005260206000200154815260200190815260200160002054605a1415610c4d576064610b548260c86124e4565b6064610c5a8260706124e4565b610c6491906124c2565b610c6e90856124aa565b93505b505b505b80610c7f81612555565b9150506107e7565b506023826004015410610cd157610cca606461093b600b600681548110610cb057610cb061259c565b90600052602060002001548461184790919063ffffffff16565b9050610dc4565b601e826004015410610cf957610cca606461093b600b600581548110610cb057610cb061259c565b6019826004015410610d2157610cca606461093b600b600481548110610cb057610cb061259c565b6014826004015410610d4957610cca606461093b600b600381548110610cb057610cb061259c565b600f826004015410610d7157610cca606461093b600b600281548110610cb057610cb061259c565b600a826004015410610d9957610cca606461093b600b600181548110610cb057610cb061259c565b6005826004015410610dc457610dc1606461093b600b600081548110610cb057610cb061259c565b90505b949350505050565b6000610dd984848461185f565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e5e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016106b5565b610e6b85338584036113ba565b506001949350505050565b610e803382611a2e565b50565b6000610e8e336107ca565b9050610e9a3382611c2b565b610e8033611d0a565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610682918590610eda9086906124aa565b6113ba565b6001600160a01b0382166000908152600660209081526040808320600c5485855260018201909352908320548392610f16916124e4565b6000858152600283016020526040902054610f3191906124aa565b421115610f8857600c54600085815260018381016020526040909120549091610f59916124e4565b6000868152600284016020526040902054610f7491906124aa565b610f7e9042612503565b9250925050610fa9565b600c54600085815260018381016020526040909120549091610f59916124e4565b9250929050565b6005546001600160a01b03163314610fda5760405162461bcd60e51b81526004016106b59061240b565b6106e48282611c2b565b6001600160a01b0381166000908152600660209081526040918290208054835181840281018401909452808452606093919283919083018282801561104857602002820191906000526020600020905b815481526020019060010190808311611034575b5050505050915050919050565b6005546001600160a01b0316331461107f5760405162461bcd60e51b81526004016106b59061240b565b6110896000611d79565b565b6009546001600160a01b03163314610fda57600080fd5b6005546001600160a01b031633146110cc5760405162461bcd60e51b81526004016106b59061240b565b600d55565b6005546001600160a01b031633146110fb5760405162461bcd60e51b81526004016106b59061240b565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6060600480546105f29061251a565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106b5565b6111bb33858584036113ba565b5060019392505050565b600061068233848461185f565b60408051600280825260608201835260009260208301908036833701905050905082816000815181106112075761120761259c565b60200260200101818152505081816001815181106112275761122761259c565b60200260200101818152505061127861123f82611dcb565b868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611dfb92505050565b6107335760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016106b5565b60005b81518110156106e4576112e3338383815181106112d6576112d661259c565b6020026020010151611a2e565b6112ec81612555565b90506112b7565b6005546001600160a01b0316331461131d5760405162461bcd60e51b81526004016106b59061240b565b600c55565b6005546001600160a01b0316331461134c5760405162461bcd60e51b81526004016106b59061240b565b6001600160a01b0381166113b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b5565b610e8081611d79565b6001600160a01b03831661141c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106b5565b6001600160a01b03821661147d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106b5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821661153f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106b5565b6001600160a01b038216600090815260208190526040902054818110156115b35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106b5565b6001600160a01b03831660009081526020819052604081208383039055600280548492906115e2908490612503565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016114d2565b505050565b6040805160028082526060820183526000926020830190803683375050506001600160a01b0388166000908152600660205260408120825192935091889184916116765761167661259c565b60200260200101818152505084826001815181106116965761169661259c565b6020026020010181815250506116e76116ae83611dcb565b858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611dfb92505050565b6117335760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964204d696e696e6720446174612070726f6f660000000000000060448201526064016106b5565b6008546040516323b872dd60e01b81526001600160a01b038a81166004830152306024830152604482018a9052909116906323b872dd90606401600060405180830381600087803b15801561178757600080fd5b505af115801561179b573d6000803e3d6000fd5b50505060008881526003830160205260408120879055600483018054600193509091906117c99084906124aa565b9091555050600087815260028201602090815260408083204290556001808501835281842099909955835498890184559282528082209097018890559687526007909552505050912080546001600160a01b0319166001600160a01b03939093169290921790915550565b60006118408284612503565b9392505050565b600061184082846124e4565b600061184082846124c2565b6001600160a01b0383166118c35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106b5565b6001600160a01b0382166119255760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106b5565b6001600160a01b0383166000908152602081905260409020548181101561199d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106b5565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906119d49084906124aa565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a2091815260200190565b60405180910390a350505050565b6001600160a01b03808316600081815260066020908152604080832086845260079092529091205490921614611abf5760405162461bcd60e51b815260206004820152603060248201527f496e756c616e642e5f756e7374616b653a2053656e64657220646f65736e277460448201526f1037bbb739903a3434b9903a37b5b2b760811b60648201526084016106b5565b600c546000838152600183016020526040902054611add91906124e4565b6000838152600283016020526040902054611af891906124aa565b4211611b465760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e7420556e7374616b65207269676874206e6f7700000000000060448201526064016106b5565b611b508183611e0a565b6001816004016000828254611b659190612503565b9091555050600082815260076020526040902080546001600160a01b03191690558054611bba576001600160a01b038316600090815260066020526040812090611baf8282611fcf565b600482016000905550505b6008546040516323b872dd60e01b81523060048201526001600160a01b03858116602483015260448201859052909116906323b872dd90606401600060405180830381600087803b158015611c0e57600080fd5b505af1158015611c22573d6000803e3d6000fd5b50505050505050565b6001600160a01b038216611c815760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106b5565b8060026000828254611c9391906124aa565b90915550506001600160a01b03821660009081526020819052604081208054839290611cc09084906124aa565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0381166000908152600660205260408120905b81548110156116255742826005016000846000018481548110611d4957611d4961259c565b90600052602060002001548152602001908152602001600020819055508080611d7190612555565b915050611d24565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081604051602001611dde919061233c565b604051602081830303815290604052805190602001209050919050565b600061184082600d5485611ec2565b60005b82548110156116255781838281548110611e2957611e2961259c565b90600052602060002001541415611eb05782548390611e4a90600190612503565b81548110611e5a57611e5a61259c565b9060005260206000200154838281548110611e7757611e7761259c565b906000526020600020018190555082805480611e9557611e95612586565b60019003818190600052602060002001600090559055505050565b80611eba81612555565b915050611e0d565b600082611ecf8584611ed8565b14949350505050565b600081815b8451811015611f7c576000858281518110611efa57611efa61259c565b60200260200101519050808311611f3c576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611f69565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611f7481612555565b915050611edd565b509392505050565b828054828255906000526020600020908101928215611fbf579160200282015b82811115611fbf578251825591602001919060010190611fa4565b50611fcb929150611fe9565b5090565b5080546000825590600052602060002090810190610e8091905b5b80821115611fcb5760008155600101611fea565b80356001600160a01b038116811461201557600080fd5b919050565b60008083601f84011261202c57600080fd5b50813567ffffffffffffffff81111561204457600080fd5b6020830191508360208260051b8501011115610fa957600080fd5b600082601f83011261207057600080fd5b8135602067ffffffffffffffff8083111561208d5761208d6125b2565b8260051b604051601f19603f830116810181811084821117156120b2576120b26125b2565b604052848152838101925086840182880185018910156120d157600080fd5b600092505b858310156120f45780358452928401926001929092019184016120d6565b50979650505050505050565b60006020828403121561211257600080fd5b61184082611ffe565b6000806040838503121561212e57600080fd5b61213783611ffe565b915061214560208401611ffe565b90509250929050565b60008060006060848603121561216357600080fd5b61216c84611ffe565b925061217a60208501611ffe565b9150604084013590509250925092565b6000806040838503121561219d57600080fd5b6121a683611ffe565b946020939093013593505050565b600080600080606085870312156121ca57600080fd5b843567ffffffffffffffff8111156121e157600080fd5b6121ed8782880161201a565b90989097506020870135966040013595509350505050565b60006020828403121561221757600080fd5b813567ffffffffffffffff81111561222e57600080fd5b610dc48482850161205f565b60008060008060006080868803121561225257600080fd5b853567ffffffffffffffff8082111561226a57600080fd5b61227689838a0161205f565b965060208801359550604088013591508082111561229357600080fd5b61229f89838a0161205f565b945060608801359150808211156122b557600080fd5b506122c28882890161201a565b969995985093965092949392505050565b6000602082840312156122e557600080fd5b5035919050565b60008060008060006080868803121561230457600080fd5b853594506020860135935060408601359250606086013567ffffffffffffffff81111561233057600080fd5b6122c28882890161201a565b815160009082906020808601845b838110156123665781518552938201939082019060010161234a565b50929695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123aa5783518352928401929184019160010161238e565b50909695505050505050565b600060208083528351808285015260005b818110156123e3578581018301518582016040015282016123c7565b818111156123f5576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000808335601e1984360301811261245757600080fd5b83018035915067ffffffffffffffff82111561247257600080fd5b6020019150600581901b3603821315610fa957600080fd5b60008235601e198336030181126124a057600080fd5b9190910192915050565b600082198211156124bd576124bd612570565b500190565b6000826124df57634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156124fe576124fe612570565b500290565b60008282101561251557612515612570565b500390565b600181811c9082168061252e57607f821691505b6020821081141561254f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561256957612569612570565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122018d659327213ee591410949000a811bcd9658107af5ad9102cc10665316ba7b264736f6c63430008070033000000000000000000000000f90dd052666ef7bc852fbae2242c43f892d4d0ac
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061021c5760003560e01c806340c10f1911610125578063a457c2d7116100ad578063dd62ed3e1161007c578063dd62ed3e1461051a578063e3e8421314610553578063ee1a60d114610566578063f2fde38b146105a7578063f8a14f46146105ba57600080fd5b8063a457c2d7146104ce578063a9059cbb146104e1578063bcccf6c7146104f4578063d2acd13d1461050757600080fd5b8063750ba6fc116100f4578063750ba6fc146104685780637a5d1e621461047b5780638bd2ef7b1461048e5780638da5cb5b146104a157806395d89b41146104c657600080fd5b806340c10f19146104045780636386c1c71461041757806370a0823114610437578063715018a61461046057600080fd5b806321efe200116101a85780632e17de78116101775780632e17de781461039d578063313ce567146103b0578063372500ab146103bf57806339509351146103c75780633c178630146103da57600080fd5b806321efe2001461031a57806323221d2b1461032d57806323b872dd14610350578063289879461461036357600080fd5b80630cdca63f116101ef5780630cdca63f146102c6578063145d09a2146102d957806318160ddd146102ec57806319819c0b146102f45780632001699e1461030757600080fd5b806306fdde0314610221578063095ea7b31461023f578063099d47d9146102625780630aa43533146102b1575b600080fd5b6102296105e3565b60405161023691906123b6565b60405180910390f35b61025261024d36600461218a565b610675565b6040519015158152602001610236565b6102a36102703660046122d3565b6000818152600760209081526040808320546001600160a01b031683526006825280832093835260019093019052205490565b604051908152602001610236565b6102c46102bf3660046122d3565b61068b565b005b6102c46102d436600461218a565b6106c3565b6102c46102e7366004612205565b6106e8565b6002546102a3565b6102c46103023660046122ec565b610725565b6102c461031536600461223a565b61073a565b6102a3610328366004612100565b6107ca565b6102a361033b366004612100565b60066020526000908152604090206004015481565b61025261035e36600461214e565b610dcc565b6102a361037136600461218a565b6001600160a01b0391909116600090815260066020908152604080832093835260039093019052205490565b6102c46103ab3660046122d3565b610e76565b60405160128152602001610236565b6102c4610e83565b6102526103d536600461218a565b610ea3565b6103ed6103e836600461218a565b610edf565b604080519215158352602083019190915201610236565b6102c461041236600461218a565b610fb0565b61042a610425366004612100565b610fe4565b6040516102369190612372565b6102a3610445366004612100565b6001600160a01b031660009081526020819052604090205490565b6102c4611055565b6102c461047636600461218a565b61108b565b6102c46104893660046122d3565b6110a2565b6102c461049c366004612100565b6110d1565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610236565b61022961111d565b6102526104dc36600461218a565b61112c565b6102526104ef36600461218a565b6111c5565b6102c46105023660046121b4565b6111d2565b6102c4610515366004612205565b6112b4565b6102a361052836600461211b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102c46105613660046122d3565b6112f3565b6102a36105743660046122d3565b6000818152600760209081526040808320546001600160a01b031683526006825280832093835260029093019052205490565b6102c46105b5366004612100565b611322565b6104ae6105c83660046122d3565b6007602052600090815260409020546001600160a01b031681565b6060600380546105f29061251a565b80601f016020809104026020016040519081016040528092919081815260200182805461061e9061251a565b801561066b5780601f106106405761010080835404028352916020019161066b565b820191906000526020600020905b81548152906001019060200180831161064e57829003601f168201915b5050505050905090565b60006106823384846113ba565b50600192915050565b6005546001600160a01b031633146106be5760405162461bcd60e51b81526004016106b59061240b565b60405180910390fd5b600a55565b6009546001600160a01b031633146106da57600080fd5b6106e482826114df565b5050565b6005546001600160a01b031633146107125760405162461bcd60e51b81526004016106b59061240b565b80516106e490600b906020840190611f84565b61073333868686868661162a565b5050505050565b60005b85518110156107c2576107b23387838151811061075c5761075c61259c565b6020026020010151878785815181106107775761077761259c565b60200260200101518787878181106107915761079161259c565b90506020028101906107a3919061248a565b6107ad9080612440565b61162a565b6107bb81612555565b905061073d565b505050505050565b6001600160a01b0381166000908152600660205260408120429082805b8254811015610c87578260000181815481106108055761080561259c565b9060005260206000200154600014610c755760008360030160008560000184815481106108345761083461259c565b9060005260206000200154815260200190815260200160002054905083600501600085600001848154811061086b5761086b61259c565b906000526020600020015481526020019081526020016000205460001415610ab6578360020160008560000184815481106108a8576108a861259c565b9060005260206000200154815260200190815260200160002054600014156108dc576108d56000846124aa565b9250610c73565b600061094782610941600c5461093b6109328a60020160008c6000018b815481106109095761090961259c565b90600052602060002001548152602001908152602001600020548c61183490919063ffffffff16565b600a5490611847565b90611853565b90611847565b90508460010160008660000185815481106109645761096461259c565b9060005260206000200154815260200190815260200160002054600e14156109ae5760646109938260706124e4565b61099d91906124c2565b6109a790856124aa565b9350610ab0565b8460010160008660000185815481106109c9576109c961259c565b9060005260206000200154815260200190815260200160002054601e14156109f857606461099382608c6124e4565b846001016000866000018581548110610a1357610a1361259c565b9060005260206000200154815260200190815260200160002054603c1415610a425760646109938260b46124e4565b846001016000866000018581548110610a5d57610a5d61259c565b9060005260206000200154815260200190815260200160002054605a1415610a8c5760646109938260c86124e4565b6064610a998260706124e4565b610aa391906124c2565b610aad90856124aa565b93505b50610c73565b6000610b08600c5461093b6109328860050160008a6000018981548110610adf57610adf61259c565b90600052602060002001548152602001908152602001600020548a61183490919063ffffffff16565b9050846001016000866000018581548110610b2557610b2561259c565b9060005260206000200154815260200190815260200160002054600e1415610b6f576064610b548260706124e4565b610b5e91906124c2565b610b6890856124aa565b9350610c71565b846001016000866000018581548110610b8a57610b8a61259c565b9060005260206000200154815260200190815260200160002054601e1415610bb9576064610b5482608c6124e4565b846001016000866000018581548110610bd457610bd461259c565b9060005260206000200154815260200190815260200160002054603c1415610c03576064610b548260b46124e4565b846001016000866000018581548110610c1e57610c1e61259c565b9060005260206000200154815260200190815260200160002054605a1415610c4d576064610b548260c86124e4565b6064610c5a8260706124e4565b610c6491906124c2565b610c6e90856124aa565b93505b505b505b80610c7f81612555565b9150506107e7565b506023826004015410610cd157610cca606461093b600b600681548110610cb057610cb061259c565b90600052602060002001548461184790919063ffffffff16565b9050610dc4565b601e826004015410610cf957610cca606461093b600b600581548110610cb057610cb061259c565b6019826004015410610d2157610cca606461093b600b600481548110610cb057610cb061259c565b6014826004015410610d4957610cca606461093b600b600381548110610cb057610cb061259c565b600f826004015410610d7157610cca606461093b600b600281548110610cb057610cb061259c565b600a826004015410610d9957610cca606461093b600b600181548110610cb057610cb061259c565b6005826004015410610dc457610dc1606461093b600b600081548110610cb057610cb061259c565b90505b949350505050565b6000610dd984848461185f565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e5e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016106b5565b610e6b85338584036113ba565b506001949350505050565b610e803382611a2e565b50565b6000610e8e336107ca565b9050610e9a3382611c2b565b610e8033611d0a565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610682918590610eda9086906124aa565b6113ba565b6001600160a01b0382166000908152600660209081526040808320600c5485855260018201909352908320548392610f16916124e4565b6000858152600283016020526040902054610f3191906124aa565b421115610f8857600c54600085815260018381016020526040909120549091610f59916124e4565b6000868152600284016020526040902054610f7491906124aa565b610f7e9042612503565b9250925050610fa9565b600c54600085815260018381016020526040909120549091610f59916124e4565b9250929050565b6005546001600160a01b03163314610fda5760405162461bcd60e51b81526004016106b59061240b565b6106e48282611c2b565b6001600160a01b0381166000908152600660209081526040918290208054835181840281018401909452808452606093919283919083018282801561104857602002820191906000526020600020905b815481526020019060010190808311611034575b5050505050915050919050565b6005546001600160a01b0316331461107f5760405162461bcd60e51b81526004016106b59061240b565b6110896000611d79565b565b6009546001600160a01b03163314610fda57600080fd5b6005546001600160a01b031633146110cc5760405162461bcd60e51b81526004016106b59061240b565b600d55565b6005546001600160a01b031633146110fb5760405162461bcd60e51b81526004016106b59061240b565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6060600480546105f29061251a565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106b5565b6111bb33858584036113ba565b5060019392505050565b600061068233848461185f565b60408051600280825260608201835260009260208301908036833701905050905082816000815181106112075761120761259c565b60200260200101818152505081816001815181106112275761122761259c565b60200260200101818152505061127861123f82611dcb565b868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611dfb92505050565b6107335760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016106b5565b60005b81518110156106e4576112e3338383815181106112d6576112d661259c565b6020026020010151611a2e565b6112ec81612555565b90506112b7565b6005546001600160a01b0316331461131d5760405162461bcd60e51b81526004016106b59061240b565b600c55565b6005546001600160a01b0316331461134c5760405162461bcd60e51b81526004016106b59061240b565b6001600160a01b0381166113b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b5565b610e8081611d79565b6001600160a01b03831661141c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106b5565b6001600160a01b03821661147d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106b5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821661153f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106b5565b6001600160a01b038216600090815260208190526040902054818110156115b35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106b5565b6001600160a01b03831660009081526020819052604081208383039055600280548492906115e2908490612503565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016114d2565b505050565b6040805160028082526060820183526000926020830190803683375050506001600160a01b0388166000908152600660205260408120825192935091889184916116765761167661259c565b60200260200101818152505084826001815181106116965761169661259c565b6020026020010181815250506116e76116ae83611dcb565b858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611dfb92505050565b6117335760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964204d696e696e6720446174612070726f6f660000000000000060448201526064016106b5565b6008546040516323b872dd60e01b81526001600160a01b038a81166004830152306024830152604482018a9052909116906323b872dd90606401600060405180830381600087803b15801561178757600080fd5b505af115801561179b573d6000803e3d6000fd5b50505060008881526003830160205260408120879055600483018054600193509091906117c99084906124aa565b9091555050600087815260028201602090815260408083204290556001808501835281842099909955835498890184559282528082209097018890559687526007909552505050912080546001600160a01b0319166001600160a01b03939093169290921790915550565b60006118408284612503565b9392505050565b600061184082846124e4565b600061184082846124c2565b6001600160a01b0383166118c35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106b5565b6001600160a01b0382166119255760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106b5565b6001600160a01b0383166000908152602081905260409020548181101561199d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106b5565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906119d49084906124aa565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a2091815260200190565b60405180910390a350505050565b6001600160a01b03808316600081815260066020908152604080832086845260079092529091205490921614611abf5760405162461bcd60e51b815260206004820152603060248201527f496e756c616e642e5f756e7374616b653a2053656e64657220646f65736e277460448201526f1037bbb739903a3434b9903a37b5b2b760811b60648201526084016106b5565b600c546000838152600183016020526040902054611add91906124e4565b6000838152600283016020526040902054611af891906124aa565b4211611b465760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e7420556e7374616b65207269676874206e6f7700000000000060448201526064016106b5565b611b508183611e0a565b6001816004016000828254611b659190612503565b9091555050600082815260076020526040902080546001600160a01b03191690558054611bba576001600160a01b038316600090815260066020526040812090611baf8282611fcf565b600482016000905550505b6008546040516323b872dd60e01b81523060048201526001600160a01b03858116602483015260448201859052909116906323b872dd90606401600060405180830381600087803b158015611c0e57600080fd5b505af1158015611c22573d6000803e3d6000fd5b50505050505050565b6001600160a01b038216611c815760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106b5565b8060026000828254611c9391906124aa565b90915550506001600160a01b03821660009081526020819052604081208054839290611cc09084906124aa565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0381166000908152600660205260408120905b81548110156116255742826005016000846000018481548110611d4957611d4961259c565b90600052602060002001548152602001908152602001600020819055508080611d7190612555565b915050611d24565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081604051602001611dde919061233c565b604051602081830303815290604052805190602001209050919050565b600061184082600d5485611ec2565b60005b82548110156116255781838281548110611e2957611e2961259c565b90600052602060002001541415611eb05782548390611e4a90600190612503565b81548110611e5a57611e5a61259c565b9060005260206000200154838281548110611e7757611e7761259c565b906000526020600020018190555082805480611e9557611e95612586565b60019003818190600052602060002001600090559055505050565b80611eba81612555565b915050611e0d565b600082611ecf8584611ed8565b14949350505050565b600081815b8451811015611f7c576000858281518110611efa57611efa61259c565b60200260200101519050808311611f3c576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611f69565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611f7481612555565b915050611edd565b509392505050565b828054828255906000526020600020908101928215611fbf579160200282015b82811115611fbf578251825591602001919060010190611fa4565b50611fcb929150611fe9565b5090565b5080546000825590600052602060002090810190610e8091905b5b80821115611fcb5760008155600101611fea565b80356001600160a01b038116811461201557600080fd5b919050565b60008083601f84011261202c57600080fd5b50813567ffffffffffffffff81111561204457600080fd5b6020830191508360208260051b8501011115610fa957600080fd5b600082601f83011261207057600080fd5b8135602067ffffffffffffffff8083111561208d5761208d6125b2565b8260051b604051601f19603f830116810181811084821117156120b2576120b26125b2565b604052848152838101925086840182880185018910156120d157600080fd5b600092505b858310156120f45780358452928401926001929092019184016120d6565b50979650505050505050565b60006020828403121561211257600080fd5b61184082611ffe565b6000806040838503121561212e57600080fd5b61213783611ffe565b915061214560208401611ffe565b90509250929050565b60008060006060848603121561216357600080fd5b61216c84611ffe565b925061217a60208501611ffe565b9150604084013590509250925092565b6000806040838503121561219d57600080fd5b6121a683611ffe565b946020939093013593505050565b600080600080606085870312156121ca57600080fd5b843567ffffffffffffffff8111156121e157600080fd5b6121ed8782880161201a565b90989097506020870135966040013595509350505050565b60006020828403121561221757600080fd5b813567ffffffffffffffff81111561222e57600080fd5b610dc48482850161205f565b60008060008060006080868803121561225257600080fd5b853567ffffffffffffffff8082111561226a57600080fd5b61227689838a0161205f565b965060208801359550604088013591508082111561229357600080fd5b61229f89838a0161205f565b945060608801359150808211156122b557600080fd5b506122c28882890161201a565b969995985093965092949392505050565b6000602082840312156122e557600080fd5b5035919050565b60008060008060006080868803121561230457600080fd5b853594506020860135935060408601359250606086013567ffffffffffffffff81111561233057600080fd5b6122c28882890161201a565b815160009082906020808601845b838110156123665781518552938201939082019060010161234a565b50929695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123aa5783518352928401929184019160010161238e565b50909695505050505050565b600060208083528351808285015260005b818110156123e3578581018301518582016040015282016123c7565b818111156123f5576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000808335601e1984360301811261245757600080fd5b83018035915067ffffffffffffffff82111561247257600080fd5b6020019150600581901b3603821315610fa957600080fd5b60008235601e198336030181126124a057600080fd5b9190910192915050565b600082198211156124bd576124bd612570565b500190565b6000826124df57634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156124fe576124fe612570565b500290565b60008282101561251557612515612570565b500390565b600181811c9082168061252e57607f821691505b6020821081141561254f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561256957612569612570565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122018d659327213ee591410949000a811bcd9658107af5ad9102cc10665316ba7b264736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f90dd052666ef7bc852fbae2242c43f892d4d0ac
-----Decoded View---------------
Arg [0] : _inulandCollectionAddress (address): 0xf90dD052666ef7bC852Fbae2242c43f892d4d0aC
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f90dd052666ef7bc852fbae2242c43f892d4d0ac
Deployed Bytecode Sourcemap
42458:12191:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24001:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26168:169;;;;;;:::i;:::-;;:::i;:::-;;;7690:14:1;;7683:22;7665:41;;7653:2;7638:18;26168:169:0;7525:187:1;53958:178:0;;;;;;:::i;:::-;54015:7;54073:16;;;:11;:16;;;;;;;;;-1:-1:-1;;;;;54073:16:0;54059:31;;:13;:31;;;;;54108:20;;;54073:16;54108:15;;;:20;;;;;53958:178;;;;14969:25:1;;;14957:2;14942:18;53958:178:0;14823:177:1;45431:123:0;;;;;;:::i;:::-;;:::i;:::-;;45024:157;;;;;;:::i;:::-;;:::i;45321:102::-;;;;;;:::i;:::-;;:::i;25121:108::-;25209:12;;25121:108;;45562:181;;;;;;:::i;:::-;;:::i;45751:301::-;;;;;;:::i;:::-;;:::i;47028:4159::-;;;;;;:::i;:::-;;:::i;43213:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26819:492;;;;;;:::i;:::-;;:::i;46824:196::-;;;;;;:::i;:::-;-1:-1:-1;;;;;46947:20:0;;;;46903:7;46947:20;;;:13;:20;;;;;;;;46986:26;;;:16;;;;:26;;;;;46824:196;46060:81;;;;;;:::i;:::-;;:::i;24963:93::-;;;25046:2;15147:36:1;;15135:2;15120:18;24963:93:0;15005:184:1;46333:210:0;;;:::i;27720:215::-;;;;;;:::i;:::-;;:::i;52380:518::-;;;;;;:::i;:::-;;:::i;:::-;;;;7910:14:1;;7903:22;7885:41;;7957:2;7942:18;;7935:34;;;;7858:18;52380:518:0;7717:258:1;44424:99:0;;;;;;:::i;:::-;;:::i;53773:177::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25292:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25393:18:0;25366:7;25393:18;;;;;;;;;;;;25292:127;35675:103;;;:::i;44859:157::-;;;;;;:::i;:::-;;:::i;44262:102::-;;;;;;:::i;:::-;;:::i;44694:157::-;;;;;;:::i;:::-;;:::i;35024:87::-;35097:6;;-1:-1:-1;;;;;35097:6:0;35024:87;;;-1:-1:-1;;;;;6464:32:1;;;6446:51;;6434:2;6419:18;35024:87:0;6300:203:1;24220:104:0;;;:::i;28438:413::-;;;;;;:::i;:::-;;:::i;25632:175::-;;;;;;:::i;:::-;;:::i;51193:314::-;;;;;;:::i;:::-;;:::i;46149:168::-;;;;;;:::i;:::-;;:::i;25870:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25986:18:0;;;25959:7;25986:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25870:151;44531:107;;;;;;:::i;:::-;;:::i;54144:178::-;;;;;;:::i;:::-;54201:7;54259:16;;;:11;:16;;;;;;;;;-1:-1:-1;;;;;54259:16:0;54245:31;;:13;:31;;;;;54294:20;;;:15;;;;:20;;;;;54144:178;35933:201;;;;;;:::i;:::-;;:::i;43335:46::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;43335:46:0;;;24001:100;24055:13;24088:5;24081:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24001:100;:::o;26168:169::-;26251:4;26268:39;21736:10;26291:7;26300:6;26268:8;:39::i;:::-;-1:-1:-1;26325:4:0;26168:169;;;;:::o;45431:123::-;35097:6;;-1:-1:-1;;;;;35097:6:0;21736:10;35244:23;35236:68;;;;-1:-1:-1;;;35236:68:0;;;;;;;:::i;:::-;;;;;;;;;45520:11:::1;:26:::0;45431:123::o;45024:157::-;43715:17;;-1:-1:-1;;;;;43715:17:0;43701:10;:31;43693:40;;;;;;45154:19:::1;45160:3;45165:7;45154:5;:19::i;:::-;45024:157:::0;;:::o;45321:102::-;35097:6;;-1:-1:-1;;;;;35097:6:0;21736:10;35244:23;35236:68;;;;-1:-1:-1;;;35236:68:0;;;;;;;:::i;:::-;45396:19;;::::1;::::0;:8:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;45562:181::-:0;45678:57;45685:10;45697:3;45702:11;45714:12;45728:6;;45678;:57::i;:::-;45562:181;;;;;:::o;45751:301::-;45907:9;45902:143;45926:4;:11;45922:1;:15;45902:143;;;45959:74;45966:10;45978:4;45983:1;45978:7;;;;;;;;:::i;:::-;;;;;;;45987:11;46000:12;46013:1;46000:15;;;;;;;;:::i;:::-;;;;;;;46017:6;;46024:1;46017:9;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:15;;;;:::i;:::-;45959:6;:74::i;:::-;45939:3;;;:::i;:::-;;;45902:143;;;;45751:301;;;;;:::o;47028:4159::-;-1:-1:-1;;;;;47176:20:0;;47091:7;47176:20;;;:13;:20;;;;;47126:15;;47091:7;;47241:2982;47261:24;;47257:28;;47241:2982;;;47311:4;:17;;47329:1;47311:20;;;;;;;;:::i;:::-;;;;;;;;;47335:1;47311:25;47307:2905;;47357:22;47382:4;:16;;:38;47399:4;:17;;47417:1;47399:20;;;;;;;;:::i;:::-;;;;;;;;;47382:38;;;;;;;;;;;;47357:63;;47473:4;:22;;:44;47496:4;:17;;47514:1;47496:20;;;;;;;;:::i;:::-;;;;;;;;;47473:44;;;;;;;;;;;;47521:1;47473:49;47469:2728;;;47551:4;:15;;:37;47567:4;:17;;47585:1;47567:20;;;;;;;;:::i;:::-;;;;;;;;;47551:37;;;;;;;;;;;;47592:1;47551:42;47547:1447;;;47622:20;47641:1;47622:20;;:::i;:::-;;;47469:2728;;47547:1447;47699:20;47722:258;47965:14;47722:208;47915:14;;47722:158;47802:47;47811:4;:15;;:37;47827:4;:17;;47845:1;47827:20;;;;;;;;:::i;:::-;;;;;;;;;47811:37;;;;;;;;;;;;47802:4;:8;;:47;;;;:::i;:::-;47722:11;;;:45;:158::i;:::-;:192;;:208::i;:::-;:242;;:258::i;:::-;47699:281;;48067:4;:15;;:37;48083:4;:17;;48101:1;48083:20;;;;;;;;:::i;:::-;;;;;;;;;48067:37;;;;;;;;;;;;48108:2;48067:43;48063:908;;;48185:3;48163:18;:12;48178:3;48163:18;:::i;:::-;48162:26;;;;:::i;:::-;48143:45;;;;:::i;:::-;;;48063:908;;;48256:4;:15;;:37;48272:4;:17;;48290:1;48272:20;;;;;;;;:::i;:::-;;;;;;;;;48256:37;;;;;;;;;;;;48297:2;48256:43;48222:749;;;48400:3;48378:18;:12;48393:3;48378:18;:::i;48222:749::-;48471:4;:15;;:37;48487:4;:17;;48505:1;48487:20;;;;;;;;:::i;:::-;;;;;;;;;48471:37;;;;;;;;;;;;48512:2;48471:43;48437:534;;;48615:3;48593:18;:12;48608:3;48593:18;:::i;48437:534::-;48686:4;:15;;:37;48702:4;:17;;48720:1;48702:20;;;;;;;;:::i;:::-;;;;;;;;;48686:37;;;;;;;;;;;;48727:2;48686:43;48652:319;;;48830:3;48808:18;:12;48823:3;48808:18;:::i;48652:319::-;48940:3;48918:18;:12;48933:3;48918:18;:::i;:::-;48917:26;;;;:::i;:::-;48898:45;;;;:::i;:::-;;;48652:319;47672:1322;47469:2728;;;49117:20;49140:263;49388:14;;49140:217;49212:118;49255:4;:22;;:44;49278:4;:17;;49296:1;49278:20;;;;;;;;:::i;:::-;;;;;;;;;49255:44;;;;;;;;;;;;49212:4;:8;;:118;;;;:::i;49140:263::-;49117:286;;49482:4;:15;;:37;49498:4;:17;;49516:1;49498:20;;;;;;;;:::i;:::-;;;;;;;;;49482:37;;;;;;;;;;;;49523:2;49482:43;49478:700;;;49596:3;49574:18;:12;49589:3;49574:18;:::i;:::-;49573:26;;;;:::i;:::-;49554:45;;;;:::i;:::-;;;49478:700;;;49633:4;:15;;:37;49649:4;:17;;49667:1;49649:20;;;;;;;;:::i;:::-;;;;;;;;;49633:37;;;;;;;;;;;;49674:2;49633:43;49629:549;;;49747:3;49725:18;:12;49740:3;49725:18;:::i;49629:549::-;49784:4;:15;;:37;49800:4;:17;;49818:1;49800:20;;;;;;;;:::i;:::-;;;;;;;;;49784:37;;;;;;;;;;;;49825:2;49784:43;49780:398;;;49898:3;49876:18;:12;49891:3;49876:18;:::i;49780:398::-;49935:4;:15;;:37;49951:4;:17;;49969:1;49951:20;;;;;;;;:::i;:::-;;;;;;;;;49935:37;;;;;;;;;;;;49976:2;49935:43;49931:247;;;50049:3;50027:18;:12;50042:3;50027:18;:::i;49931:247::-;50151:3;50129:18;:12;50144:3;50129:18;:::i;:::-;50128:26;;;;:::i;:::-;50109:45;;;;:::i;:::-;;;49931:247;49019:1178;47469:2728;47338:2874;47307:2905;47287:3;;;;:::i;:::-;;;;47241:2982;;;;50330:2;50309:4;:17;;;:23;50305:840;;50367:41;50404:3;50367:32;50387:8;50396:1;50387:11;;;;;;;;:::i;:::-;;;;;;;;;50367:15;:19;;:32;;;;:::i;:41::-;50349:59;;50305:840;;;50451:2;50430:4;:17;;;:23;50426:719;;50488:41;50525:3;50488:32;50508:8;50517:1;50508:11;;;;;;;;:::i;50426:719::-;50572:2;50551:4;:17;;;:23;50547:598;;50609:41;50646:3;50609:32;50629:8;50638:1;50629:11;;;;;;;;:::i;50547:598::-;50693:2;50672:4;:17;;;:23;50668:477;;50730:41;50767:3;50730:32;50750:8;50759:1;50750:11;;;;;;;;:::i;50668:477::-;50814:2;50793:4;:17;;;:23;50789:356;;50851:41;50888:3;50851:32;50871:8;50880:1;50871:11;;;;;;;;:::i;50789:356::-;50935:2;50914:4;:17;;;:23;50910:235;;50972:41;51009:3;50972:32;50992:8;51001:1;50992:11;;;;;;;;:::i;50910:235::-;51056:1;51035:4;:17;;;:22;51031:114;;51092:41;51129:3;51092:32;51112:8;51121:1;51112:11;;;;;;;;:::i;51092:41::-;51074:59;;51031:114;51164:15;47028:4159;-1:-1:-1;;;;47028:4159:0:o;26819:492::-;26959:4;26976:36;26986:6;26994:9;27005:6;26976:9;:36::i;:::-;-1:-1:-1;;;;;27052:19:0;;27025:24;27052:19;;;:11;:19;;;;;;;;21736:10;27052:33;;;;;;;;27104:26;;;;27096:79;;;;-1:-1:-1;;;27096:79:0;;11580:2:1;27096:79:0;;;11562:21:1;11619:2;11599:18;;;11592:30;11658:34;11638:18;;;11631:62;-1:-1:-1;;;11709:18:1;;;11702:38;11757:19;;27096:79:0;11378:404:1;27096:79:0;27211:57;27220:6;21736:10;27261:6;27242:16;:25;27211:8;:57::i;:::-;-1:-1:-1;27299:4:0;;26819:492;-1:-1:-1;;;;26819:492:0:o;46060:81::-;46108:25;46117:10;46129:3;46108:8;:25::i;:::-;46060:81;:::o;46333:210::-;46375:15;46393:29;46411:10;46393:17;:29::i;:::-;46375:47;;46433:26;46439:10;46451:7;46433:5;:26::i;:::-;46505:30;46524:10;46505:18;:30::i;27720:215::-;21736:10;27808:4;27857:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27857:34:0;;;;;;;;;;27808:4;;27825:80;;27848:7;;27857:47;;27894:10;;27857:47;:::i;:::-;27825:8;:80::i;52380:518::-;-1:-1:-1;;;;;52500:20:0;;52451:4;52500:20;;;:13;:20;;;;;;;;52605:14;;52582:20;;;:15;;;:20;;;;;;;52451:4;;52582:37;;;:::i;:::-;52558:20;;;;:15;;;:20;;;;;;:62;;;;:::i;:::-;52539:15;:82;52535:356;;;52722:14;;52699:20;;;;52650:4;52699:15;;;:20;;;;;;;52650:4;;52699:37;;;:::i;:::-;52675:20;;;;:15;;;:20;;;;;;:62;;;;:::i;:::-;52656:82;;:15;:82;:::i;:::-;52642:97;;;;;;;52535:356;52858:14;;52835:20;;;;52786:4;52835:15;;;:20;;;;;;;52786:4;;52835:37;;;:::i;52380:518::-;;;;;;:::o;44424:99::-;35097:6;;-1:-1:-1;;;;;35097:6:0;21736:10;35244:23;35236:68;;;;-1:-1:-1;;;35236:68:0;;;;;;;:::i;:::-;44496:19:::1;44502:3;44507:7;44496:5;:19::i;53773:177::-:0;-1:-1:-1;;;;;53883:20:0;;53859:21;53883:20;;;:13;:20;;;;;;;;;53916:26;;;;;;;;;;;;;;;;;53830:16;;53883:20;;;;53916:26;;;53883:20;53916:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53773:177;;;:::o;35675:103::-;35097:6;;-1:-1:-1;;;;;35097:6:0;21736:10;35244:23;35236:68;;;;-1:-1:-1;;;35236:68:0;;;;;;;:::i;:::-;35740:30:::1;35767:1;35740:18;:30::i;:::-;35675:103::o:0;44859:157::-;43715:17;;-1:-1:-1;;;;;43715:17:0;43701:10;:31;43693:40;;;;;44262:102;35097:6;;-1:-1:-1;;;;;35097:6:0;21736:10;35244:23;35236:68;;;;-1:-1:-1;;;35236:68:0;;;;;;;:::i;:::-;44333:15:::1;:23:::0;44262:102::o;44694:157::-;35097:6;;-1:-1:-1;;;;;35097:6:0;21736:10;35244:23;35236:68;;;;-1:-1:-1;;;35236:68:0;;;;;;;:::i;:::-;44804:17:::1;:39:::0;;-1:-1:-1;;;;;;44804:39:0::1;-1:-1:-1::0;;;;;44804:39:0;;;::::1;::::0;;;::::1;::::0;;44694:157::o;24220:104::-;24276:13;24309:7;24302:14;;;;;:::i;28438:413::-;21736:10;28531:4;28575:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28575:34:0;;;;;;;;;;28628:35;;;;28620:85;;;;-1:-1:-1;;;28620:85:0;;14259:2:1;28620:85:0;;;14241:21:1;14298:2;14278:18;;;14271:30;14337:34;14317:18;;;14310:62;-1:-1:-1;;;14388:18:1;;;14381:35;14433:19;;28620:85:0;14057:401:1;28620:85:0;28741:67;21736:10;28764:7;28792:15;28773:16;:34;28741:8;:67::i;:::-;-1:-1:-1;28839:4:0;;28438:413;-1:-1:-1;;;28438:413:0:o;25632:175::-;25718:4;25735:42;21736:10;25759:9;25770:6;25735:9;:42::i;51193:314::-;51309:16;;;51323:1;51309:16;;;;;;;;51288:18;;51309:16;;;;;;;;;;-1:-1:-1;51309:16:0;51288:37;;51345:2;51338:1;51340;51338:4;;;;;;;;:::i;:::-;;;;;;:9;;;;;51367:5;51360:1;51362;51360:4;;;;;;;;:::i;:::-;;;;;;:12;;;;;51418:24;51426:8;51432:1;51426:5;:8::i;:::-;51436:5;;51418:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51418:7:0;;-1:-1:-1;;;51418:24:0:i;:::-;51388:111;;;;-1:-1:-1;;;51388:111:0;;13563:2:1;51388:111:0;;;13545:21:1;13602:2;13582:18;;;13575:30;-1:-1:-1;;;13621:18:1;;;13614:43;13674:18;;51388:111:0;13361:337:1;46149:168:0;46217:9;46212:98;46236:4;:11;46232:1;:15;46212:98;;;46269:29;46278:10;46290:4;46295:1;46290:7;;;;;;;;:::i;:::-;;;;;;;46269:8;:29::i;:::-;46249:3;;;:::i;:::-;;;46212:98;;44531:107;35097:6;;-1:-1:-1;;;;;35097:6:0;21736:10;35244:23;35236:68;;;;-1:-1:-1;;;35236:68:0;;;;;;;:::i;:::-;44604:14:::1;:26:::0;44531:107::o;35933:201::-;35097:6;;-1:-1:-1;;;;;35097:6:0;21736:10;35244:23;35236:68;;;;-1:-1:-1;;;35236:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36022:22:0;::::1;36014:73;;;::::0;-1:-1:-1;;;36014:73:0;;9946:2:1;36014:73:0::1;::::0;::::1;9928:21:1::0;9985:2;9965:18;;;9958:30;10024:34;10004:18;;;9997:62;-1:-1:-1;;;10075:18:1;;;10068:36;10121:19;;36014:73:0::1;9744:402:1::0;36014:73:0::1;36098:28;36117:8;36098:18;:28::i;32122:380::-:0;-1:-1:-1;;;;;32258:19:0;;32250:68;;;;-1:-1:-1;;;32250:68:0;;13158:2:1;32250:68:0;;;13140:21:1;13197:2;13177:18;;;13170:30;13236:34;13216:18;;;13209:62;-1:-1:-1;;;13287:18:1;;;13280:34;13331:19;;32250:68:0;12956:400:1;32250:68:0;-1:-1:-1;;;;;32337:21:0;;32329:68;;;;-1:-1:-1;;;32329:68:0;;10353:2:1;32329:68:0;;;10335:21:1;10392:2;10372:18;;;10365:30;10431:34;10411:18;;;10404:62;-1:-1:-1;;;10482:18:1;;;10475:32;10524:19;;32329:68:0;10151:398:1;32329:68:0;-1:-1:-1;;;;;32410:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32462:32;;14969:25:1;;;32462:32:0;;14942:18:1;32462:32:0;;;;;;;;32122:380;;;:::o;31093:591::-;-1:-1:-1;;;;;31177:21:0;;31169:67;;;;-1:-1:-1;;;31169:67:0;;12350:2:1;31169:67:0;;;12332:21:1;12389:2;12369:18;;;12362:30;12428:34;12408:18;;;12401:62;-1:-1:-1;;;12479:18:1;;;12472:31;12520:19;;31169:67:0;12148:397:1;31169:67:0;-1:-1:-1;;;;;31336:18:0;;31311:22;31336:18;;;;;;;;;;;31373:24;;;;31365:71;;;;-1:-1:-1;;;31365:71:0;;9188:2:1;31365:71:0;;;9170:21:1;9227:2;9207:18;;;9200:30;9266:34;9246:18;;;9239:62;-1:-1:-1;;;9317:18:1;;;9310:32;9359:19;;31365:71:0;8986:398:1;31365:71:0;-1:-1:-1;;;;;31472:18:0;;:9;:18;;;;;;;;;;31493:23;;;31472:44;;31538:12;:22;;31510:6;;31472:9;31538:22;;31510:6;;31538:22;:::i;:::-;;;;-1:-1:-1;;31578:37:0;;14969:25:1;;;31604:1:0;;-1:-1:-1;;;;;31578:37:0;;;;;14957:2:1;14942:18;31578:37:0;14823:177:1;31628:48:0;31158:526;31093:591;;:::o;51515:857::-;51722:16;;;51736:1;51722:16;;;;;;;;51701:18;;51722:16;;;;;;;;-1:-1:-1;;;;;;;;51775:20:0;;51751:21;51775:20;;;:13;:20;;;;;51806:4;;;;-1:-1:-1;51775:20:0;51813:3;;51806:4;;;;;;:::i;:::-;;;;;;:10;;;;;51834:12;51827:1;51829;51827:4;;;;;;;;:::i;:::-;;;;;;:19;;;;;51888:24;51896:8;51902:1;51896:5;:8::i;:::-;51906:5;;51888:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51888:7:0;;-1:-1:-1;;;51888:24:0:i;:::-;51858:123;;;;-1:-1:-1;;;51858:123:0;;13905:2:1;51858:123:0;;;13887:21:1;13944:2;13924:18;;;13917:30;13983:27;13963:18;;;13956:55;14028:18;;51858:123:0;13703:349:1;51858:123:0;52002:24;;51994:123;;-1:-1:-1;;;51994:123:0;;-1:-1:-1;;;;;6766:15:1;;;51994:123:0;;;6748:34:1;52083:4:0;6798:18:1;;;6791:43;6850:18;;;6843:34;;;52002:24:0;;;;51994:46;;6683:18:1;;51994:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52128:21:0;;;;:16;;;:21;;;;;:36;;;52175:17;;;:22;;52196:1;;-1:-1:-1;52175:17:0;;52128:21;52175:22;;52196:1;;52175:22;:::i;:::-;;;;-1:-1:-1;;52208:20:0;;;;:15;;;:20;;;;;;;;52231:15;52208:38;;52257:15;;;;:20;;;;;:34;;;;52302:27;;;;;;;;;;;;;;;;;;;52340:16;;;:11;:16;;;-1:-1:-1;;;52340:16:0;;:24;;-1:-1:-1;;;;;;52340:24:0;-1:-1:-1;;;;;52340:24:0;;;;;;;;;;;-1:-1:-1;51515:857:0:o;5411:98::-;5469:7;5496:5;5500:1;5496;:5;:::i;:::-;5489:12;5411:98;-1:-1:-1;;;5411:98:0:o;5768:::-;5826:7;5853:5;5857:1;5853;:5;:::i;6167:98::-;6225:7;6252:5;6256:1;6252;:5;:::i;29341:733::-;-1:-1:-1;;;;;29481:20:0;;29473:70;;;;-1:-1:-1;;;29473:70:0;;12752:2:1;29473:70:0;;;12734:21:1;12791:2;12771:18;;;12764:30;12830:34;12810:18;;;12803:62;-1:-1:-1;;;12881:18:1;;;12874:35;12926:19;;29473:70:0;12550:401:1;29473:70:0;-1:-1:-1;;;;;29562:23:0;;29554:71;;;;-1:-1:-1;;;29554:71:0;;8784:2:1;29554:71:0;;;8766:21:1;8823:2;8803:18;;;8796:30;8862:34;8842:18;;;8835:62;-1:-1:-1;;;8913:18:1;;;8906:33;8956:19;;29554:71:0;8582:399:1;29554:71:0;-1:-1:-1;;;;;29722:17:0;;29698:21;29722:17;;;;;;;;;;;29758:23;;;;29750:74;;;;-1:-1:-1;;;29750:74:0;;10756:2:1;29750:74:0;;;10738:21:1;10795:2;10775:18;;;10768:30;10834:34;10814:18;;;10807:62;-1:-1:-1;;;10885:18:1;;;10878:36;10931:19;;29750:74:0;10554:402:1;29750:74:0;-1:-1:-1;;;;;29860:17:0;;;:9;:17;;;;;;;;;;;29880:22;;;29860:42;;29924:20;;;;;;;;:30;;29896:6;;29860:9;29924:30;;29896:6;;29924:30;:::i;:::-;;;;;;;;29989:9;-1:-1:-1;;;;;29972:35:0;29981:6;-1:-1:-1;;;;;29972:35:0;;30000:6;29972:35;;;;14969:25:1;;14957:2;14942:18;;14823:177;29972:35:0;;;;;;;;29462:612;29341:733;;;:::o;52906:765::-;-1:-1:-1;;;;;52996:20:0;;;52972:21;52996:20;;;:13;:20;;;;;;;;53051:16;;;:11;:16;;;;;;;52996:20;;53051:16;:25;53029:123;;;;-1:-1:-1;;;53029:123:0;;11163:2:1;53029:123:0;;;11145:21:1;11202:2;11182:18;;;11175:30;11241:34;11221:18;;;11214:62;-1:-1:-1;;;11292:18:1;;;11285:46;11348:19;;53029:123:0;10961:412:1;53029:123:0;53263:14;;53240:20;;;;:15;;;:20;;;;;;:37;;53263:14;53240:37;:::i;:::-;53216:20;;;;:15;;;:20;;;;;;:62;;;;:::i;:::-;53197:15;:82;53188:122;;;;-1:-1:-1;;;53188:122:0;;9591:2:1;53188:122:0;;;9573:21:1;9630:2;9610:18;;;9603:30;9669:28;9649:18;;;9642:56;9715:18;;53188:122:0;9389:350:1;53188:122:0;53321:38;53336:4;53355:3;53321:14;:38::i;:::-;53391:1;53370:4;:17;;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;53410:16:0;;;;:11;:16;;;;;53403:23;;-1:-1:-1;;;;;;53403:23:0;;;53443:24;;53439:89;;-1:-1:-1;;;;;53496:20:0;;;;;;:13;:20;;;;;;53489:27;53496:20;;53489:27;:::i;:::-;;;;;;;;;53439:89;53548:24;;53540:123;;-1:-1:-1;;;53540:123:0;;53609:4;53540:123;;;6748:34:1;-1:-1:-1;;;;;6818:15:1;;;6798:18;;;6791:43;6850:18;;;6843:34;;;53548:24:0;;;;53540:46;;6683:18:1;;53540:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52961:710;52906:765;;:::o;30361:399::-;-1:-1:-1;;;;;30445:21:0;;30437:65;;;;-1:-1:-1;;;30437:65:0;;14665:2:1;30437:65:0;;;14647:21:1;14704:2;14684:18;;;14677:30;14743:33;14723:18;;;14716:61;14794:18;;30437:65:0;14463:355:1;30437:65:0;30593:6;30577:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;30610:18:0;;:9;:18;;;;;;;;;;:28;;30632:6;;30610:9;:28;;30632:6;;30610:28;:::i;:::-;;;;-1:-1:-1;;30654:37:0;;14969:25:1;;;-1:-1:-1;;;;;30654:37:0;;;30671:1;;30654:37;;14957:2:1;14942:18;30654:37:0;;;;;;;45024:157;;:::o;46551:265::-;-1:-1:-1;;;;;46638:20:0;;46614:21;46638:20;;;:13;:20;;;;;;46669:140;46689:24;;46685:28;;46669:140;;;46782:15;46735:4;:22;;:44;46758:4;:17;;46776:1;46758:20;;;;;;;;:::i;:::-;;;;;;;;;46735:44;;;;;;;;;;;:62;;;;46715:3;;;;;:::i;:::-;;;;46669:140;;36294:191;36387:6;;;-1:-1:-1;;;;;36404:17:0;;;-1:-1:-1;;;;;;36404:17:0;;;;;;;36437:40;;36387:6;;;36404:17;36387:6;;36437:40;;36368:16;;36437:40;36357:128;36294:191;:::o;44105:141::-;44172:7;44226:10;44209:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;44199:39;;;;;;44192:46;;44105:141;;;:::o;43808:193::-;43916:4;43940:53;43959:5;43966:15;;43983:9;43940:18;:53::i;54331:315::-;54424:9;54419:220;54439:13;;54435:17;;54419:220;;;54491:8;54478:6;54485:1;54478:9;;;;;;;;:::i;:::-;;;;;;;;;:21;54474:154;;;54539:13;;54532:6;;54539:17;;54555:1;;54539:17;:::i;:::-;54532:25;;;;;;;;:::i;:::-;;;;;;;;;54520:6;54527:1;54520:9;;;;;;;;:::i;:::-;;;;;;;;:37;;;;54576:6;:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;31158:526;31093:591;;:::o;54474:154::-;54454:3;;;;:::i;:::-;;;;54419:220;;908:190;1033:4;1086;1057:25;1070:5;1077:4;1057:12;:25::i;:::-;:33;;908:190;-1:-1:-1;;;;908:190:0:o;1460:701::-;1543:7;1586:4;1543:7;1601:523;1625:5;:12;1621:1;:16;1601:523;;;1659:20;1682:5;1688:1;1682:8;;;;;;;;:::i;:::-;;;;;;;1659:31;;1725:12;1709;:28;1705:408;;1862:44;;;;;;6205:19:1;;;6240:12;;;6233:28;;;6277:12;;1862:44:0;;;;;;;;;;;;1852:55;;;;;;1837:70;;1705:408;;;2052:44;;;;;;6205:19:1;;;6240:12;;;6233:28;;;6277:12;;2052:44:0;;;;;;;;;;;;2042:55;;;;;;2027:70;;1705:408;-1:-1:-1;1639:3:0;;;;:::i;:::-;;;;1601:523;;;-1:-1:-1;2141:12:0;1460:701;-1:-1:-1;;;1460:701:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:367::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:55;;337:1;334;327:12;286:55;-1:-1:-1;360:20:1;;403:18;392:30;;389:50;;;435:1;432;425:12;389:50;472:4;464:6;460:17;448:29;;532:3;525:4;515:6;512:1;508:14;500:6;496:27;492:38;489:47;486:67;;;549:1;546;539:12;564:913;618:5;671:3;664:4;656:6;652:17;648:27;638:55;;689:1;686;679:12;638:55;725:6;712:20;751:4;774:18;811:2;807;804:10;801:36;;;817:18;;:::i;:::-;863:2;860:1;856:10;895:2;889:9;958:2;954:7;949:2;945;941:11;937:25;929:6;925:38;1013:6;1001:10;998:22;993:2;981:10;978:18;975:46;972:72;;;1024:18;;:::i;:::-;1060:2;1053:22;1110:18;;;1144:15;;;;-1:-1:-1;1179:15:1;;;1213;;;1209:24;;1206:33;-1:-1:-1;1203:53:1;;;1252:1;1249;1242:12;1203:53;1274:1;1265:10;;1284:163;1298:2;1295:1;1292:9;1284:163;;;1355:17;;1343:30;;1393:12;;;;1316:1;1309:9;;;;;1425:12;;1284:163;;;-1:-1:-1;1465:6:1;564:913;-1:-1:-1;;;;;;;564:913:1:o;1482:186::-;1541:6;1594:2;1582:9;1573:7;1569:23;1565:32;1562:52;;;1610:1;1607;1600:12;1562:52;1633:29;1652:9;1633:29;:::i;1673:260::-;1741:6;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1673:260;;;;;:::o;1938:328::-;2015:6;2023;2031;2084:2;2072:9;2063:7;2059:23;2055:32;2052:52;;;2100:1;2097;2090:12;2052:52;2123:29;2142:9;2123:29;:::i;:::-;2113:39;;2171:38;2205:2;2194:9;2190:18;2171:38;:::i;:::-;2161:48;;2256:2;2245:9;2241:18;2228:32;2218:42;;1938:328;;;;;:::o;2271:254::-;2339:6;2347;2400:2;2388:9;2379:7;2375:23;2371:32;2368:52;;;2416:1;2413;2406:12;2368:52;2439:29;2458:9;2439:29;:::i;:::-;2429:39;2515:2;2500:18;;;;2487:32;;-1:-1:-1;;;2271:254:1:o;2530:573::-;2634:6;2642;2650;2658;2711:2;2699:9;2690:7;2686:23;2682:32;2679:52;;;2727:1;2724;2717:12;2679:52;2767:9;2754:23;2800:18;2792:6;2789:30;2786:50;;;2832:1;2829;2822:12;2786:50;2871:70;2933:7;2924:6;2913:9;2909:22;2871:70;:::i;:::-;2960:8;;2845:96;;-1:-1:-1;3042:2:1;3027:18;;3014:32;;3093:2;3078:18;3065:32;;-1:-1:-1;2530:573:1;-1:-1:-1;;;;2530:573:1:o;3108:348::-;3192:6;3245:2;3233:9;3224:7;3220:23;3216:32;3213:52;;;3261:1;3258;3251:12;3213:52;3301:9;3288:23;3334:18;3326:6;3323:30;3320:50;;;3366:1;3363;3356:12;3320:50;3389:61;3442:7;3433:6;3422:9;3418:22;3389:61;:::i;3461:1017::-;3662:6;3670;3678;3686;3694;3747:3;3735:9;3726:7;3722:23;3718:33;3715:53;;;3764:1;3761;3754:12;3715:53;3804:9;3791:23;3833:18;3874:2;3866:6;3863:14;3860:34;;;3890:1;3887;3880:12;3860:34;3913:61;3966:7;3957:6;3946:9;3942:22;3913:61;:::i;:::-;3903:71;;4021:2;4010:9;4006:18;3993:32;3983:42;;4078:2;4067:9;4063:18;4050:32;4034:48;;4107:2;4097:8;4094:16;4091:36;;;4123:1;4120;4113:12;4091:36;4146:63;4201:7;4190:8;4179:9;4175:24;4146:63;:::i;:::-;4136:73;;4262:2;4251:9;4247:18;4234:32;4218:48;;4291:2;4281:8;4278:16;4275:36;;;4307:1;4304;4297:12;4275:36;;4346:72;4410:7;4399:8;4388:9;4384:24;4346:72;:::i;:::-;3461:1017;;;;-1:-1:-1;3461:1017:1;;-1:-1:-1;4437:8:1;;4320:98;3461:1017;-1:-1:-1;;;3461:1017:1:o;4483:180::-;4542:6;4595:2;4583:9;4574:7;4570:23;4566:32;4563:52;;;4611:1;4608;4601:12;4563:52;-1:-1:-1;4634:23:1;;4483:180;-1:-1:-1;4483:180:1:o;4853:642::-;4966:6;4974;4982;4990;4998;5051:3;5039:9;5030:7;5026:23;5022:33;5019:53;;;5068:1;5065;5058:12;5019:53;5104:9;5091:23;5081:33;;5161:2;5150:9;5146:18;5133:32;5123:42;;5212:2;5201:9;5197:18;5184:32;5174:42;;5267:2;5256:9;5252:18;5239:32;5294:18;5286:6;5283:30;5280:50;;;5326:1;5323;5316:12;5280:50;5365:70;5427:7;5418:6;5407:9;5403:22;5365:70;:::i;5500:543::-;5718:13;;5661:3;;5692;;5771:4;5798:15;;;5661:3;5841:175;5855:6;5852:1;5849:13;5841:175;;;5918:13;;5904:28;;5954:14;;;;5991:15;;;;5877:1;5870:9;5841:175;;;-1:-1:-1;6032:5:1;;5500:543;-1:-1:-1;;;;;;5500:543:1:o;6888:632::-;7059:2;7111:21;;;7181:13;;7084:18;;;7203:22;;;7030:4;;7059:2;7282:15;;;;7256:2;7241:18;;;7030:4;7325:169;7339:6;7336:1;7333:13;7325:169;;;7400:13;;7388:26;;7469:15;;;;7434:12;;;;7361:1;7354:9;7325:169;;;-1:-1:-1;7511:3:1;;6888:632;-1:-1:-1;;;;;;6888:632:1:o;7980:597::-;8092:4;8121:2;8150;8139:9;8132:21;8182:6;8176:13;8225:6;8220:2;8209:9;8205:18;8198:34;8250:1;8260:140;8274:6;8271:1;8268:13;8260:140;;;8369:14;;;8365:23;;8359:30;8335:17;;;8354:2;8331:26;8324:66;8289:10;;8260:140;;;8418:6;8415:1;8412:13;8409:91;;;8488:1;8483:2;8474:6;8463:9;8459:22;8455:31;8448:42;8409:91;-1:-1:-1;8561:2:1;8540:15;-1:-1:-1;;8536:29:1;8521:45;;;;8568:2;8517:54;;7980:597;-1:-1:-1;;;7980:597:1:o;11787:356::-;11989:2;11971:21;;;12008:18;;;12001:30;12067:34;12062:2;12047:18;;12040:62;12134:2;12119:18;;11787:356::o;15194:545::-;15287:4;15293:6;15353:11;15340:25;15447:2;15443:7;15432:8;15416:14;15412:29;15408:43;15388:18;15384:68;15374:96;;15466:1;15463;15456:12;15374:96;15493:33;;15545:20;;;-1:-1:-1;15588:18:1;15577:30;;15574:50;;;15620:1;15617;15610:12;15574:50;15653:4;15641:17;;-1:-1:-1;15704:1:1;15700:14;;;15684;15680:35;15670:46;;15667:66;;;15729:1;15726;15719:12;15744:335;15848:4;15906:11;15893:25;16000:2;15996:7;15985:8;15969:14;15965:29;15961:43;15941:18;15937:68;15927:96;;16019:1;16016;16009:12;15927:96;16040:33;;;;;15744:335;-1:-1:-1;;15744:335:1:o;16084:128::-;16124:3;16155:1;16151:6;16148:1;16145:13;16142:39;;;16161:18;;:::i;:::-;-1:-1:-1;16197:9:1;;16084:128::o;16217:217::-;16257:1;16283;16273:132;;16327:10;16322:3;16318:20;16315:1;16308:31;16362:4;16359:1;16352:15;16390:4;16387:1;16380:15;16273:132;-1:-1:-1;16419:9:1;;16217:217::o;16439:168::-;16479:7;16545:1;16541;16537:6;16533:14;16530:1;16527:21;16522:1;16515:9;16508:17;16504:45;16501:71;;;16552:18;;:::i;:::-;-1:-1:-1;16592:9:1;;16439:168::o;16612:125::-;16652:4;16680:1;16677;16674:8;16671:34;;;16685:18;;:::i;:::-;-1:-1:-1;16722:9:1;;16612:125::o;16742:380::-;16821:1;16817:12;;;;16864;;;16885:61;;16939:4;16931:6;16927:17;16917:27;;16885:61;16992:2;16984:6;16981:14;16961:18;16958:38;16955:161;;;17038:10;17033:3;17029:20;17026:1;17019:31;17073:4;17070:1;17063:15;17101:4;17098:1;17091:15;16955:161;;16742:380;;;:::o;17127:135::-;17166:3;-1:-1:-1;;17187:17:1;;17184:43;;;17207:18;;:::i;:::-;-1:-1:-1;17254:1:1;17243:13;;17127:135::o;17267:127::-;17328:10;17323:3;17319:20;17316:1;17309:31;17359:4;17356:1;17349:15;17383:4;17380:1;17373:15;17399:127;17460:10;17455:3;17451:20;17448:1;17441:31;17491:4;17488:1;17481:15;17515:4;17512:1;17505:15;17531:127;17592:10;17587:3;17583:20;17580:1;17573:31;17623:4;17620:1;17613:15;17647:4;17644:1;17637:15;17663:127;17724:10;17719:3;17715:20;17712:1;17705:31;17755:4;17752:1;17745:15;17779:4;17776:1;17769:15
Swarm Source
ipfs://18d659327213ee591410949000a811bcd9658107af5ad9102cc10665316ba7b2
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.