ERC-721
Overview
Max Total Supply
12 CFROG
Holders
5
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 CFROGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoFrogs
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-01 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.0 (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 // OpenZeppelin Contracts v4.4.0 (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/utils/Strings.sol // OpenZeppelin Contracts v4.4.0 (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 // OpenZeppelin Contracts v4.4.0 (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/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (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 Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { 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/access/IAccessControl.sol // OpenZeppelin Contracts v4.4.1 (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/AccessControl.sol // OpenZeppelin Contracts (last updated v4.7.0) (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); _; } /** * @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 virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @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 virtual { 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 virtual 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. * * May emit a {RoleGranted} event. */ 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. * * May emit a {RoleRevoked} event. */ 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 revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ 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. * * May emit a {RoleGranted} event. * * [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}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ 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); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/extensions/IERC721AQueryable.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: erc721a/contracts/extensions/ERC721AQueryable.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File: contracts/CryptoFrogs.sol pragma solidity ^0.8.14; contract CryptoFrogs is ERC721A, ERC721AQueryable, AccessControl, Pausable { using Counters for Counters.Counter; event FeeUpdated(uint256 feeAmt); event PermissionConfigured(uint256 permId, uint256 cost); event UserPermissionAdded(address user, uint256 permId); struct UserStruct { uint256[] permissions; Counters.Counter permCount; } bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); Counters.Counter private _tokenIdCounter; string public updatableBaseURI = "ipfs://Qmc8A19qUxy1VWeSDtJj9cGk1DAfE88E47Xb5BFn5Z6Hg1/"; uint256 public feeAmt = 0; mapping(address => UserStruct) users; Counters.Counter private _permCounter; uint256[] public permissionCost; constructor() ERC721A("CryptoFrogs NFT", "CFROG") { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(PAUSER_ROLE, msg.sender); _grantRole(MINTER_ROLE, msg.sender); _tokenIdCounter.increment(); // start @ 1 } function pause() public onlyRole(PAUSER_ROLE) { _pause(); } function unpause() public onlyRole(PAUSER_ROLE) { _unpause(); } function _baseURI() internal view override returns (string memory) { return updatableBaseURI; } function setBaseURI(string memory newBaseURI) public onlyRole(DEFAULT_ADMIN_ROLE) { updatableBaseURI = newBaseURI; } function tokenURI(uint256 tokenId) public view virtual override(ERC721A, IERC721A) returns (string memory) { return string(abi.encodePacked(super.tokenURI(tokenId), ".json")); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, AccessControl, IERC721A) returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } function mint(address to) public payable whenNotPaused { if (!hasRole(MINTER_ROLE, _msgSender())) { require(msg.value >= feeAmt, "Insufficiant funds"); } _mint(to, 1); } function mintQty(address to, uint256 amount) public payable whenNotPaused { if (!hasRole(MINTER_ROLE, _msgSender())) { require(msg.value >= feeAmt, "Insufficiant funds"); } _mint(to, amount); } function setFee(uint256 newFee) public onlyRole(DEFAULT_ADMIN_ROLE) { feeAmt = newFee; emit FeeUpdated(newFee); } function withdraw() public payable onlyRole(DEFAULT_ADMIN_ROLE) { // withdraw total balance on contract (bool os, ) = payable(_msgSender()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feeAmt","type":"uint256"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"permId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"cost","type":"uint256"}],"name":"PermissionConfigured","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"permId","type":"uint256"}],"name":"UserPermissionAdded","type":"event"},{"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":"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":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeAmt","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":"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":"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":[{"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":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintQty","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"permissionCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updatableBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052604051806060016040528060368152602001620041d960369139600b90805190602001906200003592919062000330565b506000600c553480156200004857600080fd5b506040518060400160405280600f81526020017f43727970746f46726f6773204e465400000000000000000000000000000000008152506040518060400160405280600581526020017f4346524f470000000000000000000000000000000000000000000000000000008152508160029080519060200190620000cd92919062000330565b508060039080519060200190620000e692919062000330565b50620000f7620001b060201b60201c565b60008190555050506000600960006101000a81548160ff0219169083151502179055506200012f6000801b33620001b560201b60201c565b620001617f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620001b560201b60201c565b620001937f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620001b560201b60201c565b620001aa600a620002a760201b62001c8b1760201c565b62000444565b600090565b620001c78282620002bd60201b60201c565b620002a35760016008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002486200032860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6001816000016000828254019250508190555050565b60006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b8280546200033e906200040f565b90600052602060002090601f016020900481019282620003625760008555620003ae565b82601f106200037d57805160ff1916838001178555620003ae565b82800160010185558215620003ae579182015b82811115620003ad57825182559160200191906001019062000390565b5b509050620003bd9190620003c1565b5090565b5b80821115620003dc576000816000905550600101620003c2565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200042857607f821691505b6020821081036200043e576200043d620003e0565b5b50919050565b613d8580620004546000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063a22cb465116100ab578063d53913931161006f578063d5391393146107de578063d547741f14610809578063e63ab1e914610832578063e985e9c51461085d578063eebb61831461089a5761021a565b8063a22cb465146106f6578063aef4b0bf1461071f578063b88d4fde1461073b578063c23dc68f14610764578063c87b56dd146107a15761021a565b806391d14854116100f257806391d14854146105fb57806395d89b411461063857806399a2557a14610663578063a075e9a2146106a0578063a217fddf146106cb5761021a565b806370a082311461052d5780638164dcd51461056a5780638456cb59146105a75780638462151c146105be5761021a565b80633ccfd60b116101a65780635bbb2177116101755780635bbb2177146104435780635c975abb146104805780636352211e146104ab57806369fe0e2d146104e85780636a627842146105115761021a565b80633ccfd60b146103d05780633f4ba83a146103da57806342842e0e146103f157806355f804b31461041a5761021a565b806318160ddd116101ed57806318160ddd146102ed57806323b872dd14610318578063248a9ca3146103415780632f2ff15d1461037e57806336568abe146103a75761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612bca565b6108c5565b6040516102539190612c12565b60405180910390f35b34801561026857600080fd5b50610271610957565b60405161027e9190612cc6565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612d1e565b6109e9565b6040516102bb9190612d8c565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612dd3565b610a68565b005b3480156102f957600080fd5b50610302610bac565b60405161030f9190612e22565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612e3d565b610bc3565b005b34801561034d57600080fd5b5061036860048036038101906103639190612ec6565b610ee5565b6040516103759190612f02565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612f1d565b610f05565b005b3480156103b357600080fd5b506103ce60048036038101906103c99190612f1d565b610f26565b005b6103d8610fa9565b005b3480156103e657600080fd5b506103ef611037565b005b3480156103fd57600080fd5b5061041860048036038101906104139190612e3d565b61106c565b005b34801561042657600080fd5b50610441600480360381019061043c9190613092565b61108c565b005b34801561044f57600080fd5b5061046a6004803603810190610465919061313b565b6110b4565b60405161047791906132eb565b60405180910390f35b34801561048c57600080fd5b50610495611177565b6040516104a29190612c12565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190612d1e565b61118e565b6040516104df9190612d8c565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190612d1e565b6111a0565b005b61052b6004803603810190610526919061330d565b6111ef565b005b34801561053957600080fd5b50610554600480360381019061054f919061330d565b611280565b6040516105619190612e22565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190612d1e565b611338565b60405161059e9190612e22565b60405180910390f35b3480156105b357600080fd5b506105bc61135c565b005b3480156105ca57600080fd5b506105e560048036038101906105e0919061330d565b611391565b6040516105f291906133f8565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190612f1d565b6114d4565b60405161062f9190612c12565b60405180910390f35b34801561064457600080fd5b5061064d61153f565b60405161065a9190612cc6565b60405180910390f35b34801561066f57600080fd5b5061068a6004803603810190610685919061341a565b6115d1565b60405161069791906133f8565b60405180910390f35b3480156106ac57600080fd5b506106b56117dd565b6040516106c29190612e22565b60405180910390f35b3480156106d757600080fd5b506106e06117e3565b6040516106ed9190612f02565b60405180910390f35b34801561070257600080fd5b5061071d60048036038101906107189190613499565b6117ea565b005b61073960048036038101906107349190612dd3565b611961565b005b34801561074757600080fd5b50610762600480360381019061075d919061357a565b6119f2565b005b34801561077057600080fd5b5061078b60048036038101906107869190612d1e565b611a65565b6040516107989190613652565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190612d1e565b611acf565b6040516107d59190612cc6565b60405180910390f35b3480156107ea57600080fd5b506107f3611b00565b6040516108009190612f02565b60405180910390f35b34801561081557600080fd5b50610830600480360381019061082b9190612f1d565b611b24565b005b34801561083e57600080fd5b50610847611b45565b6040516108549190612f02565b60405180910390f35b34801561086957600080fd5b50610884600480360381019061087f919061366d565b611b69565b6040516108919190612c12565b60405180910390f35b3480156108a657600080fd5b506108af611bfd565b6040516108bc9190612cc6565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109505750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610966906136dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610992906136dc565b80156109df5780601f106109b4576101008083540402835291602001916109df565b820191906000526020600020905b8154815290600101906020018083116109c257829003601f168201915b5050505050905090565b60006109f482611ca1565b610a2a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a738261118e565b90508073ffffffffffffffffffffffffffffffffffffffff16610a94611d00565b73ffffffffffffffffffffffffffffffffffffffff1614610af757610ac081610abb611d00565b611b69565b610af6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610bb6611d08565b6001546000540303905090565b6000610bce82611d0d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c35576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c4184611dd9565b91509150610c578187610c52611d00565b611e00565b610ca357610c6c86610c67611d00565b611b69565b610ca2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d09576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d168686866001611e44565b8015610d2157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610def85610dcb888887611e4a565b7c020000000000000000000000000000000000000000000000000000000017611e72565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e755760006001850190506000600460008381526020019081526020016000205403610e73576000548114610e72578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610edd8686866001611e9d565b505050505050565b600060086000838152602001908152602001600020600101549050919050565b610f0e82610ee5565b610f1781611ea3565b610f218383611eb7565b505050565b610f2e611f98565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f929061377f565b60405180910390fd5b610fa58282611fa0565b5050565b6000801b610fb681611ea3565b6000610fc0611f98565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fe3906137d0565b60006040518083038185875af1925050503d8060008114611020576040519150601f19603f3d011682016040523d82523d6000602084013e611025565b606091505b505090508061103357600080fd5b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61106181611ea3565b611069612082565b50565b611087838383604051806020016040528060008152506119f2565b505050565b6000801b61109981611ea3565b81600b90805190602001906110af929190612a6c565b505050565b6060600083839050905060008167ffffffffffffffff8111156110da576110d9612f67565b5b60405190808252806020026020018201604052801561111357816020015b611100612af2565b8152602001906001900390816110f85790505b50905060005b82811461116b57611142868683818110611136576111356137e5565b5b90506020020135611a65565b828281518110611155576111546137e5565b5b6020026020010181905250806001019050611119565b50809250505092915050565b6000600960009054906101000a900460ff16905090565b600061119982611d0d565b9050919050565b6000801b6111ad81611ea3565b81600c819055507f8c4d35e54a3f2ef1134138fd8ea3daee6a3c89e10d2665996babdf70261e2c76826040516111e39190612e22565b60405180910390a15050565b6111f76120e5565b6112287f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6611223611f98565b6114d4565b61127257600c54341015611271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126890613860565b60405180910390fd5b5b61127d81600161212f565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f818154811061134857600080fd5b906000526020600020016000915090505481565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61138681611ea3565b61138e6122ea565b50565b606060008060006113a185611280565b905060008167ffffffffffffffff8111156113bf576113be612f67565b5b6040519080825280602002602001820160405280156113ed5781602001602082028036833780820191505090505b5090506113f8612af2565b6000611402611d08565b90505b8386146114c6576114158161234d565b915081604001516114bb57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461146057816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036114ba57808387806001019850815181106114ad576114ac6137e5565b5b6020026020010181815250505b5b806001019050611405565b508195505050505050919050565b60006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606003805461154e906136dc565b80601f016020809104026020016040519081016040528092919081815260200182805461157a906136dc565b80156115c75780601f1061159c576101008083540402835291602001916115c7565b820191906000526020600020905b8154815290600101906020018083116115aa57829003601f168201915b5050505050905090565b606081831061160c576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611617612378565b9050611621611d08565b85101561163357611630611d08565b94505b8084111561163f578093505b600061164a87611280565b90508486101561166d576000868603905081811015611667578091505b50611672565b600090505b60008167ffffffffffffffff81111561168e5761168d612f67565b5b6040519080825280602002602001820160405280156116bc5781602001602082028036833780820191505090505b509050600082036116d357809450505050506117d6565b60006116de88611a65565b9050600081604001516116f357816000015190505b60008990505b8881141580156117095750848714155b156117c8576117178161234d565b925082604001516117bd57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461176257826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117bc57808488806001019950815181106117af576117ae6137e5565b5b6020026020010181815250505b5b8060010190506116f9565b508583528296505050505050505b9392505050565b600c5481565b6000801b81565b6117f2611d00565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611856576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611863611d00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611910611d00565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119559190612c12565b60405180910390a35050565b6119696120e5565b61199a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6611995611f98565b6114d4565b6119e457600c543410156119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da90613860565b60405180910390fd5b5b6119ee828261212f565b5050565b6119fd848484610bc3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a5f57611a2884848484612381565b611a5e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a6d612af2565b611a75612af2565b611a7d611d08565b831080611a915750611a8d612378565b8310155b15611a9f5780915050611aca565b611aa88361234d565b9050806040015115611abd5780915050611aca565b611ac6836124d1565b9150505b919050565b6060611ada826124f1565b604051602001611aea9190613908565b6040516020818303038152906040529050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611b2d82610ee5565b611b3681611ea3565b611b408383611fa0565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b8054611c0a906136dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611c36906136dc565b8015611c835780601f10611c5857610100808354040283529160200191611c83565b820191906000526020600020905b815481529060010190602001808311611c6657829003601f168201915b505050505081565b6001816000016000828254019250508190555050565b600081611cac611d08565b11158015611cbb575060005482105b8015611cf9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611d1c611d08565b11611da257600054811015611da15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d9f575b60008103611d95576004600083600190039350838152602001908152602001600020549050611d6b565b8092505050611dd4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e6186868461258f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611eb481611eaf611f98565b612598565b50565b611ec182826114d4565b611f945760016008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f39611f98565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600033905090565b611faa82826114d4565b1561207e5760006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612023611f98565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61208a612635565b6000600960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120ce611f98565b6040516120db9190612d8c565b60405180910390a1565b6120ed611177565b1561212d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212490613976565b60405180910390fd5b565b6000805490506000820361216f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61217c6000848385611e44565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121f3836121e46000866000611e4a565b6121ed8561267e565b17611e72565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461229457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612259565b50600082036122cf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122e56000848385611e9d565b505050565b6122f26120e5565b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612336611f98565b6040516123439190612d8c565b60405180910390a1565b612355612af2565b612371600460008481526020019081526020016000205461268e565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123a7611d00565b8786866040518563ffffffff1660e01b81526004016123c994939291906139eb565b6020604051808303816000875af192505050801561240557506040513d601f19601f820116820180604052508101906124029190613a4c565b60015b61247e573d8060008114612435576040519150601f19603f3d011682016040523d82523d6000602084013e61243a565b606091505b506000815103612476576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6124d9612af2565b6124ea6124e583611d0d565b61268e565b9050919050565b60606124fc82611ca1565b612532576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061253c612744565b9050600081510361255c5760405180602001604052806000815250612587565b80612566846127d6565b604051602001612577929190613a79565b6040516020818303038152906040525b915050919050565b60009392505050565b6125a282826114d4565b612631576125c78173ffffffffffffffffffffffffffffffffffffffff166014612830565b6125d58360001c6020612830565b6040516020016125e6929190613b35565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126289190612cc6565b60405180910390fd5b5050565b61263d611177565b61267c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267390613bbb565b60405180910390fd5b565b60006001821460e11b9050919050565b612696612af2565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6060600b8054612753906136dc565b80601f016020809104026020016040519081016040528092919081815260200182805461277f906136dc565b80156127cc5780601f106127a1576101008083540402835291602001916127cc565b820191906000526020600020905b8154815290600101906020018083116127af57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561281c57600183039250600a81066030018353600a810490506127fc565b508181036020830392508083525050919050565b6060600060028360026128439190613c0a565b61284d9190613c64565b67ffffffffffffffff81111561286657612865612f67565b5b6040519080825280601f01601f1916602001820160405280156128985781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106128d0576128cf6137e5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612934576129336137e5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026129749190613c0a565b61297e9190613c64565b90505b6001811115612a1e577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106129c0576129bf6137e5565b5b1a60f81b8282815181106129d7576129d66137e5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612a1790613cba565b9050612981565b5060008414612a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5990613d2f565b60405180910390fd5b8091505092915050565b828054612a78906136dc565b90600052602060002090601f016020900481019282612a9a5760008555612ae1565b82601f10612ab357805160ff1916838001178555612ae1565b82800160010185558215612ae1579182015b82811115612ae0578251825591602001919060010190612ac5565b5b509050612aee9190612b41565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612b5a576000816000905550600101612b42565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ba781612b72565b8114612bb257600080fd5b50565b600081359050612bc481612b9e565b92915050565b600060208284031215612be057612bdf612b68565b5b6000612bee84828501612bb5565b91505092915050565b60008115159050919050565b612c0c81612bf7565b82525050565b6000602082019050612c276000830184612c03565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c67578082015181840152602081019050612c4c565b83811115612c76576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c9882612c2d565b612ca28185612c38565b9350612cb2818560208601612c49565b612cbb81612c7c565b840191505092915050565b60006020820190508181036000830152612ce08184612c8d565b905092915050565b6000819050919050565b612cfb81612ce8565b8114612d0657600080fd5b50565b600081359050612d1881612cf2565b92915050565b600060208284031215612d3457612d33612b68565b5b6000612d4284828501612d09565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d7682612d4b565b9050919050565b612d8681612d6b565b82525050565b6000602082019050612da16000830184612d7d565b92915050565b612db081612d6b565b8114612dbb57600080fd5b50565b600081359050612dcd81612da7565b92915050565b60008060408385031215612dea57612de9612b68565b5b6000612df885828601612dbe565b9250506020612e0985828601612d09565b9150509250929050565b612e1c81612ce8565b82525050565b6000602082019050612e376000830184612e13565b92915050565b600080600060608486031215612e5657612e55612b68565b5b6000612e6486828701612dbe565b9350506020612e7586828701612dbe565b9250506040612e8686828701612d09565b9150509250925092565b6000819050919050565b612ea381612e90565b8114612eae57600080fd5b50565b600081359050612ec081612e9a565b92915050565b600060208284031215612edc57612edb612b68565b5b6000612eea84828501612eb1565b91505092915050565b612efc81612e90565b82525050565b6000602082019050612f176000830184612ef3565b92915050565b60008060408385031215612f3457612f33612b68565b5b6000612f4285828601612eb1565b9250506020612f5385828601612dbe565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f9f82612c7c565b810181811067ffffffffffffffff82111715612fbe57612fbd612f67565b5b80604052505050565b6000612fd1612b5e565b9050612fdd8282612f96565b919050565b600067ffffffffffffffff821115612ffd57612ffc612f67565b5b61300682612c7c565b9050602081019050919050565b82818337600083830152505050565b600061303561303084612fe2565b612fc7565b90508281526020810184848401111561305157613050612f62565b5b61305c848285613013565b509392505050565b600082601f83011261307957613078612f5d565b5b8135613089848260208601613022565b91505092915050565b6000602082840312156130a8576130a7612b68565b5b600082013567ffffffffffffffff8111156130c6576130c5612b6d565b5b6130d284828501613064565b91505092915050565b600080fd5b600080fd5b60008083601f8401126130fb576130fa612f5d565b5b8235905067ffffffffffffffff811115613118576131176130db565b5b602083019150836020820283011115613134576131336130e0565b5b9250929050565b6000806020838503121561315257613151612b68565b5b600083013567ffffffffffffffff8111156131705761316f612b6d565b5b61317c858286016130e5565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131bd81612d6b565b82525050565b600067ffffffffffffffff82169050919050565b6131e0816131c3565b82525050565b6131ef81612bf7565b82525050565b600062ffffff82169050919050565b61320d816131f5565b82525050565b60808201600082015161322960008501826131b4565b50602082015161323c60208501826131d7565b50604082015161324f60408501826131e6565b5060608201516132626060850182613204565b50505050565b60006132748383613213565b60808301905092915050565b6000602082019050919050565b600061329882613188565b6132a28185613193565b93506132ad836131a4565b8060005b838110156132de5781516132c58882613268565b97506132d083613280565b9250506001810190506132b1565b5085935050505092915050565b60006020820190508181036000830152613305818461328d565b905092915050565b60006020828403121561332357613322612b68565b5b600061333184828501612dbe565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61336f81612ce8565b82525050565b60006133818383613366565b60208301905092915050565b6000602082019050919050565b60006133a58261333a565b6133af8185613345565b93506133ba83613356565b8060005b838110156133eb5781516133d28882613375565b97506133dd8361338d565b9250506001810190506133be565b5085935050505092915050565b60006020820190508181036000830152613412818461339a565b905092915050565b60008060006060848603121561343357613432612b68565b5b600061344186828701612dbe565b935050602061345286828701612d09565b925050604061346386828701612d09565b9150509250925092565b61347681612bf7565b811461348157600080fd5b50565b6000813590506134938161346d565b92915050565b600080604083850312156134b0576134af612b68565b5b60006134be85828601612dbe565b92505060206134cf85828601613484565b9150509250929050565b600067ffffffffffffffff8211156134f4576134f3612f67565b5b6134fd82612c7c565b9050602081019050919050565b600061351d613518846134d9565b612fc7565b90508281526020810184848401111561353957613538612f62565b5b613544848285613013565b509392505050565b600082601f83011261356157613560612f5d565b5b813561357184826020860161350a565b91505092915050565b6000806000806080858703121561359457613593612b68565b5b60006135a287828801612dbe565b94505060206135b387828801612dbe565b93505060406135c487828801612d09565b925050606085013567ffffffffffffffff8111156135e5576135e4612b6d565b5b6135f18782880161354c565b91505092959194509250565b60808201600082015161361360008501826131b4565b50602082015161362660208501826131d7565b50604082015161363960408501826131e6565b50606082015161364c6060850182613204565b50505050565b600060808201905061366760008301846135fd565b92915050565b6000806040838503121561368457613683612b68565b5b600061369285828601612dbe565b92505060206136a385828601612dbe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136f457607f821691505b602082108103613707576137066136ad565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000613769602f83612c38565b91506137748261370d565b604082019050919050565b600060208201905081810360008301526137988161375c565b9050919050565b600081905092915050565b50565b60006137ba60008361379f565b91506137c5826137aa565b600082019050919050565b60006137db826137ad565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f496e73756666696369616e742066756e64730000000000000000000000000000600082015250565b600061384a601283612c38565b915061385582613814565b602082019050919050565b600060208201905081810360008301526138798161383d565b9050919050565b600081905092915050565b600061389682612c2d565b6138a08185613880565b93506138b0818560208601612c49565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138f2600583613880565b91506138fd826138bc565b600582019050919050565b6000613914828461388b565b915061391f826138e5565b915081905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613960601083612c38565b915061396b8261392a565b602082019050919050565b6000602082019050818103600083015261398f81613953565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139bd82613996565b6139c781856139a1565b93506139d7818560208601612c49565b6139e081612c7c565b840191505092915050565b6000608082019050613a006000830187612d7d565b613a0d6020830186612d7d565b613a1a6040830185612e13565b8181036060830152613a2c81846139b2565b905095945050505050565b600081519050613a4681612b9e565b92915050565b600060208284031215613a6257613a61612b68565b5b6000613a7084828501613a37565b91505092915050565b6000613a85828561388b565b9150613a91828461388b565b91508190509392505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613ad3601783613880565b9150613ade82613a9d565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613b1f601183613880565b9150613b2a82613ae9565b601182019050919050565b6000613b4082613ac6565b9150613b4c828561388b565b9150613b5782613b12565b9150613b63828461388b565b91508190509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613ba5601483612c38565b9150613bb082613b6f565b602082019050919050565b60006020820190508181036000830152613bd481613b98565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c1582612ce8565b9150613c2083612ce8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c5957613c58613bdb565b5b828202905092915050565b6000613c6f82612ce8565b9150613c7a83612ce8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613caf57613cae613bdb565b5b828201905092915050565b6000613cc582612ce8565b915060008203613cd857613cd7613bdb565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000613d19602083612c38565b9150613d2482613ce3565b602082019050919050565b60006020820190508181036000830152613d4881613d0c565b905091905056fea2646970667358221220ebd44f11d96af7bf064e75e2747c2c44d2285c68cd75f06dadee56e10d75156664736f6c634300080e0033697066733a2f2f516d633841313971557879315657655344744a6a3963476b3144416645383845343758623542466e355a364867312f
Deployed Bytecode
0x60806040526004361061021a5760003560e01c806370a0823111610123578063a22cb465116100ab578063d53913931161006f578063d5391393146107de578063d547741f14610809578063e63ab1e914610832578063e985e9c51461085d578063eebb61831461089a5761021a565b8063a22cb465146106f6578063aef4b0bf1461071f578063b88d4fde1461073b578063c23dc68f14610764578063c87b56dd146107a15761021a565b806391d14854116100f257806391d14854146105fb57806395d89b411461063857806399a2557a14610663578063a075e9a2146106a0578063a217fddf146106cb5761021a565b806370a082311461052d5780638164dcd51461056a5780638456cb59146105a75780638462151c146105be5761021a565b80633ccfd60b116101a65780635bbb2177116101755780635bbb2177146104435780635c975abb146104805780636352211e146104ab57806369fe0e2d146104e85780636a627842146105115761021a565b80633ccfd60b146103d05780633f4ba83a146103da57806342842e0e146103f157806355f804b31461041a5761021a565b806318160ddd116101ed57806318160ddd146102ed57806323b872dd14610318578063248a9ca3146103415780632f2ff15d1461037e57806336568abe146103a75761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612bca565b6108c5565b6040516102539190612c12565b60405180910390f35b34801561026857600080fd5b50610271610957565b60405161027e9190612cc6565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612d1e565b6109e9565b6040516102bb9190612d8c565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612dd3565b610a68565b005b3480156102f957600080fd5b50610302610bac565b60405161030f9190612e22565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612e3d565b610bc3565b005b34801561034d57600080fd5b5061036860048036038101906103639190612ec6565b610ee5565b6040516103759190612f02565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612f1d565b610f05565b005b3480156103b357600080fd5b506103ce60048036038101906103c99190612f1d565b610f26565b005b6103d8610fa9565b005b3480156103e657600080fd5b506103ef611037565b005b3480156103fd57600080fd5b5061041860048036038101906104139190612e3d565b61106c565b005b34801561042657600080fd5b50610441600480360381019061043c9190613092565b61108c565b005b34801561044f57600080fd5b5061046a6004803603810190610465919061313b565b6110b4565b60405161047791906132eb565b60405180910390f35b34801561048c57600080fd5b50610495611177565b6040516104a29190612c12565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190612d1e565b61118e565b6040516104df9190612d8c565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190612d1e565b6111a0565b005b61052b6004803603810190610526919061330d565b6111ef565b005b34801561053957600080fd5b50610554600480360381019061054f919061330d565b611280565b6040516105619190612e22565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190612d1e565b611338565b60405161059e9190612e22565b60405180910390f35b3480156105b357600080fd5b506105bc61135c565b005b3480156105ca57600080fd5b506105e560048036038101906105e0919061330d565b611391565b6040516105f291906133f8565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190612f1d565b6114d4565b60405161062f9190612c12565b60405180910390f35b34801561064457600080fd5b5061064d61153f565b60405161065a9190612cc6565b60405180910390f35b34801561066f57600080fd5b5061068a6004803603810190610685919061341a565b6115d1565b60405161069791906133f8565b60405180910390f35b3480156106ac57600080fd5b506106b56117dd565b6040516106c29190612e22565b60405180910390f35b3480156106d757600080fd5b506106e06117e3565b6040516106ed9190612f02565b60405180910390f35b34801561070257600080fd5b5061071d60048036038101906107189190613499565b6117ea565b005b61073960048036038101906107349190612dd3565b611961565b005b34801561074757600080fd5b50610762600480360381019061075d919061357a565b6119f2565b005b34801561077057600080fd5b5061078b60048036038101906107869190612d1e565b611a65565b6040516107989190613652565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190612d1e565b611acf565b6040516107d59190612cc6565b60405180910390f35b3480156107ea57600080fd5b506107f3611b00565b6040516108009190612f02565b60405180910390f35b34801561081557600080fd5b50610830600480360381019061082b9190612f1d565b611b24565b005b34801561083e57600080fd5b50610847611b45565b6040516108549190612f02565b60405180910390f35b34801561086957600080fd5b50610884600480360381019061087f919061366d565b611b69565b6040516108919190612c12565b60405180910390f35b3480156108a657600080fd5b506108af611bfd565b6040516108bc9190612cc6565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109505750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610966906136dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610992906136dc565b80156109df5780601f106109b4576101008083540402835291602001916109df565b820191906000526020600020905b8154815290600101906020018083116109c257829003601f168201915b5050505050905090565b60006109f482611ca1565b610a2a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a738261118e565b90508073ffffffffffffffffffffffffffffffffffffffff16610a94611d00565b73ffffffffffffffffffffffffffffffffffffffff1614610af757610ac081610abb611d00565b611b69565b610af6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610bb6611d08565b6001546000540303905090565b6000610bce82611d0d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c35576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c4184611dd9565b91509150610c578187610c52611d00565b611e00565b610ca357610c6c86610c67611d00565b611b69565b610ca2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d09576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d168686866001611e44565b8015610d2157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610def85610dcb888887611e4a565b7c020000000000000000000000000000000000000000000000000000000017611e72565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e755760006001850190506000600460008381526020019081526020016000205403610e73576000548114610e72578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610edd8686866001611e9d565b505050505050565b600060086000838152602001908152602001600020600101549050919050565b610f0e82610ee5565b610f1781611ea3565b610f218383611eb7565b505050565b610f2e611f98565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f929061377f565b60405180910390fd5b610fa58282611fa0565b5050565b6000801b610fb681611ea3565b6000610fc0611f98565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fe3906137d0565b60006040518083038185875af1925050503d8060008114611020576040519150601f19603f3d011682016040523d82523d6000602084013e611025565b606091505b505090508061103357600080fd5b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61106181611ea3565b611069612082565b50565b611087838383604051806020016040528060008152506119f2565b505050565b6000801b61109981611ea3565b81600b90805190602001906110af929190612a6c565b505050565b6060600083839050905060008167ffffffffffffffff8111156110da576110d9612f67565b5b60405190808252806020026020018201604052801561111357816020015b611100612af2565b8152602001906001900390816110f85790505b50905060005b82811461116b57611142868683818110611136576111356137e5565b5b90506020020135611a65565b828281518110611155576111546137e5565b5b6020026020010181905250806001019050611119565b50809250505092915050565b6000600960009054906101000a900460ff16905090565b600061119982611d0d565b9050919050565b6000801b6111ad81611ea3565b81600c819055507f8c4d35e54a3f2ef1134138fd8ea3daee6a3c89e10d2665996babdf70261e2c76826040516111e39190612e22565b60405180910390a15050565b6111f76120e5565b6112287f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6611223611f98565b6114d4565b61127257600c54341015611271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126890613860565b60405180910390fd5b5b61127d81600161212f565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f818154811061134857600080fd5b906000526020600020016000915090505481565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61138681611ea3565b61138e6122ea565b50565b606060008060006113a185611280565b905060008167ffffffffffffffff8111156113bf576113be612f67565b5b6040519080825280602002602001820160405280156113ed5781602001602082028036833780820191505090505b5090506113f8612af2565b6000611402611d08565b90505b8386146114c6576114158161234d565b915081604001516114bb57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461146057816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036114ba57808387806001019850815181106114ad576114ac6137e5565b5b6020026020010181815250505b5b806001019050611405565b508195505050505050919050565b60006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606003805461154e906136dc565b80601f016020809104026020016040519081016040528092919081815260200182805461157a906136dc565b80156115c75780601f1061159c576101008083540402835291602001916115c7565b820191906000526020600020905b8154815290600101906020018083116115aa57829003601f168201915b5050505050905090565b606081831061160c576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611617612378565b9050611621611d08565b85101561163357611630611d08565b94505b8084111561163f578093505b600061164a87611280565b90508486101561166d576000868603905081811015611667578091505b50611672565b600090505b60008167ffffffffffffffff81111561168e5761168d612f67565b5b6040519080825280602002602001820160405280156116bc5781602001602082028036833780820191505090505b509050600082036116d357809450505050506117d6565b60006116de88611a65565b9050600081604001516116f357816000015190505b60008990505b8881141580156117095750848714155b156117c8576117178161234d565b925082604001516117bd57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461176257826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117bc57808488806001019950815181106117af576117ae6137e5565b5b6020026020010181815250505b5b8060010190506116f9565b508583528296505050505050505b9392505050565b600c5481565b6000801b81565b6117f2611d00565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611856576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611863611d00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611910611d00565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119559190612c12565b60405180910390a35050565b6119696120e5565b61199a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6611995611f98565b6114d4565b6119e457600c543410156119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da90613860565b60405180910390fd5b5b6119ee828261212f565b5050565b6119fd848484610bc3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a5f57611a2884848484612381565b611a5e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a6d612af2565b611a75612af2565b611a7d611d08565b831080611a915750611a8d612378565b8310155b15611a9f5780915050611aca565b611aa88361234d565b9050806040015115611abd5780915050611aca565b611ac6836124d1565b9150505b919050565b6060611ada826124f1565b604051602001611aea9190613908565b6040516020818303038152906040529050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611b2d82610ee5565b611b3681611ea3565b611b408383611fa0565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b8054611c0a906136dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611c36906136dc565b8015611c835780601f10611c5857610100808354040283529160200191611c83565b820191906000526020600020905b815481529060010190602001808311611c6657829003601f168201915b505050505081565b6001816000016000828254019250508190555050565b600081611cac611d08565b11158015611cbb575060005482105b8015611cf9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611d1c611d08565b11611da257600054811015611da15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d9f575b60008103611d95576004600083600190039350838152602001908152602001600020549050611d6b565b8092505050611dd4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e6186868461258f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611eb481611eaf611f98565b612598565b50565b611ec182826114d4565b611f945760016008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f39611f98565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600033905090565b611faa82826114d4565b1561207e5760006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612023611f98565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61208a612635565b6000600960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120ce611f98565b6040516120db9190612d8c565b60405180910390a1565b6120ed611177565b1561212d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212490613976565b60405180910390fd5b565b6000805490506000820361216f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61217c6000848385611e44565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121f3836121e46000866000611e4a565b6121ed8561267e565b17611e72565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461229457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612259565b50600082036122cf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122e56000848385611e9d565b505050565b6122f26120e5565b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612336611f98565b6040516123439190612d8c565b60405180910390a1565b612355612af2565b612371600460008481526020019081526020016000205461268e565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123a7611d00565b8786866040518563ffffffff1660e01b81526004016123c994939291906139eb565b6020604051808303816000875af192505050801561240557506040513d601f19601f820116820180604052508101906124029190613a4c565b60015b61247e573d8060008114612435576040519150601f19603f3d011682016040523d82523d6000602084013e61243a565b606091505b506000815103612476576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6124d9612af2565b6124ea6124e583611d0d565b61268e565b9050919050565b60606124fc82611ca1565b612532576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061253c612744565b9050600081510361255c5760405180602001604052806000815250612587565b80612566846127d6565b604051602001612577929190613a79565b6040516020818303038152906040525b915050919050565b60009392505050565b6125a282826114d4565b612631576125c78173ffffffffffffffffffffffffffffffffffffffff166014612830565b6125d58360001c6020612830565b6040516020016125e6929190613b35565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126289190612cc6565b60405180910390fd5b5050565b61263d611177565b61267c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267390613bbb565b60405180910390fd5b565b60006001821460e11b9050919050565b612696612af2565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6060600b8054612753906136dc565b80601f016020809104026020016040519081016040528092919081815260200182805461277f906136dc565b80156127cc5780601f106127a1576101008083540402835291602001916127cc565b820191906000526020600020905b8154815290600101906020018083116127af57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561281c57600183039250600a81066030018353600a810490506127fc565b508181036020830392508083525050919050565b6060600060028360026128439190613c0a565b61284d9190613c64565b67ffffffffffffffff81111561286657612865612f67565b5b6040519080825280601f01601f1916602001820160405280156128985781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106128d0576128cf6137e5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612934576129336137e5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026129749190613c0a565b61297e9190613c64565b90505b6001811115612a1e577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106129c0576129bf6137e5565b5b1a60f81b8282815181106129d7576129d66137e5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612a1790613cba565b9050612981565b5060008414612a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5990613d2f565b60405180910390fd5b8091505092915050565b828054612a78906136dc565b90600052602060002090601f016020900481019282612a9a5760008555612ae1565b82601f10612ab357805160ff1916838001178555612ae1565b82800160010185558215612ae1579182015b82811115612ae0578251825591602001919060010190612ac5565b5b509050612aee9190612b41565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612b5a576000816000905550600101612b42565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ba781612b72565b8114612bb257600080fd5b50565b600081359050612bc481612b9e565b92915050565b600060208284031215612be057612bdf612b68565b5b6000612bee84828501612bb5565b91505092915050565b60008115159050919050565b612c0c81612bf7565b82525050565b6000602082019050612c276000830184612c03565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c67578082015181840152602081019050612c4c565b83811115612c76576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c9882612c2d565b612ca28185612c38565b9350612cb2818560208601612c49565b612cbb81612c7c565b840191505092915050565b60006020820190508181036000830152612ce08184612c8d565b905092915050565b6000819050919050565b612cfb81612ce8565b8114612d0657600080fd5b50565b600081359050612d1881612cf2565b92915050565b600060208284031215612d3457612d33612b68565b5b6000612d4284828501612d09565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d7682612d4b565b9050919050565b612d8681612d6b565b82525050565b6000602082019050612da16000830184612d7d565b92915050565b612db081612d6b565b8114612dbb57600080fd5b50565b600081359050612dcd81612da7565b92915050565b60008060408385031215612dea57612de9612b68565b5b6000612df885828601612dbe565b9250506020612e0985828601612d09565b9150509250929050565b612e1c81612ce8565b82525050565b6000602082019050612e376000830184612e13565b92915050565b600080600060608486031215612e5657612e55612b68565b5b6000612e6486828701612dbe565b9350506020612e7586828701612dbe565b9250506040612e8686828701612d09565b9150509250925092565b6000819050919050565b612ea381612e90565b8114612eae57600080fd5b50565b600081359050612ec081612e9a565b92915050565b600060208284031215612edc57612edb612b68565b5b6000612eea84828501612eb1565b91505092915050565b612efc81612e90565b82525050565b6000602082019050612f176000830184612ef3565b92915050565b60008060408385031215612f3457612f33612b68565b5b6000612f4285828601612eb1565b9250506020612f5385828601612dbe565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f9f82612c7c565b810181811067ffffffffffffffff82111715612fbe57612fbd612f67565b5b80604052505050565b6000612fd1612b5e565b9050612fdd8282612f96565b919050565b600067ffffffffffffffff821115612ffd57612ffc612f67565b5b61300682612c7c565b9050602081019050919050565b82818337600083830152505050565b600061303561303084612fe2565b612fc7565b90508281526020810184848401111561305157613050612f62565b5b61305c848285613013565b509392505050565b600082601f83011261307957613078612f5d565b5b8135613089848260208601613022565b91505092915050565b6000602082840312156130a8576130a7612b68565b5b600082013567ffffffffffffffff8111156130c6576130c5612b6d565b5b6130d284828501613064565b91505092915050565b600080fd5b600080fd5b60008083601f8401126130fb576130fa612f5d565b5b8235905067ffffffffffffffff811115613118576131176130db565b5b602083019150836020820283011115613134576131336130e0565b5b9250929050565b6000806020838503121561315257613151612b68565b5b600083013567ffffffffffffffff8111156131705761316f612b6d565b5b61317c858286016130e5565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131bd81612d6b565b82525050565b600067ffffffffffffffff82169050919050565b6131e0816131c3565b82525050565b6131ef81612bf7565b82525050565b600062ffffff82169050919050565b61320d816131f5565b82525050565b60808201600082015161322960008501826131b4565b50602082015161323c60208501826131d7565b50604082015161324f60408501826131e6565b5060608201516132626060850182613204565b50505050565b60006132748383613213565b60808301905092915050565b6000602082019050919050565b600061329882613188565b6132a28185613193565b93506132ad836131a4565b8060005b838110156132de5781516132c58882613268565b97506132d083613280565b9250506001810190506132b1565b5085935050505092915050565b60006020820190508181036000830152613305818461328d565b905092915050565b60006020828403121561332357613322612b68565b5b600061333184828501612dbe565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61336f81612ce8565b82525050565b60006133818383613366565b60208301905092915050565b6000602082019050919050565b60006133a58261333a565b6133af8185613345565b93506133ba83613356565b8060005b838110156133eb5781516133d28882613375565b97506133dd8361338d565b9250506001810190506133be565b5085935050505092915050565b60006020820190508181036000830152613412818461339a565b905092915050565b60008060006060848603121561343357613432612b68565b5b600061344186828701612dbe565b935050602061345286828701612d09565b925050604061346386828701612d09565b9150509250925092565b61347681612bf7565b811461348157600080fd5b50565b6000813590506134938161346d565b92915050565b600080604083850312156134b0576134af612b68565b5b60006134be85828601612dbe565b92505060206134cf85828601613484565b9150509250929050565b600067ffffffffffffffff8211156134f4576134f3612f67565b5b6134fd82612c7c565b9050602081019050919050565b600061351d613518846134d9565b612fc7565b90508281526020810184848401111561353957613538612f62565b5b613544848285613013565b509392505050565b600082601f83011261356157613560612f5d565b5b813561357184826020860161350a565b91505092915050565b6000806000806080858703121561359457613593612b68565b5b60006135a287828801612dbe565b94505060206135b387828801612dbe565b93505060406135c487828801612d09565b925050606085013567ffffffffffffffff8111156135e5576135e4612b6d565b5b6135f18782880161354c565b91505092959194509250565b60808201600082015161361360008501826131b4565b50602082015161362660208501826131d7565b50604082015161363960408501826131e6565b50606082015161364c6060850182613204565b50505050565b600060808201905061366760008301846135fd565b92915050565b6000806040838503121561368457613683612b68565b5b600061369285828601612dbe565b92505060206136a385828601612dbe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136f457607f821691505b602082108103613707576137066136ad565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000613769602f83612c38565b91506137748261370d565b604082019050919050565b600060208201905081810360008301526137988161375c565b9050919050565b600081905092915050565b50565b60006137ba60008361379f565b91506137c5826137aa565b600082019050919050565b60006137db826137ad565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f496e73756666696369616e742066756e64730000000000000000000000000000600082015250565b600061384a601283612c38565b915061385582613814565b602082019050919050565b600060208201905081810360008301526138798161383d565b9050919050565b600081905092915050565b600061389682612c2d565b6138a08185613880565b93506138b0818560208601612c49565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138f2600583613880565b91506138fd826138bc565b600582019050919050565b6000613914828461388b565b915061391f826138e5565b915081905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613960601083612c38565b915061396b8261392a565b602082019050919050565b6000602082019050818103600083015261398f81613953565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139bd82613996565b6139c781856139a1565b93506139d7818560208601612c49565b6139e081612c7c565b840191505092915050565b6000608082019050613a006000830187612d7d565b613a0d6020830186612d7d565b613a1a6040830185612e13565b8181036060830152613a2c81846139b2565b905095945050505050565b600081519050613a4681612b9e565b92915050565b600060208284031215613a6257613a61612b68565b5b6000613a7084828501613a37565b91505092915050565b6000613a85828561388b565b9150613a91828461388b565b91508190509392505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613ad3601783613880565b9150613ade82613a9d565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613b1f601183613880565b9150613b2a82613ae9565b601182019050919050565b6000613b4082613ac6565b9150613b4c828561388b565b9150613b5782613b12565b9150613b63828461388b565b91508190509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613ba5601483612c38565b9150613bb082613b6f565b602082019050919050565b60006020820190508181036000830152613bd481613b98565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c1582612ce8565b9150613c2083612ce8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c5957613c58613bdb565b5b828202905092915050565b6000613c6f82612ce8565b9150613c7a83612ce8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613caf57613cae613bdb565b5b828201905092915050565b6000613cc582612ce8565b915060008203613cd857613cd7613bdb565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000613d19602083612c38565b9150613d2482613ce3565b602082019050919050565b60006020820190508181036000830152613d4881613d0c565b905091905056fea2646970667358221220ebd44f11d96af7bf064e75e2747c2c44d2285c68cd75f06dadee56e10d75156664736f6c634300080e0033
Deployed Bytecode Sourcemap
80720:3215:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82437:649;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42281:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48764:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48205:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38032:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52471:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15109:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15550:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16694:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83706:226;;;:::i;:::-;;81898:77;;;;;;;;;;;;;:::i;:::-;;55384:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82100:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75859:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6673:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43674:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83562:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83094:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39216:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81515:31;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81817:73;;;;;;;;;;;;;:::i;:::-;;79735:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13569:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42457:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76775:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81396:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12674:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49322:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83316:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56167:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75272:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82238:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81184:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15990:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81115:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49787:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81300:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82437:649;82556:4;82871:10;82856:25;;:11;:25;;;;:102;;;;82948:10;82933:25;;:11;:25;;;;82856:102;:179;;;;83025:10;83010:25;;:11;:25;;;;82856:179;82836:199;;82437:649;;;:::o;42281:100::-;42335:13;42368:5;42361:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42281:100;:::o;48764:218::-;48840:7;48865:16;48873:7;48865;:16::i;:::-;48860:64;;48890:34;;;;;;;;;;;;;;48860:64;48944:15;:24;48960:7;48944:24;;;;;;;;;;;:30;;;;;;;;;;;;48937:37;;48764:218;;;:::o;48205:400::-;48286:13;48302:16;48310:7;48302;:16::i;:::-;48286:32;;48358:5;48335:28;;:19;:17;:19::i;:::-;:28;;;48331:175;;48383:44;48400:5;48407:19;:17;:19::i;:::-;48383:16;:44::i;:::-;48378:128;;48455:35;;;;;;;;;;;;;;48378:128;48331:175;48551:2;48518:15;:24;48534:7;48518:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;48589:7;48585:2;48569:28;;48578:5;48569:28;;;;;;;;;;;;48275:330;48205:400;;:::o;38032:323::-;38093:7;38321:15;:13;:15::i;:::-;38306:12;;38290:13;;:28;:46;38283:53;;38032:323;:::o;52471:2817::-;52605:27;52635;52654:7;52635:18;:27::i;:::-;52605:57;;52720:4;52679:45;;52695:19;52679:45;;;52675:86;;52733:28;;;;;;;;;;;;;;52675:86;52775:27;52804:23;52831:35;52858:7;52831:26;:35::i;:::-;52774:92;;;;52966:68;52991:15;53008:4;53014:19;:17;:19::i;:::-;52966:24;:68::i;:::-;52961:180;;53054:43;53071:4;53077:19;:17;:19::i;:::-;53054:16;:43::i;:::-;53049:92;;53106:35;;;;;;;;;;;;;;53049:92;52961:180;53172:1;53158:16;;:2;:16;;;53154:52;;53183:23;;;;;;;;;;;;;;53154:52;53219:43;53241:4;53247:2;53251:7;53260:1;53219:21;:43::i;:::-;53355:15;53352:160;;;53495:1;53474:19;53467:30;53352:160;53892:18;:24;53911:4;53892:24;;;;;;;;;;;;;;;;53890:26;;;;;;;;;;;;53961:18;:22;53980:2;53961:22;;;;;;;;;;;;;;;;53959:24;;;;;;;;;;;54283:146;54320:2;54369:45;54384:4;54390:2;54394:19;54369:14;:45::i;:::-;34431:8;54341:73;54283:18;:146::i;:::-;54254:17;:26;54272:7;54254:26;;;;;;;;;;;:175;;;;54600:1;34431:8;54549:19;:47;:52;54545:627;;54622:19;54654:1;54644:7;:11;54622:33;;54811:1;54777:17;:30;54795:11;54777:30;;;;;;;;;;;;:35;54773:384;;54915:13;;54900:11;:28;54896:242;;55095:19;55062:17;:30;55080:11;55062:30;;;;;;;;;;;:52;;;;54896:242;54773:384;54603:569;54545:627;55219:7;55215:2;55200:27;;55209:4;55200:27;;;;;;;;;;;;55238:42;55259:4;55265:2;55269:7;55278:1;55238:20;:42::i;:::-;52594:2694;;;52471:2817;;;:::o;15109:131::-;15183:7;15210:6;:12;15217:4;15210:12;;;;;;;;;;;:22;;;15203:29;;15109:131;;;:::o;15550:147::-;15633:18;15646:4;15633:12;:18::i;:::-;13165:16;13176:4;13165:10;:16::i;:::-;15664:25:::1;15675:4;15681:7;15664:10;:25::i;:::-;15550:147:::0;;;:::o;16694:218::-;16801:12;:10;:12::i;:::-;16790:23;;:7;:23;;;16782:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;16878:26;16890:4;16896:7;16878:11;:26::i;:::-;16694:218;;:::o;83706:226::-;12719:4;83750:18;;13165:16;13176:4;13165:10;:16::i;:::-;83829:7:::1;83850:12;:10;:12::i;:::-;83842:26;;83876:21;83842:60;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83828:74;;;83921:2;83913:11;;;::::0;::::1;;83770:162;83706:226:::0;:::o;81898:77::-;81153:24;13165:16;13176:4;13165:10;:16::i;:::-;81957:10:::1;:8;:10::i;:::-;81898:77:::0;:::o;55384:185::-;55522:39;55539:4;55545:2;55549:7;55522:39;;;;;;;;;;;;:16;:39::i;:::-;55384:185;;;:::o;82100:130::-;12719:4;82162:18;;13165:16;13176:4;13165:10;:16::i;:::-;82212:10:::1;82193:16;:29;;;;;;;;;;;;:::i;:::-;;82100:130:::0;;:::o;75859:528::-;76003:23;76069:22;76094:8;;:15;;76069:40;;76124:34;76182:14;76161:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;76124:73;;76217:9;76212:125;76233:14;76228:1;:19;76212:125;;76289:32;76309:8;;76318:1;76309:11;;;;;;;:::i;:::-;;;;;;;;76289:19;:32::i;:::-;76273:10;76284:1;76273:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;76249:3;;;;;76212:125;;;;76358:10;76351:17;;;;75859:528;;;;:::o;6673:86::-;6720:4;6744:7;;;;;;;;;;;6737:14;;6673:86;:::o;43674:152::-;43746:7;43789:27;43808:7;43789:18;:27::i;:::-;43766:52;;43674:152;;;:::o;83562:136::-;12719:4;83610:18;;13165:16;13176:4;13165:10;:16::i;:::-;83650:6:::1;83641;:15;;;;83672:18;83683:6;83672:18;;;;;;:::i;:::-;;;;;;;;83562:136:::0;;:::o;83094:214::-;6278:19;:17;:19::i;:::-;83165:34:::1;81222:24;83186:12;:10;:12::i;:::-;83165:7;:34::i;:::-;83160:118;;83237:6;;83224:9;:19;;83216:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;83160:118;83288:12;83294:2;83298:1;83288:5;:12::i;:::-;83094:214:::0;:::o;39216:233::-;39288:7;39329:1;39312:19;;:5;:19;;;39308:60;;39340:28;;;;;;;;;;;;;;39308:60;33375:13;39386:18;:25;39405:5;39386:25;;;;;;;;;;;;;;;;:55;39379:62;;39216:233;;;:::o;81515:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;81817:73::-;81153:24;13165:16;13176:4;13165:10;:16::i;:::-;81874:8:::1;:6;:8::i;:::-;81817:73:::0;:::o;79735:900::-;79813:16;79867:19;79901:25;79941:22;79966:16;79976:5;79966:9;:16::i;:::-;79941:41;;79997:25;80039:14;80025:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79997:57;;80069:31;;:::i;:::-;80120:9;80132:15;:13;:15::i;:::-;80120:27;;80115:472;80164:14;80149:11;:29;80115:472;;80216:15;80229:1;80216:12;:15::i;:::-;80204:27;;80254:9;:16;;;80295:8;80250:73;80371:1;80345:28;;:9;:14;;;:28;;;80341:111;;80418:9;:14;;;80398:34;;80341:111;80495:5;80474:26;;:17;:26;;;80470:102;;80551:1;80525:8;80534:13;;;;;;80525:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;80470:102;80115:472;80180:3;;;;;80115:472;;;;80608:8;80601:15;;;;;;;79735:900;;;:::o;13569:147::-;13655:4;13679:6;:12;13686:4;13679:12;;;;;;;;;;;:20;;:29;13700:7;13679:29;;;;;;;;;;;;;;;;;;;;;;;;;13672:36;;13569:147;;;;:::o;42457:104::-;42513:13;42546:7;42539:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42457:104;:::o;76775:2513::-;76918:16;76985:4;76976:5;:13;76972:45;;76998:19;;;;;;;;;;;;;;76972:45;77032:19;77066:17;77086:14;:12;:14::i;:::-;77066:34;;77186:15;:13;:15::i;:::-;77178:5;:23;77174:87;;;77230:15;:13;:15::i;:::-;77222:23;;77174:87;77337:9;77330:4;:16;77326:73;;;77374:9;77367:16;;77326:73;77413:25;77441:16;77451:5;77441:9;:16::i;:::-;77413:44;;77635:4;77627:5;:12;77623:278;;;77660:19;77689:5;77682:4;:12;77660:34;;77731:17;77717:11;:31;77713:111;;;77793:11;77773:31;;77713:111;77641:198;77623:278;;;77884:1;77864:21;;77623:278;77915:25;77957:17;77943:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77915:60;;78015:1;77994:17;:22;77990:78;;78044:8;78037:15;;;;;;;;77990:78;78212:31;78246:26;78266:5;78246:19;:26::i;:::-;78212:60;;78287:25;78532:9;:16;;;78527:92;;78589:9;:14;;;78569:34;;78527:92;78638:9;78650:5;78638:17;;78633:478;78662:4;78657:1;:9;;:45;;;;;78685:17;78670:11;:32;;78657:45;78633:478;;;78740:15;78753:1;78740:12;:15::i;:::-;78728:27;;78778:9;:16;;;78819:8;78774:73;78895:1;78869:28;;:9;:14;;;:28;;;78865:111;;78942:9;:14;;;78922:34;;78865:111;79019:5;78998:26;;:17;:26;;;78994:102;;79075:1;79049:8;79058:13;;;;;;79049:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;78994:102;78633:478;78704:3;;;;;78633:478;;;;79213:11;79203:8;79196:29;79261:8;79254:15;;;;;;;;76775:2513;;;;;;:::o;81396:25::-;;;;:::o;12674:49::-;12719:4;12674:49;;;:::o;49322:308::-;49433:19;:17;:19::i;:::-;49421:31;;:8;:31;;;49417:61;;49461:17;;;;;;;;;;;;;;49417:61;49543:8;49491:18;:39;49510:19;:17;:19::i;:::-;49491:39;;;;;;;;;;;;;;;:49;49531:8;49491:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;49603:8;49567:55;;49582:19;:17;:19::i;:::-;49567:55;;;49613:8;49567:55;;;;;;:::i;:::-;;;;;;;;49322:308;;:::o;83316:238::-;6278:19;:17;:19::i;:::-;83406:34:::1;81222:24;83427:12;:10;:12::i;:::-;83406:7;:34::i;:::-;83401:118;;83478:6;;83465:9;:19;;83457:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;83401:118;83529:17;83535:2;83539:6;83529:5;:17::i;:::-;83316:238:::0;;:::o;56167:399::-;56334:31;56347:4;56353:2;56357:7;56334:12;:31::i;:::-;56398:1;56380:2;:14;;;:19;56376:183;;56419:56;56450:4;56456:2;56460:7;56469:5;56419:30;:56::i;:::-;56414:145;;56503:40;;;;;;;;;;;;;;56414:145;56376:183;56167:399;;;;:::o;75272:428::-;75356:21;;:::i;:::-;75390:31;;:::i;:::-;75446:15;:13;:15::i;:::-;75436:7;:25;:54;;;;75476:14;:12;:14::i;:::-;75465:7;:25;;75436:54;75432:103;;;75514:9;75507:16;;;;;75432:103;75557:21;75570:7;75557:12;:21::i;:::-;75545:33;;75593:9;:16;;;75589:65;;;75633:9;75626:16;;;;;75589:65;75671:21;75684:7;75671:12;:21::i;:::-;75664:28;;;75272:428;;;;:::o;82238:191::-;82330:13;82387:23;82402:7;82387:14;:23::i;:::-;82370:50;;;;;;;;:::i;:::-;;;;;;;;;;;;;82356:65;;82238:191;;;:::o;81184:62::-;81222:24;81184:62;:::o;15990:149::-;16074:18;16087:4;16074:12;:18::i;:::-;13165:16;13176:4;13165:10;:16::i;:::-;16105:26:::1;16117:4;16123:7;16105:11;:26::i;:::-;15990:149:::0;;;:::o;81115:62::-;81153:24;81115:62;:::o;49787:164::-;49884:4;49908:18;:25;49927:5;49908:25;;;;;;;;;;;;;;;:35;49934:8;49908:35;;;;;;;;;;;;;;;;;;;;;;;;;49901:42;;49787:164;;;;:::o;81300:89::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19949:127::-;20056:1;20038:7;:14;;;:19;;;;;;;;;;;19949:127;:::o;50209:282::-;50274:4;50330:7;50311:15;:13;:15::i;:::-;:26;;:66;;;;;50364:13;;50354:7;:23;50311:66;:153;;;;;50463:1;34151:8;50415:17;:26;50433:7;50415:26;;;;;;;;;;;;:44;:49;50311:153;50291:173;;50209:282;;;:::o;71975:105::-;72035:7;72062:10;72055:17;;71975:105;:::o;37548:92::-;37604:7;37548:92;:::o;44829:1275::-;44896:7;44916:12;44931:7;44916:22;;44999:4;44980:15;:13;:15::i;:::-;:23;44976:1061;;45033:13;;45026:4;:20;45022:1015;;;45071:14;45088:17;:23;45106:4;45088:23;;;;;;;;;;;;45071:40;;45205:1;34151:8;45177:6;:24;:29;45173:845;;45842:113;45859:1;45849:6;:11;45842:113;;45902:17;:25;45920:6;;;;;;;45902:25;;;;;;;;;;;;45893:34;;45842:113;;;45988:6;45981:13;;;;;;45173:845;45048:989;45022:1015;44976:1061;46065:31;;;;;;;;;;;;;;44829:1275;;;;:::o;51372:479::-;51474:27;51503:23;51544:38;51585:15;:24;51601:7;51585:24;;;;;;;;;;;51544:65;;51756:18;51733:41;;51813:19;51807:26;51788:45;;51718:126;51372:479;;;:::o;50600:659::-;50749:11;50914:16;50907:5;50903:28;50894:37;;51074:16;51063:9;51059:32;51046:45;;51224:15;51213:9;51210:30;51202:5;51191:9;51188:20;51185:56;51175:66;;50600:659;;;;;:::o;57228:159::-;;;;;:::o;71284:311::-;71419:7;71439:16;34555:3;71465:19;:41;;71439:68;;34555:3;71533:31;71544:4;71550:2;71554:9;71533:10;:31::i;:::-;71525:40;;:62;;71518:69;;;71284:311;;;;;:::o;46652:450::-;46732:14;46900:16;46893:5;46889:28;46880:37;;47077:5;47063:11;47038:23;47034:41;47031:52;47024:5;47021:63;47011:73;;46652:450;;;;:::o;58052:158::-;;;;;:::o;14020:105::-;14087:30;14098:4;14104:12;:10;:12::i;:::-;14087:10;:30::i;:::-;14020:105;:::o;18291:238::-;18375:22;18383:4;18389:7;18375;:22::i;:::-;18370:152;;18446:4;18414:6;:12;18421:4;18414:12;;;;;;;;;;;:20;;:29;18435:7;18414:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;18497:12;:10;:12::i;:::-;18470:40;;18488:7;18470:40;;18482:4;18470:40;;;;;;;;;;18370:152;18291:238;;:::o;4786:98::-;4839:7;4866:10;4859:17;;4786:98;:::o;18709:239::-;18793:22;18801:4;18807:7;18793;:22::i;:::-;18789:152;;;18864:5;18832:6;:12;18839:4;18832:12;;;;;;;;;;;:20;;:29;18853:7;18832:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;18916:12;:10;:12::i;:::-;18889:40;;18907:7;18889:40;;18901:4;18889:40;;;;;;;;;;18789:152;18709:239;;:::o;7528:120::-;6537:16;:14;:16::i;:::-;7597:5:::1;7587:7;;:15;;;;;;;;;;;;;;;;;;7618:22;7627:12;:10;:12::i;:::-;7618:22;;;;;;:::i;:::-;;;;;;;;7528:120::o:0;6832:108::-;6903:8;:6;:8::i;:::-;6902:9;6894:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;6832:108::o;59828:2454::-;59901:20;59924:13;;59901:36;;59964:1;59952:8;:13;59948:44;;59974:18;;;;;;;;;;;;;;59948:44;60005:61;60035:1;60039:2;60043:12;60057:8;60005:21;:61::i;:::-;60549:1;33513:2;60519:1;:26;;60518:32;60506:8;:45;60480:18;:22;60499:2;60480:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;60828:139;60865:2;60919:33;60942:1;60946:2;60950:1;60919:14;:33::i;:::-;60886:30;60907:8;60886:20;:30::i;:::-;:66;60828:18;:139::i;:::-;60794:17;:31;60812:12;60794:31;;;;;;;;;;;:173;;;;60984:16;61015:11;61044:8;61029:12;:23;61015:37;;61299:16;61295:2;61291:25;61279:37;;61671:12;61631:8;61590:1;61528:25;61469:1;61408;61381:335;61796:1;61782:12;61778:20;61736:346;61837:3;61828:7;61825:16;61736:346;;62055:7;62045:8;62042:1;62015:25;62012:1;62009;62004:59;61890:1;61881:7;61877:15;61866:26;;61736:346;;;61740:77;62127:1;62115:8;:13;62111:45;;62137:19;;;;;;;;;;;;;;62111:45;62189:3;62173:13;:19;;;;60254:1950;;62214:60;62243:1;62247:2;62251:12;62265:8;62214:20;:60::i;:::-;59890:2392;59828:2454;;:::o;7269:118::-;6278:19;:17;:19::i;:::-;7339:4:::1;7329:7;;:14;;;;;;;;;;;;;;;;;;7359:20;7366:12;:10;:12::i;:::-;7359:20;;;;;;:::i;:::-;;;;;;;;7269:118::o:0;44277:161::-;44345:21;;:::i;:::-;44386:44;44405:17;:24;44423:5;44405:24;;;;;;;;;;;;44386:18;:44::i;:::-;44379:51;;44277:161;;;:::o;37719:103::-;37774:7;37801:13;;37794:20;;37719:103;:::o;58650:716::-;58813:4;58859:2;58834:45;;;58880:19;:17;:19::i;:::-;58901:4;58907:7;58916:5;58834:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58830:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59134:1;59117:6;:13;:18;59113:235;;59163:40;;;;;;;;;;;;;;59113:235;59306:6;59300:13;59291:6;59287:2;59283:15;59276:38;58830:529;59003:54;;;58993:64;;;:6;:64;;;;58986:71;;;58650:716;;;;;;:::o;44015:166::-;44085:21;;:::i;:::-;44126:47;44145:27;44164:7;44145:18;:27::i;:::-;44126:18;:47::i;:::-;44119:54;;44015:166;;;:::o;42667:318::-;42740:13;42771:16;42779:7;42771;:16::i;:::-;42766:59;;42796:29;;;;;;;;;;;;;;42766:59;42838:21;42862:10;:8;:10::i;:::-;42838:34;;42915:1;42896:7;42890:21;:26;:87;;;;;;;;;;;;;;;;;42943:7;42952:18;42962:7;42952:9;:18::i;:::-;42926:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42890:87;42883:94;;;42667:318;;;:::o;70985:147::-;71122:6;70985:147;;;;;:::o;14415:505::-;14504:22;14512:4;14518:7;14504;:22::i;:::-;14499:414;;14692:41;14720:7;14692:41;;14730:2;14692:19;:41::i;:::-;14806:38;14834:4;14826:13;;14841:2;14806:19;:38::i;:::-;14597:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;14543:358;;;;;;;;;;;:::i;:::-;;;;;;;;14499:414;14415:505;;:::o;7017:108::-;7084:8;:6;:8::i;:::-;7076:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;7017:108::o;47204:324::-;47274:14;47507:1;47497:8;47494:15;47468:24;47464:46;47454:56;;47204:324;;;:::o;46203:366::-;46269:31;;:::i;:::-;46346:6;46313:9;:14;;:41;;;;;;;;;;;34034:3;46399:6;:33;;46365:9;:24;;:68;;;;;;;;;;;46491:1;34151:8;46463:6;:24;:29;;46444:9;:16;;:48;;;;;;;;;;;34555:3;46532:6;:28;;46503:9;:19;;:58;;;;;;;;;;;46203:366;;;:::o;81983:109::-;82035:13;82068:16;82061:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81983:109;:::o;72182:2002::-;72247:17;72666:3;72659:4;72653:11;72649:21;72642:28;;72757:3;72751:4;72744:17;72863:3;73319:5;73449:1;73444:3;73440:11;73433:18;;73620:2;73614:4;73610:13;73606:2;73602:22;73597:3;73589:36;73661:2;73655:4;73651:13;73643:21;;73211:731;73680:4;73211:731;;;73871:1;73866:3;73862:11;73855:18;;73922:2;73916:4;73912:13;73908:2;73904:22;73899:3;73891:36;73775:2;73769:4;73765:13;73757:21;;73211:731;;;73215:464;73981:3;73976;73972:13;74096:2;74091:3;74087:12;74080:19;;74159:6;74154:3;74147:19;72286:1891;;72182:2002;;;:::o;3649:451::-;3724:13;3750:19;3795:1;3786:6;3782:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;3772:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3750:47;;3808:15;:6;3815:1;3808:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;3834;:6;3841:1;3834:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;3865:9;3890:1;3881:6;3877:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;3865:26;;3860:135;3897:1;3893;:5;3860:135;;;3932:12;3953:3;3945:5;:11;3932:25;;;;;;;:::i;:::-;;;;;3920:6;3927:1;3920:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;3982:1;3972:11;;;;;3900:3;;;;:::i;:::-;;;3860:135;;;;4022:1;4013:5;:10;4005:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;4085:6;4071:21;;;3649:451;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:77::-;5952:7;5981:5;5970:16;;5915:77;;;:::o;5998:122::-;6071:24;6089:5;6071:24;:::i;:::-;6064:5;6061:35;6051:63;;6110:1;6107;6100:12;6051:63;5998:122;:::o;6126:139::-;6172:5;6210:6;6197:20;6188:29;;6226:33;6253:5;6226:33;:::i;:::-;6126:139;;;;:::o;6271:329::-;6330:6;6379:2;6367:9;6358:7;6354:23;6350:32;6347:119;;;6385:79;;:::i;:::-;6347:119;6505:1;6530:53;6575:7;6566:6;6555:9;6551:22;6530:53;:::i;:::-;6520:63;;6476:117;6271:329;;;;:::o;6606:118::-;6693:24;6711:5;6693:24;:::i;:::-;6688:3;6681:37;6606:118;;:::o;6730:222::-;6823:4;6861:2;6850:9;6846:18;6838:26;;6874:71;6942:1;6931:9;6927:17;6918:6;6874:71;:::i;:::-;6730:222;;;;:::o;6958:474::-;7026:6;7034;7083:2;7071:9;7062:7;7058:23;7054:32;7051:119;;;7089:79;;:::i;:::-;7051:119;7209:1;7234:53;7279:7;7270:6;7259:9;7255:22;7234:53;:::i;:::-;7224:63;;7180:117;7336:2;7362:53;7407:7;7398:6;7387:9;7383:22;7362:53;:::i;:::-;7352:63;;7307:118;6958:474;;;;;:::o;7438:117::-;7547:1;7544;7537:12;7561:117;7670:1;7667;7660:12;7684:180;7732:77;7729:1;7722:88;7829:4;7826:1;7819:15;7853:4;7850:1;7843:15;7870:281;7953:27;7975:4;7953:27;:::i;:::-;7945:6;7941:40;8083:6;8071:10;8068:22;8047:18;8035:10;8032:34;8029:62;8026:88;;;8094:18;;:::i;:::-;8026:88;8134:10;8130:2;8123:22;7913:238;7870:281;;:::o;8157:129::-;8191:6;8218:20;;:::i;:::-;8208:30;;8247:33;8275:4;8267:6;8247:33;:::i;:::-;8157:129;;;:::o;8292:308::-;8354:4;8444:18;8436:6;8433:30;8430:56;;;8466:18;;:::i;:::-;8430:56;8504:29;8526:6;8504:29;:::i;:::-;8496:37;;8588:4;8582;8578:15;8570:23;;8292:308;;;:::o;8606:154::-;8690:6;8685:3;8680;8667:30;8752:1;8743:6;8738:3;8734:16;8727:27;8606:154;;;:::o;8766:412::-;8844:5;8869:66;8885:49;8927:6;8885:49;:::i;:::-;8869:66;:::i;:::-;8860:75;;8958:6;8951:5;8944:21;8996:4;8989:5;8985:16;9034:3;9025:6;9020:3;9016:16;9013:25;9010:112;;;9041:79;;:::i;:::-;9010:112;9131:41;9165:6;9160:3;9155;9131:41;:::i;:::-;8850:328;8766:412;;;;;:::o;9198:340::-;9254:5;9303:3;9296:4;9288:6;9284:17;9280:27;9270:122;;9311:79;;:::i;:::-;9270:122;9428:6;9415:20;9453:79;9528:3;9520:6;9513:4;9505:6;9501:17;9453:79;:::i;:::-;9444:88;;9260:278;9198:340;;;;:::o;9544:509::-;9613:6;9662:2;9650:9;9641:7;9637:23;9633:32;9630:119;;;9668:79;;:::i;:::-;9630:119;9816:1;9805:9;9801:17;9788:31;9846:18;9838:6;9835:30;9832:117;;;9868:79;;:::i;:::-;9832:117;9973:63;10028:7;10019:6;10008:9;10004:22;9973:63;:::i;:::-;9963:73;;9759:287;9544:509;;;;:::o;10059:117::-;10168:1;10165;10158:12;10182:117;10291:1;10288;10281:12;10322:568;10395:8;10405:6;10455:3;10448:4;10440:6;10436:17;10432:27;10422:122;;10463:79;;:::i;:::-;10422:122;10576:6;10563:20;10553:30;;10606:18;10598:6;10595:30;10592:117;;;10628:79;;:::i;:::-;10592:117;10742:4;10734:6;10730:17;10718:29;;10796:3;10788:4;10780:6;10776:17;10766:8;10762:32;10759:41;10756:128;;;10803:79;;:::i;:::-;10756:128;10322:568;;;;;:::o;10896:559::-;10982:6;10990;11039:2;11027:9;11018:7;11014:23;11010:32;11007:119;;;11045:79;;:::i;:::-;11007:119;11193:1;11182:9;11178:17;11165:31;11223:18;11215:6;11212:30;11209:117;;;11245:79;;:::i;:::-;11209:117;11358:80;11430:7;11421:6;11410:9;11406:22;11358:80;:::i;:::-;11340:98;;;;11136:312;10896:559;;;;;:::o;11461:145::-;11559:6;11593:5;11587:12;11577:22;;11461:145;;;:::o;11612:215::-;11742:11;11776:6;11771:3;11764:19;11816:4;11811:3;11807:14;11792:29;;11612:215;;;;:::o;11833:163::-;11931:4;11954:3;11946:11;;11984:4;11979:3;11975:14;11967:22;;11833:163;;;:::o;12002:108::-;12079:24;12097:5;12079:24;:::i;:::-;12074:3;12067:37;12002:108;;:::o;12116:101::-;12152:7;12192:18;12185:5;12181:30;12170:41;;12116:101;;;:::o;12223:105::-;12298:23;12315:5;12298:23;:::i;:::-;12293:3;12286:36;12223:105;;:::o;12334:99::-;12405:21;12420:5;12405:21;:::i;:::-;12400:3;12393:34;12334:99;;:::o;12439:91::-;12475:7;12515:8;12508:5;12504:20;12493:31;;12439:91;;;:::o;12536:105::-;12611:23;12628:5;12611:23;:::i;:::-;12606:3;12599:36;12536:105;;:::o;12719:864::-;12868:4;12863:3;12859:14;12955:4;12948:5;12944:16;12938:23;12974:63;13031:4;13026:3;13022:14;13008:12;12974:63;:::i;:::-;12883:164;13139:4;13132:5;13128:16;13122:23;13158:61;13213:4;13208:3;13204:14;13190:12;13158:61;:::i;:::-;13057:172;13313:4;13306:5;13302:16;13296:23;13332:57;13383:4;13378:3;13374:14;13360:12;13332:57;:::i;:::-;13239:160;13486:4;13479:5;13475:16;13469:23;13505:61;13560:4;13555:3;13551:14;13537:12;13505:61;:::i;:::-;13409:167;12837:746;12719:864;;:::o;13589:303::-;13720:10;13741:108;13845:3;13837:6;13741:108;:::i;:::-;13881:4;13876:3;13872:14;13858:28;;13589:303;;;;:::o;13898:144::-;13999:4;14031;14026:3;14022:14;14014:22;;13898:144;;;:::o;14124:980::-;14305:3;14334:85;14413:5;14334:85;:::i;:::-;14435:117;14545:6;14540:3;14435:117;:::i;:::-;14428:124;;14576:87;14657:5;14576:87;:::i;:::-;14686:7;14717:1;14702:377;14727:6;14724:1;14721:13;14702:377;;;14803:6;14797:13;14830:125;14951:3;14936:13;14830:125;:::i;:::-;14823:132;;14978:91;15062:6;14978:91;:::i;:::-;14968:101;;14762:317;14749:1;14746;14742:9;14737:14;;14702:377;;;14706:14;15095:3;15088:10;;14310:794;;;14124:980;;;;:::o;15110:497::-;15315:4;15353:2;15342:9;15338:18;15330:26;;15402:9;15396:4;15392:20;15388:1;15377:9;15373:17;15366:47;15430:170;15595:4;15586:6;15430:170;:::i;:::-;15422:178;;15110:497;;;;:::o;15613:329::-;15672:6;15721:2;15709:9;15700:7;15696:23;15692:32;15689:119;;;15727:79;;:::i;:::-;15689:119;15847:1;15872:53;15917:7;15908:6;15897:9;15893:22;15872:53;:::i;:::-;15862:63;;15818:117;15613:329;;;;:::o;15948:114::-;16015:6;16049:5;16043:12;16033:22;;15948:114;;;:::o;16068:184::-;16167:11;16201:6;16196:3;16189:19;16241:4;16236:3;16232:14;16217:29;;16068:184;;;;:::o;16258:132::-;16325:4;16348:3;16340:11;;16378:4;16373:3;16369:14;16361:22;;16258:132;;;:::o;16396:108::-;16473:24;16491:5;16473:24;:::i;:::-;16468:3;16461:37;16396:108;;:::o;16510:179::-;16579:10;16600:46;16642:3;16634:6;16600:46;:::i;:::-;16678:4;16673:3;16669:14;16655:28;;16510:179;;;;:::o;16695:113::-;16765:4;16797;16792:3;16788:14;16780:22;;16695:113;;;:::o;16844:732::-;16963:3;16992:54;17040:5;16992:54;:::i;:::-;17062:86;17141:6;17136:3;17062:86;:::i;:::-;17055:93;;17172:56;17222:5;17172:56;:::i;:::-;17251:7;17282:1;17267:284;17292:6;17289:1;17286:13;17267:284;;;17368:6;17362:13;17395:63;17454:3;17439:13;17395:63;:::i;:::-;17388:70;;17481:60;17534:6;17481:60;:::i;:::-;17471:70;;17327:224;17314:1;17311;17307:9;17302:14;;17267:284;;;17271:14;17567:3;17560:10;;16968:608;;;16844:732;;;;:::o;17582:373::-;17725:4;17763:2;17752:9;17748:18;17740:26;;17812:9;17806:4;17802:20;17798:1;17787:9;17783:17;17776:47;17840:108;17943:4;17934:6;17840:108;:::i;:::-;17832:116;;17582:373;;;;:::o;17961:619::-;18038:6;18046;18054;18103:2;18091:9;18082:7;18078:23;18074:32;18071:119;;;18109:79;;:::i;:::-;18071:119;18229:1;18254:53;18299:7;18290:6;18279:9;18275:22;18254:53;:::i;:::-;18244:63;;18200:117;18356:2;18382:53;18427:7;18418:6;18407:9;18403:22;18382:53;:::i;:::-;18372:63;;18327:118;18484:2;18510:53;18555:7;18546:6;18535:9;18531:22;18510:53;:::i;:::-;18500:63;;18455:118;17961:619;;;;;:::o;18586:116::-;18656:21;18671:5;18656:21;:::i;:::-;18649:5;18646:32;18636:60;;18692:1;18689;18682:12;18636:60;18586:116;:::o;18708:133::-;18751:5;18789:6;18776:20;18767:29;;18805:30;18829:5;18805:30;:::i;:::-;18708:133;;;;:::o;18847:468::-;18912:6;18920;18969:2;18957:9;18948:7;18944:23;18940:32;18937:119;;;18975:79;;:::i;:::-;18937:119;19095:1;19120:53;19165:7;19156:6;19145:9;19141:22;19120:53;:::i;:::-;19110:63;;19066:117;19222:2;19248:50;19290:7;19281:6;19270:9;19266:22;19248:50;:::i;:::-;19238:60;;19193:115;18847:468;;;;;:::o;19321:307::-;19382:4;19472:18;19464:6;19461:30;19458:56;;;19494:18;;:::i;:::-;19458:56;19532:29;19554:6;19532:29;:::i;:::-;19524:37;;19616:4;19610;19606:15;19598:23;;19321:307;;;:::o;19634:410::-;19711:5;19736:65;19752:48;19793:6;19752:48;:::i;:::-;19736:65;:::i;:::-;19727:74;;19824:6;19817:5;19810:21;19862:4;19855:5;19851:16;19900:3;19891:6;19886:3;19882:16;19879:25;19876:112;;;19907:79;;:::i;:::-;19876:112;19997:41;20031:6;20026:3;20021;19997:41;:::i;:::-;19717:327;19634:410;;;;;:::o;20063:338::-;20118:5;20167:3;20160:4;20152:6;20148:17;20144:27;20134:122;;20175:79;;:::i;:::-;20134:122;20292:6;20279:20;20317:78;20391:3;20383:6;20376:4;20368:6;20364:17;20317:78;:::i;:::-;20308:87;;20124:277;20063:338;;;;:::o;20407:943::-;20502:6;20510;20518;20526;20575:3;20563:9;20554:7;20550:23;20546:33;20543:120;;;20582:79;;:::i;:::-;20543:120;20702:1;20727:53;20772:7;20763:6;20752:9;20748:22;20727:53;:::i;:::-;20717:63;;20673:117;20829:2;20855:53;20900:7;20891:6;20880:9;20876:22;20855:53;:::i;:::-;20845:63;;20800:118;20957:2;20983:53;21028:7;21019:6;21008:9;21004:22;20983:53;:::i;:::-;20973:63;;20928:118;21113:2;21102:9;21098:18;21085:32;21144:18;21136:6;21133:30;21130:117;;;21166:79;;:::i;:::-;21130:117;21271:62;21325:7;21316:6;21305:9;21301:22;21271:62;:::i;:::-;21261:72;;21056:287;20407:943;;;;;;;:::o;21428:874::-;21587:4;21582:3;21578:14;21674:4;21667:5;21663:16;21657:23;21693:63;21750:4;21745:3;21741:14;21727:12;21693:63;:::i;:::-;21602:164;21858:4;21851:5;21847:16;21841:23;21877:61;21932:4;21927:3;21923:14;21909:12;21877:61;:::i;:::-;21776:172;22032:4;22025:5;22021:16;22015:23;22051:57;22102:4;22097:3;22093:14;22079:12;22051:57;:::i;:::-;21958:160;22205:4;22198:5;22194:16;22188:23;22224:61;22279:4;22274:3;22270:14;22256:12;22224:61;:::i;:::-;22128:167;21556:746;21428:874;;:::o;22308:347::-;22463:4;22501:3;22490:9;22486:19;22478:27;;22515:133;22645:1;22634:9;22630:17;22621:6;22515:133;:::i;:::-;22308:347;;;;:::o;22661:474::-;22729:6;22737;22786:2;22774:9;22765:7;22761:23;22757:32;22754:119;;;22792:79;;:::i;:::-;22754:119;22912:1;22937:53;22982:7;22973:6;22962:9;22958:22;22937:53;:::i;:::-;22927:63;;22883:117;23039:2;23065:53;23110:7;23101:6;23090:9;23086:22;23065:53;:::i;:::-;23055:63;;23010:118;22661:474;;;;;:::o;23141:180::-;23189:77;23186:1;23179:88;23286:4;23283:1;23276:15;23310:4;23307:1;23300:15;23327:320;23371:6;23408:1;23402:4;23398:12;23388:22;;23455:1;23449:4;23445:12;23476:18;23466:81;;23532:4;23524:6;23520:17;23510:27;;23466:81;23594:2;23586:6;23583:14;23563:18;23560:38;23557:84;;23613:18;;:::i;:::-;23557:84;23378:269;23327:320;;;:::o;23653:234::-;23793:34;23789:1;23781:6;23777:14;23770:58;23862:17;23857:2;23849:6;23845:15;23838:42;23653:234;:::o;23893:366::-;24035:3;24056:67;24120:2;24115:3;24056:67;:::i;:::-;24049:74;;24132:93;24221:3;24132:93;:::i;:::-;24250:2;24245:3;24241:12;24234:19;;23893:366;;;:::o;24265:419::-;24431:4;24469:2;24458:9;24454:18;24446:26;;24518:9;24512:4;24508:20;24504:1;24493:9;24489:17;24482:47;24546:131;24672:4;24546:131;:::i;:::-;24538:139;;24265:419;;;:::o;24690:147::-;24791:11;24828:3;24813:18;;24690:147;;;;:::o;24843:114::-;;:::o;24963:398::-;25122:3;25143:83;25224:1;25219:3;25143:83;:::i;:::-;25136:90;;25235:93;25324:3;25235:93;:::i;:::-;25353:1;25348:3;25344:11;25337:18;;24963:398;;;:::o;25367:379::-;25551:3;25573:147;25716:3;25573:147;:::i;:::-;25566:154;;25737:3;25730:10;;25367:379;;;:::o;25752:180::-;25800:77;25797:1;25790:88;25897:4;25894:1;25887:15;25921:4;25918:1;25911:15;25938:168;26078:20;26074:1;26066:6;26062:14;26055:44;25938:168;:::o;26112:366::-;26254:3;26275:67;26339:2;26334:3;26275:67;:::i;:::-;26268:74;;26351:93;26440:3;26351:93;:::i;:::-;26469:2;26464:3;26460:12;26453:19;;26112:366;;;:::o;26484:419::-;26650:4;26688:2;26677:9;26673:18;26665:26;;26737:9;26731:4;26727:20;26723:1;26712:9;26708:17;26701:47;26765:131;26891:4;26765:131;:::i;:::-;26757:139;;26484:419;;;:::o;26909:148::-;27011:11;27048:3;27033:18;;26909:148;;;;:::o;27063:377::-;27169:3;27197:39;27230:5;27197:39;:::i;:::-;27252:89;27334:6;27329:3;27252:89;:::i;:::-;27245:96;;27350:52;27395:6;27390:3;27383:4;27376:5;27372:16;27350:52;:::i;:::-;27427:6;27422:3;27418:16;27411:23;;27173:267;27063:377;;;;:::o;27446:155::-;27586:7;27582:1;27574:6;27570:14;27563:31;27446:155;:::o;27607:400::-;27767:3;27788:84;27870:1;27865:3;27788:84;:::i;:::-;27781:91;;27881:93;27970:3;27881:93;:::i;:::-;27999:1;27994:3;27990:11;27983:18;;27607:400;;;:::o;28013:541::-;28246:3;28268:95;28359:3;28350:6;28268:95;:::i;:::-;28261:102;;28380:148;28524:3;28380:148;:::i;:::-;28373:155;;28545:3;28538:10;;28013:541;;;;:::o;28560:166::-;28700:18;28696:1;28688:6;28684:14;28677:42;28560:166;:::o;28732:366::-;28874:3;28895:67;28959:2;28954:3;28895:67;:::i;:::-;28888:74;;28971:93;29060:3;28971:93;:::i;:::-;29089:2;29084:3;29080:12;29073:19;;28732:366;;;:::o;29104:419::-;29270:4;29308:2;29297:9;29293:18;29285:26;;29357:9;29351:4;29347:20;29343:1;29332:9;29328:17;29321:47;29385:131;29511:4;29385:131;:::i;:::-;29377:139;;29104:419;;;:::o;29529:98::-;29580:6;29614:5;29608:12;29598:22;;29529:98;;;:::o;29633:168::-;29716:11;29750:6;29745:3;29738:19;29790:4;29785:3;29781:14;29766:29;;29633:168;;;;:::o;29807:360::-;29893:3;29921:38;29953:5;29921:38;:::i;:::-;29975:70;30038:6;30033:3;29975:70;:::i;:::-;29968:77;;30054:52;30099:6;30094:3;30087:4;30080:5;30076:16;30054:52;:::i;:::-;30131:29;30153:6;30131:29;:::i;:::-;30126:3;30122:39;30115:46;;29897:270;29807:360;;;;:::o;30173:640::-;30368:4;30406:3;30395:9;30391:19;30383:27;;30420:71;30488:1;30477:9;30473:17;30464:6;30420:71;:::i;:::-;30501:72;30569:2;30558:9;30554:18;30545:6;30501:72;:::i;:::-;30583;30651:2;30640:9;30636:18;30627:6;30583:72;:::i;:::-;30702:9;30696:4;30692:20;30687:2;30676:9;30672:18;30665:48;30730:76;30801:4;30792:6;30730:76;:::i;:::-;30722:84;;30173:640;;;;;;;:::o;30819:141::-;30875:5;30906:6;30900:13;30891:22;;30922:32;30948:5;30922:32;:::i;:::-;30819:141;;;;:::o;30966:349::-;31035:6;31084:2;31072:9;31063:7;31059:23;31055:32;31052:119;;;31090:79;;:::i;:::-;31052:119;31210:1;31235:63;31290:7;31281:6;31270:9;31266:22;31235:63;:::i;:::-;31225:73;;31181:127;30966:349;;;;:::o;31321:435::-;31501:3;31523:95;31614:3;31605:6;31523:95;:::i;:::-;31516:102;;31635:95;31726:3;31717:6;31635:95;:::i;:::-;31628:102;;31747:3;31740:10;;31321:435;;;;;:::o;31762:173::-;31902:25;31898:1;31890:6;31886:14;31879:49;31762:173;:::o;31941:402::-;32101:3;32122:85;32204:2;32199:3;32122:85;:::i;:::-;32115:92;;32216:93;32305:3;32216:93;:::i;:::-;32334:2;32329:3;32325:12;32318:19;;31941:402;;;:::o;32349:167::-;32489:19;32485:1;32477:6;32473:14;32466:43;32349:167;:::o;32522:402::-;32682:3;32703:85;32785:2;32780:3;32703:85;:::i;:::-;32696:92;;32797:93;32886:3;32797:93;:::i;:::-;32915:2;32910:3;32906:12;32899:19;;32522:402;;;:::o;32930:967::-;33312:3;33334:148;33478:3;33334:148;:::i;:::-;33327:155;;33499:95;33590:3;33581:6;33499:95;:::i;:::-;33492:102;;33611:148;33755:3;33611:148;:::i;:::-;33604:155;;33776:95;33867:3;33858:6;33776:95;:::i;:::-;33769:102;;33888:3;33881:10;;32930:967;;;;;:::o;33903:170::-;34043:22;34039:1;34031:6;34027:14;34020:46;33903:170;:::o;34079:366::-;34221:3;34242:67;34306:2;34301:3;34242:67;:::i;:::-;34235:74;;34318:93;34407:3;34318:93;:::i;:::-;34436:2;34431:3;34427:12;34420:19;;34079:366;;;:::o;34451:419::-;34617:4;34655:2;34644:9;34640:18;34632:26;;34704:9;34698:4;34694:20;34690:1;34679:9;34675:17;34668:47;34732:131;34858:4;34732:131;:::i;:::-;34724:139;;34451:419;;;:::o;34876:180::-;34924:77;34921:1;34914:88;35021:4;35018:1;35011:15;35045:4;35042:1;35035:15;35062:348;35102:7;35125:20;35143:1;35125:20;:::i;:::-;35120:25;;35159:20;35177:1;35159:20;:::i;:::-;35154:25;;35347:1;35279:66;35275:74;35272:1;35269:81;35264:1;35257:9;35250:17;35246:105;35243:131;;;35354:18;;:::i;:::-;35243:131;35402:1;35399;35395:9;35384:20;;35062:348;;;;:::o;35416:305::-;35456:3;35475:20;35493:1;35475:20;:::i;:::-;35470:25;;35509:20;35527:1;35509:20;:::i;:::-;35504:25;;35663:1;35595:66;35591:74;35588:1;35585:81;35582:107;;;35669:18;;:::i;:::-;35582:107;35713:1;35710;35706:9;35699:16;;35416:305;;;;:::o;35727:171::-;35766:3;35789:24;35807:5;35789:24;:::i;:::-;35780:33;;35835:4;35828:5;35825:15;35822:41;;35843:18;;:::i;:::-;35822:41;35890:1;35883:5;35879:13;35872:20;;35727:171;;;:::o;35904:182::-;36044:34;36040:1;36032:6;36028:14;36021:58;35904:182;:::o;36092:366::-;36234:3;36255:67;36319:2;36314:3;36255:67;:::i;:::-;36248:74;;36331:93;36420:3;36331:93;:::i;:::-;36449:2;36444:3;36440:12;36433:19;;36092:366;;;:::o;36464:419::-;36630:4;36668:2;36657:9;36653:18;36645:26;;36717:9;36711:4;36707:20;36703:1;36692:9;36688:17;36681:47;36745:131;36871:4;36745:131;:::i;:::-;36737:139;;36464:419;;;:::o
Swarm Source
ipfs://ebd44f11d96af7bf064e75e2747c2c44d2285c68cd75f06dadee56e10d751566
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.