ERC-721
NFT
Overview
Max Total Supply
246 NC
Holders
117
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 NCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NovaCreed
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-22 */ // File: @openzeppelin/contracts/utils/math/SafeMath.sol pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Counters.sol pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } } // File: @openzeppelin/contracts/access/IAccessControl.sol pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File: @openzeppelin/contracts/access/IAccessControlEnumerable.sol pragma solidity ^0.8.0; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { 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_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/Pausable.sol pragma solidity ^0.8.0; /** * @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 { /** * @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); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @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/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @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); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/access/AccessControl.sol pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin/contracts/access/AccessControlEnumerable.sol pragma solidity ^0.8.0; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {grantRole} to track enumerable memberships */ function grantRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @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 tokenId); /** * @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/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @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/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @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}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => 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 override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(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 overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - 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, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * 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 virtual { _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); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @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 virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), 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 virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * 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 * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol pragma solidity ^0.8.0; /** * @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. */ abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); require(!paused(), "ERC721Pausable: token transfer while paused"); } } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly 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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @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. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @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 override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @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 = ERC721.balanceOf(to); _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 = ERC721.balanceOf(from) - 1; 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(); } } // File: @openzeppelin/contracts/token/ERC721/presets/ERC721PresetMinterPauserAutoId.sol pragma solidity ^0.8.0; /** * @dev {ERC721} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - a pauser role that allows to stop all token transfers * - token ID and URI autogeneration * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. */ contract ERC721PresetMinterPauserAutoId is Context, AccessControlEnumerable, ERC721Enumerable, ERC721Burnable, ERC721Pausable { using Counters for Counters.Counter; bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); Counters.Counter private _tokenIdTracker; string private _baseTokenURI; /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the * account that deploys the contract. * * Token URIs will be autogenerated based on `baseURI` and their token IDs. * See {ERC721-tokenURI}. */ constructor( string memory name, string memory symbol, string memory baseTokenURI ) ERC721(name, symbol) { _baseTokenURI = baseTokenURI; _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } /** * @dev Creates a new token for `to`. Its token ID will be automatically * assigned (and available on the emitted {IERC721-Transfer} event), and the token * URI autogenerated based on the base URI passed at construction. * * See {ERC721-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint(address to) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have minter role to mint"); // We cannot just use balanceOf to create the new tokenId because tokens // can be burned (destroyed), so we need a separate counter. _mint(to, _tokenIdTracker.current()); _tokenIdTracker.increment(); } /** * @dev Pauses all token transfers. * * See {ERC721Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to pause"); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC721Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to unpause"); _unpause(); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) { super._beforeTokenTransfer(from, to, tokenId); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } } // File: NovaCreed.sol //SPDX-License-Identifier: Unlicense pragma solidity ^0.8.4; contract NovaCreed is ERC721PresetMinterPauserAutoId, Ownable { using SafeMath for uint256; using Strings for uint256; Counters.Counter private _tokenIds; bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE"); mapping(uint256 => string) private _tokenURIs; address payable platformAddress = payable(0xb98e9F2107793CF74c31c31cc97B57D6D08e9A99); mapping(address => bool) public whitelist; uint256 public price; uint256 public constant totalTokenToMint = 4321; uint256 public mintedTokens; uint256 public startingIpfsId; uint256 public howManyToMint = 18; uint256 public nftPerAddressLimit = 6; uint256 private lastIPFSID; uint256[] public excludedNumbers; uint256 public constant ADMIN_MINT = 150; uint256 public adminMinted; string private _baseURIextended; string public notRevealedURI; bool public revealed = false; bool public isWhitelist = false; mapping(address => uint256) public addressMintBalance; modifier adminOnly() { require( hasRole(ADMIN_ROLE, msg.sender), "NC: caller is not an admin!" ); _; } constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedURI, address _admin, uint256 _mintPrice, uint256 _howMany, uint256 _nftPerAddessLimit, bool _isWhitelist ) ERC721PresetMinterPauserAutoId(_name, _symbol, _initBaseURI) { price = _mintPrice; setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedURI); _setupRole(ADMIN_ROLE, _admin); nftPerAddressLimit = _nftPerAddessLimit; howManyToMint = _howMany; isWhitelist = _isWhitelist; //Launch Contract Paused to prevent buys upon deployment. pause(); } function createTokens(uint256 _howMany) external payable { require(!paused(), "Contract paused, no NFTs can be minted right now."); require(_howMany > 0,"NCToken: minimum 1 tokens need to be minted!"); require(_howMany <= tokensRemainingToBeMinted(),"NCToken: purchase amount is greater than the token available!"); require(_howMany <= howManyToMint,"NCToken: max tokens you can mint at once exceeded!"); if(msg.sender != owner()){ if(isWhitelist == true){ require(isWhiteListed(msg.sender),"User is not whitelisted, wait for public sale"); uint256 ownerMintedCount = addressMintBalance[msg.sender]; require(ownerMintedCount + _howMany <= nftPerAddressLimit,"NFTs Per Address during pre-sale is limited"); } } require(msg.value == price.mul(_howMany),"NCToken: insufficient ETH to mint!"); for (uint256 i = 0; i < _howMany; i++) { addressMintBalance[msg.sender]++; _mintToken(_msgSender()); } platformAddress.transfer(price.mul(_howMany)); } function tokensRemainingToBeMinted() public view returns (uint256) { return totalTokenToMint.sub(mintedTokens); } function _mintToken(address to) private { if (mintedTokens == 0) { lastIPFSID = getRandom( 1, totalTokenToMint, uint256(uint160(address(_msgSender()))) + 1 ); startingIpfsId = lastIPFSID; } else { lastIPFSID = getIpfsIdToMint(); } mintedTokens++; require( !_exists(mintedTokens), "NCToken: one of these tokens already exists!" ); _safeMint(to, mintedTokens); _setTokenURI(mintedTokens, lastIPFSID.toString()); } function mintTokenAdmin(uint8 _howMany, address to) external adminOnly { require( _howMany > 0, "NCToken: minimum 1 tokens need to be minted!" ); /*require(_howMany <= 20, "NCToken: max 20 tokens at once!");*/ require( getAdminRemainingMint() > 0, "NCToken: All admin token minted" ); require(_howMany <= getAdminRemainingMint(), "NCToken: Token should be less than remaining amount to mint"); if (mintedTokens == 0) { lastIPFSID = getRandom( 1, totalTokenToMint, uint256(uint160(address(_msgSender()))) + 1 ); startingIpfsId = lastIPFSID; } else { lastIPFSID = getIpfsIdToMint(); } for (uint256 i = 0; i < _howMany; i++) { _mintToken(to); adminMinted++; } } function getRandom( uint256 from, uint256 to, uint256 salty ) public view returns (uint256) { uint256 seed = uint256( keccak256( abi.encodePacked( block.timestamp + block.difficulty + (( uint256(keccak256(abi.encodePacked(block.coinbase))) ) / (block.timestamp)) + block.gaslimit + ((uint256(keccak256(abi.encodePacked(_msgSender())))) / (block.timestamp)) + block.number + salty ) ) ); return seed.mod(to - from) + from; } function getIpfsIdToMint() private view returns (uint256 _nextIpfsId) { require( !isAllTokenMinted(), "NCToken: all tokens have been minted!" ); if (lastIPFSID == totalTokenToMint && mintedTokens < totalTokenToMint) { _nextIpfsId = 1; } else if (mintedTokens < totalTokenToMint) { _nextIpfsId = lastIPFSID + 1; } } function isAllTokenMinted() public view returns (bool) { return mintedTokens == totalTokenToMint; } function getAdminRemainingMint() public view returns (uint256) { return ADMIN_MINT.sub(adminMinted); } function setPrice(uint256 newPrice) external { require( hasRole(ADMIN_ROLE, msg.sender), "NCToken: caller is not an admin!" ); price = newPrice; } function grantAdminRole(address account) external { require( hasRole(ADMIN_ROLE, msg.sender), "NCToken: caller is not an admin!" ); grantRole(ADMIN_ROLE, account); } function revokeAdminRole(address account) external { require( hasRole(ADMIN_ROLE, msg.sender), "NCToken: caller is not an admin!" ); revokeRole(ADMIN_ROLE, account); } function changeThePlatformAddress(address newAddress) external { require( hasRole(ADMIN_ROLE, msg.sender), "NCToken: caller is not an admin!" ); platformAddress = payable(newAddress); } function setBaseURI(string memory baseURI_) public onlyOwner { _baseURIextended = baseURI_; } function setRevealed() external onlyOwner { revealed = true; } function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require( _exists(tokenId), "ERC721Metadata: URI set of nonexistent token" ); _tokenURIs[tokenId] = _tokenURI; } function setNotRevealedURI(string memory _initNotRevealedUri) public onlyOwner { notRevealedURI = _initNotRevealedUri; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } function _getNotRevealedURI() internal view virtual returns (string memory) { return notRevealedURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory){ require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); if(revealed == false){ return notRevealedURI; } // 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 abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString())); } function isWhiteListed(address _user) public view returns(bool){ if(whitelist[_user]){ return true; } return false; } function addWhitelistUsers(address[] calldata _users) public onlyOwner { for(uint256 i = 0; i < _users.length; i++){ whitelist[_users[i]] = true; } } function removeWhitelistUsers(address[] calldata _users) public onlyOwner { for(uint256 i = 0; i < _users.length; i++){ whitelist[_users[i]] = false; } } function setWhitelist(bool _isWhitelist) public onlyOwner { isWhitelist = _isWhitelist; } function setHowMany(uint256 _howMany) public onlyOwner { howManyToMint = _howMany; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner(){ nftPerAddressLimit = _limit; } function getTokenPrice() view external returns(uint256) { return price; } function withdraw() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedURI","type":"string"},{"internalType":"address","name":"_admin","type":"address"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_howMany","type":"uint256"},{"internalType":"uint256","name":"_nftPerAddessLimit","type":"uint256"},{"internalType":"bool","name":"_isWhitelist","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"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":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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":[],"name":"ADMIN_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addWhitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adminMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"address","name":"newAddress","type":"address"}],"name":"changeThePlatformAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_howMany","type":"uint256"}],"name":"createTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"excludedNumbers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAdminRemainingMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"from","type":"uint256"},{"internalType":"uint256","name":"to","type":"uint256"},{"internalType":"uint256","name":"salty","type":"uint256"}],"name":"getRandom","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"grantAdminRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"howManyToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllTokenMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_howMany","type":"uint8"},{"internalType":"address","name":"to","type":"address"}],"name":"mintTokenAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"removeWhitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revokeAdminRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_howMany","type":"uint256"}],"name":"setHowMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isWhitelist","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIpfsId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokensRemainingToBeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokenToMint","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052601280546001600160a01b03191673b98e9f2107793cf74c31c31cc97b57d6d08e9a991781556017556006601855601e805461ffff191690553480156200004a57600080fd5b50604051620049ee380380620049ee8339810160408190526200006d9162000715565b888888828281600290805190602001906200008a9291906200058e565b508051620000a09060039060208401906200058e565b5050600c805460ff19169055508051620000c290600e9060208401906200058e565b50620000d0600033620001c6565b620000fc7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620001c6565b620001287f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620001c6565b505050620001456200013f620001c260201b60201c565b62000209565b601484905562000155876200025b565b6200016086620002c3565b6200018c7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177586620001c6565b60188290556017839055601e805461ff00191661010083151502179055620001b362000323565b5050505050505050506200085f565b3390565b620001dd8282620003d560201b620024181760201c565b60008281526001602090815260409091206200020491839062002422620003e1821b17901c565b505050565b600f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f546001600160a01b03163314620002aa5760405162461bcd60e51b81526020600482018190526024820152600080516020620049ce83398151915260448201526064015b60405180910390fd5b8051620002bf90601c9060208401906200058e565b5050565b600f546001600160a01b031633146200030e5760405162461bcd60e51b81526020600482018190526024820152600080516020620049ce8339815191526044820152606401620002a1565b8051620002bf90601d9060208401906200058e565b3360009081527ff7c9542c591017a21c74b6f3fab6263c7952fc0aaf9db4c22a2a04ddc7f8674f602052604090205460ff16620003c95760405162461bcd60e51b815260206004820152603e60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20706175736500006064820152608401620002a1565b620003d362000401565b565b620002bf82826200049c565b6000620003f8836001600160a01b0384166200053c565b90505b92915050565b600c5460ff1615620004495760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620002a1565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200047f3390565b6040516001600160a01b03909116815260200160405180910390a1565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620002bf576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620004f83390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008181526001830160205260408120546200058557508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620003fb565b506000620003fb565b8280546200059c906200080c565b90600052602060002090601f016020900481019282620005c057600085556200060b565b82601f10620005db57805160ff19168380011785556200060b565b828001600101855582156200060b579182015b828111156200060b578251825591602001919060010190620005ee565b50620006199291506200061d565b5090565b5b808211156200061957600081556001016200061e565b80516001600160a01b03811681146200064c57600080fd5b919050565b805180151581146200064c57600080fd5b600082601f83011262000673578081fd5b81516001600160401b038082111562000690576200069062000849565b604051601f8301601f19908116603f01168101908282118183101715620006bb57620006bb62000849565b81604052838152602092508683858801011115620006d7578485fd5b8491505b83821015620006fa5785820183015181830184015290820190620006db565b838211156200070b57848385830101525b9695505050505050565b60008060008060008060008060006101208a8c03121562000734578485fd5b89516001600160401b03808211156200074b578687fd5b620007598d838e0162000662565b9a5060208c01519150808211156200076f578687fd5b6200077d8d838e0162000662565b995060408c015191508082111562000793578687fd5b620007a18d838e0162000662565b985060608c0151915080821115620007b7578687fd5b50620007c68c828d0162000662565b965050620007d760808b0162000634565b945060a08a0151935060c08a0151925060e08a01519150620007fd6101008b0162000651565b90509295985092959850929598565b600181811c908216806200082157607f821691505b602082108114156200084357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61415f806200086f6000396000f3fe6080604052600436106104055760003560e01c80637e1f2bb811610213578063b2e1311111610123578063d5391393116100ab578063ea723d431161007a578063ea723d4314610bf7578063f2c4ce1e14610c0c578063f2fde38b14610c2c578063f958a65714610c4c578063fd15ec5814610c6c57600080fd5b8063d539139314610b26578063d547741f14610b5a578063e63ab1e914610b7a578063e985e9c514610bae57600080fd5b8063c6a7f43a116100f2578063c6a7f43a14610a90578063c87b56dd14610ab0578063ca15c87314610ad0578063d0eb26b014610af0578063d221ca7b14610b1057600080fd5b8063b2e1311114610a1a578063b88d4fde14610a3a578063ba7d2c7614610a5a578063c634b78e14610a7057600080fd5b806391d14854116101a65780639b19251a116101755780639b19251a14610986578063a035b1fe146109b6578063a217fddf146109cc578063a22cb465146109e1578063a760a29f14610a0157600080fd5b806391d148541461091c57806395d89b411461093c57806398da7446146109515780639a19c7b01461096657600080fd5b80638da5cb5b116101e25780638da5cb5b146108a85780638db02a5c146108c65780639010d07c146108dc57806391b7f5ed146108fc57600080fd5b80637e1f2bb81461084a578063815829981461085d5780638456cb591461087d5780638d75fe051461089257600080fd5b80633f4ba83a116103195780636329d9ac116102a15780636f9170f6116102705780636f9170f6146107be57806370a08231146107de578063715018a6146107fe578063722503801461081357806375b238fc1461082857600080fd5b80636329d9ac146107485780636352211e1461075e578063686b28121461077e5780636a6278421461079e57600080fd5b80634b94f50e116102e85780634b94f50e146106c15780634f6ccce7146106d657806351830227146106f657806355f804b3146107105780635c975abb1461073057600080fd5b80633f4ba83a1461064d5780634146ed0a1461066257806342842e0e1461068157806342966c68146106a157600080fd5b80631fa6602a1161039c5780632f745c591161036b5780632f745c59146105c35780633406c726146105e357806336568abe146106105780633bd64968146106305780633ccfd60b1461064557600080fd5b80631fa6602a1461053e57806323b872dd14610553578063248a9ca3146105735780632f2ff15d146105a357600080fd5b8063095ea7b3116103d8578063095ea7b3146104c75780630d9b7764146104e957806318160ddd146105095780631f86dd911461051e57600080fd5b806301ffc9a71461040a57806306fdde031461043f57806307b8d9a514610461578063081812fc1461048f575b600080fd5b34801561041657600080fd5b5061042a610425366004613c5e565b610c82565b60405190151581526020015b60405180910390f35b34801561044b57600080fd5b50610454610c93565b6040516104369190613e36565b34801561046d57600080fd5b5061048161047c366004613c03565b610d25565b604051908152602001610436565b34801561049b57600080fd5b506104af6104aa366004613c03565b610d46565b6040516001600160a01b039091168152602001610436565b3480156104d357600080fd5b506104e76104e2366004613b50565b610dd3565b005b3480156104f557600080fd5b50610481610504366004613cdc565b610ee9565b34801561051557600080fd5b50600a54610481565b34801561052a57600080fd5b506104e7610539366004613a27565b61100a565b34801561054a57600080fd5b50610481611060565b34801561055f57600080fd5b506104e761056e366004613a73565b61107e565b34801561057f57600080fd5b5061048161058e366004613c03565b60009081526020819052604090206001015490565b3480156105af57600080fd5b506104e76105be366004613c1b565b6110b0565b3480156105cf57600080fd5b506104816105de366004613b50565b6110d2565b3480156105ef57600080fd5b506104816105fe366004613a27565b601f6020526000908152604090205481565b34801561061c57600080fd5b506104e761062b366004613c1b565b611168565b34801561063c57600080fd5b506104e761118a565b6104e76111c3565b34801561065957600080fd5b506104e7611213565b34801561066e57600080fd5b50601e5461042a90610100900460ff1681565b34801561068d57600080fd5b506104e761069c366004613a73565b6112b9565b3480156106ad57600080fd5b506104e76106bc366004613c03565b6112d4565b3480156106cd57600080fd5b50601454610481565b3480156106e257600080fd5b506104816106f1366004613c03565b61134e565b34801561070257600080fd5b50601e5461042a9060ff1681565b34801561071c57600080fd5b506104e761072b366004613c96565b6113ef565b34801561073c57600080fd5b50600c5460ff1661042a565b34801561075457600080fd5b50610481601b5481565b34801561076a57600080fd5b506104af610779366004613c03565b611430565b34801561078a57600080fd5b506104e7610799366004613b79565b6114a7565b3480156107aa57600080fd5b506104e76107b9366004613a27565b611551565b3480156107ca57600080fd5b5061042a6107d9366004613a27565b61160d565b3480156107ea57600080fd5b506104816107f9366004613a27565b61163e565b34801561080a57600080fd5b506104e76116c5565b34801561081f57600080fd5b506104546116f9565b34801561083457600080fd5b5061048160008051602061410a83398151915281565b6104e7610858366004613c03565b611787565b34801561086957600080fd5b506104e7610878366004613d07565b611b0d565b34801561088957600080fd5b506104e7611ce8565b34801561089e57600080fd5b5061048160155481565b3480156108b457600080fd5b50600f546001600160a01b03166104af565b3480156108d257600080fd5b5061048160165481565b3480156108e857600080fd5b506104af6108f7366004613c3d565b611d8c565b34801561090857600080fd5b506104e7610917366004613c03565b611dab565b34801561092857600080fd5b5061042a610937366004613c1b565b611de4565b34801561094857600080fd5b50610454611e0d565b34801561095d57600080fd5b50610481609681565b34801561097257600080fd5b506104e7610981366004613a27565b611e1c565b34801561099257600080fd5b5061042a6109a1366004613a27565b60136020526000908152604090205460ff1681565b3480156109c257600080fd5b5061048160145481565b3480156109d857600080fd5b50610481600081565b3480156109ed57600080fd5b506104e76109fc366004613b27565b611e68565b348015610a0d57600080fd5b506015546110e11461042a565b348015610a2657600080fd5b506104e7610a35366004613b79565b611f2d565b348015610a4657600080fd5b506104e7610a55366004613aae565b611fd7565b348015610a6657600080fd5b5061048160185481565b348015610a7c57600080fd5b506104e7610a8b366004613a27565b61200f565b348015610a9c57600080fd5b506104e7610aab366004613c03565b61205b565b348015610abc57600080fd5b50610454610acb366004613c03565b61208a565b348015610adc57600080fd5b50610481610aeb366004613c03565b612297565b348015610afc57600080fd5b506104e7610b0b366004613c03565b6122ae565b348015610b1c57600080fd5b5061048160175481565b348015610b3257600080fd5b506104817f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b348015610b6657600080fd5b506104e7610b75366004613c1b565b6122dd565b348015610b8657600080fd5b506104817f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b348015610bba57600080fd5b5061042a610bc9366004613a41565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610c0357600080fd5b506104816122e7565b348015610c1857600080fd5b506104e7610c27366004613c96565b6122ff565b348015610c3857600080fd5b506104e7610c47366004613a27565b61233c565b348015610c5857600080fd5b506104e7610c67366004613be9565b6123d4565b348015610c7857600080fd5b506104816110e181565b6000610c8d82612437565b92915050565b606060028054610ca290614047565b80601f0160208091040260200160405190810160405280929190818152602001828054610cce90614047565b8015610d1b5780601f10610cf057610100808354040283529160200191610d1b565b820191906000526020600020905b815481529060010190602001808311610cfe57829003601f168201915b5050505050905090565b601a8181548110610d3557600080fd5b600091825260209091200154905081565b6000610d518261245c565b610db75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610dde82611430565b9050806001600160a01b0316836001600160a01b03161415610e4c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610dae565b336001600160a01b0382161480610e685750610e688133610bc9565b610eda5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610dae565b610ee48383612479565b505050565b6040516bffffffffffffffffffffffff193360601b16602082015260009081908390439042906034016040516020818303038152906040528051906020012060001c610f359190613fba565b6040516bffffffffffffffffffffffff194160601b166020820152459042906034016040516020818303038152906040528051906020012060001c610f7a9190613fba565b610f844442613fa2565b610f8e9190613fa2565b610f989190613fa2565b610fa29190613fa2565b610fac9190613fa2565b610fb69190613fa2565b604051602001610fc891815260200190565b60408051601f198184030181529190528051602090910120905084610ff7610ff08287613fed565b83906124e7565b6110019190613fa2565b95945050505050565b61102260008051602061410a83398151915233611de4565b61103e5760405162461bcd60e51b8152600401610dae90613ee7565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b60006110796015546110e16124f390919063ffffffff16565b905090565b611089335b826124ff565b6110a55760405162461bcd60e51b8152600401610dae90613f51565b610ee48383836125e9565b6110ba8282612794565b6000828152600160205260409020610ee49082612422565b60006110dd8361163e565b821061113f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610dae565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b61117282826127ba565b6000828152600160205260409020610ee49082612834565b600f546001600160a01b031633146111b45760405162461bcd60e51b8152600401610dae90613f1c565b601e805460ff19166001179055565b600f546001600160a01b031633146111ed5760405162461bcd60e51b8152600401610dae90613f1c565b60405133904780156108fc02916000818181858888f1935050505061121157600080fd5b565b61123d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33611de4565b6112b1576040805162461bcd60e51b81526020600482015260248101919091527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20756e70617573656064820152608401610dae565b611211612849565b610ee483838360405180602001604052806000815250611fd7565b6112dd33611083565b6113425760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610dae565b61134b816128dc565b50565b6000611359600a5490565b82106113bc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610dae565b600a82815481106113dd57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600f546001600160a01b031633146114195760405162461bcd60e51b8152600401610dae90613f1c565b805161142c90601c9060208401906138ec565b5050565b6000818152600460205260408120546001600160a01b031680610c8d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610dae565b600f546001600160a01b031633146114d15760405162461bcd60e51b8152600401610dae90613f1c565b60005b81811015610ee45760016013600085858581811061150257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906115179190613a27565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061154981614082565b9150506114d4565b61157b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633611de4565b6115ed5760405162461bcd60e51b815260206004820152603d60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d7573742068617665206d696e74657220726f6c6520746f206d696e740000006064820152608401610dae565b6115ff816115fa600d5490565b612983565b61134b600d80546001019055565b6001600160a01b03811660009081526013602052604081205460ff161561163657506001919050565b506000919050565b60006001600160a01b0382166116a95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610dae565b506001600160a01b031660009081526005602052604090205490565b600f546001600160a01b031633146116ef5760405162461bcd60e51b8152600401610dae90613f1c565b6112116000612ac2565b601d805461170690614047565b80601f016020809104026020016040519081016040528092919081815260200182805461173290614047565b801561177f5780601f106117545761010080835404028352916020019161177f565b820191906000526020600020905b81548152906001019060200180831161176257829003601f168201915b505050505081565b600c5460ff16156117f45760405162461bcd60e51b815260206004820152603160248201527f436f6e7472616374207061757365642c206e6f204e4654732063616e2062652060448201527036b4b73a32b2103934b3b43a103737bb9760791b6064820152608401610dae565b600081116118145760405162461bcd60e51b8152600401610dae90613e49565b61181c611060565b8111156118915760405162461bcd60e51b815260206004820152603d60248201527f4e43546f6b656e3a20707572636861736520616d6f756e74206973206772656160448201527f746572207468616e2074686520746f6b656e20617661696c61626c65210000006064820152608401610dae565b6017548111156118fe5760405162461bcd60e51b815260206004820152603260248201527f4e43546f6b656e3a206d617820746f6b656e7320796f752063616e206d696e74604482015271206174206f6e63652065786365656465642160701b6064820152608401610dae565b600f546001600160a01b03163314611a1257601e5460ff61010090910416151560011415611a125761192f3361160d565b6119915760405162461bcd60e51b815260206004820152602d60248201527f55736572206973206e6f742077686974656c69737465642c207761697420666f60448201526c72207075626c69632073616c6560981b6064820152608401610dae565b336000908152601f60205260409020546018546119ae8383613fa2565b1115611a105760405162461bcd60e51b815260206004820152602b60248201527f4e46547320506572204164647265737320647572696e67207072652d73616c6560448201526a081a5cc81b1a5b5a5d195960aa1b6064820152608401610dae565b505b601454611a1f9082612b14565b3414611a785760405162461bcd60e51b815260206004820152602260248201527f4e43546f6b656e3a20696e73756666696369656e742045544820746f206d696e604482015261742160f01b6064820152608401610dae565b60005b81811015611ac457336000908152601f60205260408120805491611a9e83614082565b9190505550611ab2611aad3390565b612b20565b80611abc81614082565b915050611a7b565b506012546014546001600160a01b03909116906108fc90611ae59084612b14565b6040518115909202916000818181858888f1935050505015801561142c573d6000803e3d6000fd5b611b2560008051602061410a83398151915233611de4565b611b715760405162461bcd60e51b815260206004820152601b60248201527f4e433a2063616c6c6572206973206e6f7420616e2061646d696e2100000000006044820152606401610dae565b60008260ff1611611b945760405162461bcd60e51b8152600401610dae90613e49565b6000611b9e6122e7565b11611beb5760405162461bcd60e51b815260206004820152601f60248201527f4e43546f6b656e3a20416c6c2061646d696e20746f6b656e206d696e746564006044820152606401610dae565b611bf36122e7565b8260ff161115611c6b5760405162461bcd60e51b815260206004820152603b60248201527f4e43546f6b656e3a20546f6b656e2073686f756c64206265206c65737320746860448201527f616e2072656d61696e696e6720616d6f756e7420746f206d696e7400000000006064820152608401610dae565b601554611c9d57611c9060016110e1335b610504906001600160a01b03166001613fa2565b6019819055601655611ca9565b611ca5612bf2565b6019555b60005b8260ff16811015610ee457611cc082612b20565b601b8054906000611cd083614082565b91905055508080611ce090614082565b915050611cac565b611d127f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33611de4565b611d845760405162461bcd60e51b815260206004820152603e60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20706175736500006064820152608401610dae565b611211612c9a565b6000828152600160205260408120611da49083612d15565b9392505050565b611dc360008051602061410a83398151915233611de4565b611ddf5760405162461bcd60e51b8152600401610dae90613ee7565b601455565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b606060038054610ca290614047565b611e3460008051602061410a83398151915233611de4565b611e505760405162461bcd60e51b8152600401610dae90613ee7565b61134b60008051602061410a833981519152826122dd565b6001600160a01b038216331415611ec15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610dae565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f546001600160a01b03163314611f575760405162461bcd60e51b8152600401610dae90613f1c565b60005b81811015610ee457600060136000858585818110611f8857634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611f9d9190613a27565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611fcf81614082565b915050611f5a565b611fe133836124ff565b611ffd5760405162461bcd60e51b8152600401610dae90613f51565b61200984848484612d21565b50505050565b61202760008051602061410a83398151915233611de4565b6120435760405162461bcd60e51b8152600401610dae90613ee7565b61134b60008051602061410a833981519152826110b0565b600f546001600160a01b031633146120855760405162461bcd60e51b8152600401610dae90613f1c565b601755565b60606120958261245c565b6120f95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610dae565b6000828152601160205260408120805461211290614047565b80601f016020809104026020016040519081016040528092919081815260200182805461213e90614047565b801561218b5780601f106121605761010080835404028352916020019161218b565b820191906000526020600020905b81548152906001019060200180831161216e57829003601f168201915b50505050509050600061219c612d54565b601e5490915060ff1661223d57601d80546121b690614047565b80601f01602080910402602001604051908101604052809291908181526020018280546121e290614047565b801561222f5780601f106122045761010080835404028352916020019161222f565b820191906000526020600020905b81548152906001019060200180831161221257829003601f168201915b505050505092505050919050565b805161224a575092915050565b81511561227c578082604051602001612264929190613d55565b60405160208183030381529060405292505050919050565b8061228685612d63565b604051602001612264929190613d55565b6000818152600160205260408120610c8d90612e7d565b600f546001600160a01b031633146122d85760405162461bcd60e51b8152600401610dae90613f1c565b601855565b6111728282612e87565b6000611079601b5460966124f390919063ffffffff16565b600f546001600160a01b031633146123295760405162461bcd60e51b8152600401610dae90613f1c565b805161142c90601d9060208401906138ec565b600f546001600160a01b031633146123665760405162461bcd60e51b8152600401610dae90613f1c565b6001600160a01b0381166123cb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610dae565b61134b81612ac2565b600f546001600160a01b031633146123fe5760405162461bcd60e51b8152600401610dae90613f1c565b601e80549115156101000261ff0019909216919091179055565b61142c8282612ead565b6000611da4836001600160a01b038416612f31565b60006001600160e01b0319821663780e9d6360e01b1480610c8d5750610c8d82612f80565b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b03841690811790915581906124ae82611430565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611da4828461409d565b6000611da48284613fed565b600061250a8261245c565b61256b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610dae565b600061257683611430565b9050806001600160a01b0316846001600160a01b031614806125b15750836001600160a01b03166125a684610d46565b6001600160a01b0316145b806125e157506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166125fc82611430565b6001600160a01b0316146126645760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610dae565b6001600160a01b0382166126c65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610dae565b6126d1838383612fc0565b6126dc600082612479565b6001600160a01b0383166000908152600560205260408120805460019290612705908490613fed565b90915550506001600160a01b0382166000908152600560205260408120805460019290612733908490613fa2565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000828152602081905260409020600101546127b08133612fcb565b610ee48383612ead565b6001600160a01b038116331461282a5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610dae565b61142c828261302f565b6000611da4836001600160a01b038416613094565b600c5460ff166128925760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610dae565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60006128e782611430565b90506128f581600084612fc0565b612900600083612479565b6001600160a01b0381166000908152600560205260408120805460019290612929908490613fed565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0382166129d95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610dae565b6129e28161245c565b15612a2f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610dae565b612a3b60008383612fc0565b6001600160a01b0382166000908152600560205260408120805460019290612a64908490613fa2565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611da48284613fce565b601554612b4257612b3560016110e133611c7c565b6019819055601655612b4e565b612b4a612bf2565b6019555b60158054906000612b5e83614082565b9190505550612b6e60155461245c565b15612bd05760405162461bcd60e51b815260206004820152602c60248201527f4e43546f6b656e3a206f6e65206f6620746865736520746f6b656e7320616c7260448201526b65616479206578697374732160a01b6064820152608401610dae565b612bdc816015546131b1565b61134b601554612bed601954612d63565b6131cb565b6000612c016015546110e11490565b15612c5c5760405162461bcd60e51b815260206004820152602560248201527f4e43546f6b656e3a20616c6c20746f6b656e732068617665206265656e206d696044820152646e7465642160d81b6064820152608401610dae565b6110e1601954148015612c7257506110e1601554105b15612c7d5750600190565b6110e16015541015612c9757601954611079906001613fa2565b90565b600c5460ff1615612ce05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610dae565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586128bf3390565b6000611da48383613254565b612d2c8484846125e9565b612d388484848461328c565b6120095760405162461bcd60e51b8152600401610dae90613e95565b6060601c8054610ca290614047565b606081612d875750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612db15780612d9b81614082565b9150612daa9050600a83613fba565b9150612d8b565b60008167ffffffffffffffff811115612dda57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e04576020820181803683370190505b5090505b84156125e157612e19600183613fed565b9150612e26600a8661409d565b612e31906030613fa2565b60f81b818381518110612e5457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612e76600a86613fba565b9450612e08565b6000610c8d825490565b600082815260208190526040902060010154612ea38133612fcb565b610ee4838361302f565b612eb78282611de4565b61142c576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055612eed3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054612f7857508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610c8d565b506000610c8d565b60006001600160e01b031982166380ac58cd60e01b1480612fb157506001600160e01b03198216635b5e139f60e01b145b80610c8d5750610c8d82613399565b610ee48383836133be565b612fd58282611de4565b61142c57612fed816001600160a01b03166014613430565b612ff8836020613430565b604051602001613009929190613d84565b60408051601f198184030181529082905262461bcd60e51b8252610dae91600401613e36565b6130398282611de4565b1561142c576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156131a75760006130b8600183613fed565b85549091506000906130cc90600190613fed565b905081811461314d5760008660000182815481106130fa57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508087600001848154811061312b57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061316c57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610c8d565b6000915050610c8d565b61142c828260405180602001604052806000815250613612565b6131d48261245c565b6132355760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610dae565b60008281526011602090815260409091208251610ee4928401906138ec565b600082600001828154811061327957634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60006001600160a01b0384163b1561338e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906132d0903390899088908890600401613df9565b602060405180830381600087803b1580156132ea57600080fd5b505af192505050801561331a575060408051601f3d908101601f1916820190925261331791810190613c7a565b60015b613374573d808015613348576040519150601f19603f3d011682016040523d82523d6000602084013e61334d565b606091505b50805161336c5760405162461bcd60e51b8152600401610dae90613e95565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506125e1565b506001949350505050565b60006001600160e01b03198216635a05180f60e01b1480610c8d5750610c8d82613645565b6133c983838361367a565b600c5460ff1615610ee45760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610dae565b6060600061343f836002613fce565b61344a906002613fa2565b67ffffffffffffffff81111561347057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561349a576020820181803683370190505b509050600360fc1b816000815181106134c357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061350057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000613524846002613fce565b61352f906001613fa2565b90505b60018111156135c3576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061357157634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061359557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936135bc81614030565b9050613532565b508315611da45760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610dae565b61361c8383612983565b613629600084848461328c565b610ee45760405162461bcd60e51b8152600401610dae90613e95565b60006001600160e01b03198216637965db0b60e01b1480610c8d57506301ffc9a760e01b6001600160e01b0319831614610c8d565b6001600160a01b0383166136d5576136d081600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b6136f8565b816001600160a01b0316836001600160a01b0316146136f8576136f88382613732565b6001600160a01b03821661370f57610ee4816137cf565b826001600160a01b0316826001600160a01b031614610ee457610ee482826138a8565b6000600161373f8461163e565b6137499190613fed565b60008381526009602052604090205490915080821461379c576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a546000906137e190600190613fed565b6000838152600b6020526040812054600a805493945090928490811061381757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600a838154811061384657634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061388c57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006138b38361163e565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b8280546138f890614047565b90600052602060002090601f01602090048101928261391a5760008555613960565b82601f1061393357805160ff1916838001178555613960565b82800160010185558215613960579182015b82811115613960578251825591602001919060010190613945565b5061396c929150613970565b5090565b5b8082111561396c5760008155600101613971565b600067ffffffffffffffff808411156139a0576139a06140dd565b604051601f8501601f19908116603f011681019082821181831017156139c8576139c86140dd565b816040528093508581528686860111156139e157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114613a1257600080fd5b919050565b80358015158114613a1257600080fd5b600060208284031215613a38578081fd5b611da4826139fb565b60008060408385031215613a53578081fd5b613a5c836139fb565b9150613a6a602084016139fb565b90509250929050565b600080600060608486031215613a87578081fd5b613a90846139fb565b9250613a9e602085016139fb565b9150604084013590509250925092565b60008060008060808587031215613ac3578081fd5b613acc856139fb565b9350613ada602086016139fb565b925060408501359150606085013567ffffffffffffffff811115613afc578182fd5b8501601f81018713613b0c578182fd5b613b1b87823560208401613985565b91505092959194509250565b60008060408385031215613b39578182fd5b613b42836139fb565b9150613a6a60208401613a17565b60008060408385031215613b62578182fd5b613b6b836139fb565b946020939093013593505050565b60008060208385031215613b8b578182fd5b823567ffffffffffffffff80821115613ba2578384fd5b818501915085601f830112613bb5578384fd5b813581811115613bc3578485fd5b8660208260051b8501011115613bd7578485fd5b60209290920196919550909350505050565b600060208284031215613bfa578081fd5b611da482613a17565b600060208284031215613c14578081fd5b5035919050565b60008060408385031215613c2d578182fd5b82359150613a6a602084016139fb565b60008060408385031215613c4f578182fd5b50508035926020909101359150565b600060208284031215613c6f578081fd5b8135611da4816140f3565b600060208284031215613c8b578081fd5b8151611da4816140f3565b600060208284031215613ca7578081fd5b813567ffffffffffffffff811115613cbd578182fd5b8201601f81018413613ccd578182fd5b6125e184823560208401613985565b600080600060608486031215613cf0578081fd5b505081359360208301359350604090920135919050565b60008060408385031215613d19578182fd5b823560ff81168114613a5c578283fd5b60008151808452613d41816020860160208601614004565b601f01601f19169290920160200192915050565b60008351613d67818460208801614004565b835190830190613d7b818360208801614004565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613dbc816017850160208801614004565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613ded816028840160208801614004565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613e2c90830184613d29565b9695505050505050565b602081526000611da46020830184613d29565b6020808252602c908201527f4e43546f6b656e3a206d696e696d756d203120746f6b656e73206e656564207460408201526b6f206265206d696e7465642160a01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4e43546f6b656e3a2063616c6c6572206973206e6f7420616e2061646d696e21604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115613fb557613fb56140b1565b500190565b600082613fc957613fc96140c7565b500490565b6000816000190483118215151615613fe857613fe86140b1565b500290565b600082821015613fff57613fff6140b1565b500390565b60005b8381101561401f578181015183820152602001614007565b838111156120095750506000910152565b60008161403f5761403f6140b1565b506000190190565b600181811c9082168061405b57607f821691505b6020821081141561407c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415614096576140966140b1565b5060010190565b6000826140ac576140ac6140c7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461134b57600080fdfea49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a2646970667358221220fc284bfc30d1f9fdcc130945cfd8caa5cef82663da6fa15a25e3ae9be40cd2eb64736f6c634300080400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000002200000000000000000000000003051f93e2f7a946b404bbf7ce7d7b0426fafb77000000000000000000000000000000000000000000000000000d529ae9e86000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000094e6f76614372656564000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024e43000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f6e6f766163726565646e66742e6d7970696e6174612e636c6f75642f697066732f516d5357674d56464a6b59636a6a567a436b7a796a4a755158446d696943387155374d31344b79725567614d69562f0000000000000000000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f6e6f766163726565646e66742e6d7970696e6174612e636c6f75642f697066732f516d52706e477641763172587058433846425a755350486e4c57464274555264673962444e455475634e48516f372f0000000000000000
Deployed Bytecode
0x6080604052600436106104055760003560e01c80637e1f2bb811610213578063b2e1311111610123578063d5391393116100ab578063ea723d431161007a578063ea723d4314610bf7578063f2c4ce1e14610c0c578063f2fde38b14610c2c578063f958a65714610c4c578063fd15ec5814610c6c57600080fd5b8063d539139314610b26578063d547741f14610b5a578063e63ab1e914610b7a578063e985e9c514610bae57600080fd5b8063c6a7f43a116100f2578063c6a7f43a14610a90578063c87b56dd14610ab0578063ca15c87314610ad0578063d0eb26b014610af0578063d221ca7b14610b1057600080fd5b8063b2e1311114610a1a578063b88d4fde14610a3a578063ba7d2c7614610a5a578063c634b78e14610a7057600080fd5b806391d14854116101a65780639b19251a116101755780639b19251a14610986578063a035b1fe146109b6578063a217fddf146109cc578063a22cb465146109e1578063a760a29f14610a0157600080fd5b806391d148541461091c57806395d89b411461093c57806398da7446146109515780639a19c7b01461096657600080fd5b80638da5cb5b116101e25780638da5cb5b146108a85780638db02a5c146108c65780639010d07c146108dc57806391b7f5ed146108fc57600080fd5b80637e1f2bb81461084a578063815829981461085d5780638456cb591461087d5780638d75fe051461089257600080fd5b80633f4ba83a116103195780636329d9ac116102a15780636f9170f6116102705780636f9170f6146107be57806370a08231146107de578063715018a6146107fe578063722503801461081357806375b238fc1461082857600080fd5b80636329d9ac146107485780636352211e1461075e578063686b28121461077e5780636a6278421461079e57600080fd5b80634b94f50e116102e85780634b94f50e146106c15780634f6ccce7146106d657806351830227146106f657806355f804b3146107105780635c975abb1461073057600080fd5b80633f4ba83a1461064d5780634146ed0a1461066257806342842e0e1461068157806342966c68146106a157600080fd5b80631fa6602a1161039c5780632f745c591161036b5780632f745c59146105c35780633406c726146105e357806336568abe146106105780633bd64968146106305780633ccfd60b1461064557600080fd5b80631fa6602a1461053e57806323b872dd14610553578063248a9ca3146105735780632f2ff15d146105a357600080fd5b8063095ea7b3116103d8578063095ea7b3146104c75780630d9b7764146104e957806318160ddd146105095780631f86dd911461051e57600080fd5b806301ffc9a71461040a57806306fdde031461043f57806307b8d9a514610461578063081812fc1461048f575b600080fd5b34801561041657600080fd5b5061042a610425366004613c5e565b610c82565b60405190151581526020015b60405180910390f35b34801561044b57600080fd5b50610454610c93565b6040516104369190613e36565b34801561046d57600080fd5b5061048161047c366004613c03565b610d25565b604051908152602001610436565b34801561049b57600080fd5b506104af6104aa366004613c03565b610d46565b6040516001600160a01b039091168152602001610436565b3480156104d357600080fd5b506104e76104e2366004613b50565b610dd3565b005b3480156104f557600080fd5b50610481610504366004613cdc565b610ee9565b34801561051557600080fd5b50600a54610481565b34801561052a57600080fd5b506104e7610539366004613a27565b61100a565b34801561054a57600080fd5b50610481611060565b34801561055f57600080fd5b506104e761056e366004613a73565b61107e565b34801561057f57600080fd5b5061048161058e366004613c03565b60009081526020819052604090206001015490565b3480156105af57600080fd5b506104e76105be366004613c1b565b6110b0565b3480156105cf57600080fd5b506104816105de366004613b50565b6110d2565b3480156105ef57600080fd5b506104816105fe366004613a27565b601f6020526000908152604090205481565b34801561061c57600080fd5b506104e761062b366004613c1b565b611168565b34801561063c57600080fd5b506104e761118a565b6104e76111c3565b34801561065957600080fd5b506104e7611213565b34801561066e57600080fd5b50601e5461042a90610100900460ff1681565b34801561068d57600080fd5b506104e761069c366004613a73565b6112b9565b3480156106ad57600080fd5b506104e76106bc366004613c03565b6112d4565b3480156106cd57600080fd5b50601454610481565b3480156106e257600080fd5b506104816106f1366004613c03565b61134e565b34801561070257600080fd5b50601e5461042a9060ff1681565b34801561071c57600080fd5b506104e761072b366004613c96565b6113ef565b34801561073c57600080fd5b50600c5460ff1661042a565b34801561075457600080fd5b50610481601b5481565b34801561076a57600080fd5b506104af610779366004613c03565b611430565b34801561078a57600080fd5b506104e7610799366004613b79565b6114a7565b3480156107aa57600080fd5b506104e76107b9366004613a27565b611551565b3480156107ca57600080fd5b5061042a6107d9366004613a27565b61160d565b3480156107ea57600080fd5b506104816107f9366004613a27565b61163e565b34801561080a57600080fd5b506104e76116c5565b34801561081f57600080fd5b506104546116f9565b34801561083457600080fd5b5061048160008051602061410a83398151915281565b6104e7610858366004613c03565b611787565b34801561086957600080fd5b506104e7610878366004613d07565b611b0d565b34801561088957600080fd5b506104e7611ce8565b34801561089e57600080fd5b5061048160155481565b3480156108b457600080fd5b50600f546001600160a01b03166104af565b3480156108d257600080fd5b5061048160165481565b3480156108e857600080fd5b506104af6108f7366004613c3d565b611d8c565b34801561090857600080fd5b506104e7610917366004613c03565b611dab565b34801561092857600080fd5b5061042a610937366004613c1b565b611de4565b34801561094857600080fd5b50610454611e0d565b34801561095d57600080fd5b50610481609681565b34801561097257600080fd5b506104e7610981366004613a27565b611e1c565b34801561099257600080fd5b5061042a6109a1366004613a27565b60136020526000908152604090205460ff1681565b3480156109c257600080fd5b5061048160145481565b3480156109d857600080fd5b50610481600081565b3480156109ed57600080fd5b506104e76109fc366004613b27565b611e68565b348015610a0d57600080fd5b506015546110e11461042a565b348015610a2657600080fd5b506104e7610a35366004613b79565b611f2d565b348015610a4657600080fd5b506104e7610a55366004613aae565b611fd7565b348015610a6657600080fd5b5061048160185481565b348015610a7c57600080fd5b506104e7610a8b366004613a27565b61200f565b348015610a9c57600080fd5b506104e7610aab366004613c03565b61205b565b348015610abc57600080fd5b50610454610acb366004613c03565b61208a565b348015610adc57600080fd5b50610481610aeb366004613c03565b612297565b348015610afc57600080fd5b506104e7610b0b366004613c03565b6122ae565b348015610b1c57600080fd5b5061048160175481565b348015610b3257600080fd5b506104817f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b348015610b6657600080fd5b506104e7610b75366004613c1b565b6122dd565b348015610b8657600080fd5b506104817f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b348015610bba57600080fd5b5061042a610bc9366004613a41565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610c0357600080fd5b506104816122e7565b348015610c1857600080fd5b506104e7610c27366004613c96565b6122ff565b348015610c3857600080fd5b506104e7610c47366004613a27565b61233c565b348015610c5857600080fd5b506104e7610c67366004613be9565b6123d4565b348015610c7857600080fd5b506104816110e181565b6000610c8d82612437565b92915050565b606060028054610ca290614047565b80601f0160208091040260200160405190810160405280929190818152602001828054610cce90614047565b8015610d1b5780601f10610cf057610100808354040283529160200191610d1b565b820191906000526020600020905b815481529060010190602001808311610cfe57829003601f168201915b5050505050905090565b601a8181548110610d3557600080fd5b600091825260209091200154905081565b6000610d518261245c565b610db75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610dde82611430565b9050806001600160a01b0316836001600160a01b03161415610e4c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610dae565b336001600160a01b0382161480610e685750610e688133610bc9565b610eda5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610dae565b610ee48383612479565b505050565b6040516bffffffffffffffffffffffff193360601b16602082015260009081908390439042906034016040516020818303038152906040528051906020012060001c610f359190613fba565b6040516bffffffffffffffffffffffff194160601b166020820152459042906034016040516020818303038152906040528051906020012060001c610f7a9190613fba565b610f844442613fa2565b610f8e9190613fa2565b610f989190613fa2565b610fa29190613fa2565b610fac9190613fa2565b610fb69190613fa2565b604051602001610fc891815260200190565b60408051601f198184030181529190528051602090910120905084610ff7610ff08287613fed565b83906124e7565b6110019190613fa2565b95945050505050565b61102260008051602061410a83398151915233611de4565b61103e5760405162461bcd60e51b8152600401610dae90613ee7565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b60006110796015546110e16124f390919063ffffffff16565b905090565b611089335b826124ff565b6110a55760405162461bcd60e51b8152600401610dae90613f51565b610ee48383836125e9565b6110ba8282612794565b6000828152600160205260409020610ee49082612422565b60006110dd8361163e565b821061113f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610dae565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b61117282826127ba565b6000828152600160205260409020610ee49082612834565b600f546001600160a01b031633146111b45760405162461bcd60e51b8152600401610dae90613f1c565b601e805460ff19166001179055565b600f546001600160a01b031633146111ed5760405162461bcd60e51b8152600401610dae90613f1c565b60405133904780156108fc02916000818181858888f1935050505061121157600080fd5b565b61123d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33611de4565b6112b1576040805162461bcd60e51b81526020600482015260248101919091527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20756e70617573656064820152608401610dae565b611211612849565b610ee483838360405180602001604052806000815250611fd7565b6112dd33611083565b6113425760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610dae565b61134b816128dc565b50565b6000611359600a5490565b82106113bc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610dae565b600a82815481106113dd57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600f546001600160a01b031633146114195760405162461bcd60e51b8152600401610dae90613f1c565b805161142c90601c9060208401906138ec565b5050565b6000818152600460205260408120546001600160a01b031680610c8d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610dae565b600f546001600160a01b031633146114d15760405162461bcd60e51b8152600401610dae90613f1c565b60005b81811015610ee45760016013600085858581811061150257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906115179190613a27565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061154981614082565b9150506114d4565b61157b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633611de4565b6115ed5760405162461bcd60e51b815260206004820152603d60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d7573742068617665206d696e74657220726f6c6520746f206d696e740000006064820152608401610dae565b6115ff816115fa600d5490565b612983565b61134b600d80546001019055565b6001600160a01b03811660009081526013602052604081205460ff161561163657506001919050565b506000919050565b60006001600160a01b0382166116a95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610dae565b506001600160a01b031660009081526005602052604090205490565b600f546001600160a01b031633146116ef5760405162461bcd60e51b8152600401610dae90613f1c565b6112116000612ac2565b601d805461170690614047565b80601f016020809104026020016040519081016040528092919081815260200182805461173290614047565b801561177f5780601f106117545761010080835404028352916020019161177f565b820191906000526020600020905b81548152906001019060200180831161176257829003601f168201915b505050505081565b600c5460ff16156117f45760405162461bcd60e51b815260206004820152603160248201527f436f6e7472616374207061757365642c206e6f204e4654732063616e2062652060448201527036b4b73a32b2103934b3b43a103737bb9760791b6064820152608401610dae565b600081116118145760405162461bcd60e51b8152600401610dae90613e49565b61181c611060565b8111156118915760405162461bcd60e51b815260206004820152603d60248201527f4e43546f6b656e3a20707572636861736520616d6f756e74206973206772656160448201527f746572207468616e2074686520746f6b656e20617661696c61626c65210000006064820152608401610dae565b6017548111156118fe5760405162461bcd60e51b815260206004820152603260248201527f4e43546f6b656e3a206d617820746f6b656e7320796f752063616e206d696e74604482015271206174206f6e63652065786365656465642160701b6064820152608401610dae565b600f546001600160a01b03163314611a1257601e5460ff61010090910416151560011415611a125761192f3361160d565b6119915760405162461bcd60e51b815260206004820152602d60248201527f55736572206973206e6f742077686974656c69737465642c207761697420666f60448201526c72207075626c69632073616c6560981b6064820152608401610dae565b336000908152601f60205260409020546018546119ae8383613fa2565b1115611a105760405162461bcd60e51b815260206004820152602b60248201527f4e46547320506572204164647265737320647572696e67207072652d73616c6560448201526a081a5cc81b1a5b5a5d195960aa1b6064820152608401610dae565b505b601454611a1f9082612b14565b3414611a785760405162461bcd60e51b815260206004820152602260248201527f4e43546f6b656e3a20696e73756666696369656e742045544820746f206d696e604482015261742160f01b6064820152608401610dae565b60005b81811015611ac457336000908152601f60205260408120805491611a9e83614082565b9190505550611ab2611aad3390565b612b20565b80611abc81614082565b915050611a7b565b506012546014546001600160a01b03909116906108fc90611ae59084612b14565b6040518115909202916000818181858888f1935050505015801561142c573d6000803e3d6000fd5b611b2560008051602061410a83398151915233611de4565b611b715760405162461bcd60e51b815260206004820152601b60248201527f4e433a2063616c6c6572206973206e6f7420616e2061646d696e2100000000006044820152606401610dae565b60008260ff1611611b945760405162461bcd60e51b8152600401610dae90613e49565b6000611b9e6122e7565b11611beb5760405162461bcd60e51b815260206004820152601f60248201527f4e43546f6b656e3a20416c6c2061646d696e20746f6b656e206d696e746564006044820152606401610dae565b611bf36122e7565b8260ff161115611c6b5760405162461bcd60e51b815260206004820152603b60248201527f4e43546f6b656e3a20546f6b656e2073686f756c64206265206c65737320746860448201527f616e2072656d61696e696e6720616d6f756e7420746f206d696e7400000000006064820152608401610dae565b601554611c9d57611c9060016110e1335b610504906001600160a01b03166001613fa2565b6019819055601655611ca9565b611ca5612bf2565b6019555b60005b8260ff16811015610ee457611cc082612b20565b601b8054906000611cd083614082565b91905055508080611ce090614082565b915050611cac565b611d127f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33611de4565b611d845760405162461bcd60e51b815260206004820152603e60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20706175736500006064820152608401610dae565b611211612c9a565b6000828152600160205260408120611da49083612d15565b9392505050565b611dc360008051602061410a83398151915233611de4565b611ddf5760405162461bcd60e51b8152600401610dae90613ee7565b601455565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b606060038054610ca290614047565b611e3460008051602061410a83398151915233611de4565b611e505760405162461bcd60e51b8152600401610dae90613ee7565b61134b60008051602061410a833981519152826122dd565b6001600160a01b038216331415611ec15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610dae565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f546001600160a01b03163314611f575760405162461bcd60e51b8152600401610dae90613f1c565b60005b81811015610ee457600060136000858585818110611f8857634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611f9d9190613a27565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611fcf81614082565b915050611f5a565b611fe133836124ff565b611ffd5760405162461bcd60e51b8152600401610dae90613f51565b61200984848484612d21565b50505050565b61202760008051602061410a83398151915233611de4565b6120435760405162461bcd60e51b8152600401610dae90613ee7565b61134b60008051602061410a833981519152826110b0565b600f546001600160a01b031633146120855760405162461bcd60e51b8152600401610dae90613f1c565b601755565b60606120958261245c565b6120f95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610dae565b6000828152601160205260408120805461211290614047565b80601f016020809104026020016040519081016040528092919081815260200182805461213e90614047565b801561218b5780601f106121605761010080835404028352916020019161218b565b820191906000526020600020905b81548152906001019060200180831161216e57829003601f168201915b50505050509050600061219c612d54565b601e5490915060ff1661223d57601d80546121b690614047565b80601f01602080910402602001604051908101604052809291908181526020018280546121e290614047565b801561222f5780601f106122045761010080835404028352916020019161222f565b820191906000526020600020905b81548152906001019060200180831161221257829003601f168201915b505050505092505050919050565b805161224a575092915050565b81511561227c578082604051602001612264929190613d55565b60405160208183030381529060405292505050919050565b8061228685612d63565b604051602001612264929190613d55565b6000818152600160205260408120610c8d90612e7d565b600f546001600160a01b031633146122d85760405162461bcd60e51b8152600401610dae90613f1c565b601855565b6111728282612e87565b6000611079601b5460966124f390919063ffffffff16565b600f546001600160a01b031633146123295760405162461bcd60e51b8152600401610dae90613f1c565b805161142c90601d9060208401906138ec565b600f546001600160a01b031633146123665760405162461bcd60e51b8152600401610dae90613f1c565b6001600160a01b0381166123cb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610dae565b61134b81612ac2565b600f546001600160a01b031633146123fe5760405162461bcd60e51b8152600401610dae90613f1c565b601e80549115156101000261ff0019909216919091179055565b61142c8282612ead565b6000611da4836001600160a01b038416612f31565b60006001600160e01b0319821663780e9d6360e01b1480610c8d5750610c8d82612f80565b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b03841690811790915581906124ae82611430565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611da4828461409d565b6000611da48284613fed565b600061250a8261245c565b61256b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610dae565b600061257683611430565b9050806001600160a01b0316846001600160a01b031614806125b15750836001600160a01b03166125a684610d46565b6001600160a01b0316145b806125e157506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166125fc82611430565b6001600160a01b0316146126645760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610dae565b6001600160a01b0382166126c65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610dae565b6126d1838383612fc0565b6126dc600082612479565b6001600160a01b0383166000908152600560205260408120805460019290612705908490613fed565b90915550506001600160a01b0382166000908152600560205260408120805460019290612733908490613fa2565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000828152602081905260409020600101546127b08133612fcb565b610ee48383612ead565b6001600160a01b038116331461282a5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610dae565b61142c828261302f565b6000611da4836001600160a01b038416613094565b600c5460ff166128925760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610dae565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60006128e782611430565b90506128f581600084612fc0565b612900600083612479565b6001600160a01b0381166000908152600560205260408120805460019290612929908490613fed565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0382166129d95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610dae565b6129e28161245c565b15612a2f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610dae565b612a3b60008383612fc0565b6001600160a01b0382166000908152600560205260408120805460019290612a64908490613fa2565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611da48284613fce565b601554612b4257612b3560016110e133611c7c565b6019819055601655612b4e565b612b4a612bf2565b6019555b60158054906000612b5e83614082565b9190505550612b6e60155461245c565b15612bd05760405162461bcd60e51b815260206004820152602c60248201527f4e43546f6b656e3a206f6e65206f6620746865736520746f6b656e7320616c7260448201526b65616479206578697374732160a01b6064820152608401610dae565b612bdc816015546131b1565b61134b601554612bed601954612d63565b6131cb565b6000612c016015546110e11490565b15612c5c5760405162461bcd60e51b815260206004820152602560248201527f4e43546f6b656e3a20616c6c20746f6b656e732068617665206265656e206d696044820152646e7465642160d81b6064820152608401610dae565b6110e1601954148015612c7257506110e1601554105b15612c7d5750600190565b6110e16015541015612c9757601954611079906001613fa2565b90565b600c5460ff1615612ce05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610dae565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586128bf3390565b6000611da48383613254565b612d2c8484846125e9565b612d388484848461328c565b6120095760405162461bcd60e51b8152600401610dae90613e95565b6060601c8054610ca290614047565b606081612d875750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612db15780612d9b81614082565b9150612daa9050600a83613fba565b9150612d8b565b60008167ffffffffffffffff811115612dda57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e04576020820181803683370190505b5090505b84156125e157612e19600183613fed565b9150612e26600a8661409d565b612e31906030613fa2565b60f81b818381518110612e5457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612e76600a86613fba565b9450612e08565b6000610c8d825490565b600082815260208190526040902060010154612ea38133612fcb565b610ee4838361302f565b612eb78282611de4565b61142c576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055612eed3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054612f7857508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610c8d565b506000610c8d565b60006001600160e01b031982166380ac58cd60e01b1480612fb157506001600160e01b03198216635b5e139f60e01b145b80610c8d5750610c8d82613399565b610ee48383836133be565b612fd58282611de4565b61142c57612fed816001600160a01b03166014613430565b612ff8836020613430565b604051602001613009929190613d84565b60408051601f198184030181529082905262461bcd60e51b8252610dae91600401613e36565b6130398282611de4565b1561142c576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156131a75760006130b8600183613fed565b85549091506000906130cc90600190613fed565b905081811461314d5760008660000182815481106130fa57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508087600001848154811061312b57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061316c57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610c8d565b6000915050610c8d565b61142c828260405180602001604052806000815250613612565b6131d48261245c565b6132355760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610dae565b60008281526011602090815260409091208251610ee4928401906138ec565b600082600001828154811061327957634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60006001600160a01b0384163b1561338e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906132d0903390899088908890600401613df9565b602060405180830381600087803b1580156132ea57600080fd5b505af192505050801561331a575060408051601f3d908101601f1916820190925261331791810190613c7a565b60015b613374573d808015613348576040519150601f19603f3d011682016040523d82523d6000602084013e61334d565b606091505b50805161336c5760405162461bcd60e51b8152600401610dae90613e95565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506125e1565b506001949350505050565b60006001600160e01b03198216635a05180f60e01b1480610c8d5750610c8d82613645565b6133c983838361367a565b600c5460ff1615610ee45760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610dae565b6060600061343f836002613fce565b61344a906002613fa2565b67ffffffffffffffff81111561347057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561349a576020820181803683370190505b509050600360fc1b816000815181106134c357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061350057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000613524846002613fce565b61352f906001613fa2565b90505b60018111156135c3576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061357157634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061359557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936135bc81614030565b9050613532565b508315611da45760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610dae565b61361c8383612983565b613629600084848461328c565b610ee45760405162461bcd60e51b8152600401610dae90613e95565b60006001600160e01b03198216637965db0b60e01b1480610c8d57506301ffc9a760e01b6001600160e01b0319831614610c8d565b6001600160a01b0383166136d5576136d081600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b6136f8565b816001600160a01b0316836001600160a01b0316146136f8576136f88382613732565b6001600160a01b03821661370f57610ee4816137cf565b826001600160a01b0316826001600160a01b031614610ee457610ee482826138a8565b6000600161373f8461163e565b6137499190613fed565b60008381526009602052604090205490915080821461379c576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a546000906137e190600190613fed565b6000838152600b6020526040812054600a805493945090928490811061381757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600a838154811061384657634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061388c57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006138b38361163e565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b8280546138f890614047565b90600052602060002090601f01602090048101928261391a5760008555613960565b82601f1061393357805160ff1916838001178555613960565b82800160010185558215613960579182015b82811115613960578251825591602001919060010190613945565b5061396c929150613970565b5090565b5b8082111561396c5760008155600101613971565b600067ffffffffffffffff808411156139a0576139a06140dd565b604051601f8501601f19908116603f011681019082821181831017156139c8576139c86140dd565b816040528093508581528686860111156139e157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114613a1257600080fd5b919050565b80358015158114613a1257600080fd5b600060208284031215613a38578081fd5b611da4826139fb565b60008060408385031215613a53578081fd5b613a5c836139fb565b9150613a6a602084016139fb565b90509250929050565b600080600060608486031215613a87578081fd5b613a90846139fb565b9250613a9e602085016139fb565b9150604084013590509250925092565b60008060008060808587031215613ac3578081fd5b613acc856139fb565b9350613ada602086016139fb565b925060408501359150606085013567ffffffffffffffff811115613afc578182fd5b8501601f81018713613b0c578182fd5b613b1b87823560208401613985565b91505092959194509250565b60008060408385031215613b39578182fd5b613b42836139fb565b9150613a6a60208401613a17565b60008060408385031215613b62578182fd5b613b6b836139fb565b946020939093013593505050565b60008060208385031215613b8b578182fd5b823567ffffffffffffffff80821115613ba2578384fd5b818501915085601f830112613bb5578384fd5b813581811115613bc3578485fd5b8660208260051b8501011115613bd7578485fd5b60209290920196919550909350505050565b600060208284031215613bfa578081fd5b611da482613a17565b600060208284031215613c14578081fd5b5035919050565b60008060408385031215613c2d578182fd5b82359150613a6a602084016139fb565b60008060408385031215613c4f578182fd5b50508035926020909101359150565b600060208284031215613c6f578081fd5b8135611da4816140f3565b600060208284031215613c8b578081fd5b8151611da4816140f3565b600060208284031215613ca7578081fd5b813567ffffffffffffffff811115613cbd578182fd5b8201601f81018413613ccd578182fd5b6125e184823560208401613985565b600080600060608486031215613cf0578081fd5b505081359360208301359350604090920135919050565b60008060408385031215613d19578182fd5b823560ff81168114613a5c578283fd5b60008151808452613d41816020860160208601614004565b601f01601f19169290920160200192915050565b60008351613d67818460208801614004565b835190830190613d7b818360208801614004565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613dbc816017850160208801614004565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613ded816028840160208801614004565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613e2c90830184613d29565b9695505050505050565b602081526000611da46020830184613d29565b6020808252602c908201527f4e43546f6b656e3a206d696e696d756d203120746f6b656e73206e656564207460408201526b6f206265206d696e7465642160a01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4e43546f6b656e3a2063616c6c6572206973206e6f7420616e2061646d696e21604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115613fb557613fb56140b1565b500190565b600082613fc957613fc96140c7565b500490565b6000816000190483118215151615613fe857613fe86140b1565b500290565b600082821015613fff57613fff6140b1565b500390565b60005b8381101561401f578181015183820152602001614007565b838111156120095750506000910152565b60008161403f5761403f6140b1565b506000190190565b600181811c9082168061405b57607f821691505b6020821081141561407c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415614096576140966140b1565b5060010190565b6000826140ac576140ac6140c7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461134b57600080fdfea49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a2646970667358221220fc284bfc30d1f9fdcc130945cfd8caa5cef82663da6fa15a25e3ae9be40cd2eb64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000002200000000000000000000000003051f93e2f7a946b404bbf7ce7d7b0426fafb77000000000000000000000000000000000000000000000000000d529ae9e86000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000094e6f76614372656564000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024e43000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f6e6f766163726565646e66742e6d7970696e6174612e636c6f75642f697066732f516d5357674d56464a6b59636a6a567a436b7a796a4a755158446d696943387155374d31344b79725567614d69562f0000000000000000000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f6e6f766163726565646e66742e6d7970696e6174612e636c6f75642f697066732f516d52706e477641763172587058433846425a755350486e4c57464274555264673962444e455475634e48516f372f0000000000000000
-----Decoded View---------------
Arg [0] : _name (string): NovaCreed
Arg [1] : _symbol (string): NC
Arg [2] : _initBaseURI (string): https://novacreednft.mypinata.cloud/ipfs/QmSWgMVFJkYcjjVzCkzyjJuQXDmiiC8qU7M14KyrUgaMiV/
Arg [3] : _initNotRevealedURI (string): https://novacreednft.mypinata.cloud/ipfs/QmRpnGvAv1rXpXC8FBZuSPHnLWFBtURdg9bDNETucNHQo7/
Arg [4] : _admin (address): 0x3051f93E2f7a946B404bBf7CE7D7B0426FaFB770
Arg [5] : _mintPrice (uint256): 60000000000000000
Arg [6] : _howMany (uint256): 18
Arg [7] : _nftPerAddessLimit (uint256): 6
Arg [8] : _isWhitelist (bool): True
-----Encoded View---------------
21 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [4] : 0000000000000000000000003051f93e2f7a946b404bbf7ce7d7b0426fafb770
Arg [5] : 00000000000000000000000000000000000000000000000000d529ae9e860000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [10] : 4e6f766143726565640000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 4e43000000000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000058
Arg [14] : 68747470733a2f2f6e6f766163726565646e66742e6d7970696e6174612e636c
Arg [15] : 6f75642f697066732f516d5357674d56464a6b59636a6a567a436b7a796a4a75
Arg [16] : 5158446d696943387155374d31344b79725567614d69562f0000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000058
Arg [18] : 68747470733a2f2f6e6f766163726565646e66742e6d7970696e6174612e636c
Arg [19] : 6f75642f697066732f516d52706e477641763172587058433846425a75535048
Arg [20] : 6e4c57464274555264673962444e455475634e48516f372f0000000000000000
Deployed Bytecode Sourcemap
86249:10183:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85887:254;;;;;;;;;;-1:-1:-1;85887:254:0;;;;;:::i;:::-;;:::i;:::-;;;9611:14:1;;9604:22;9586:41;;9574:2;9559:18;85887:254:0;;;;;;;;62219:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;86972:32::-;;;;;;;;;;-1:-1:-1;86972:32:0;;;;;:::i;:::-;;:::i;:::-;;;9784:25:1;;;9772:2;9757:18;86972:32:0;9739:76:1;63778:221:0;;;;;;;;;;-1:-1:-1;63778:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8909:32:1;;;8891:51;;8879:2;8864:18;63778:221:0;8846:102:1;63301:411:0;;;;;;;;;;-1:-1:-1;63301:411:0;;;;;:::i;:::-;;:::i;:::-;;91120:801;;;;;;;;;;-1:-1:-1;91120:801:0;;;;;:::i;:::-;;:::i;76557:113::-;;;;;;;;;;-1:-1:-1;76645:10:0;:17;76557:113;;93274:243;;;;;;;;;;-1:-1:-1;93274:243:0;;;;;:::i;:::-;;:::i;89386:127::-;;;;;;;;;;;;;:::i;64668:339::-;;;;;;;;;;-1:-1:-1;64668:339:0;;;;;:::i;:::-;;:::i;47296:123::-;;;;;;;;;;-1:-1:-1;47296:123:0;;;;;:::i;:::-;47362:7;47389:12;;;;;;;;;;:22;;;;47296:123;52358:196;;;;;;;;;;-1:-1:-1;52358:196:0;;;;;:::i;:::-;;:::i;76225:256::-;;;;;;;;;;-1:-1:-1;76225:256:0;;;;;:::i;:::-;;:::i;87237:53::-;;;;;;;;;;-1:-1:-1;87237:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;52943:205;;;;;;;;;;-1:-1:-1;52943:205:0;;;;;:::i;:::-;;:::i;93644:76::-;;;;;;;;;;;;;:::i;96311:118::-;;;:::i;85383:185::-;;;;;;;;;;;;;:::i;87199:31::-;;;;;;;;;;-1:-1:-1;87199:31:0;;;;;;;;;;;65078:185;;;;;;;;;;-1:-1:-1;65078:185:0;;;;;:::i;:::-;;:::i;74735:245::-;;;;;;;;;;-1:-1:-1;74735:245:0;;;;;:::i;:::-;;:::i;96218:85::-;;;;;;;;;;-1:-1:-1;96290:5:0;;96218:85;;76747:233;;;;;;;;;;-1:-1:-1;76747:233:0;;;;;:::i;:::-;;:::i;87164:28::-;;;;;;;;;;-1:-1:-1;87164:28:0;;;;;;;;93525:107;;;;;;;;;;-1:-1:-1;93525:107:0;;;;;:::i;:::-;;:::i;31314:86::-;;;;;;;;;;-1:-1:-1;31385:7:0;;;;31314:86;;87058:26;;;;;;;;;;;;;;;;61913:239;;;;;;;;;;-1:-1:-1;61913:239:0;;;;;:::i;:::-;;:::i;95482:185::-;;;;;;;;;;-1:-1:-1;95482:185:0;;;;;:::i;:::-;;:::i;84363:407::-;;;;;;;;;;-1:-1:-1;84363:407:0;;;;;:::i;:::-;;:::i;95306:164::-;;;;;;;;;;-1:-1:-1;95306:164:0;;;;;:::i;:::-;;:::i;61643:208::-;;;;;;;;;;-1:-1:-1;61643:208:0;;;;;:::i;:::-;;:::i;29611:94::-;;;;;;;;;;;;;:::i;87129:28::-;;;;;;;;;;;;;:::i;86426:60::-;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;86426:60:0;;88213:1165;;;;;;:::i;:::-;;:::i;90146:966::-;;;;;;;;;;-1:-1:-1;90146:966:0;;;;;:::i;:::-;;:::i;84985:179::-;;;;;;;;;;;;;:::i;86785:27::-;;;;;;;;;;;;;;;;28960:87;;;;;;;;;;-1:-1:-1;29033:6:0;;-1:-1:-1;;;;;29033:6:0;28960:87;;86819:29;;;;;;;;;;;;;;;;51813:145;;;;;;;;;;-1:-1:-1;51813:145:0;;;;;:::i;:::-;;:::i;92598:204::-;;;;;;;;;;-1:-1:-1;92598:204:0;;;;;:::i;:::-;;:::i;46181:139::-;;;;;;;;;;-1:-1:-1;46181:139:0;;;;;:::i;:::-;;:::i;62388:104::-;;;;;;;;;;;;;:::i;87011:40::-;;;;;;;;;;;;87048:3;87011:40;;93041:225;;;;;;;;;;-1:-1:-1;93041:225:0;;;;;:::i;:::-;;:::i;86650:41::-;;;;;;;;;;-1:-1:-1;86650:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;86704:20;;;;;;;;;;;;;;;;45272:49;;;;;;;;;;-1:-1:-1;45272:49:0;45317:4;45272:49;;64071:295;;;;;;;;;;-1:-1:-1;64071:295:0;;;;;:::i;:::-;;:::i;92353:113::-;;;;;;;;;;-1:-1:-1;92426:12:0;;86774:4;92426:32;92353:113;;95679:187;;;;;;;;;;-1:-1:-1;95679:187:0;;;;;:::i;:::-;;:::i;65334:328::-;;;;;;;;;;-1:-1:-1;65334:328:0;;;;;:::i;:::-;;:::i;86895:37::-;;;;;;;;;;;;;;;;92810:223;;;;;;;;;;-1:-1:-1;92810:223:0;;;;;:::i;:::-;;:::i;95992:98::-;;;;;;;;;;-1:-1:-1;95992:98:0;;;;;:::i;:::-;;:::i;94406:888::-;;;;;;;;;;-1:-1:-1;94406:888:0;;;;;:::i;:::-;;:::i;52132:134::-;;;;;;;;;;-1:-1:-1;52132:134:0;;;;;:::i;:::-;;:::i;96099:111::-;;;;;;;;;;-1:-1:-1;96099:111:0;;;;;:::i;:::-;;:::i;86855:33::-;;;;;;;;;;;;;;;;83026:62;;;;;;;;;;;;83064:24;83026:62;;52647:201;;;;;;;;;;-1:-1:-1;52647:201:0;;;;;:::i;:::-;;:::i;83095:62::-;;;;;;;;;;;;83133:24;83095:62;;64437:164;;;;;;;;;;-1:-1:-1;64437:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;64558:25:0;;;64534:4;64558:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;64437:164;92474:116;;;;;;;;;;;;;:::i;94015:134::-;;;;;;;;;;-1:-1:-1;94015:134:0;;;;;:::i;:::-;;:::i;29860:192::-;;;;;;;;;;-1:-1:-1;29860:192:0;;;;;:::i;:::-;;:::i;95879:101::-;;;;;;;;;;-1:-1:-1;95879:101:0;;;;;:::i;:::-;;:::i;86731:47::-;;;;;;;;;;;;86774:4;86731:47;;85887:254;86068:4;86097:36;86121:11;86097:23;:36::i;:::-;86090:43;85887:254;-1:-1:-1;;85887:254:0:o;62219:100::-;62273:13;62306:5;62299:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62219:100;:::o;86972:32::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;86972:32:0;:::o;63778:221::-;63854:7;63882:16;63890:7;63882;:16::i;:::-;63874:73;;;;-1:-1:-1;;;63874:73:0;;20558:2:1;63874:73:0;;;20540:21:1;20597:2;20577:18;;;20570:30;20636:34;20616:18;;;20609:62;-1:-1:-1;;;20687:18:1;;;20680:42;20739:19;;63874:73:0;;;;;;;;;-1:-1:-1;63967:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;63967:24:0;;63778:221::o;63301:411::-;63382:13;63398:23;63413:7;63398:14;:23::i;:::-;63382:39;;63446:5;-1:-1:-1;;;;;63440:11:0;:2;-1:-1:-1;;;;;63440:11:0;;;63432:57;;;;-1:-1:-1;;;63432:57:0;;22931:2:1;63432:57:0;;;22913:21:1;22970:2;22950:18;;;22943:30;23009:34;22989:18;;;22982:62;-1:-1:-1;;;23060:18:1;;;23053:31;23101:19;;63432:57:0;22903:223:1;63432:57:0;27828:10;-1:-1:-1;;;;;63524:21:0;;;;:62;;-1:-1:-1;63549:37:0;63566:5;27828:10;64437:164;:::i;63549:37::-;63502:168;;;;-1:-1:-1;;;63502:168:0;;17329:2:1;63502:168:0;;;17311:21:1;17368:2;17348:18;;;17341:30;17407:34;17387:18;;;17380:62;17478:26;17458:18;;;17451:54;17522:19;;63502:168:0;17301:246:1;63502:168:0;63683:21;63692:2;63696:7;63683:8;:21::i;:::-;63301:411;;;:::o;91120:801::-;91668:30;;-1:-1:-1;;27828:10:0;6957:2:1;6953:15;6949:53;91668:30:0;;;6937:66:1;91235:7:0;;;;91819:5;;91779:12;;91734:15;;7019:12:1;;91668:30:0;;;;;;;;;;;;91658:41;;;;;;91650:50;;91649:101;;;;:::i;:::-;91496:32;;-1:-1:-1;;91513:14:0;6957:2:1;6953:15;6949:53;91496:32:0;;;6937:66:1;91606:14:0;;91561:15;;7019:12:1;;91496:32:0;;;;;;;;;;;;91486:43;;;;;;91478:52;;91447:130;;;;:::i;:::-;91359:59;91402:16;91359:15;:59;:::i;:::-;:219;;;;:::i;:::-;:261;;;;:::i;:::-;:392;;;;:::i;:::-;:432;;;;:::i;:::-;:465;;;;:::i;:::-;91320:523;;;;;;8687:19:1;;8731:2;8722:12;;8677:63;91320:523:0;;;;-1:-1:-1;;91320:523:0;;;;;;;;;91292:566;;91320:523;91292:566;;;;;-1:-1:-1;91909:4:0;91887:19;91896:9;91909:4;91896:2;:9;:::i;:::-;91887:4;;:8;:19::i;:::-;:26;;;;:::i;:::-;91880:33;91120:801;-1:-1:-1;;;;;91120:801:0:o;93274:243::-;93370:31;-1:-1:-1;;;;;;;;;;;93390:10:0;93370:7;:31::i;:::-;93348:113;;;;-1:-1:-1;;;93348:113:0;;;;;;;:::i;:::-;93472:15;:37;;-1:-1:-1;;;;;;93472:37:0;-1:-1:-1;;;;;93472:37:0;;;;;;;;;;93274:243::o;89386:127::-;89444:7;89471:34;89492:12;;86774:4;89471:20;;:34;;;;:::i;:::-;89464:41;;89386:127;:::o;64668:339::-;64863:41;27828:10;64882:12;64896:7;64863:18;:41::i;:::-;64855:103;;;;-1:-1:-1;;;64855:103:0;;;;;;;:::i;:::-;64971:28;64981:4;64987:2;64991:7;64971:9;:28::i;52358:196::-;52474:30;52490:4;52496:7;52474:15;:30::i;:::-;52515:18;;;;:12;:18;;;;;:31;;52538:7;52515:22;:31::i;76225:256::-;76322:7;76358:23;76375:5;76358:16;:23::i;:::-;76350:5;:31;76342:87;;;;-1:-1:-1;;;76342:87:0;;11781:2:1;76342:87:0;;;11763:21:1;11820:2;11800:18;;;11793:30;11859:34;11839:18;;;11832:62;-1:-1:-1;;;11910:18:1;;;11903:41;11961:19;;76342:87:0;11753:233:1;76342:87:0;-1:-1:-1;;;;;;76447:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;76225:256::o;52943:205::-;53062:33;53081:4;53087:7;53062:18;:33::i;:::-;53106:18;;;;:12;:18;;;;;:34;;53132:7;53106:25;:34::i;93644:76::-;29033:6;;-1:-1:-1;;;;;29033:6:0;27828:10;29180:23;29172:68;;;;-1:-1:-1;;;29172:68:0;;;;;;;:::i;:::-;93697:8:::1;:15:::0;;-1:-1:-1;;93697:15:0::1;93708:4;93697:15;::::0;;93644:76::o;96311:118::-;29033:6;;-1:-1:-1;;;;;29033:6:0;27828:10;29180:23;29172:68;;;;-1:-1:-1;;;29172:68:0;;;;;;;:::i;:::-;96373:47:::1;::::0;96381:10:::1;::::0;96398:21:::1;96373:47:::0;::::1;;;::::0;::::1;::::0;;;96398:21;96381:10;96373:47;::::1;;;;;;96365:56;;;::::0;::::1;;96311:118::o:0;85383:185::-;85436:34;83133:24;27828:10;46181:139;:::i;85436:34::-;85428:111;;;;;-1:-1:-1;;;85428:111:0;;25425:2:1;85428:111:0;;;25407:21:1;25444:18;;;25437:30;;;;25503:34;25483:18;;;25476:62;25574:34;25554:18;;;25547:62;25626:19;;85428:111:0;25397:254:1;85428:111:0;85550:10;:8;:10::i;65078:185::-;65216:39;65233:4;65239:2;65243:7;65216:39;;;;;;;;;;;;:16;:39::i;74735:245::-;74853:41;27828:10;74872:12;27748:98;74853:41;74845:102;;;;-1:-1:-1;;;74845:102:0;;25008:2:1;74845:102:0;;;24990:21:1;25047:2;25027:18;;;25020:30;25086:34;25066:18;;;25059:62;-1:-1:-1;;;25137:18:1;;;25130:46;25193:19;;74845:102:0;24980:238:1;74845:102:0;74958:14;74964:7;74958:5;:14::i;:::-;74735:245;:::o;76747:233::-;76822:7;76858:30;76645:10;:17;;76557:113;76858:30;76850:5;:38;76842:95;;;;-1:-1:-1;;;76842:95:0;;23751:2:1;76842:95:0;;;23733:21:1;23790:2;23770:18;;;23763:30;23829:34;23809:18;;;23802:62;-1:-1:-1;;;23880:18:1;;;23873:42;23932:19;;76842:95:0;23723:234:1;76842:95:0;76955:10;76966:5;76955:17;;;;;;-1:-1:-1;;;76955:17:0;;;;;;;;;;;;;;;;;76948:24;;76747:233;;;:::o;93525:107::-;29033:6;;-1:-1:-1;;;;;29033:6:0;27828:10;29180:23;29172:68;;;;-1:-1:-1;;;29172:68:0;;;;;;;:::i;:::-;93597:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;93525:107:::0;:::o;61913:239::-;61985:7;62021:16;;;:7;:16;;;;;;-1:-1:-1;;;;;62021:16:0;62056:19;62048:73;;;;-1:-1:-1;;;62048:73:0;;18583:2:1;62048:73:0;;;18565:21:1;18622:2;18602:18;;;18595:30;18661:34;18641:18;;;18634:62;-1:-1:-1;;;18712:18:1;;;18705:39;18761:19;;62048:73:0;18555:231:1;95482:185:0;29033:6;;-1:-1:-1;;;;;29033:6:0;27828:10;29180:23;29172:68;;;;-1:-1:-1;;;29172:68:0;;;;;;;:::i;:::-;95570:9:::1;95566:94;95585:17:::0;;::::1;95566:94;;;95644:4;95621:9;:20;95631:6;;95638:1;95631:9;;;;;-1:-1:-1::0;;;95631:9:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;95621:20:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;95621:20:0;:27;;-1:-1:-1;;95621:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;95604:3;::::1;::::0;::::1;:::i;:::-;;;;95566:94;;84363:407:::0;84423:34;83064:24;27828:10;46181:139;:::i;84423:34::-;84415:108;;;;-1:-1:-1;;;84415:108:0;;24164:2:1;84415:108:0;;;24146:21:1;24203:2;24183:18;;;24176:30;24242:34;24222:18;;;24215:62;24313:31;24293:18;;;24286:59;24362:19;;84415:108:0;24136:251:1;84415:108:0;84688:36;84694:2;84698:25;:15;7866:14;;7774:114;84698:25;84688:5;:36::i;:::-;84735:27;:15;7985:19;;8003:1;7985:19;;;7896:127;95306:164;-1:-1:-1;;;;;95383:16:0;;95364:4;95383:16;;;:9;:16;;;;;;;;95380:54;;;-1:-1:-1;95420:4:0;;95306:164;-1:-1:-1;95306:164:0:o;95380:54::-;-1:-1:-1;95457:5:0;;95306:164;-1:-1:-1;95306:164:0:o;61643:208::-;61715:7;-1:-1:-1;;;;;61743:19:0;;61735:74;;;;-1:-1:-1;;;61735:74:0;;18172:2:1;61735:74:0;;;18154:21:1;18211:2;18191:18;;;18184:30;18250:34;18230:18;;;18223:62;-1:-1:-1;;;18301:18:1;;;18294:40;18351:19;;61735:74:0;18144:232:1;61735:74:0;-1:-1:-1;;;;;;61827:16:0;;;;;:9;:16;;;;;;;61643:208::o;29611:94::-;29033:6;;-1:-1:-1;;;;;29033:6:0;27828:10;29180:23;29172:68;;;;-1:-1:-1;;;29172:68:0;;;;;;;:::i;:::-;29676:21:::1;29694:1;29676:9;:21::i;87129:28::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;88213:1165::-;31385:7;;;;88289:9;88281:71;;;;-1:-1:-1;;;88281:71:0;;17754:2:1;88281:71:0;;;17736:21:1;17793:2;17773:18;;;17766:30;17832:34;17812:18;;;17805:62;-1:-1:-1;;;17883:18:1;;;17876:47;17940:19;;88281:71:0;17726:239:1;88281:71:0;88382:1;88371:8;:12;88363:68;;;;-1:-1:-1;;;88363:68:0;;;;;;;:::i;:::-;88462:27;:25;:27::i;:::-;88450:8;:39;;88442:112;;;;-1:-1:-1;;;88442:112:0;;19354:2:1;88442:112:0;;;19336:21:1;19393:2;19373:18;;;19366:30;19432:34;19412:18;;;19405:62;19503:31;19483:18;;;19476:59;19552:19;;88442:112:0;19326:251:1;88442:112:0;88585:13;;88573:8;:25;;88565:87;;;;-1:-1:-1;;;88565:87:0;;26274:2:1;88565:87:0;;;26256:21:1;26313:2;26293:18;;;26286:30;26352:34;26332:18;;;26325:62;-1:-1:-1;;;26403:18:1;;;26396:48;26461:19;;88565:87:0;26246:240:1;88565:87:0;29033:6;;-1:-1:-1;;;;;29033:6:0;88668:10;:21;88665:404;;88722:11;;;;;;;;:19;;:11;:19;88719:339;;;88769:25;88783:10;88769:13;:25::i;:::-;88761:82;;;;-1:-1:-1;;;88761:82:0;;24594:2:1;88761:82:0;;;24576:21:1;24633:2;24613:18;;;24606:30;24672:34;24652:18;;;24645:62;-1:-1:-1;;;24723:18:1;;;24716:43;24776:19;;88761:82:0;24566:235:1;88761:82:0;88908:10;88862:24;88889:30;;;:18;:30;;;;;;88977:18;;88946:27;88965:8;88889:30;88946:27;:::i;:::-;:49;;88938:104;;;;-1:-1:-1;;;88938:104:0;;14566:2:1;88938:104:0;;;14548:21:1;14605:2;14585:18;;;14578:30;14644:34;14624:18;;;14617:62;-1:-1:-1;;;14695:18:1;;;14688:41;14746:19;;88938:104:0;14538:233:1;88938:104:0;88719:339;;89110:5;;:19;;89120:8;89110:9;:19::i;:::-;89097:9;:32;89089:78;;;;-1:-1:-1;;;89089:78:0;;15762:2:1;89089:78:0;;;15744:21:1;15801:2;15781:18;;;15774:30;15840:34;15820:18;;;15813:62;-1:-1:-1;;;15891:18:1;;;15884:32;15933:19;;89089:78:0;15734:224:1;89089:78:0;89183:9;89178:137;89202:8;89198:1;:12;89178:137;;;89251:10;89232:30;;;;:18;:30;;;;;:32;;;;;;:::i;:::-;;;;;;89279:24;89290:12;27828:10;;27748:98;89290:12;89279:10;:24::i;:::-;89212:3;;;;:::i;:::-;;;;89178:137;;;-1:-1:-1;89325:15:0;;89350:5;;-1:-1:-1;;;;;89325:15:0;;;;:45;;89350:19;;89360:8;89350:9;:19::i;:::-;89325:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90146:966;87353:31;-1:-1:-1;;;;;;;;;;;87373:10:0;87353:7;:31::i;:::-;87331:108;;;;-1:-1:-1;;;87331:108:0;;14978:2:1;87331:108:0;;;14960:21:1;15017:2;14997:18;;;14990:30;15056:29;15036:18;;;15029:57;15103:18;;87331:108:0;14950:177:1;87331:108:0;90284:1:::1;90273:8;:12;;;90251:106;;;;-1:-1:-1::0;;;90251:106:0::1;;;;;;;:::i;:::-;90489:1;90463:23;:21;:23::i;:::-;:27;90441:108;;;::::0;-1:-1:-1;;;90441:108:0;;21384:2:1;90441:108:0::1;::::0;::::1;21366:21:1::0;21423:2;21403:18;;;21396:30;21462:33;21442:18;;;21435:61;21513:18;;90441:108:0::1;21356:181:1::0;90441:108:0::1;90580:23;:21;:23::i;:::-;90568:8;:35;;;;90560:107;;;::::0;-1:-1:-1;;;90560:107:0;;15334:2:1;90560:107:0::1;::::0;::::1;15316:21:1::0;15373:2;15353:18;;;15346:30;15412:34;15392:18;;;15385:62;15483:29;15463:18;;;15456:57;15530:19;;90560:107:0::1;15306:249:1::0;90560:107:0::1;90682:12;::::0;90678:309:::1;;90729:141;90757:1;86774:4;27828:10:::0;90836:12:::1;90812:43;::::0;-1:-1:-1;;;;;90812:39:0::1;90854:1;90812:43;:::i;90729:141::-;90716:10;:154:::0;;;90885:14:::1;:27:::0;90678:309:::1;;;90958:17;:15;:17::i;:::-;90945:10;:30:::0;90678:309:::1;91002:9;90997:108;91021:8;91017:12;;:1;:12;90997:108;;;91051:14;91062:2;91051:10;:14::i;:::-;91080:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;91031:3;;;;;:::i;:::-;;;;90997:108;;84985:179:::0;85036:34;83133:24;27828:10;46181:139;:::i;85036:34::-;85028:109;;;;-1:-1:-1;;;85028:109:0;;13376:2:1;85028:109:0;;;13358:21:1;13415:2;13395:18;;;13388:30;13454:34;13434:18;;;13427:62;13525:32;13505:18;;;13498:60;13575:19;;85028:109:0;13348:252:1;85028:109:0;85148:8;:6;:8::i;51813:145::-;51895:7;51922:18;;;:12;:18;;;;;:28;;51944:5;51922:21;:28::i;:::-;51915:35;51813:145;-1:-1:-1;;;51813:145:0:o;92598:204::-;92676:31;-1:-1:-1;;;;;;;;;;;92696:10:0;92676:7;:31::i;:::-;92654:113;;;;-1:-1:-1;;;92654:113:0;;;;;;;:::i;:::-;92778:5;:16;92598:204::o;46181:139::-;46259:4;46283:12;;;;;;;;;;;-1:-1:-1;;;;;46283:29:0;;;;;;;;;;;;;;;46181:139::o;62388:104::-;62444:13;62477:7;62470:14;;;;;:::i;93041:225::-;93125:31;-1:-1:-1;;;;;;;;;;;93145:10:0;93125:7;:31::i;:::-;93103:113;;;;-1:-1:-1;;;93103:113:0;;;;;;;:::i;:::-;93227:31;-1:-1:-1;;;;;;;;;;;93250:7:0;93227:10;:31::i;64071:295::-;-1:-1:-1;;;;;64174:24:0;;27828:10;64174:24;;64166:62;;;;-1:-1:-1;;;64166:62:0;;14212:2:1;64166:62:0;;;14194:21:1;14251:2;14231:18;;;14224:30;14290:27;14270:18;;;14263:55;14335:18;;64166:62:0;14184:175:1;64166:62:0;27828:10;64241:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;64241:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;64241:53:0;;;;;;;;;;64310:48;;9586:41:1;;;64241:42:0;;27828:10;64310:48;;9559:18:1;64310:48:0;;;;;;;64071:295;;:::o;95679:187::-;29033:6;;-1:-1:-1;;;;;29033:6:0;27828:10;29180:23;29172:68;;;;-1:-1:-1;;;29172:68:0;;;;;;;:::i;:::-;95768:9:::1;95764:95;95783:17:::0;;::::1;95764:95;;;95842:5;95819:9;:20;95829:6;;95836:1;95829:9;;;;;-1:-1:-1::0;;;95829:9:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;95819:20:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;95819:20:0;:28;;-1:-1:-1;;95819:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;95802:3;::::1;::::0;::::1;:::i;:::-;;;;95764:95;;65334:328:::0;65509:41;27828:10;65542:7;65509:18;:41::i;:::-;65501:103;;;;-1:-1:-1;;;65501:103:0;;;;;;;:::i;:::-;65615:39;65629:4;65635:2;65639:7;65648:5;65615:13;:39::i;:::-;65334:328;;;;:::o;92810:223::-;92893:31;-1:-1:-1;;;;;;;;;;;92913:10:0;92893:7;:31::i;:::-;92871:113;;;;-1:-1:-1;;;92871:113:0;;;;;;;:::i;:::-;92995:30;-1:-1:-1;;;;;;;;;;;93017:7:0;92995:9;:30::i;95992:98::-;29033:6;;-1:-1:-1;;;;;29033:6:0;27828:10;29180:23;29172:68;;;;-1:-1:-1;;;29172:68:0;;;;;;;:::i;:::-;96058:13:::1;:24:::0;95992:98::o;94406:888::-;94479:13;94512:16;94520:7;94512;:16::i;:::-;94504:75;;;;-1:-1:-1;;;94504:75:0;;22515:2:1;94504:75:0;;;22497:21:1;22554:2;22534:18;;;22527:30;22593:34;22573:18;;;22566:62;-1:-1:-1;;;22644:18:1;;;22637:45;22699:19;;94504:75:0;22487:237:1;94504:75:0;94600:23;94626:19;;;:10;:19;;;;;94600:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94656:18;94677:10;:8;:10::i;:::-;94711:8;;94656:31;;-1:-1:-1;94711:8:0;;94708:69;;94751:14;94744:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94406:888;;;:::o;94708:69::-;94852:18;;94848:72;;-1:-1:-1;94899:9:0;94406:888;-1:-1:-1;;94406:888:0:o;94848:72::-;95024:23;;:27;95020:108;;95099:4;95105:9;95082:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;95068:48;;;;94406:888;;;:::o;95020:108::-;95260:4;95266:18;:7;:16;:18::i;:::-;95243:42;;;;;;;;;:::i;52132:134::-;52204:7;52231:18;;;:12;:18;;;;;:27;;:25;:27::i;96099:111::-;29033:6;;-1:-1:-1;;;;;29033:6:0;27828:10;29180:23;29172:68;;;;-1:-1:-1;;;29172:68:0;;;;;;;:::i;:::-;96175:18:::1;:27:::0;96099:111::o;52647:201::-;52764:31;52781:4;52787:7;52764:16;:31::i;92474:116::-;92528:7;92555:27;92570:11;;87048:3;92555:14;;:27;;;;:::i;94015:134::-;29033:6;;-1:-1:-1;;;;;29033:6:0;27828:10;29180:23;29172:68;;;;-1:-1:-1;;;29172:68:0;;;;;;;:::i;:::-;94105:36;;::::1;::::0;:14:::1;::::0;:36:::1;::::0;::::1;::::0;::::1;:::i;29860:192::-:0;29033:6;;-1:-1:-1;;;;;29033:6:0;27828:10;29180:23;29172:68;;;;-1:-1:-1;;;29172:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29949:22:0;::::1;29941:73;;;::::0;-1:-1:-1;;;29941:73:0;;12612:2:1;29941:73:0::1;::::0;::::1;12594:21:1::0;12651:2;12631:18;;;12624:30;12690:34;12670:18;;;12663:62;-1:-1:-1;;;12741:18:1;;;12734:36;12787:19;;29941:73:0::1;12584:228:1::0;29941:73:0::1;30025:19;30035:8;30025:9;:19::i;95879:101::-:0;29033:6;;-1:-1:-1;;;;;29033:6:0;27828:10;29180:23;29172:68;;;;-1:-1:-1;;;29172:68:0;;;;;;;:::i;:::-;95946:11:::1;:26:::0;;;::::1;;;;-1:-1:-1::0;;95946:26:0;;::::1;::::0;;;::::1;::::0;;95879:101::o;49530:112::-;49609:25;49620:4;49626:7;49609:10;:25::i;16171:152::-;16241:4;16265:50;16270:3;-1:-1:-1;;;;;16290:23:0;;16265:4;:50::i;75917:224::-;76019:4;-1:-1:-1;;;;;;76043:50:0;;-1:-1:-1;;;76043:50:0;;:90;;;76097:36;76121:11;76097:23;:36::i;67172:127::-;67237:4;67261:16;;;:7;:16;;;;;;-1:-1:-1;;;;;67261:16:0;:30;;;67172:127::o;71154:174::-;71229:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;71229:29:0;-1:-1:-1;;;;;71229:29:0;;;;;;;;:24;;71283:23;71229:24;71283:14;:23::i;:::-;-1:-1:-1;;;;;71274:46:0;;;;;;;;;;;71154:174;;:::o;4494:98::-;4552:7;4579:5;4583:1;4579;:5;:::i;3173:98::-;3231:7;3258:5;3262:1;3258;:5;:::i;67466:348::-;67559:4;67584:16;67592:7;67584;:16::i;:::-;67576:73;;;;-1:-1:-1;;;67576:73:0;;16165:2:1;67576:73:0;;;16147:21:1;16204:2;16184:18;;;16177:30;16243:34;16223:18;;;16216:62;-1:-1:-1;;;16294:18:1;;;16287:42;16346:19;;67576:73:0;16137:234:1;67576:73:0;67660:13;67676:23;67691:7;67676:14;:23::i;:::-;67660:39;;67729:5;-1:-1:-1;;;;;67718:16:0;:7;-1:-1:-1;;;;;67718:16:0;;:51;;;;67762:7;-1:-1:-1;;;;;67738:31:0;:20;67750:7;67738:11;:20::i;:::-;-1:-1:-1;;;;;67738:31:0;;67718:51;:87;;;-1:-1:-1;;;;;;64558:25:0;;;64534:4;64558:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;67773:32;67710:96;67466:348;-1:-1:-1;;;;67466:348:0:o;70458:578::-;70617:4;-1:-1:-1;;;;;70590:31:0;:23;70605:7;70590:14;:23::i;:::-;-1:-1:-1;;;;;70590:31:0;;70582:85;;;;-1:-1:-1;;;70582:85:0;;22105:2:1;70582:85:0;;;22087:21:1;22144:2;22124:18;;;22117:30;22183:34;22163:18;;;22156:62;-1:-1:-1;;;22234:18:1;;;22227:39;22283:19;;70582:85:0;22077:231:1;70582:85:0;-1:-1:-1;;;;;70686:16:0;;70678:65;;;;-1:-1:-1;;;70678:65:0;;13807:2:1;70678:65:0;;;13789:21:1;13846:2;13826:18;;;13819:30;13885:34;13865:18;;;13858:62;-1:-1:-1;;;13936:18:1;;;13929:34;13980:19;;70678:65:0;13779:226:1;70678:65:0;70756:39;70777:4;70783:2;70787:7;70756:20;:39::i;:::-;70860:29;70877:1;70881:7;70860:8;:29::i;:::-;-1:-1:-1;;;;;70902:15:0;;;;;;:9;:15;;;;;:20;;70921:1;;70902:15;:20;;70921:1;;70902:20;:::i;:::-;;;;-1:-1:-1;;;;;;;70933:13:0;;;;;;:9;:13;;;;;:18;;70950:1;;70933:13;:18;;70950:1;;70933:18;:::i;:::-;;;;-1:-1:-1;;70962:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;70962:21:0;-1:-1:-1;;;;;70962:21:0;;;;;;;;;71001:27;;70962:16;;71001:27;;;;;;;70458:578;;;:::o;47681:147::-;47362:7;47389:12;;;;;;;;;;:22;;;45763:30;45774:4;27828:10;45763;:30::i;:::-;47795:25:::1;47806:4;47812:7;47795:10;:25::i;48729:218::-:0;-1:-1:-1;;;;;48825:23:0;;27828:10;48825:23;48817:83;;;;-1:-1:-1;;;48817:83:0;;25858:2:1;48817:83:0;;;25840:21:1;25897:2;25877:18;;;25870:30;25936:34;25916:18;;;25909:62;-1:-1:-1;;;25987:18:1;;;25980:45;26042:19;;48817:83:0;25830:237:1;48817:83:0;48913:26;48925:4;48931:7;48913:11;:26::i;16499:158::-;16572:4;16596:53;16604:3;-1:-1:-1;;;;;16624:23:0;;16596:7;:53::i;32373:120::-;31385:7;;;;31909:41;;;;-1:-1:-1;;;31909:41:0;;11432:2:1;31909:41:0;;;11414:21:1;11471:2;11451:18;;;11444:30;-1:-1:-1;;;11490:18:1;;;11483:50;11550:18;;31909:41:0;11404:170:1;31909:41:0;32432:7:::1;:15:::0;;-1:-1:-1;;32432:15:0::1;::::0;;32463:22:::1;27828:10:::0;32472:12:::1;32463:22;::::0;-1:-1:-1;;;;;8909:32:1;;;8891:51;;8879:2;8864:18;32463:22:0::1;;;;;;;32373:120::o:0;69761:360::-;69821:13;69837:23;69852:7;69837:14;:23::i;:::-;69821:39;;69873:48;69894:5;69909:1;69913:7;69873:20;:48::i;:::-;69962:29;69979:1;69983:7;69962:8;:29::i;:::-;-1:-1:-1;;;;;70004:16:0;;;;;;:9;:16;;;;;:21;;70024:1;;70004:16;:21;;70024:1;;70004:21;:::i;:::-;;;;-1:-1:-1;;70043:16:0;;;;:7;:16;;;;;;70036:23;;-1:-1:-1;;;;;;70036:23:0;;;70077:36;70051:7;;70043:16;-1:-1:-1;;;;;70077:36:0;;;;;70043:16;;70077:36;69761:360;;:::o;69150:382::-;-1:-1:-1;;;;;69230:16:0;;69222:61;;;;-1:-1:-1;;;69222:61:0;;19784:2:1;69222:61:0;;;19766:21:1;;;19803:18;;;19796:30;19862:34;19842:18;;;19835:62;19914:18;;69222:61:0;19756:182:1;69222:61:0;69303:16;69311:7;69303;:16::i;:::-;69302:17;69294:58;;;;-1:-1:-1;;;69294:58:0;;13019:2:1;69294:58:0;;;13001:21:1;13058:2;13038:18;;;13031:30;13097;13077:18;;;13070:58;13145:18;;69294:58:0;12991:178:1;69294:58:0;69365:45;69394:1;69398:2;69402:7;69365:20;:45::i;:::-;-1:-1:-1;;;;;69423:13:0;;;;;;:9;:13;;;;;:18;;69440:1;;69423:13;:18;;69440:1;;69423:18;:::i;:::-;;;;-1:-1:-1;;69452:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;69452:21:0;-1:-1:-1;;;;;69452:21:0;;;;;;;;69491:33;;69452:16;;;69491:33;;69452:16;;69491:33;69150:382;;:::o;30060:173::-;30135:6;;;-1:-1:-1;;;;;30152:17:0;;;-1:-1:-1;;;;;;30152:17:0;;;;;;;30185:40;;30135:6;;;30152:17;30135:6;;30185:40;;30116:16;;30185:40;30060:173;;:::o;3530:98::-;3588:7;3615:5;3619:1;3615;:5;:::i;89521:617::-;89576:12;;89572:309;;89623:141;89651:1;86774:4;27828:10;89730:12;27748:98;89623:141;89610:10;:154;;;89779:14;:27;89572:309;;;89852:17;:15;:17::i;:::-;89839:10;:30;89572:309;89891:12;:14;;;:12;:14;;;:::i;:::-;;;;;;89939:21;89947:12;;89939:7;:21::i;:::-;89938:22;89916:116;;;;-1:-1:-1;;;89916:116:0;;20145:2:1;89916:116:0;;;20127:21:1;20184:2;20164:18;;;20157:30;20223:34;20203:18;;;20196:62;-1:-1:-1;;;20274:18:1;;;20267:42;20326:19;;89916:116:0;20117:234:1;89916:116:0;90043:27;90053:2;90057:12;;90043:9;:27::i;:::-;90081:49;90094:12;;90108:21;:10;;:19;:21::i;:::-;90081:12;:49::i;91929:416::-;91978:19;92033:18;92426:12;;86774:4;92426:32;;92353:113;92033:18;92032:19;92010:106;;;;-1:-1:-1;;;92010:106:0;;16923:2:1;92010:106:0;;;16905:21:1;16962:2;16942:18;;;16935:30;17001:34;16981:18;;;16974:62;-1:-1:-1;;;17052:18:1;;;17045:35;17097:19;;92010:106:0;16895:227:1;92010:106:0;86774:4;92131:10;;:30;:65;;;;;86774:4;92165:12;;:31;92131:65;92127:211;;;-1:-1:-1;92227:1:0;91929:416;:::o;92127:211::-;86774:4;92250:12;;:31;92246:92;;;92312:10;;:14;;92325:1;92312:14;:::i;92246:92::-;91929:416;:::o;32114:118::-;31385:7;;;;31639:9;31631:38;;;;-1:-1:-1;;;31631:38:0;;16578:2:1;31631:38:0;;;16560:21:1;16617:2;16597:18;;;16590:30;-1:-1:-1;;;16636:18:1;;;16629:46;16692:18;;31631:38:0;16550:166:1;31631:38:0;32174:7:::1;:14:::0;;-1:-1:-1;;32174:14:0::1;32184:4;32174:14;::::0;;32204:20:::1;32211:12;27828:10:::0;;27748:98;17467:158;17541:7;17592:22;17596:3;17608:5;17592:3;:22::i;66544:315::-;66701:28;66711:4;66717:2;66721:7;66701:9;:28::i;:::-;66748:48;66771:4;66777:2;66781:7;66790:5;66748:22;:48::i;:::-;66740:111;;;;-1:-1:-1;;;66740:111:0;;;;;;;:::i;94157:117::-;94217:13;94250:16;94243:23;;;;;:::i;25364:723::-;25420:13;25641:10;25637:53;;-1:-1:-1;;25668:10:0;;;;;;;;;;;;-1:-1:-1;;;25668:10:0;;;;;25364:723::o;25637:53::-;25715:5;25700:12;25756:78;25763:9;;25756:78;;25789:8;;;;:::i;:::-;;-1:-1:-1;25812:10:0;;-1:-1:-1;25820:2:0;25812:10;;:::i;:::-;;;25756:78;;;25844:19;25876:6;25866:17;;;;;;-1:-1:-1;;;25866:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25866:17:0;;25844:39;;25894:154;25901:10;;25894:154;;25928:11;25938:1;25928:11;;:::i;:::-;;-1:-1:-1;25997:10:0;26005:2;25997:5;:10;:::i;:::-;25984:24;;:2;:24;:::i;:::-;25971:39;;25954:6;25961;25954:14;;;;;;-1:-1:-1;;;25954:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;25954:56:0;;;;;;;;-1:-1:-1;26025:11:0;26034:2;26025:11;;:::i;:::-;;;25894:154;;16996:117;17059:7;17086:19;17094:3;12480:18;;12397:109;48073:149;47362:7;47389:12;;;;;;;;;;:22;;;45763:30;45774:4;27828:10;45763;:30::i;:::-;48188:26:::1;48200:4;48206:7;48188:11;:26::i;50033:229::-:0;50108:22;50116:4;50122:7;50108;:22::i;:::-;50103:152;;50147:6;:12;;;;;;;;;;;-1:-1:-1;;;;;50147:29:0;;;;;;;;;:36;;-1:-1:-1;;50147:36:0;50179:4;50147:36;;;50230:12;27828:10;;27748:98;50230:12;-1:-1:-1;;;;;50203:40:0;50221:7;-1:-1:-1;;;;;50203:40:0;50215:4;50203:40;;;;;;;;;;50033:229;;:::o;10086:414::-;10149:4;12279:19;;;:12;;;:19;;;;;;10166:327;;-1:-1:-1;10209:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;10392:18;;10370:19;;;:12;;;:19;;;;;;:40;;;;10425:11;;10166:327;-1:-1:-1;10476:5:0;10469:12;;61274:305;61376:4;-1:-1:-1;;;;;;61413:40:0;;-1:-1:-1;;;61413:40:0;;:105;;-1:-1:-1;;;;;;;61470:48:0;;-1:-1:-1;;;61470:48:0;61413:105;:158;;;;61535:36;61559:11;61535:23;:36::i;85576:239::-;85762:45;85789:4;85795:2;85799:7;85762:26;:45::i;46610:497::-;46691:22;46699:4;46705:7;46691;:22::i;:::-;46686:414;;46879:41;46907:7;-1:-1:-1;;;;;46879:41:0;46917:2;46879:19;:41::i;:::-;46993:38;47021:4;47028:2;46993:19;:38::i;:::-;46784:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;46784:270:0;;;;;;;;;;-1:-1:-1;;;46730:358:0;;;;;;;:::i;50270:230::-;50345:22;50353:4;50359:7;50345;:22::i;:::-;50341:152;;;50416:5;50384:12;;;;;;;;;;;-1:-1:-1;;;;;50384:29:0;;;;;;;;;;:37;;-1:-1:-1;;50384:37:0;;;50441:40;27828:10;;50384:12;;50441:40;;50416:5;50441:40;50270:230;;:::o;10676:1420::-;10742:4;10881:19;;;:12;;;:19;;;;;;10917:15;;10913:1176;;11292:21;11316:14;11329:1;11316:10;:14;:::i;:::-;11365:18;;11292:38;;-1:-1:-1;11345:17:0;;11365:22;;11386:1;;11365:22;:::i;:::-;11345:42;;11421:13;11408:9;:26;11404:405;;11455:17;11475:3;:11;;11487:9;11475:22;;;;;;-1:-1:-1;;;11475:22:0;;;;;;;;;;;;;;;;;11455:42;;11629:9;11600:3;:11;;11612:13;11600:26;;;;;;-1:-1:-1;;;11600:26:0;;;;;;;;;;;;;;;;;;;;:38;;;;11714:23;;;:12;;;:23;;;;;:36;;;11404:405;11890:17;;:3;;:17;;;-1:-1:-1;;;11890:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;11985:3;:12;;:19;11998:5;11985:19;;;;;;;;;;;11978:26;;;12028:4;12021:11;;;;;;;10913:1176;12072:5;12065:12;;;;;68156:110;68232:26;68242:2;68246:7;68232:26;;;;;;;;;;;;:9;:26::i;93728:275::-;93865:16;93873:7;93865;:16::i;:::-;93843:110;;;;-1:-1:-1;;;93843:110:0;;20971:2:1;93843:110:0;;;20953:21:1;21010:2;20990:18;;;20983:30;21049:34;21029:18;;;21022:62;-1:-1:-1;;;21100:18:1;;;21093:42;21152:19;;93843:110:0;20943:234:1;93843:110:0;93964:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;12860:120::-;12927:7;12954:3;:11;;12966:5;12954:18;;;;;;-1:-1:-1;;;12954:18:0;;;;;;;;;;;;;;;;;12947:25;;12860:120;;;;:::o;71893:799::-;72048:4;-1:-1:-1;;;;;72069:13:0;;33589:20;33637:8;72065:620;;72105:72;;-1:-1:-1;;;72105:72:0;;-1:-1:-1;;;;;72105:36:0;;;;;:72;;27828:10;;72156:4;;72162:7;;72171:5;;72105:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72105:72:0;;;;;;;;-1:-1:-1;;72105:72:0;;;;;;;;;;;;:::i;:::-;;;72101:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72347:13:0;;72343:272;;72390:60;;-1:-1:-1;;;72390:60:0;;;;;;;:::i;72343:272::-;72565:6;72559:13;72550:6;72546:2;72542:15;72535:38;72101:529;-1:-1:-1;;;;;;72228:51:0;-1:-1:-1;;;72228:51:0;;-1:-1:-1;72221:58:0;;72065:620;-1:-1:-1;72669:4:0;71893:799;;;;;;:::o;51000:214::-;51085:4;-1:-1:-1;;;;;;51109:57:0;;-1:-1:-1;;;51109:57:0;;:97;;;51170:36;51194:11;51170:23;:36::i;73996:275::-;74140:45;74167:4;74173:2;74177:7;74140:26;:45::i;:::-;31385:7;;;;74206:9;74198:65;;;;-1:-1:-1;;;74198:65:0;;10607:2:1;74198:65:0;;;10589:21:1;10646:2;10626:18;;;10619:30;10685:34;10665:18;;;10658:62;-1:-1:-1;;;10736:18:1;;;10729:41;10787:19;;74198:65:0;10579:233:1;26665:451:0;26740:13;26766:19;26798:10;26802:6;26798:1;:10;:::i;:::-;:14;;26811:1;26798:14;:::i;:::-;26788:25;;;;;;-1:-1:-1;;;26788:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26788:25:0;;26766:47;;-1:-1:-1;;;26824:6:0;26831:1;26824:9;;;;;;-1:-1:-1;;;26824:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;26824:15:0;;;;;;;;;-1:-1:-1;;;26850:6:0;26857:1;26850:9;;;;;;-1:-1:-1;;;26850:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;26850:15:0;;;;;;;;-1:-1:-1;26881:9:0;26893:10;26897:6;26893:1;:10;:::i;:::-;:14;;26906:1;26893:14;:::i;:::-;26881:26;;26876:135;26913:1;26909;:5;26876:135;;;-1:-1:-1;;;26961:5:0;26969:3;26961:11;26948:25;;;;;-1:-1:-1;;;26948:25:0;;;;;;;;;;;;26936:6;26943:1;26936:9;;;;;;-1:-1:-1;;;26936:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;26936:37:0;;;;;;;;-1:-1:-1;26998:1:0;26988:11;;;;;26916:3;;;:::i;:::-;;;26876:135;;;-1:-1:-1;27029:10:0;;27021:55;;;;-1:-1:-1;;;27021:55:0;;10246:2:1;27021:55:0;;;10228:21:1;;;10265:18;;;10258:30;10324:34;10304:18;;;10297:62;10376:18;;27021:55:0;10218:182:1;68493:321:0;68623:18;68629:2;68633:7;68623:5;:18::i;:::-;68674:54;68705:1;68709:2;68713:7;68722:5;68674:22;:54::i;:::-;68652:154;;;;-1:-1:-1;;;68652:154:0;;;;;;;:::i;45885:204::-;45970:4;-1:-1:-1;;;;;;45994:47:0;;-1:-1:-1;;;45994:47:0;;:87;;-1:-1:-1;;;;;;;;;;43315:40:0;;;46045:36;43206:157;77593:589;-1:-1:-1;;;;;77799:18:0;;77795:187;;77834:40;77866:7;79009:10;:17;;78982:24;;;;:15;:24;;;;;:44;;;79037:24;;;;;;;;;;;;78905:164;77834:40;77795:187;;;77904:2;-1:-1:-1;;;;;77896:10:0;:4;-1:-1:-1;;;;;77896:10:0;;77892:90;;77923:47;77956:4;77962:7;77923:32;:47::i;:::-;-1:-1:-1;;;;;77996:16:0;;77992:183;;78029:45;78066:7;78029:36;:45::i;77992:183::-;78102:4;-1:-1:-1;;;;;78096:10:0;:2;-1:-1:-1;;;;;78096:10:0;;78092:83;;78123:40;78151:2;78155:7;78123:27;:40::i;79696:988::-;79962:22;80012:1;79987:22;80004:4;79987:16;:22::i;:::-;:26;;;;:::i;:::-;80024:18;80045:26;;;:17;:26;;;;;;79962:51;;-1:-1:-1;80178:28:0;;;80174:328;;-1:-1:-1;;;;;80245:18:0;;80223:19;80245:18;;;:12;:18;;;;;;;;:34;;;;;;;;;80296:30;;;;;;:44;;;80413:30;;:17;:30;;;;;:43;;;80174:328;-1:-1:-1;80598:26:0;;;;:17;:26;;;;;;;;80591:33;;;-1:-1:-1;;;;;80642:18:0;;;;;:12;:18;;;;;:34;;;;;;;80635:41;79696:988::o;80979:1079::-;81257:10;:17;81232:22;;81257:21;;81277:1;;81257:21;:::i;:::-;81289:18;81310:24;;;:15;:24;;;;;;81683:10;:26;;81232:46;;-1:-1:-1;81310:24:0;;81232:46;;81683:26;;;;-1:-1:-1;;;81683:26:0;;;;;;;;;;;;;;;;;81661:48;;81747:11;81722:10;81733;81722:22;;;;;;-1:-1:-1;;;81722:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;81827:28;;;:15;:28;;;;;;;:41;;;81999:24;;;;;81992:31;82034:10;:16;;;;;-1:-1:-1;;;82034:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;80979:1079;;;;:::o;78483:221::-;78568:14;78585:20;78602:2;78585:16;:20::i;:::-;-1:-1:-1;;;;;78616:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;78661:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;78483:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:665::-;3137:6;3145;3198:2;3186:9;3177:7;3173:23;3169:32;3166:2;;;3219:6;3211;3204:22;3166:2;3264:9;3251:23;3293:18;3334:2;3326:6;3323:14;3320:2;;;3355:6;3347;3340:22;3320:2;3398:6;3387:9;3383:22;3373:32;;3443:7;3436:4;3432:2;3428:13;3424:27;3414:2;;3470:6;3462;3455:22;3414:2;3515;3502:16;3541:2;3533:6;3530:14;3527:2;;;3562:6;3554;3547:22;3527:2;3620:7;3615:2;3605:6;3602:1;3598:14;3594:2;3590:23;3586:32;3583:45;3580:2;;;3646:6;3638;3631:22;3580:2;3682;3674:11;;;;;3704:6;;-1:-1:-1;3156:560:1;;-1:-1:-1;;;;3156:560:1:o;3721:190::-;3777:6;3830:2;3818:9;3809:7;3805:23;3801:32;3798:2;;;3851:6;3843;3836:22;3798:2;3879:26;3895:9;3879:26;:::i;3916:190::-;3975:6;4028:2;4016:9;4007:7;4003:23;3999:32;3996:2;;;4049:6;4041;4034:22;3996:2;-1:-1:-1;4077:23:1;;3986:120;-1:-1:-1;3986:120:1:o;4111:264::-;4179:6;4187;4240:2;4228:9;4219:7;4215:23;4211:32;4208:2;;;4261:6;4253;4246:22;4208:2;4302:9;4289:23;4279:33;;4331:38;4365:2;4354:9;4350:18;4331:38;:::i;4380:258::-;4448:6;4456;4509:2;4497:9;4488:7;4484:23;4480:32;4477:2;;;4530:6;4522;4515:22;4477:2;-1:-1:-1;;4558:23:1;;;4628:2;4613:18;;;4600:32;;-1:-1:-1;4467:171:1:o;4643:255::-;4701:6;4754:2;4742:9;4733:7;4729:23;4725:32;4722:2;;;4775:6;4767;4760:22;4722:2;4819:9;4806:23;4838:30;4862:5;4838:30;:::i;4903:259::-;4972:6;5025:2;5013:9;5004:7;5000:23;4996:32;4993:2;;;5046:6;5038;5031:22;4993:2;5083:9;5077:16;5102:30;5126:5;5102:30;:::i;5167:480::-;5236:6;5289:2;5277:9;5268:7;5264:23;5260:32;5257:2;;;5310:6;5302;5295:22;5257:2;5355:9;5342:23;5388:18;5380:6;5377:30;5374:2;;;5425:6;5417;5410:22;5374:2;5453:22;;5506:4;5498:13;;5494:27;-1:-1:-1;5484:2:1;;5540:6;5532;5525:22;5484:2;5568:73;5633:7;5628:2;5615:16;5610:2;5606;5602:11;5568:73;:::i;5847:326::-;5924:6;5932;5940;5993:2;5981:9;5972:7;5968:23;5964:32;5961:2;;;6014:6;6006;5999:22;5961:2;-1:-1:-1;;6042:23:1;;;6112:2;6097:18;;6084:32;;-1:-1:-1;6163:2:1;6148:18;;;6135:32;;5951:222;-1:-1:-1;5951:222:1:o;6178:363::-;6244:6;6252;6305:2;6293:9;6284:7;6280:23;6276:32;6273:2;;;6326:6;6318;6311:22;6273:2;6370:9;6357:23;6420:4;6413:5;6409:16;6402:5;6399:27;6389:2;;6445:6;6437;6430:22;6546:257;6587:3;6625:5;6619:12;6652:6;6647:3;6640:19;6668:63;6724:6;6717:4;6712:3;6708:14;6701:4;6694:5;6690:16;6668:63;:::i;:::-;6785:2;6764:15;-1:-1:-1;;6760:29:1;6751:39;;;;6792:4;6747:50;;6595:208;-1:-1:-1;;6595:208:1:o;7292:470::-;7471:3;7509:6;7503:13;7525:53;7571:6;7566:3;7559:4;7551:6;7547:17;7525:53;:::i;:::-;7641:13;;7600:16;;;;7663:57;7641:13;7600:16;7697:4;7685:17;;7663:57;:::i;:::-;7736:20;;7479:283;-1:-1:-1;;;;7479:283:1:o;7767:786::-;8178:25;8173:3;8166:38;8148:3;8233:6;8227:13;8249:62;8304:6;8299:2;8294:3;8290:12;8283:4;8275:6;8271:17;8249:62;:::i;:::-;-1:-1:-1;;;8370:2:1;8330:16;;;8362:11;;;8355:40;8420:13;;8442:63;8420:13;8491:2;8483:11;;8476:4;8464:17;;8442:63;:::i;:::-;8525:17;8544:2;8521:26;;8156:397;-1:-1:-1;;;;8156:397:1:o;8953:488::-;-1:-1:-1;;;;;9222:15:1;;;9204:34;;9274:15;;9269:2;9254:18;;9247:43;9321:2;9306:18;;9299:34;;;9369:3;9364:2;9349:18;;9342:31;;;9147:4;;9390:45;;9415:19;;9407:6;9390:45;:::i;:::-;9382:53;9156:285;-1:-1:-1;;;;;;9156:285:1:o;9820:219::-;9969:2;9958:9;9951:21;9932:4;9989:44;10029:2;10018:9;10014:18;10006:6;9989:44;:::i;10817:408::-;11019:2;11001:21;;;11058:2;11038:18;;;11031:30;11097:34;11092:2;11077:18;;11070:62;-1:-1:-1;;;11163:2:1;11148:18;;11141:42;11215:3;11200:19;;10991:234::o;11991:414::-;12193:2;12175:21;;;12232:2;12212:18;;;12205:30;12271:34;12266:2;12251:18;;12244:62;-1:-1:-1;;;12337:2:1;12322:18;;12315:48;12395:3;12380:19;;12165:240::o;18791:356::-;18993:2;18975:21;;;19012:18;;;19005:30;19071:34;19066:2;19051:18;;19044:62;19138:2;19123:18;;18965:182::o;21542:356::-;21744:2;21726:21;;;21763:18;;;21756:30;21822:34;21817:2;21802:18;;21795:62;21889:2;21874:18;;21716:182::o;23131:413::-;23333:2;23315:21;;;23372:2;23352:18;;;23345:30;23411:34;23406:2;23391:18;;23384:62;-1:-1:-1;;;23477:2:1;23462:18;;23455:47;23534:3;23519:19;;23305:239::o;26673:128::-;26713:3;26744:1;26740:6;26737:1;26734:13;26731:2;;;26750:18;;:::i;:::-;-1:-1:-1;26786:9:1;;26721:80::o;26806:120::-;26846:1;26872;26862:2;;26877:18;;:::i;:::-;-1:-1:-1;26911:9:1;;26852:74::o;26931:168::-;26971:7;27037:1;27033;27029:6;27025:14;27022:1;27019:21;27014:1;27007:9;27000:17;26996:45;26993:2;;;27044:18;;:::i;:::-;-1:-1:-1;27084:9:1;;26983:116::o;27104:125::-;27144:4;27172:1;27169;27166:8;27163:2;;;27177:18;;:::i;:::-;-1:-1:-1;27214:9:1;;27153:76::o;27234:258::-;27306:1;27316:113;27330:6;27327:1;27324:13;27316:113;;;27406:11;;;27400:18;27387:11;;;27380:39;27352:2;27345:10;27316:113;;;27447:6;27444:1;27441:13;27438:2;;;-1:-1:-1;;27482:1:1;27464:16;;27457:27;27287:205::o;27497:136::-;27536:3;27564:5;27554:2;;27573:18;;:::i;:::-;-1:-1:-1;;;27609:18:1;;27544:89::o;27638:380::-;27717:1;27713:12;;;;27760;;;27781:2;;27835:4;27827:6;27823:17;27813:27;;27781:2;27888;27880:6;27877:14;27857:18;27854:38;27851:2;;;27934:10;27929:3;27925:20;27922:1;27915:31;27969:4;27966:1;27959:15;27997:4;27994:1;27987:15;27851:2;;27693:325;;;:::o;28023:135::-;28062:3;-1:-1:-1;;28083:17:1;;28080:2;;;28103:18;;:::i;:::-;-1:-1:-1;28150:1:1;28139:13;;28070:88::o;28163:112::-;28195:1;28221;28211:2;;28226:18;;:::i;:::-;-1:-1:-1;28260:9:1;;28201:74::o;28280:127::-;28341:10;28336:3;28332:20;28329:1;28322:31;28372:4;28369:1;28362:15;28396:4;28393:1;28386:15;28412:127;28473:10;28468:3;28464:20;28461:1;28454:31;28504:4;28501:1;28494:15;28528:4;28525:1;28518:15;28544:127;28605:10;28600:3;28596:20;28593:1;28586:31;28636:4;28633:1;28626:15;28660:4;28657:1;28650:15;28676:131;-1:-1:-1;;;;;;28750:32:1;;28740:43;;28730:2;;28797:1;28794;28787:12
Swarm Source
ipfs://fc284bfc30d1f9fdcc130945cfd8caa5cef82663da6fa15a25e3ae9be40cd2eb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.