Overview
GLMR Balance
GLMR Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 247 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Safe Mint | 5280189 | 750 days ago | IN | 0 GLMR | 0.03126047 | ||||
| Safe Mint | 5267604 | 752 days ago | IN | 0 GLMR | 0.03618901 | ||||
| Safe Mint | 5258312 | 753 days ago | IN | 0 GLMR | 0.0433158 | ||||
| Safe Mint | 5254934 | 754 days ago | IN | 0 GLMR | 0.03476058 | ||||
| Safe Mint | 5226214 | 758 days ago | IN | 0 GLMR | 0.04245308 | ||||
| Safe Mint | 5214205 | 759 days ago | IN | 0 GLMR | 0.03871185 | ||||
| Safe Mint | 5201564 | 761 days ago | IN | 0 GLMR | 0.19129852 | ||||
| Safe Mint | 5178545 | 764 days ago | IN | 0 GLMR | 0.04777477 | ||||
| Safe Mint | 5154556 | 768 days ago | IN | 0 GLMR | 0.11566839 | ||||
| Safe Mint | 5145258 | 769 days ago | IN | 0 GLMR | 0.23031072 | ||||
| Safe Mint | 5145252 | 769 days ago | IN | 0 GLMR | 0.2346981 | ||||
| Safe Mint | 5145239 | 769 days ago | IN | 0 GLMR | 0.22886223 | ||||
| Safe Mint | 5145189 | 769 days ago | IN | 0 GLMR | 0.20640308 | ||||
| Safe Mint | 5145157 | 769 days ago | IN | 0 GLMR | 0.20679305 | ||||
| Safe Mint | 5145154 | 769 days ago | IN | 0 GLMR | 0.20673513 | ||||
| Safe Mint | 5145149 | 769 days ago | IN | 0 GLMR | 0.20634981 | ||||
| Safe Mint | 5145089 | 769 days ago | IN | 0 GLMR | 0.20653909 | ||||
| Safe Mint | 5145079 | 769 days ago | IN | 0 GLMR | 0.2063778 | ||||
| Safe Mint | 5145070 | 769 days ago | IN | 0 GLMR | 0.20612413 | ||||
| Safe Mint | 5145065 | 769 days ago | IN | 0 GLMR | 0.20611805 | ||||
| Safe Mint | 5145059 | 769 days ago | IN | 0 GLMR | 0.20584973 | ||||
| Safe Mint | 5145044 | 769 days ago | IN | 0 GLMR | 0.21262059 | ||||
| Safe Mint | 5145028 | 769 days ago | IN | 0 GLMR | 0.21277813 | ||||
| Safe Mint | 5144987 | 769 days ago | IN | 0 GLMR | 0.21276969 | ||||
| Safe Mint | 5144983 | 769 days ago | IN | 0 GLMR | 0.21279014 |
View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Loading...
Loading
Contract Name:
DUXERC721
Compiler Version
v0.8.22+commit.4fc1097e
Contract Source Code (Solidity)
/** *Submitted for verification at moonbeam.moonscan.io on 2024-02-29 */ // File: @openzeppelin/[email protected]/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/[email protected]/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/[email protected]/utils/math/Math.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ 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 subtraction of two unsigned integers, with an overflow flag. */ 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. */ 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. */ 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. */ 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 largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } } // File: @openzeppelin/[email protected]/utils/Strings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/[email protected]/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/[email protected]/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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/[email protected]/utils/Pausable.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol) pragma solidity ^0.8.20; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { bool private _paused; /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); /** * @dev The operation failed because the contract is paused. */ error EnforcedPause(); /** * @dev The operation failed because the contract is not paused. */ error ExpectedPause(); /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { if (paused()) { revert EnforcedPause(); } } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { if (!paused()) { revert ExpectedPause(); } } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/[email protected]/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.20; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be * reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @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/[email protected]/interfaces/IERC165.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol) pragma solidity ^0.8.20; // File: @openzeppelin/[email protected]/utils/introspection/ERC165.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/[email protected]/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; /** * @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`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 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 address zero. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/[email protected]/interfaces/IERC721.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC721.sol) pragma solidity ^0.8.20; // File: @openzeppelin/[email protected]/interfaces/IERC4906.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC4906.sol) pragma solidity ^0.8.20; /// @title EIP-721 Metadata Update Extension interface IERC4906 is IERC165, IERC721 { /// @dev This event emits when the metadata of a token is changed. /// So that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFT. event MetadataUpdate(uint256 _tokenId); /// @dev This event emits when the metadata of a range of tokens is changed. /// So that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFTs. event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId); } // File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.20; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.20; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/[email protected]/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.20; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors { using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; mapping(uint256 tokenId => address) private _owners; mapping(address owner => uint256) private _balances; mapping(uint256 tokenId => address) private _tokenApprovals; mapping(address owner => mapping(address operator => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual returns (uint256) { if (owner == address(0)) { revert ERC721InvalidOwner(address(0)); } return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual returns (address) { return _requireOwned(tokenId); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual returns (string memory) { _requireOwned(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual { _approve(to, tokenId, _msgSender()); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual returns (address) { _requireOwned(tokenId); return _getApproved(tokenId); } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here. address previousOwner = _update(to, tokenId, _msgSender()); if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual { transferFrom(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist * * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`. */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted. */ function _getApproved(uint256 tokenId) internal view virtual returns (address) { return _tokenApprovals[tokenId]; } /** * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in * particular (ignoring whether it is owned by `owner`). * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) { return spender != address(0) && (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender); } /** * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner. * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets * the `spender` for the specific `tokenId`. * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual { if (!_isAuthorized(owner, spender, tokenId)) { if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } else { revert ERC721InsufficientApproval(spender, tokenId); } } } /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that * a uint256 would ever overflow from increments when these increments are bounded to uint128 values. * * WARNING: Increasing an account's balance using this function tends to be paired with an override of the * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership * remain consistent with one another. */ function _increaseBalance(address account, uint128 value) internal virtual { unchecked { _balances[account] += value; } } /** * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update. * * The `auth` argument is optional. If the value passed is non 0, then this function will check that * `auth` is either the owner of the token, or approved to operate on the token (by the owner). * * Emits a {Transfer} event. * * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}. */ function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) { address from = _ownerOf(tokenId); // Perform (optional) operator check if (auth != address(0)) { _checkAuthorized(from, auth, tokenId); } // Execute the update if (from != address(0)) { // Clear approval. No need to re-authorize or emit the Approval event _approve(address(0), tokenId, address(0), false); unchecked { _balances[from] -= 1; } } if (to != address(0)) { unchecked { _balances[to] += 1; } } _owners[tokenId] = to; emit Transfer(from, to, tokenId); return from; } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner != address(0)) { revert ERC721InvalidSender(address(0)); } } /** * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); _checkOnERC721Received(address(0), to, tokenId, data); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal { address previousOwner = _update(address(0), tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } else if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients * are aware of the ERC721 standard to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is like {safeTransferFrom} in the sense that it invokes * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `tokenId` token must exist and be owned by `from`. * - `to` cannot be the zero address. * - `from` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId) internal { _safeTransfer(from, to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Approve `to` to operate on `tokenId` * * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is * either the owner of the token, or approved to operate on all tokens held by this owner. * * Emits an {Approval} event. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address to, uint256 tokenId, address auth) internal { _approve(to, tokenId, auth, true); } /** * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not * emitted in the context of transfers. */ function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual { // Avoid reading the owner unless necessary if (emitEvent || auth != address(0)) { address owner = _requireOwned(tokenId); // We do not use _isAuthorized because single-token approvals should not be able to call approve if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) { revert ERC721InvalidApprover(auth); } if (emitEvent) { emit Approval(owner, to, tokenId); } } _tokenApprovals[tokenId] = to; } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Requirements: * - operator can't be the address zero. * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { if (operator == address(0)) { revert ERC721InvalidOperator(operator); } _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned). * Returns the owner. * * Overrides to ownership logic should be done to {_ownerOf}. */ function _requireOwned(uint256 tokenId) internal view returns (address) { address owner = _ownerOf(tokenId); if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } return owner; } /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the * recipient doesn't accept the token transfer. The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private { if (to.code.length > 0) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { if (retval != IERC721Receiver.onERC721Received.selector) { revert ERC721InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { revert ERC721InvalidReceiver(to); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } } } // File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Burnable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Burnable.sol) pragma solidity ^0.8.20; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here. _update(address(0), tokenId, _msgSender()); } } // File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Pausable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Pausable.sol) pragma solidity ^0.8.20; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * IMPORTANT: This contract does not include public pause and unpause functions. In * addition to inheriting this contract, you must define both functions, invoking the * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will * make the contract pause mechanism of the contract unreachable, and thus unusable. */ abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_update}. * * Requirements: * * - the contract must not be paused. */ function _update( address to, uint256 tokenId, address auth ) internal virtual override whenNotPaused returns (address) { return super._update(to, tokenId, auth); } } // File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721URIStorage.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.20; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is IERC4906, ERC721 { using Strings for uint256; // Interface ID as defined in ERC-4906. This does not correspond to a traditional interface ID as ERC-4906 only // defines events and does not include any external function. bytes4 private constant ERC4906_INTERFACE_ID = bytes4(0x49064906); // Optional mapping for token URIs mapping(uint256 tokenId => string) private _tokenURIs; /** * @dev See {IERC165-supportsInterface} */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, IERC165) returns (bool) { return interfaceId == ERC4906_INTERFACE_ID || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireOwned(tokenId); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via string.concat). if (bytes(_tokenURI).length > 0) { return string.concat(base, _tokenURI); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Emits {MetadataUpdate}. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { _tokenURIs[tokenId] = _tokenURI; emit MetadataUpdate(tokenId); } } // File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.20; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds enumerability * of all the token ids in the contract as well as all token ids owned by each account. * * CAUTION: `ERC721` extensions that implement custom `balanceOf` logic, such as `ERC721Consecutive`, * interfere with enumerability and should not be used together with `ERC721Enumerable`. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { mapping(address owner => mapping(uint256 index => uint256)) private _ownedTokens; mapping(uint256 tokenId => uint256) private _ownedTokensIndex; uint256[] private _allTokens; mapping(uint256 tokenId => uint256) private _allTokensIndex; /** * @dev An `owner`'s token query was out of bounds for `index`. * * NOTE: The owner being `address(0)` indicates a global out of bounds index. */ error ERC721OutOfBoundsIndex(address owner, uint256 index); /** * @dev Batch mint is not allowed. */ error ERC721EnumerableForbiddenBatchMint(); /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256) { if (index >= balanceOf(owner)) { revert ERC721OutOfBoundsIndex(owner, index); } return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual returns (uint256) { if (index >= totalSupply()) { revert ERC721OutOfBoundsIndex(address(0), index); } return _allTokens[index]; } /** * @dev See {ERC721-_update}. */ function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) { address previousOwner = super._update(to, tokenId, auth); if (previousOwner == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (previousOwner != to) { _removeTokenFromOwnerEnumeration(previousOwner, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (previousOwner != to) { _addTokenToOwnerEnumeration(to, tokenId); } return previousOwner; } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = balanceOf(to) - 1; _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = balanceOf(from); uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } /** * See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch */ function _increaseBalance(address account, uint128 amount) internal virtual override { if (amount > 0) { revert ERC721EnumerableForbiddenBatchMint(); } super._increaseBalance(account, amount); } } // File: contract-864f1bcfe0.sol // Compatible with OpenZeppelin Contracts ^5.0.0 pragma solidity ^0.8.20; contract DUXERC721 is ERC721, ERC721Enumerable, ERC721URIStorage, ERC721Pausable, Ownable, ERC721Burnable { uint256 private _nextTokenId; constructor(address initialOwner, string memory name, string memory symbol) ERC721(name, symbol) Ownable(initialOwner) {} function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function safeMint(address to, string memory uri) public onlyOwner { uint256 tokenId = _nextTokenId++; _safeMint(to, tokenId); _setTokenURI(tokenId, uri); } // The following functions are overrides required by Solidity. function _update(address to, uint256 tokenId, address auth) internal override(ERC721, ERC721Enumerable, ERC721Pausable) returns (address) { return super._update(to, tokenId, auth); } function _increaseBalance(address account, uint128 value) internal override(ERC721, ERC721Enumerable) { super._increaseBalance(account, value); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable, ERC721URIStorage) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801562000010575f80fd5b5060405162003639380380620036398339818101604052810190620000369190620003b0565b828282815f90816200004991906200067e565b5080600190816200005b91906200067e565b5050505f600b5f6101000a81548160ff0219169083151502179055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000ea575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000e1919062000773565b60405180910390fd5b620000fb816200010560201b60201c565b505050506200078e565b5f600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200020682620001db565b9050919050565b6200021881620001fa565b811462000223575f80fd5b50565b5f8151905062000236816200020d565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6200028c8262000244565b810181811067ffffffffffffffff82111715620002ae57620002ad62000254565b5b80604052505050565b5f620002c2620001ca565b9050620002d0828262000281565b919050565b5f67ffffffffffffffff821115620002f257620002f162000254565b5b620002fd8262000244565b9050602081019050919050565b5f5b83811015620003295780820151818401526020810190506200030c565b5f8484015250505050565b5f6200034a6200034484620002d5565b620002b7565b90508281526020810184848401111562000369576200036862000240565b5b620003768482856200030a565b509392505050565b5f82601f8301126200039557620003946200023c565b5b8151620003a784826020860162000334565b91505092915050565b5f805f60608486031215620003ca57620003c9620001d3565b5b5f620003d98682870162000226565b935050602084015167ffffffffffffffff811115620003fd57620003fc620001d7565b5b6200040b868287016200037e565b925050604084015167ffffffffffffffff8111156200042f576200042e620001d7565b5b6200043d868287016200037e565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200049657607f821691505b602082108103620004ac57620004ab62000451565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004d3565b6200051c8683620004d3565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000566620005606200055a8462000534565b6200053d565b62000534565b9050919050565b5f819050919050565b620005818362000546565b6200059962000590826200056d565b848454620004df565b825550505050565b5f90565b620005af620005a1565b620005bc81848462000576565b505050565b5b81811015620005e357620005d75f82620005a5565b600181019050620005c2565b5050565b601f8211156200063257620005fc81620004b2565b6200060784620004c4565b8101602085101562000617578190505b6200062f6200062685620004c4565b830182620005c1565b50505b505050565b5f82821c905092915050565b5f620006545f198460080262000637565b1980831691505092915050565b5f6200066e838362000643565b9150826002028217905092915050565b620006898262000447565b67ffffffffffffffff811115620006a557620006a462000254565b5b620006b182546200047e565b620006be828285620005e7565b5f60209050601f831160018114620006f4575f8415620006df578287015190505b620006eb858262000661565b8655506200075a565b601f1984166200070486620004b2565b5f5b828110156200072d5784890151825560018201915060208501945060208101905062000706565b868310156200074d578489015162000749601f89168262000643565b8355505b6001600288020188555050505b505050505050565b6200076d81620001fa565b82525050565b5f602082019050620007885f83018462000762565b92915050565b612e9d806200079c5f395ff3fe608060405234801561000f575f80fd5b5060043610610156575f3560e01c80636352211e116100c1578063a22cb4651161007a578063a22cb4651461039e578063b88d4fde146103ba578063c87b56dd146103d6578063d204c45e14610406578063e985e9c514610422578063f2fde38b1461045257610156565b80636352211e146102ee57806370a082311461031e578063715018a61461034e5780638456cb59146103585780638da5cb5b1461036257806395d89b411461038057610156565b80632f745c59116101135780632f745c591461022e5780633f4ba83a1461025e57806342842e0e1461026857806342966c68146102845780634f6ccce7146102a05780635c975abb146102d057610156565b806301ffc9a71461015a57806306fdde031461018a578063081812fc146101a8578063095ea7b3146101d857806318160ddd146101f457806323b872dd14610212575b5f80fd5b610174600480360381019061016f91906122c9565b61046e565b604051610181919061230e565b60405180910390f35b61019261047f565b60405161019f91906123b1565b60405180910390f35b6101c260048036038101906101bd9190612404565b61050e565b6040516101cf919061246e565b60405180910390f35b6101f260048036038101906101ed91906124b1565b610529565b005b6101fc61053f565b60405161020991906124fe565b60405180910390f35b61022c60048036038101906102279190612517565b61054b565b005b610248600480360381019061024391906124b1565b61064a565b60405161025591906124fe565b60405180910390f35b6102666106ee565b005b610282600480360381019061027d9190612517565b610700565b005b61029e60048036038101906102999190612404565b61071f565b005b6102ba60048036038101906102b59190612404565b610735565b6040516102c791906124fe565b60405180910390f35b6102d86107a7565b6040516102e5919061230e565b60405180910390f35b61030860048036038101906103039190612404565b6107bc565b604051610315919061246e565b60405180910390f35b61033860048036038101906103339190612567565b6107cd565b60405161034591906124fe565b60405180910390f35b610356610883565b005b610360610896565b005b61036a6108a8565b604051610377919061246e565b60405180910390f35b6103886108d1565b60405161039591906123b1565b60405180910390f35b6103b860048036038101906103b391906125bc565b610961565b005b6103d460048036038101906103cf9190612726565b610977565b005b6103f060048036038101906103eb9190612404565b610994565b6040516103fd91906123b1565b60405180910390f35b610420600480360381019061041b9190612844565b6109a6565b005b61043c6004803603810190610437919061289e565b6109e0565b604051610449919061230e565b60405180910390f35b61046c60048036038101906104679190612567565b610a6e565b005b5f61047882610af2565b9050919050565b60605f805461048d90612909565b80601f01602080910402602001604051908101604052809291908181526020018280546104b990612909565b80156105045780601f106104db57610100808354040283529160200191610504565b820191905f5260205f20905b8154815290600101906020018083116104e757829003601f168201915b5050505050905090565b5f61051882610b52565b5061052282610bd8565b9050919050565b61053b8282610536610c11565b610c18565b5050565b5f600880549050905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036105bb575f6040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016105b2919061246e565b60405180910390fd5b5f6105ce83836105c9610c11565b610c2a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610644578382826040517f64283d7b00000000000000000000000000000000000000000000000000000000815260040161063b93929190612939565b60405180910390fd5b50505050565b5f610654836107cd565b82106106995782826040517fa57d13dc00000000000000000000000000000000000000000000000000000000815260040161069092919061296e565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b6106f6610c3f565b6106fe610cc6565b565b61071a83838360405180602001604052805f815250610977565b505050565b6107315f8261072c610c11565b610c2a565b5050565b5f61073e61053f565b8210610783575f826040517fa57d13dc00000000000000000000000000000000000000000000000000000000815260040161077a92919061296e565b60405180910390fd5b6008828154811061079757610796612995565b5b905f5260205f2001549050919050565b5f600b5f9054906101000a900460ff16905090565b5f6107c682610b52565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361083e575f6040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610835919061246e565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61088b610c3f565b6108945f610d27565b565b61089e610c3f565b6108a6610dec565b565b5f600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546108e090612909565b80601f016020809104026020016040519081016040528092919081815260200182805461090c90612909565b80156109575780601f1061092e57610100808354040283529160200191610957565b820191905f5260205f20905b81548152906001019060200180831161093a57829003601f168201915b5050505050905090565b61097361096c610c11565b8383610e4e565b5050565b61098284848461054b565b61098e84848484610fb7565b50505050565b606061099f82611169565b9050919050565b6109ae610c3f565b5f600c5f8154809291906109c1906129ef565b9190505590506109d18382611274565b6109db8183611291565b505050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b610a76610c3f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae6575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610add919061246e565b60405180910390fd5b610aef81610d27565b50565b5f634906490660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4b5750610b4a826112eb565b5b9050919050565b5f80610b5d83611364565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bcf57826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401610bc691906124fe565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b610c25838383600161139d565b505050565b5f610c3684848461155c565b90509392505050565b610c47610c11565b73ffffffffffffffffffffffffffffffffffffffff16610c656108a8565b73ffffffffffffffffffffffffffffffffffffffff1614610cc457610c88610c11565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610cbb919061246e565b60405180910390fd5b565b610cce611579565b5f600b5f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610d10610c11565b604051610d1d919061246e565b60405180910390a1565b5f600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610df46115b9565b6001600b5f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610e37610c11565b604051610e44919061246e565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebe57816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401610eb5919061246e565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610faa919061230e565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1115611163578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02610ffa610c11565b8685856040518563ffffffff1660e01b815260040161101c9493929190612a88565b6020604051808303815f875af192505050801561105757506040513d601f19601f820116820180604052508101906110549190612ae6565b60015b6110d8573d805f8114611085576040519150601f19603f3d011682016040523d82523d5f602084013e61108a565b606091505b505f8151036110d057836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016110c7919061246e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461116157836040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401611158919061246e565b60405180910390fd5b505b50505050565b606061117482610b52565b505f600a5f8481526020019081526020015f20805461119290612909565b80601f01602080910402602001604051908101604052809291908181526020018280546111be90612909565b80156112095780601f106111e057610100808354040283529160200191611209565b820191905f5260205f20905b8154815290600101906020018083116111ec57829003601f168201915b505050505090505f6112196115fa565b90505f81510361122d57819250505061126f565b5f82511115611261578082604051602001611249929190612b4b565b6040516020818303038152906040529250505061126f565b61126a84611610565b925050505b919050565b61128d828260405180602001604052805f815250611676565b5050565b80600a5f8481526020019081526020015f2090816112af9190612d0b565b507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7826040516112df91906124fe565b60405180910390a15050565b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061135d575061135c82611691565b5b9050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b80806113d557505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611507575f6113e484610b52565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561144e57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015611461575061145f81846109e0565b155b156114a357826040517fa9fbf51f00000000000000000000000000000000000000000000000000000000815260040161149a919061246e565b60405180910390fd5b811561150557838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b5f6115656115b9565b611570848484611772565b90509392505050565b6115816107a7565b6115b7576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6115c16107a7565b156115f8576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b606060405180602001604052805f815250905090565b606061161b82610b52565b505f6116256115fa565b90505f8151116116435760405180602001604052805f81525061166e565b8061164d8461188c565b60405160200161165e929190612b4b565b6040516020818303038152906040525b915050919050565b6116808383611956565b61168c5f848484610fb7565b505050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061175b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061176b575061176a82611a49565b5b9050919050565b5f8061177f858585611ab2565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117c2576117bd84611cbd565b611801565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611800576117ff8185611d01565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118425761183d84611e4b565b611881565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146118805761187f8585611f0b565b5b5b809150509392505050565b60605f600161189a84611f8f565b0190505f8167ffffffffffffffff8111156118b8576118b7612602565b5b6040519080825280601f01601f1916602001820160405280156118ea5781602001600182028036833780820191505090505b5090505f82602001820190505b60011561194b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816119405761193f612dda565b5b0494505f85036118f7575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c6575f6040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016119bd919061246e565b60405180910390fd5b5f6119d283835f610c2a565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a44575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401611a3b919061246e565b60405180910390fd5b505050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f80611abd84611364565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611afe57611afd8184866120e0565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b8957611b3d5f855f8061139d565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611c0857600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f611d0b836107cd565b90505f60075f8481526020019081526020015f20549050818114611de2575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f6001600880549050611e5e9190612e07565b90505f60095f8481526020019081526020015f205490505f60088381548110611e8a57611e89612995565b5b905f5260205f20015490508060088381548110611eaa57611ea9612995565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f90556008805480611ef257611ef1612e3a565b5b600190038181905f5260205f20015f9055905550505050565b5f6001611f17846107cd565b611f219190612e07565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611feb577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611fe157611fe0612dda565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612028576d04ee2d6d415b85acef8100000000838161201e5761201d612dda565b5b0492506020810190505b662386f26fc10000831061205757662386f26fc10000838161204d5761204c612dda565b5b0492506010810190505b6305f5e1008310612080576305f5e100838161207657612075612dda565b5b0492506008810190505b61271083106120a557612710838161209b5761209a612dda565b5b0492506004810190505b606483106120c857606483816120be576120bd612dda565b5b0492506002810190505b600a83106120d7576001810190505b80915050919050565b6120eb8383836121a3565b61219e575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361215f57806040517f7e27328900000000000000000000000000000000000000000000000000000000815260040161215691906124fe565b60405180910390fd5b81816040517f177e802f00000000000000000000000000000000000000000000000000000000815260040161219592919061296e565b60405180910390fd5b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561225a57508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061221b575061221a84846109e0565b5b8061225957508273ffffffffffffffffffffffffffffffffffffffff1661224183610bd8565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122a881612274565b81146122b2575f80fd5b50565b5f813590506122c38161229f565b92915050565b5f602082840312156122de576122dd61226c565b5b5f6122eb848285016122b5565b91505092915050565b5f8115159050919050565b612308816122f4565b82525050565b5f6020820190506123215f8301846122ff565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561235e578082015181840152602081019050612343565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61238382612327565b61238d8185612331565b935061239d818560208601612341565b6123a681612369565b840191505092915050565b5f6020820190508181035f8301526123c98184612379565b905092915050565b5f819050919050565b6123e3816123d1565b81146123ed575f80fd5b50565b5f813590506123fe816123da565b92915050565b5f602082840312156124195761241861226c565b5b5f612426848285016123f0565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6124588261242f565b9050919050565b6124688161244e565b82525050565b5f6020820190506124815f83018461245f565b92915050565b6124908161244e565b811461249a575f80fd5b50565b5f813590506124ab81612487565b92915050565b5f80604083850312156124c7576124c661226c565b5b5f6124d48582860161249d565b92505060206124e5858286016123f0565b9150509250929050565b6124f8816123d1565b82525050565b5f6020820190506125115f8301846124ef565b92915050565b5f805f6060848603121561252e5761252d61226c565b5b5f61253b8682870161249d565b935050602061254c8682870161249d565b925050604061255d868287016123f0565b9150509250925092565b5f6020828403121561257c5761257b61226c565b5b5f6125898482850161249d565b91505092915050565b61259b816122f4565b81146125a5575f80fd5b50565b5f813590506125b681612592565b92915050565b5f80604083850312156125d2576125d161226c565b5b5f6125df8582860161249d565b92505060206125f0858286016125a8565b9150509250929050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61263882612369565b810181811067ffffffffffffffff8211171561265757612656612602565b5b80604052505050565b5f612669612263565b9050612675828261262f565b919050565b5f67ffffffffffffffff82111561269457612693612602565b5b61269d82612369565b9050602081019050919050565b828183375f83830152505050565b5f6126ca6126c58461267a565b612660565b9050828152602081018484840111156126e6576126e56125fe565b5b6126f18482856126aa565b509392505050565b5f82601f83011261270d5761270c6125fa565b5b813561271d8482602086016126b8565b91505092915050565b5f805f806080858703121561273e5761273d61226c565b5b5f61274b8782880161249d565b945050602061275c8782880161249d565b935050604061276d878288016123f0565b925050606085013567ffffffffffffffff81111561278e5761278d612270565b5b61279a878288016126f9565b91505092959194509250565b5f67ffffffffffffffff8211156127c0576127bf612602565b5b6127c982612369565b9050602081019050919050565b5f6127e86127e3846127a6565b612660565b905082815260208101848484011115612804576128036125fe565b5b61280f8482856126aa565b509392505050565b5f82601f83011261282b5761282a6125fa565b5b813561283b8482602086016127d6565b91505092915050565b5f806040838503121561285a5761285961226c565b5b5f6128678582860161249d565b925050602083013567ffffffffffffffff81111561288857612887612270565b5b61289485828601612817565b9150509250929050565b5f80604083850312156128b4576128b361226c565b5b5f6128c18582860161249d565b92505060206128d28582860161249d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061292057607f821691505b602082108103612933576129326128dc565b5b50919050565b5f60608201905061294c5f83018661245f565b61295960208301856124ef565b612966604083018461245f565b949350505050565b5f6040820190506129815f83018561245f565b61298e60208301846124ef565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6129f9826123d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612a2b57612a2a6129c2565b5b600182019050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612a5a82612a36565b612a648185612a40565b9350612a74818560208601612341565b612a7d81612369565b840191505092915050565b5f608082019050612a9b5f83018761245f565b612aa8602083018661245f565b612ab560408301856124ef565b8181036060830152612ac78184612a50565b905095945050505050565b5f81519050612ae08161229f565b92915050565b5f60208284031215612afb57612afa61226c565b5b5f612b0884828501612ad2565b91505092915050565b5f81905092915050565b5f612b2582612327565b612b2f8185612b11565b9350612b3f818560208601612341565b80840191505092915050565b5f612b568285612b1b565b9150612b628284612b1b565b91508190509392505050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612bca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612b8f565b612bd48683612b8f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f612c0f612c0a612c05846123d1565b612bec565b6123d1565b9050919050565b5f819050919050565b612c2883612bf5565b612c3c612c3482612c16565b848454612b9b565b825550505050565b5f90565b612c50612c44565b612c5b818484612c1f565b505050565b5b81811015612c7e57612c735f82612c48565b600181019050612c61565b5050565b601f821115612cc357612c9481612b6e565b612c9d84612b80565b81016020851015612cac578190505b612cc0612cb885612b80565b830182612c60565b50505b505050565b5f82821c905092915050565b5f612ce35f1984600802612cc8565b1980831691505092915050565b5f612cfb8383612cd4565b9150826002028217905092915050565b612d1482612327565b67ffffffffffffffff811115612d2d57612d2c612602565b5b612d378254612909565b612d42828285612c82565b5f60209050601f831160018114612d73575f8415612d61578287015190505b612d6b8582612cf0565b865550612dd2565b601f198416612d8186612b6e565b5f5b82811015612da857848901518255600182019150602085019450602081019050612d83565b86831015612dc55784890151612dc1601f891682612cd4565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612e11826123d1565b9150612e1c836123d1565b9250828203905081811115612e3457612e336129c2565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea26469706673582212202d97f1ead138954973bdd7cf57560da2bbabcae8871d45e5a98b765c8dcfd53864736f6c63430008160033000000000000000000000000124914d7fcb3930b31cb36b29fe217b9125e396d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000144520736520666f737365206f2044696469636f3f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000044444434f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610156575f3560e01c80636352211e116100c1578063a22cb4651161007a578063a22cb4651461039e578063b88d4fde146103ba578063c87b56dd146103d6578063d204c45e14610406578063e985e9c514610422578063f2fde38b1461045257610156565b80636352211e146102ee57806370a082311461031e578063715018a61461034e5780638456cb59146103585780638da5cb5b1461036257806395d89b411461038057610156565b80632f745c59116101135780632f745c591461022e5780633f4ba83a1461025e57806342842e0e1461026857806342966c68146102845780634f6ccce7146102a05780635c975abb146102d057610156565b806301ffc9a71461015a57806306fdde031461018a578063081812fc146101a8578063095ea7b3146101d857806318160ddd146101f457806323b872dd14610212575b5f80fd5b610174600480360381019061016f91906122c9565b61046e565b604051610181919061230e565b60405180910390f35b61019261047f565b60405161019f91906123b1565b60405180910390f35b6101c260048036038101906101bd9190612404565b61050e565b6040516101cf919061246e565b60405180910390f35b6101f260048036038101906101ed91906124b1565b610529565b005b6101fc61053f565b60405161020991906124fe565b60405180910390f35b61022c60048036038101906102279190612517565b61054b565b005b610248600480360381019061024391906124b1565b61064a565b60405161025591906124fe565b60405180910390f35b6102666106ee565b005b610282600480360381019061027d9190612517565b610700565b005b61029e60048036038101906102999190612404565b61071f565b005b6102ba60048036038101906102b59190612404565b610735565b6040516102c791906124fe565b60405180910390f35b6102d86107a7565b6040516102e5919061230e565b60405180910390f35b61030860048036038101906103039190612404565b6107bc565b604051610315919061246e565b60405180910390f35b61033860048036038101906103339190612567565b6107cd565b60405161034591906124fe565b60405180910390f35b610356610883565b005b610360610896565b005b61036a6108a8565b604051610377919061246e565b60405180910390f35b6103886108d1565b60405161039591906123b1565b60405180910390f35b6103b860048036038101906103b391906125bc565b610961565b005b6103d460048036038101906103cf9190612726565b610977565b005b6103f060048036038101906103eb9190612404565b610994565b6040516103fd91906123b1565b60405180910390f35b610420600480360381019061041b9190612844565b6109a6565b005b61043c6004803603810190610437919061289e565b6109e0565b604051610449919061230e565b60405180910390f35b61046c60048036038101906104679190612567565b610a6e565b005b5f61047882610af2565b9050919050565b60605f805461048d90612909565b80601f01602080910402602001604051908101604052809291908181526020018280546104b990612909565b80156105045780601f106104db57610100808354040283529160200191610504565b820191905f5260205f20905b8154815290600101906020018083116104e757829003601f168201915b5050505050905090565b5f61051882610b52565b5061052282610bd8565b9050919050565b61053b8282610536610c11565b610c18565b5050565b5f600880549050905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036105bb575f6040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016105b2919061246e565b60405180910390fd5b5f6105ce83836105c9610c11565b610c2a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610644578382826040517f64283d7b00000000000000000000000000000000000000000000000000000000815260040161063b93929190612939565b60405180910390fd5b50505050565b5f610654836107cd565b82106106995782826040517fa57d13dc00000000000000000000000000000000000000000000000000000000815260040161069092919061296e565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b6106f6610c3f565b6106fe610cc6565b565b61071a83838360405180602001604052805f815250610977565b505050565b6107315f8261072c610c11565b610c2a565b5050565b5f61073e61053f565b8210610783575f826040517fa57d13dc00000000000000000000000000000000000000000000000000000000815260040161077a92919061296e565b60405180910390fd5b6008828154811061079757610796612995565b5b905f5260205f2001549050919050565b5f600b5f9054906101000a900460ff16905090565b5f6107c682610b52565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361083e575f6040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610835919061246e565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61088b610c3f565b6108945f610d27565b565b61089e610c3f565b6108a6610dec565b565b5f600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546108e090612909565b80601f016020809104026020016040519081016040528092919081815260200182805461090c90612909565b80156109575780601f1061092e57610100808354040283529160200191610957565b820191905f5260205f20905b81548152906001019060200180831161093a57829003601f168201915b5050505050905090565b61097361096c610c11565b8383610e4e565b5050565b61098284848461054b565b61098e84848484610fb7565b50505050565b606061099f82611169565b9050919050565b6109ae610c3f565b5f600c5f8154809291906109c1906129ef565b9190505590506109d18382611274565b6109db8183611291565b505050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b610a76610c3f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae6575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610add919061246e565b60405180910390fd5b610aef81610d27565b50565b5f634906490660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4b5750610b4a826112eb565b5b9050919050565b5f80610b5d83611364565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bcf57826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401610bc691906124fe565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b610c25838383600161139d565b505050565b5f610c3684848461155c565b90509392505050565b610c47610c11565b73ffffffffffffffffffffffffffffffffffffffff16610c656108a8565b73ffffffffffffffffffffffffffffffffffffffff1614610cc457610c88610c11565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610cbb919061246e565b60405180910390fd5b565b610cce611579565b5f600b5f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610d10610c11565b604051610d1d919061246e565b60405180910390a1565b5f600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610df46115b9565b6001600b5f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610e37610c11565b604051610e44919061246e565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebe57816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401610eb5919061246e565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610faa919061230e565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1115611163578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02610ffa610c11565b8685856040518563ffffffff1660e01b815260040161101c9493929190612a88565b6020604051808303815f875af192505050801561105757506040513d601f19601f820116820180604052508101906110549190612ae6565b60015b6110d8573d805f8114611085576040519150601f19603f3d011682016040523d82523d5f602084013e61108a565b606091505b505f8151036110d057836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016110c7919061246e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461116157836040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401611158919061246e565b60405180910390fd5b505b50505050565b606061117482610b52565b505f600a5f8481526020019081526020015f20805461119290612909565b80601f01602080910402602001604051908101604052809291908181526020018280546111be90612909565b80156112095780601f106111e057610100808354040283529160200191611209565b820191905f5260205f20905b8154815290600101906020018083116111ec57829003601f168201915b505050505090505f6112196115fa565b90505f81510361122d57819250505061126f565b5f82511115611261578082604051602001611249929190612b4b565b6040516020818303038152906040529250505061126f565b61126a84611610565b925050505b919050565b61128d828260405180602001604052805f815250611676565b5050565b80600a5f8481526020019081526020015f2090816112af9190612d0b565b507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7826040516112df91906124fe565b60405180910390a15050565b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061135d575061135c82611691565b5b9050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b80806113d557505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611507575f6113e484610b52565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561144e57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015611461575061145f81846109e0565b155b156114a357826040517fa9fbf51f00000000000000000000000000000000000000000000000000000000815260040161149a919061246e565b60405180910390fd5b811561150557838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b5f6115656115b9565b611570848484611772565b90509392505050565b6115816107a7565b6115b7576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6115c16107a7565b156115f8576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b606060405180602001604052805f815250905090565b606061161b82610b52565b505f6116256115fa565b90505f8151116116435760405180602001604052805f81525061166e565b8061164d8461188c565b60405160200161165e929190612b4b565b6040516020818303038152906040525b915050919050565b6116808383611956565b61168c5f848484610fb7565b505050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061175b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061176b575061176a82611a49565b5b9050919050565b5f8061177f858585611ab2565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117c2576117bd84611cbd565b611801565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611800576117ff8185611d01565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118425761183d84611e4b565b611881565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146118805761187f8585611f0b565b5b5b809150509392505050565b60605f600161189a84611f8f565b0190505f8167ffffffffffffffff8111156118b8576118b7612602565b5b6040519080825280601f01601f1916602001820160405280156118ea5781602001600182028036833780820191505090505b5090505f82602001820190505b60011561194b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816119405761193f612dda565b5b0494505f85036118f7575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c6575f6040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016119bd919061246e565b60405180910390fd5b5f6119d283835f610c2a565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a44575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401611a3b919061246e565b60405180910390fd5b505050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f80611abd84611364565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611afe57611afd8184866120e0565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b8957611b3d5f855f8061139d565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611c0857600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f611d0b836107cd565b90505f60075f8481526020019081526020015f20549050818114611de2575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f6001600880549050611e5e9190612e07565b90505f60095f8481526020019081526020015f205490505f60088381548110611e8a57611e89612995565b5b905f5260205f20015490508060088381548110611eaa57611ea9612995565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f90556008805480611ef257611ef1612e3a565b5b600190038181905f5260205f20015f9055905550505050565b5f6001611f17846107cd565b611f219190612e07565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611feb577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611fe157611fe0612dda565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612028576d04ee2d6d415b85acef8100000000838161201e5761201d612dda565b5b0492506020810190505b662386f26fc10000831061205757662386f26fc10000838161204d5761204c612dda565b5b0492506010810190505b6305f5e1008310612080576305f5e100838161207657612075612dda565b5b0492506008810190505b61271083106120a557612710838161209b5761209a612dda565b5b0492506004810190505b606483106120c857606483816120be576120bd612dda565b5b0492506002810190505b600a83106120d7576001810190505b80915050919050565b6120eb8383836121a3565b61219e575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361215f57806040517f7e27328900000000000000000000000000000000000000000000000000000000815260040161215691906124fe565b60405180910390fd5b81816040517f177e802f00000000000000000000000000000000000000000000000000000000815260040161219592919061296e565b60405180910390fd5b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561225a57508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061221b575061221a84846109e0565b5b8061225957508273ffffffffffffffffffffffffffffffffffffffff1661224183610bd8565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122a881612274565b81146122b2575f80fd5b50565b5f813590506122c38161229f565b92915050565b5f602082840312156122de576122dd61226c565b5b5f6122eb848285016122b5565b91505092915050565b5f8115159050919050565b612308816122f4565b82525050565b5f6020820190506123215f8301846122ff565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561235e578082015181840152602081019050612343565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61238382612327565b61238d8185612331565b935061239d818560208601612341565b6123a681612369565b840191505092915050565b5f6020820190508181035f8301526123c98184612379565b905092915050565b5f819050919050565b6123e3816123d1565b81146123ed575f80fd5b50565b5f813590506123fe816123da565b92915050565b5f602082840312156124195761241861226c565b5b5f612426848285016123f0565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6124588261242f565b9050919050565b6124688161244e565b82525050565b5f6020820190506124815f83018461245f565b92915050565b6124908161244e565b811461249a575f80fd5b50565b5f813590506124ab81612487565b92915050565b5f80604083850312156124c7576124c661226c565b5b5f6124d48582860161249d565b92505060206124e5858286016123f0565b9150509250929050565b6124f8816123d1565b82525050565b5f6020820190506125115f8301846124ef565b92915050565b5f805f6060848603121561252e5761252d61226c565b5b5f61253b8682870161249d565b935050602061254c8682870161249d565b925050604061255d868287016123f0565b9150509250925092565b5f6020828403121561257c5761257b61226c565b5b5f6125898482850161249d565b91505092915050565b61259b816122f4565b81146125a5575f80fd5b50565b5f813590506125b681612592565b92915050565b5f80604083850312156125d2576125d161226c565b5b5f6125df8582860161249d565b92505060206125f0858286016125a8565b9150509250929050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61263882612369565b810181811067ffffffffffffffff8211171561265757612656612602565b5b80604052505050565b5f612669612263565b9050612675828261262f565b919050565b5f67ffffffffffffffff82111561269457612693612602565b5b61269d82612369565b9050602081019050919050565b828183375f83830152505050565b5f6126ca6126c58461267a565b612660565b9050828152602081018484840111156126e6576126e56125fe565b5b6126f18482856126aa565b509392505050565b5f82601f83011261270d5761270c6125fa565b5b813561271d8482602086016126b8565b91505092915050565b5f805f806080858703121561273e5761273d61226c565b5b5f61274b8782880161249d565b945050602061275c8782880161249d565b935050604061276d878288016123f0565b925050606085013567ffffffffffffffff81111561278e5761278d612270565b5b61279a878288016126f9565b91505092959194509250565b5f67ffffffffffffffff8211156127c0576127bf612602565b5b6127c982612369565b9050602081019050919050565b5f6127e86127e3846127a6565b612660565b905082815260208101848484011115612804576128036125fe565b5b61280f8482856126aa565b509392505050565b5f82601f83011261282b5761282a6125fa565b5b813561283b8482602086016127d6565b91505092915050565b5f806040838503121561285a5761285961226c565b5b5f6128678582860161249d565b925050602083013567ffffffffffffffff81111561288857612887612270565b5b61289485828601612817565b9150509250929050565b5f80604083850312156128b4576128b361226c565b5b5f6128c18582860161249d565b92505060206128d28582860161249d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061292057607f821691505b602082108103612933576129326128dc565b5b50919050565b5f60608201905061294c5f83018661245f565b61295960208301856124ef565b612966604083018461245f565b949350505050565b5f6040820190506129815f83018561245f565b61298e60208301846124ef565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6129f9826123d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612a2b57612a2a6129c2565b5b600182019050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612a5a82612a36565b612a648185612a40565b9350612a74818560208601612341565b612a7d81612369565b840191505092915050565b5f608082019050612a9b5f83018761245f565b612aa8602083018661245f565b612ab560408301856124ef565b8181036060830152612ac78184612a50565b905095945050505050565b5f81519050612ae08161229f565b92915050565b5f60208284031215612afb57612afa61226c565b5b5f612b0884828501612ad2565b91505092915050565b5f81905092915050565b5f612b2582612327565b612b2f8185612b11565b9350612b3f818560208601612341565b80840191505092915050565b5f612b568285612b1b565b9150612b628284612b1b565b91508190509392505050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612bca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612b8f565b612bd48683612b8f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f612c0f612c0a612c05846123d1565b612bec565b6123d1565b9050919050565b5f819050919050565b612c2883612bf5565b612c3c612c3482612c16565b848454612b9b565b825550505050565b5f90565b612c50612c44565b612c5b818484612c1f565b505050565b5b81811015612c7e57612c735f82612c48565b600181019050612c61565b5050565b601f821115612cc357612c9481612b6e565b612c9d84612b80565b81016020851015612cac578190505b612cc0612cb885612b80565b830182612c60565b50505b505050565b5f82821c905092915050565b5f612ce35f1984600802612cc8565b1980831691505092915050565b5f612cfb8383612cd4565b9150826002028217905092915050565b612d1482612327565b67ffffffffffffffff811115612d2d57612d2c612602565b5b612d378254612909565b612d42828285612c82565b5f60209050601f831160018114612d73575f8415612d61578287015190505b612d6b8582612cf0565b865550612dd2565b601f198416612d8186612b6e565b5f5b82811015612da857848901518255600182019150602085019450602081019050612d83565b86831015612dc55784890151612dc1601f891682612cd4565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612e11826123d1565b9150612e1c836123d1565b9250828203905081811115612e3457612e336129c2565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea26469706673582212202d97f1ead138954973bdd7cf57560da2bbabcae8871d45e5a98b765c8dcfd53864736f6c63430008160033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000124914d7fcb3930b31cb36b29fe217b9125e396d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000144520736520666f737365206f2044696469636f3f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000044444434f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initialOwner (address): 0x124914D7FCB3930b31CB36b29Fe217B9125E396D
Arg [1] : name (string): E se fosse o Didico?
Arg [2] : symbol (string): DDCO
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000124914d7fcb3930b31cb36b29fe217b9125e396d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 4520736520666f737365206f2044696469636f3f000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4444434f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
74521:1572:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75860:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47083:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48255:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48074:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69050:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48924:588;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68714:260;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74892:65;;;:::i;:::-;;49583:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63378:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69231:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32899:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46896:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46621:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30157:103;;;:::i;:::-;;74823:61;;;:::i;:::-;;29482:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47243:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48485:146;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49788:211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75656:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74965:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48702:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30415:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75860:230;76017:4;76046:36;76070:11;76046:23;:36::i;:::-;76039:43;;75860:230;;;:::o;47083:91::-;47128:13;47161:5;47154:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47083:91;:::o;48255:158::-;48322:7;48342:22;48356:7;48342:13;:22::i;:::-;;48384:21;48397:7;48384:12;:21::i;:::-;48377:28;;48255:158;;;:::o;48074:115::-;48146:35;48155:2;48159:7;48168:12;:10;:12::i;:::-;48146:8;:35::i;:::-;48074:115;;:::o;69050:104::-;69102:7;69129:10;:17;;;;69122:24;;69050:104;:::o;48924:588::-;49033:1;49019:16;;:2;:16;;;49015:89;;49089:1;49059:33;;;;;;;;;;;:::i;:::-;;;;;;;;49015:89;49325:21;49349:34;49357:2;49361:7;49370:12;:10;:12::i;:::-;49349:7;:34::i;:::-;49325:58;;49415:4;49398:21;;:13;:21;;;49394:111;;49464:4;49470:7;49479:13;49443:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;49394:111;49004:508;48924:588;;;:::o;68714:260::-;68802:7;68835:16;68845:5;68835:9;:16::i;:::-;68826:5;:25;68822:101;;68898:5;68905;68875:36;;;;;;;;;;;;:::i;:::-;;;;;;;;68822:101;68940:12;:19;68953:5;68940:19;;;;;;;;;;;;;;;:26;68960:5;68940:26;;;;;;;;;;;;68933:33;;68714:260;;;;:::o;74892:65::-;29368:13;:11;:13::i;:::-;74939:10:::1;:8;:10::i;:::-;74892:65::o:0;49583:134::-;49670:39;49687:4;49693:2;49697:7;49670:39;;;;;;;;;;;;:16;:39::i;:::-;49583:134;;;:::o;63378:318::-;63646:42;63662:1;63666:7;63675:12;:10;:12::i;:::-;63646:7;:42::i;:::-;;63378:318;:::o;69231:231::-;69297:7;69330:13;:11;:13::i;:::-;69321:5;:22;69317:103;;69398:1;69402:5;69367:41;;;;;;;;;;;;:::i;:::-;;;;;;;;69317:103;69437:10;69448:5;69437:17;;;;;;;;:::i;:::-;;;;;;;;;;69430:24;;69231:231;;;:::o;32899:86::-;32946:4;32970:7;;;;;;;;;;;32963:14;;32899:86;:::o;46896:120::-;46959:7;46986:22;47000:7;46986:13;:22::i;:::-;46979:29;;46896:120;;;:::o;46621:213::-;46684:7;46725:1;46708:19;;:5;:19;;;46704:89;;46778:1;46751:30;;;;;;;;;;;:::i;:::-;;;;;;;;46704:89;46810:9;:16;46820:5;46810:16;;;;;;;;;;;;;;;;46803:23;;46621:213;;;:::o;30157:103::-;29368:13;:11;:13::i;:::-;30222:30:::1;30249:1;30222:18;:30::i;:::-;30157:103::o:0;74823:61::-;29368:13;:11;:13::i;:::-;74868:8:::1;:6;:8::i;:::-;74823:61::o:0;29482:87::-;29528:7;29555:6;;;;;;;;;;;29548:13;;29482:87;:::o;47243:95::-;47290:13;47323:7;47316:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47243:95;:::o;48485:146::-;48571:52;48590:12;:10;:12::i;:::-;48604:8;48614;48571:18;:52::i;:::-;48485:146;;:::o;49788:211::-;49902:31;49915:4;49921:2;49925:7;49902:12;:31::i;:::-;49944:47;49967:4;49973:2;49977:7;49986:4;49944:22;:47::i;:::-;49788:211;;;;:::o;75656:196::-;75783:13;75821:23;75836:7;75821:14;:23::i;:::-;75814:30;;75656:196;;;:::o;74965:187::-;29368:13;:11;:13::i;:::-;75042:15:::1;75060:12;;:14;;;;;;;;;:::i;:::-;;;;;75042:32;;75085:22;75095:2;75099:7;75085:9;:22::i;:::-;75118:26;75131:7;75140:3;75118:12;:26::i;:::-;75031:121;74965:187:::0;;:::o;48702:155::-;48790:4;48814:18;:25;48833:5;48814:25;;;;;;;;;;;;;;;:35;48840:8;48814:35;;;;;;;;;;;;;;;;;;;;;;;;;48807:42;;48702:155;;;;:::o;30415:220::-;29368:13;:11;:13::i;:::-;30520:1:::1;30500:22;;:8;:22;;::::0;30496:93:::1;;30574:1;30546:31;;;;;;;;;;;:::i;:::-;;;;;;;;30496:93;30599:28;30618:8;30599:18;:28::i;:::-;30415:220:::0;:::o;65846:209::-;65948:4;65661:10;65654:18;;65972:35;;;:11;:35;;;;:75;;;;66011:36;66035:11;66011:23;:36::i;:::-;65972:75;65965:82;;65846:209;;;:::o;61230:247::-;61293:7;61313:13;61329:17;61338:7;61329:8;:17::i;:::-;61313:33;;61378:1;61361:19;;:5;:19;;;61357:90;;61427:7;61404:31;;;;;;;;;;;:::i;:::-;;;;;;;;61357:90;61464:5;61457:12;;;61230:247;;;:::o;50761:129::-;50831:7;50858:15;:24;50874:7;50858:24;;;;;;;;;;;;;;;;;;;;;50851:31;;50761:129;;;:::o;27485:98::-;27538:7;27565:10;27558:17;;27485:98;:::o;59462:122::-;59543:33;59552:2;59556:7;59565:4;59571;59543:8;:33::i;:::-;59462:122;;;:::o;75230:228::-;75386:7;75418:32;75432:2;75436:7;75445:4;75418:13;:32::i;:::-;75411:39;;75230:228;;;;;:::o;29647:166::-;29718:12;:10;:12::i;:::-;29707:23;;:7;:5;:7::i;:::-;:23;;;29703:103;;29781:12;:10;:12::i;:::-;29754:40;;;;;;;;;;;:::i;:::-;;;;;;;;29703:103;29647:166::o;33800:120::-;32763:16;:14;:16::i;:::-;33869:5:::1;33859:7;;:15;;;;;;;;;;;;;;;;;;33890:22;33899:12;:10;:12::i;:::-;33890:22;;;;;;:::i;:::-;;;;;;;;33800:120::o:0;30795:191::-;30869:16;30888:6;;;;;;;;;;;30869:25;;30914:8;30905:6;;:17;;;;;;;;;;;;;;;;;;30969:8;30938:40;;30959:8;30938:40;;;;;;;;;;;;30858:128;30795:191;:::o;33541:118::-;32504:19;:17;:19::i;:::-;33611:4:::1;33601:7;;:14;;;;;;;;;;;;;;;;;;33631:20;33638:12;:10;:12::i;:::-;33631:20;;;;;;:::i;:::-;;;;;;;;33541:118::o:0;60669:318::-;60797:1;60777:22;;:8;:22;;;60773:93;;60845:8;60823:31;;;;;;;;;;;:::i;:::-;;;;;;;;60773:93;60914:8;60876:18;:25;60895:5;60876:25;;;;;;;;;;;;;;;:35;60902:8;60876:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;60960:8;60938:41;;60953:5;60938:41;;;60970:8;60938:41;;;;;;:::i;:::-;;;;;;;;60669:318;;;:::o;62027:799::-;62161:1;62144:2;:14;;;:18;62140:679;;;62199:2;62183:36;;;62220:12;:10;:12::i;:::-;62234:4;62240:7;62249:4;62183:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;62179:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62514:1;62497:6;:13;:18;62493:300;;62569:2;62547:25;;;;;;;;;;;:::i;:::-;;;;;;;;62493:300;62743:6;62737:13;62728:6;62724:2;62720:15;62713:38;62179:629;62312:41;;;62302:51;;;:6;:51;;;;62298:132;;62407:2;62385:25;;;;;;;;;;;:::i;:::-;;;;;;;;62298:132;62255:190;62140:679;62027:799;;;;:::o;66126:609::-;66199:13;66225:22;66239:7;66225:13;:22::i;:::-;;66260:23;66286:10;:19;66297:7;66286:19;;;;;;;;;;;66260:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66316:18;66337:10;:8;:10::i;:::-;66316:31;;66445:1;66429:4;66423:18;:23;66419:72;;66470:9;66463:16;;;;;;66419:72;66618:1;66598:9;66592:23;:27;66588:97;;;66657:4;66663:9;66643:30;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66636:37;;;;;;66588:97;66704:23;66719:7;66704:14;:23::i;:::-;66697:30;;;;66126:609;;;;:::o;55581:102::-;55649:26;55659:2;55663:7;55649:26;;;;;;;;;;;;:9;:26::i;:::-;55581:102;;:::o;66861:170::-;66975:9;66953:10;:19;66964:7;66953:19;;;;;;;;;;;:31;;;;;;:::i;:::-;;67000:23;67015:7;67000:23;;;;;;:::i;:::-;;;;;;;;66861:170;;:::o;68406:224::-;68508:4;68547:35;68532:50;;;:11;:50;;;;:90;;;;68586:36;68610:11;68586:23;:36::i;:::-;68532:90;68525:97;;68406:224;;;:::o;50523:117::-;50589:7;50616;:16;50624:7;50616:16;;;;;;;;;;;;;;;;;;;;;50609:23;;50523:117;;;:::o;59772:678::-;59934:9;:31;;;;59963:1;59947:18;;:4;:18;;;;59934:31;59930:471;;;59982:13;59998:22;60012:7;59998:13;:22::i;:::-;59982:38;;60167:1;60151:18;;:4;:18;;;;:35;;;;;60182:4;60173:13;;:5;:13;;;;60151:35;:69;;;;;60191:29;60208:5;60215:4;60191:16;:29::i;:::-;60190:30;60151:69;60147:144;;;60270:4;60248:27;;;;;;;;;;;:::i;:::-;;;;;;;;60147:144;60311:9;60307:83;;;60366:7;60362:2;60346:28;;60355:5;60346:28;;;;;;;;;;;;60307:83;59967:434;59930:471;60440:2;60413:15;:24;60429:7;60413:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;59772:678;;;;:::o;64814:210::-;64957:7;32504:19;:17;:19::i;:::-;64984:32:::1;64998:2;65002:7;65011:4;64984:13;:32::i;:::-;64977:39;;64814:210:::0;;;;;:::o;33267:130::-;33331:8;:6;:8::i;:::-;33326:64;;33363:15;;;;;;;;;;;;;;33326:64;33267:130::o;33058:132::-;33124:8;:6;:8::i;:::-;33120:63;;;33156:15;;;;;;;;;;;;;;33120:63;33058:132::o;47918:94::-;47969:13;47995:9;;;;;;;;;;;;;;47918:94;:::o;47409:260::-;47473:13;47499:22;47513:7;47499:13;:22::i;:::-;;47534:21;47558:10;:8;:10::i;:::-;47534:34;;47610:1;47592:7;47586:21;:25;:75;;;;;;;;;;;;;;;;;47628:7;47637:18;:7;:16;:18::i;:::-;47614:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47586:75;47579:82;;;47409:260;;;:::o;55910:185::-;56005:18;56011:2;56015:7;56005:5;:18::i;:::-;56034:53;56065:1;56069:2;56073:7;56082:4;56034:22;:53::i;:::-;55910:185;;;:::o;46252:305::-;46354:4;46406:25;46391:40;;;:11;:40;;;;:105;;;;46463:33;46448:48;;;:11;:48;;;;46391:105;:158;;;;46513:36;46537:11;46513:23;:36::i;:::-;46391:158;46371:178;;46252:305;;;:::o;69523:640::-;69618:7;69638:21;69662:32;69676:2;69680:7;69689:4;69662:13;:32::i;:::-;69638:56;;69736:1;69711:27;;:13;:27;;;69707:214;;69755:40;69787:7;69755:31;:40::i;:::-;69707:214;;;69834:2;69817:19;;:13;:19;;;69813:108;;69853:56;69886:13;69901:7;69853:32;:56::i;:::-;69813:108;69707:214;69949:1;69935:16;;:2;:16;;;69931:192;;69968:45;70005:7;69968:36;:45::i;:::-;69931:192;;;70052:2;70035:19;;:13;:19;;;70031:92;;70071:40;70099:2;70103:7;70071:27;:40::i;:::-;70031:92;69931:192;70142:13;70135:20;;;69523:640;;;;;:::o;24249:718::-;24305:13;24356:14;24393:1;24373:17;24384:5;24373:10;:17::i;:::-;:21;24356:38;;24409:20;24443:6;24432:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24409:41;;24465:11;24594:6;24590:2;24586:15;24578:6;24574:28;24567:35;;24631:290;24638:4;24631:290;;;24663:5;;;;;;;;24805:10;24800:2;24793:5;24789:14;24784:32;24779:3;24771:46;24863:2;24854:11;;;;;;:::i;:::-;;;;;24897:1;24888:5;:10;24631:290;24884:21;24631:290;24942:6;24935:13;;;;;24249:718;;;:::o;54883:335::-;54965:1;54951:16;;:2;:16;;;54947:89;;55021:1;54991:33;;;;;;;;;;;:::i;:::-;;;;;;;;54947:89;55046:21;55070:32;55078:2;55082:7;55099:1;55070:7;:32::i;:::-;55046:56;;55142:1;55117:27;;:13;:27;;;55113:98;;55196:1;55168:31;;;;;;;;;;;:::i;:::-;;;;;;;;55113:98;54936:282;54883:335;;:::o;36895:148::-;36971:4;37010:25;36995:40;;;:11;:40;;;;36988:47;;36895:148;;;:::o;53723:824::-;53809:7;53829:12;53844:17;53853:7;53844:8;:17::i;:::-;53829:32;;53940:1;53924:18;;:4;:18;;;53920:88;;53959:37;53976:4;53982;53988:7;53959:16;:37::i;:::-;53920:88;54071:1;54055:18;;:4;:18;;;54051:263;;54173:48;54190:1;54194:7;54211:1;54215:5;54173:8;:48::i;:::-;54286:1;54267:9;:15;54277:4;54267:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;54051:263;54344:1;54330:16;;:2;:16;;;54326:111;;54409:1;54392:9;:13;54402:2;54392:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;54326:111;54468:2;54449:7;:16;54457:7;54449:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;54507:7;54503:2;54488:27;;54497:4;54488:27;;;;;;;;;;;;54535:4;54528:11;;;53723:824;;;;;:::o;70883:164::-;70987:10;:17;;;;70960:15;:24;70976:7;70960:24;;;;;;;;;;;:44;;;;71015:10;71031:7;71015:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70883:164;:::o;71674:977::-;71940:22;71965:15;71975:4;71965:9;:15::i;:::-;71940:40;;71991:18;72012:17;:26;72030:7;72012:26;;;;;;;;;;;;71991:47;;72159:14;72145:10;:28;72141:328;;72190:19;72212:12;:18;72225:4;72212:18;;;;;;;;;;;;;;;:34;72231:14;72212:34;;;;;;;;;;;;72190:56;;72296:11;72263:12;:18;72276:4;72263:18;;;;;;;;;;;;;;;:30;72282:10;72263:30;;;;;;;;;;;:44;;;;72413:10;72380:17;:30;72398:11;72380:30;;;;;;;;;;;:43;;;;72175:294;72141:328;72565:17;:26;72583:7;72565:26;;;;;;;;;;;72558:33;;;72609:12;:18;72622:4;72609:18;;;;;;;;;;;;;;;:34;72628:14;72609:34;;;;;;;;;;;72602:41;;;71755:896;;71674:977;;:::o;72946:1079::-;73199:22;73244:1;73224:10;:17;;;;:21;;;;:::i;:::-;73199:46;;73256:18;73277:15;:24;73293:7;73277:24;;;;;;;;;;;;73256:45;;73628:19;73650:10;73661:14;73650:26;;;;;;;;:::i;:::-;;;;;;;;;;73628:48;;73714:11;73689:10;73700;73689:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;73825:10;73794:15;:28;73810:11;73794:28;;;;;;;;;;;:41;;;;73966:15;:24;73982:7;73966:24;;;;;;;;;;;73959:31;;;74001:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;73017:1008;;;72946:1079;:::o;70464:218::-;70549:14;70582:1;70566:13;70576:2;70566:9;:13::i;:::-;:17;;;;:::i;:::-;70549:34;;70621:7;70594:12;:16;70607:2;70594:16;;;;;;;;;;;;;;;:24;70611:6;70594:24;;;;;;;;;;;:34;;;;70668:6;70639:17;:26;70657:7;70639:26;;;;;;;;;;;:35;;;;70538:144;70464:218;;:::o;20647:948::-;20700:7;20720:14;20737:1;20720:18;;20787:8;20778:5;:17;20774:106;;20825:8;20816:17;;;;;;:::i;:::-;;;;;20862:2;20852:12;;;;20774:106;20907:8;20898:5;:17;20894:106;;20945:8;20936:17;;;;;;:::i;:::-;;;;;20982:2;20972:12;;;;20894:106;21027:8;21018:5;:17;21014:106;;21065:8;21056:17;;;;;;:::i;:::-;;;;;21102:2;21092:12;;;;21014:106;21147:7;21138:5;:16;21134:103;;21184:7;21175:16;;;;;;:::i;:::-;;;;;21220:1;21210:11;;;;21134:103;21264:7;21255:5;:16;21251:103;;21301:7;21292:16;;;;;;:::i;:::-;;;;;21337:1;21327:11;;;;21251:103;21381:7;21372:5;:16;21368:103;;21418:7;21409:16;;;;;;:::i;:::-;;;;;21454:1;21444:11;;;;21368:103;21498:7;21489:5;:16;21485:68;;21536:1;21526:11;;;;21485:68;21581:6;21574:13;;;20647:948;;;:::o;51930:376::-;52043:38;52057:5;52064:7;52073;52043:13;:38::i;:::-;52038:261;;52119:1;52102:19;;:5;:19;;;52098:190;;52172:7;52149:31;;;;;;;;;;;:::i;:::-;;;;;;;;52098:190;52255:7;52264;52228:44;;;;;;;;;;;;:::i;:::-;;;;;;;;52038:261;51930:376;;;:::o;51210:276::-;51313:4;51369:1;51350:21;;:7;:21;;;;:128;;;;;51398:7;51389:16;;:5;:16;;;:52;;;;51409:32;51426:5;51433:7;51409:16;:32::i;:::-;51389:52;:88;;;;51470:7;51445:32;;:21;51458:7;51445:12;:21::i;:::-;:32;;;51389:88;51350:128;51330:148;;51210:276;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:116::-;6272:21;6287:5;6272:21;:::i;:::-;6265:5;6262:32;6252:60;;6308:1;6305;6298:12;6252:60;6202:116;:::o;6324:133::-;6367:5;6405:6;6392:20;6383:29;;6421:30;6445:5;6421:30;:::i;:::-;6324:133;;;;:::o;6463:468::-;6528:6;6536;6585:2;6573:9;6564:7;6560:23;6556:32;6553:119;;;6591:79;;:::i;:::-;6553:119;6711:1;6736:53;6781:7;6772:6;6761:9;6757:22;6736:53;:::i;:::-;6726:63;;6682:117;6838:2;6864:50;6906:7;6897:6;6886:9;6882:22;6864:50;:::i;:::-;6854:60;;6809:115;6463:468;;;;;:::o;6937:117::-;7046:1;7043;7036:12;7060:117;7169:1;7166;7159:12;7183:180;7231:77;7228:1;7221:88;7328:4;7325:1;7318:15;7352:4;7349:1;7342:15;7369:281;7452:27;7474:4;7452:27;:::i;:::-;7444:6;7440:40;7582:6;7570:10;7567:22;7546:18;7534:10;7531:34;7528:62;7525:88;;;7593:18;;:::i;:::-;7525:88;7633:10;7629:2;7622:22;7412:238;7369:281;;:::o;7656:129::-;7690:6;7717:20;;:::i;:::-;7707:30;;7746:33;7774:4;7766:6;7746:33;:::i;:::-;7656:129;;;:::o;7791:307::-;7852:4;7942:18;7934:6;7931:30;7928:56;;;7964:18;;:::i;:::-;7928:56;8002:29;8024:6;8002:29;:::i;:::-;7994:37;;8086:4;8080;8076:15;8068:23;;7791:307;;;:::o;8104:146::-;8201:6;8196:3;8191;8178:30;8242:1;8233:6;8228:3;8224:16;8217:27;8104:146;;;:::o;8256:423::-;8333:5;8358:65;8374:48;8415:6;8374:48;:::i;:::-;8358:65;:::i;:::-;8349:74;;8446:6;8439:5;8432:21;8484:4;8477:5;8473:16;8522:3;8513:6;8508:3;8504:16;8501:25;8498:112;;;8529:79;;:::i;:::-;8498:112;8619:54;8666:6;8661:3;8656;8619:54;:::i;:::-;8339:340;8256:423;;;;;:::o;8698:338::-;8753:5;8802:3;8795:4;8787:6;8783:17;8779:27;8769:122;;8810:79;;:::i;:::-;8769:122;8927:6;8914:20;8952:78;9026:3;9018:6;9011:4;9003:6;8999:17;8952:78;:::i;:::-;8943:87;;8759:277;8698:338;;;;:::o;9042:943::-;9137:6;9145;9153;9161;9210:3;9198:9;9189:7;9185:23;9181:33;9178:120;;;9217:79;;:::i;:::-;9178:120;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:53;9535:7;9526:6;9515:9;9511:22;9490:53;:::i;:::-;9480:63;;9435:118;9592:2;9618:53;9663:7;9654:6;9643:9;9639:22;9618:53;:::i;:::-;9608:63;;9563:118;9748:2;9737:9;9733:18;9720:32;9779:18;9771:6;9768:30;9765:117;;;9801:79;;:::i;:::-;9765:117;9906:62;9960:7;9951:6;9940:9;9936:22;9906:62;:::i;:::-;9896:72;;9691:287;9042:943;;;;;;;:::o;9991:308::-;10053:4;10143:18;10135:6;10132:30;10129:56;;;10165:18;;:::i;:::-;10129:56;10203:29;10225:6;10203:29;:::i;:::-;10195:37;;10287:4;10281;10277:15;10269:23;;9991:308;;;:::o;10305:425::-;10383:5;10408:66;10424:49;10466:6;10424:49;:::i;:::-;10408:66;:::i;:::-;10399:75;;10497:6;10490:5;10483:21;10535:4;10528:5;10524:16;10573:3;10564:6;10559:3;10555:16;10552:25;10549:112;;;10580:79;;:::i;:::-;10549:112;10670:54;10717:6;10712:3;10707;10670:54;:::i;:::-;10389:341;10305:425;;;;;:::o;10750:340::-;10806:5;10855:3;10848:4;10840:6;10836:17;10832:27;10822:122;;10863:79;;:::i;:::-;10822:122;10980:6;10967:20;11005:79;11080:3;11072:6;11065:4;11057:6;11053:17;11005:79;:::i;:::-;10996:88;;10812:278;10750:340;;;;:::o;11096:654::-;11174:6;11182;11231:2;11219:9;11210:7;11206:23;11202:32;11199:119;;;11237:79;;:::i;:::-;11199:119;11357:1;11382:53;11427:7;11418:6;11407:9;11403:22;11382:53;:::i;:::-;11372:63;;11328:117;11512:2;11501:9;11497:18;11484:32;11543:18;11535:6;11532:30;11529:117;;;11565:79;;:::i;:::-;11529:117;11670:63;11725:7;11716:6;11705:9;11701:22;11670:63;:::i;:::-;11660:73;;11455:288;11096:654;;;;;:::o;11756:474::-;11824:6;11832;11881:2;11869:9;11860:7;11856:23;11852:32;11849:119;;;11887:79;;:::i;:::-;11849:119;12007:1;12032:53;12077:7;12068:6;12057:9;12053:22;12032:53;:::i;:::-;12022:63;;11978:117;12134:2;12160:53;12205:7;12196:6;12185:9;12181:22;12160:53;:::i;:::-;12150:63;;12105:118;11756:474;;;;;:::o;12236:180::-;12284:77;12281:1;12274:88;12381:4;12378:1;12371:15;12405:4;12402:1;12395:15;12422:320;12466:6;12503:1;12497:4;12493:12;12483:22;;12550:1;12544:4;12540:12;12571:18;12561:81;;12627:4;12619:6;12615:17;12605:27;;12561:81;12689:2;12681:6;12678:14;12658:18;12655:38;12652:84;;12708:18;;:::i;:::-;12652:84;12473:269;12422:320;;;:::o;12748:442::-;12897:4;12935:2;12924:9;12920:18;12912:26;;12948:71;13016:1;13005:9;13001:17;12992:6;12948:71;:::i;:::-;13029:72;13097:2;13086:9;13082:18;13073:6;13029:72;:::i;:::-;13111;13179:2;13168:9;13164:18;13155:6;13111:72;:::i;:::-;12748:442;;;;;;:::o;13196:332::-;13317:4;13355:2;13344:9;13340:18;13332:26;;13368:71;13436:1;13425:9;13421:17;13412:6;13368:71;:::i;:::-;13449:72;13517:2;13506:9;13502:18;13493:6;13449:72;:::i;:::-;13196:332;;;;;:::o;13534:180::-;13582:77;13579:1;13572:88;13679:4;13676:1;13669:15;13703:4;13700:1;13693:15;13720:180;13768:77;13765:1;13758:88;13865:4;13862:1;13855:15;13889:4;13886:1;13879:15;13906:233;13945:3;13968:24;13986:5;13968:24;:::i;:::-;13959:33;;14014:66;14007:5;14004:77;14001:103;;14084:18;;:::i;:::-;14001:103;14131:1;14124:5;14120:13;14113:20;;13906:233;;;:::o;14145:98::-;14196:6;14230:5;14224:12;14214:22;;14145:98;;;:::o;14249:168::-;14332:11;14366:6;14361:3;14354:19;14406:4;14401:3;14397:14;14382:29;;14249:168;;;;:::o;14423:373::-;14509:3;14537:38;14569:5;14537:38;:::i;:::-;14591:70;14654:6;14649:3;14591:70;:::i;:::-;14584:77;;14670:65;14728:6;14723:3;14716:4;14709:5;14705:16;14670:65;:::i;:::-;14760:29;14782:6;14760:29;:::i;:::-;14755:3;14751:39;14744:46;;14513:283;14423:373;;;;:::o;14802:640::-;14997:4;15035:3;15024:9;15020:19;15012:27;;15049:71;15117:1;15106:9;15102:17;15093:6;15049:71;:::i;:::-;15130:72;15198:2;15187:9;15183:18;15174:6;15130:72;:::i;:::-;15212;15280:2;15269:9;15265:18;15256:6;15212:72;:::i;:::-;15331:9;15325:4;15321:20;15316:2;15305:9;15301:18;15294:48;15359:76;15430:4;15421:6;15359:76;:::i;:::-;15351:84;;14802:640;;;;;;;:::o;15448:141::-;15504:5;15535:6;15529:13;15520:22;;15551:32;15577:5;15551:32;:::i;:::-;15448:141;;;;:::o;15595:349::-;15664:6;15713:2;15701:9;15692:7;15688:23;15684:32;15681:119;;;15719:79;;:::i;:::-;15681:119;15839:1;15864:63;15919:7;15910:6;15899:9;15895:22;15864:63;:::i;:::-;15854:73;;15810:127;15595:349;;;;:::o;15950:148::-;16052:11;16089:3;16074:18;;15950:148;;;;:::o;16104:390::-;16210:3;16238:39;16271:5;16238:39;:::i;:::-;16293:89;16375:6;16370:3;16293:89;:::i;:::-;16286:96;;16391:65;16449:6;16444:3;16437:4;16430:5;16426:16;16391:65;:::i;:::-;16481:6;16476:3;16472:16;16465:23;;16214:280;16104:390;;;;:::o;16500:435::-;16680:3;16702:95;16793:3;16784:6;16702:95;:::i;:::-;16695:102;;16814:95;16905:3;16896:6;16814:95;:::i;:::-;16807:102;;16926:3;16919:10;;16500:435;;;;;:::o;16941:141::-;16990:4;17013:3;17005:11;;17036:3;17033:1;17026:14;17070:4;17067:1;17057:18;17049:26;;16941:141;;;:::o;17088:93::-;17125:6;17172:2;17167;17160:5;17156:14;17152:23;17142:33;;17088:93;;;:::o;17187:107::-;17231:8;17281:5;17275:4;17271:16;17250:37;;17187:107;;;;:::o;17300:393::-;17369:6;17419:1;17407:10;17403:18;17442:97;17472:66;17461:9;17442:97;:::i;:::-;17560:39;17590:8;17579:9;17560:39;:::i;:::-;17548:51;;17632:4;17628:9;17621:5;17617:21;17608:30;;17681:4;17671:8;17667:19;17660:5;17657:30;17647:40;;17376:317;;17300:393;;;;;:::o;17699:60::-;17727:3;17748:5;17741:12;;17699:60;;;:::o;17765:142::-;17815:9;17848:53;17866:34;17875:24;17893:5;17875:24;:::i;:::-;17866:34;:::i;:::-;17848:53;:::i;:::-;17835:66;;17765:142;;;:::o;17913:75::-;17956:3;17977:5;17970:12;;17913:75;;;:::o;17994:269::-;18104:39;18135:7;18104:39;:::i;:::-;18165:91;18214:41;18238:16;18214:41;:::i;:::-;18206:6;18199:4;18193:11;18165:91;:::i;:::-;18159:4;18152:105;18070:193;17994:269;;;:::o;18269:73::-;18314:3;18269:73;:::o;18348:189::-;18425:32;;:::i;:::-;18466:65;18524:6;18516;18510:4;18466:65;:::i;:::-;18401:136;18348:189;;:::o;18543:186::-;18603:120;18620:3;18613:5;18610:14;18603:120;;;18674:39;18711:1;18704:5;18674:39;:::i;:::-;18647:1;18640:5;18636:13;18627:22;;18603:120;;;18543:186;;:::o;18735:543::-;18836:2;18831:3;18828:11;18825:446;;;18870:38;18902:5;18870:38;:::i;:::-;18954:29;18972:10;18954:29;:::i;:::-;18944:8;18940:44;19137:2;19125:10;19122:18;19119:49;;;19158:8;19143:23;;19119:49;19181:80;19237:22;19255:3;19237:22;:::i;:::-;19227:8;19223:37;19210:11;19181:80;:::i;:::-;18840:431;;18825:446;18735:543;;;:::o;19284:117::-;19338:8;19388:5;19382:4;19378:16;19357:37;;19284:117;;;;:::o;19407:169::-;19451:6;19484:51;19532:1;19528:6;19520:5;19517:1;19513:13;19484:51;:::i;:::-;19480:56;19565:4;19559;19555:15;19545:25;;19458:118;19407:169;;;;:::o;19581:295::-;19657:4;19803:29;19828:3;19822:4;19803:29;:::i;:::-;19795:37;;19865:3;19862:1;19858:11;19852:4;19849:21;19841:29;;19581:295;;;;:::o;19881:1395::-;19998:37;20031:3;19998:37;:::i;:::-;20100:18;20092:6;20089:30;20086:56;;;20122:18;;:::i;:::-;20086:56;20166:38;20198:4;20192:11;20166:38;:::i;:::-;20251:67;20311:6;20303;20297:4;20251:67;:::i;:::-;20345:1;20369:4;20356:17;;20401:2;20393:6;20390:14;20418:1;20413:618;;;;21075:1;21092:6;21089:77;;;21141:9;21136:3;21132:19;21126:26;21117:35;;21089:77;21192:67;21252:6;21245:5;21192:67;:::i;:::-;21186:4;21179:81;21048:222;20383:887;;20413:618;20465:4;20461:9;20453:6;20449:22;20499:37;20531:4;20499:37;:::i;:::-;20558:1;20572:208;20586:7;20583:1;20580:14;20572:208;;;20665:9;20660:3;20656:19;20650:26;20642:6;20635:42;20716:1;20708:6;20704:14;20694:24;;20763:2;20752:9;20748:18;20735:31;;20609:4;20606:1;20602:12;20597:17;;20572:208;;;20808:6;20799:7;20796:19;20793:179;;;20866:9;20861:3;20857:19;20851:26;20909:48;20951:4;20943:6;20939:17;20928:9;20909:48;:::i;:::-;20901:6;20894:64;20816:156;20793:179;21018:1;21014;21006:6;21002:14;20998:22;20992:4;20985:36;20420:611;;;20383:887;;19973:1303;;;19881:1395;;:::o;21282:180::-;21330:77;21327:1;21320:88;21427:4;21424:1;21417:15;21451:4;21448:1;21441:15;21468:194;21508:4;21528:20;21546:1;21528:20;:::i;:::-;21523:25;;21562:20;21580:1;21562:20;:::i;:::-;21557:25;;21606:1;21603;21599:9;21591:17;;21630:1;21624:4;21621:11;21618:37;;;21635:18;;:::i;:::-;21618:37;21468:194;;;;:::o;21668:180::-;21716:77;21713:1;21706:88;21813:4;21810:1;21803:15;21837:4;21834:1;21827:15
Swarm Source
ipfs://2d97f1ead138954973bdd7cf57560da2bbabcae8871d45e5a98b765c8dcfd538
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in GLMR
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.