Overview
ETH Balance
ETH Value
$32.23 (@ $1,790.38/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 18259686 | 38 hrs ago | IN | 0 ETH | 0.00000242 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
18283121 | 21 hrs ago | 0 ETH | ||||
18260448 | 37 hrs ago | 0 ETH | ||||
18259137 | 38 hrs ago | 0 ETH | ||||
18228901 | 2 days ago | 0 ETH | ||||
18226044 | 2 days ago | 0 ETH | ||||
18221331 | 2 days ago | 0 ETH | ||||
18207980 | 3 days ago | 0 ETH | ||||
18203947 | 3 days ago | 0 ETH | ||||
18201553 | 3 days ago | 0 ETH | ||||
18199344 | 3 days ago | 0 ETH | ||||
18197484 | 3 days ago | 0 ETH | ||||
18197366 | 3 days ago | 0 ETH | ||||
18197277 | 3 days ago | 0 ETH | ||||
18197054 | 3 days ago | 0 ETH | ||||
18192573 | 3 days ago | 0 ETH | ||||
18168596 | 4 days ago | 0 ETH | ||||
18163501 | 4 days ago | 0 ETH | ||||
18146803 | 5 days ago | 0 ETH | ||||
18146760 | 5 days ago | 0 ETH | ||||
18146705 | 5 days ago | 0 ETH | ||||
18146669 | 5 days ago | 0 ETH | ||||
18146543 | 5 days ago | 0 ETH | ||||
18146478 | 5 days ago | 0 ETH | ||||
18146405 | 5 days ago | 0 ETH | ||||
18146324 | 5 days ago | 0 ETH |
Loading...
Loading
Contract Name:
LAP
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at lineascan.build/ on 2024-10-22 */ // created by cryptodo.app // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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); } } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { bool private _paused; /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); /** * @dev The operation failed because the contract is paused. */ error EnforcedPause(); /** * @dev The operation failed because the contract is not paused. */ error ExpectedPause(); /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { if (paused()) { revert EnforcedPause(); } } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { if (!paused()) { revert ExpectedPause(); } } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(msg.sender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @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); } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } /** * @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; } } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors { using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; mapping(uint256 => address) private _owners; mapping(address => uint256) private _balances; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual returns (uint256) { if (owner == address(0)) { revert ERC721InvalidOwner(address(0)); } return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual returns (address) { return _requireOwned(tokenId); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual returns (string memory) { _requireOwned(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual { _approve(to, tokenId, _msgSender()); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual returns (address) { _requireOwned(tokenId); return _getApproved(tokenId); } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here. address previousOwner = _update(to, tokenId, _msgSender()); if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual { transferFrom(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist * * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`. */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted. */ function _getApproved(uint256 tokenId) internal view virtual returns (address) { return _tokenApprovals[tokenId]; } /** * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in * particular (ignoring whether it is owned by `owner`). * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) { return spender != address(0) && (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender); } /** * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner. * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets * the `spender` for the specific `tokenId`. * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual { if (!_isAuthorized(owner, spender, tokenId)) { if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } else { revert ERC721InsufficientApproval(spender, tokenId); } } } /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that * a uint256 would ever overflow from increments when these increments are bounded to uint128 values. * * WARNING: Increasing an account's balance using this function tends to be paired with an override of the * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership * remain consistent with one another. */ function _increaseBalance(address account, uint128 value) internal virtual { unchecked { _balances[account] += value; } } /** * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update. * * The `auth` argument is optional. If the value passed is non 0, then this function will check that * `auth` is either the owner of the token, or approved to operate on the token (by the owner). * * Emits a {Transfer} event. * * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}. */ function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) { address from = _ownerOf(tokenId); // Perform (optional) operator check if (auth != address(0)) { _checkAuthorized(from, auth, tokenId); } // Execute the update if (from != address(0)) { // Clear approval. No need to re-authorize or emit the Approval event _approve(address(0), tokenId, address(0), false); unchecked { _balances[from] -= 1; } } if (to != address(0)) { unchecked { _balances[to] += 1; } } _owners[tokenId] = to; emit Transfer(from, to, tokenId); return from; } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } _beforeTokenTransfer(address(0), to, tokenId); address previousOwner = _update(to, tokenId, address(0)); if (previousOwner != address(0)) { revert ERC721InvalidSender(address(0)); } } /** * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); _checkOnERC721Received(address(0), to, tokenId, data); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); address previousOwner = _update(address(0), tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } _beforeTokenTransfer(from, to, tokenId); address previousOwner = _update(to, tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } else if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients * are aware of the ERC721 standard to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is like {safeTransferFrom} in the sense that it invokes * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `tokenId` token must exist and be owned by `from`. * - `to` cannot be the zero address. * - `from` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId) internal { _safeTransfer(from, to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Approve `to` to operate on `tokenId` * * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is * either the owner of the token, or approved to operate on all tokens held by this owner. * * Emits an {Approval} event. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address to, uint256 tokenId, address auth) internal { _approve(to, tokenId, auth, true); } /** * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not * emitted in the context of transfers. */ function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual { // Avoid reading the owner unless necessary if (emitEvent || auth != address(0)) { address owner = _requireOwned(tokenId); // We do not use _isAuthorized because single-token approvals should not be able to call approve if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) { revert ERC721InvalidApprover(auth); } if (emitEvent) { emit Approval(owner, to, tokenId); } } _tokenApprovals[tokenId] = to; } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Requirements: * - operator can't be the address zero. * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { if (operator == address(0)) { revert ERC721InvalidOperator(operator); } _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned). * Returns the owner. * * Overrides to ownership logic should be done to {_ownerOf}. */ function _requireOwned(uint256 tokenId) internal view returns (address) { address owner = _ownerOf(tokenId); if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } return owner; } /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the * recipient doesn't accept the token transfer. The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private { if (to.code.length > 0) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { if (retval != IERC721Receiver.onERC721Received.selector) { revert ERC721InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { revert ERC721InvalidReceiver(to); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here. _update(address(0), tokenId, _msgSender()); } } /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * IMPORTANT: This contract does not include public pause and unpause functions. In * addition to inheriting this contract, you must define both functions, invoking the * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will * make the contract pause mechanism of the contract unreachable, and thus unusable. */ abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_update}. * * Requirements: * * - the contract must not be paused. */ function _update( address to, uint256 tokenId, address auth ) internal virtual override whenNotPaused returns (address) { return super._update(to, tokenId, auth); } } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) { // 32 is the length in bytes of hash, // enforced by the type signature above /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") mstore(0x1c, hash) message := keccak256(0x00, 0x3c) } } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, "\x19\x01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) data := keccak256(ptr, 0x42) } } /** * @dev Returns an Ethereum Signed Data with intended validator, created from a * `validator` and `data` according to the version 0 of EIP-191. * * See {recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x00", validator, data)); } } contract LAP is ERC721Enumerable, Ownable, ReentrancyGuard, ERC721Pausable , ERC721Burnable { using ECDSA for bytes32; uint256 public PRICE = 0.0004 ether; uint256 public constant TIME_FOR_REVEAL = 0; uint256 public mintStartTime = 1718654400; uint256 public mintEndTime = 1835712100; address public founder = 0xaebF22D90E6E0948E0F4ecDA5612aea4d34c1c8a; mapping(address => bool) private _blacklist; mapping(address => uint256) private whitelist; mapping(uint256 => uint256) private _entityBirthdays; mapping(uint256 => string) private _ipfsHash; string private _simpleIpfsHash; bool private _isPublicSaleActive = false; bool private _isSimpleIpfsHash = false; string public tokenURIPrefix = "ipfs://"; string public tokenURISuffix = "/metadata.json"; string private _name = "Linea Alpha Pioneer"; string private _symbol = "LAP"; string private _baseTokenURI = "https://media.alphamind.co/nft/linea.nft/api/"; bool public isBlacklistEnabled = true; bool public isWhitelistEnabled = false; uint256 public burnedTokens; event SendETH(address indexed to, uint256 amount); event SetNewPercent(address indexed to, uint256 percent); event SetNewValue(string nameValue, uint256 oldValue, uint256 newValue); event MintPeriodChanged(uint256 newMintStartTime, uint256 newMintEndTime); event Blacklisted(address indexed account); event Unblacklisted(address indexed account); event WhitelistStatusChanged(bool newStatus); constructor () ERC721(_name, _symbol) { if (block.timestamp >= mintStartTime && block.timestamp <= mintEndTime) { _isPublicSaleActive = true; } } modifier updateSaleStatus() { if (block.timestamp >= mintStartTime && block.timestamp <= mintEndTime && _isPublicSaleActive) { _isPublicSaleActive = true; } else { _isPublicSaleActive = false; } _; } function burn(uint256 tokenId) public virtual override { address owner = _ownerOf(tokenId); require(owner == msg.sender, "You are not owner of this token"); ERC721._burn(tokenId); burnedTokens += 1; } function setWhitelistStatus() external onlyOwner { isWhitelistEnabled = !isWhitelistEnabled; emit WhitelistStatusChanged(isWhitelistEnabled); } function setWhitelist(address[] memory _addresses, uint256[] memory _amounts) external onlyOwner { require(_addresses.length == _amounts.length, "The number of addresses and amounts do not match"); for (uint i = 0; i < _addresses.length; i++) { require(_addresses[i] != address(0), "one or few members is the zero address"); whitelist[_addresses[i]] = _amounts[i]; _blacklist[_addresses[i]] = false; } } function isEligibleForWhitelist() public view returns (bool) { return whitelist[msg.sender] > 0; } function mint() external payable nonReentrant updateSaleStatus whenNotPaused () { uint256 amount = msg.value / PRICE; require(amount >= 1, "Can't mint less then 1 token"); require(!_blacklist[msg.sender], "Blacklisted: minting not allowed"); if (isWhitelistEnabled) { require(whitelist[msg.sender] > 0, "You are not eligible for mint"); require(whitelist[msg.sender] >= amount, "Your whitelist amount less than you try to mint"); } require(_isPublicSaleActive, "Public sale is not active"); _mintMultiple(msg.sender, amount); } function _mintMultiple(address owner, uint256 amount) private { require(!_blacklist[owner], "Blacklisted: minting not allowed"); if (isWhitelistEnabled) { require(whitelist[msg.sender] > 0, "You are not eligible for mint"); require(whitelist[msg.sender] >= amount, "Your whitelist amount less than you try to mint"); } if (isWhitelistEnabled) { whitelist[msg.sender] -= amount; } for (uint256 i = 0; i < amount; i++) { uint256 tokenId = totalSupply() + burnedTokens; _entityBirthdays[tokenId] = block.timestamp; _safeMint(owner, tokenId); } } function setIpfsHash(string[] memory ipfsHashs, uint256[] memory idTokens) external onlyOwner { require(ipfsHashs.length == idTokens.length, "miscellaneous number of elements"); if(_isSimpleIpfsHash) { _simpleIpfsHash = ipfsHashs[0]; return; } for (uint256 i = 0; i < idTokens.length; i++) { bytes memory tempHash = bytes(_ipfsHash[idTokens[i]]); require(tempHash.length == 0, "IPFS hash can be set only once"); _ipfsHash[idTokens[i]] = ipfsHashs[i]; } } function addToBlacklist(address account) public onlyOwner { _blacklist[account] = true; emit Blacklisted(account); } function removeFromBlacklist(address account) public onlyOwner { _blacklist[account] = false; emit Unblacklisted(account); } function isBlacklisted(address account) public view returns (bool) { return _blacklist[account]; } function setMintPeriod(uint256 _newMintStartTime, uint256 _newMintEndTime) external onlyOwner { require( _newMintStartTime < _newMintEndTime, "End time must be greater than start time" ); mintStartTime = _newMintStartTime; mintEndTime = _newMintEndTime; emit MintPeriodChanged(_newMintStartTime, _newMintEndTime); } function setBaseTokenURI(string memory baseTokenURI) public onlyOwner { _baseTokenURI = baseTokenURI; } function setNewPrice(uint256 newPrice) public onlyOwner { emit SetNewValue("PRICE", PRICE, newPrice); PRICE = newPrice; } function setFounder(address _newFounder) external onlyOwner { require(_newFounder != address(0), "Zero address can't be founder"); require(_newFounder != founder, "New founder is equal prev founder"); founder = _newFounder; } function claimFunds() external { require(owner() == _msgSender() || founder == _msgSender(), "You have no right to it"); sendETH(payable(founder), getContractBalance()); } function sendETH(address payable to, uint256 amount) private nonReentrant() { uint256 balance = getContractBalance(); amount = amount > balance ? balance : amount; (bool sent, ) = to.call{value: amount}(""); require(sent, "Failed to send ETH"); emit SendETH(to, amount); } function getContractBalance() public view returns (uint256) { return address(this).balance; } function tokensOfOwner(address user) external view returns (uint256[] memory ownerTokens) { uint256 tokenCount = balanceOf(user); if (tokenCount == 0) { return new uint256[](0); } else { uint256[] memory output = new uint256[](tokenCount); for (uint256 index = 0; index < tokenCount; index++) { output[index] = tokenOfOwnerByIndex(user, index); } return output; } } function getBirthday(uint256 tokenId) public view returns (uint256) { require(tokenId < totalSupply(), "That entity has not been make yet"); return _entityBirthdays[tokenId]; } function getIpfsTokenUri(uint256 tokenId) external view returns (string memory) { require(tokenId < totalSupply(), "That entity has not been make yet"); require(getBirthday(tokenId) < block.timestamp + TIME_FOR_REVEAL, "That entity has not grown yet"); return string(abi.encodePacked(tokenURIPrefix, _ipfsHash[tokenId], tokenURISuffix)); } function getIpfsHash(uint256 tokenId) external onlyOwner view returns (string memory) { require(tokenId < totalSupply(), "That entity has not been make yet"); if(_isSimpleIpfsHash) { return _simpleIpfsHash; } else { return _ipfsHash[tokenId]; } } function togglePublicSale() external onlyOwner { _isPublicSaleActive = !_isPublicSaleActive; } function isPublicSaleActive() external view returns (bool status) { return _isPublicSaleActive; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function _setTokenURIPrefix(string memory _tokenURIPrefix) external onlyOwner { tokenURIPrefix = _tokenURIPrefix; } function _setTokenURISuffix(string memory _tokenURISuffix) external onlyOwner { tokenURISuffix = _tokenURISuffix; } /** * @dev Pauses the NFT, preventing any transfers. Only callable by the contract owner. */ function pause() external onlyOwner { _pause(); } /** * @dev Unpauses the NFT, allowing transfers to occur again. Only callable by the contract owner. */ function unpause() external onlyOwner { _unpause(); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable) whenNotPaused { super._beforeTokenTransfer(from, to, tokenId); require(!_blacklist[from] && !_blacklist[to], "Blacklisted: token transfer prohibited"); } function _update( address to, uint256 tokenId, address auth ) internal virtual override(ERC721 ,ERC721Pausable) returns (address) { return super._update(to, tokenId, auth); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","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":"address","name":"account","type":"address"}],"name":"Blacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMintStartTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMintEndTime","type":"uint256"}],"name":"MintPeriodChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"percent","type":"uint256"}],"name":"SetNewPercent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"nameValue","type":"string"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"SetNewValue","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":true,"internalType":"address","name":"account","type":"address"}],"name":"Unblacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"newStatus","type":"bool"}],"name":"WhitelistStatusChanged","type":"event"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TIME_FOR_REVEAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURIPrefix","type":"string"}],"name":"_setTokenURIPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURISuffix","type":"string"}],"name":"_setTokenURISuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"founder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getBirthday","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getIpfsHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getIpfsTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBlacklistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isEligibleForWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"status","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newFounder","type":"address"}],"name":"setFounder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"ipfsHashs","type":"string[]"},{"internalType":"uint256[]","name":"idTokens","type":"uint256[]"}],"name":"setIpfsHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintStartTime","type":"uint256"},{"internalType":"uint256","name":"_newMintEndTime","type":"uint256"}],"name":"setMintPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setNewPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWhitelistStatus","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":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenURIPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenURISuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
66016bcc41e90000600d5563667095c0600e55636d6abe64600f55601080546001600160a01b03191673aebf22d90e6e0948e0f4ecda5612aea4d34c1c8a1790556016805461ffff1916905560c06040526007608090815266697066733a2f2f60c81b60a052601790620000749082620003ed565b5060408051808201909152600e81526d17b6b2ba30b230ba30973539b7b760911b6020820152601890620000a99082620003ed565b5060408051808201909152601381527f4c696e656120416c7068612050696f6e656572000000000000000000000000006020820152601990620000ed9082620003ed565b5060408051808201909152600381526204c41560ec1b6020820152601a90620001179082620003ed565b506040518060600160405280602d815260200162003b70602d9139601b90620001419082620003ed565b50601c805461ffff191660011790553480156200015d57600080fd5b50601980546200016d906200035e565b80601f01602080910402602001604051908101604052809291908181526020018280546200019b906200035e565b8015620001ec5780601f10620001c057610100808354040283529160200191620001ec565b820191906000526020600020905b815481529060010190602001808311620001ce57829003601f168201915b5050505050601a805462000200906200035e565b80601f01602080910402602001604051908101604052809291908181526020018280546200022e906200035e565b80156200027f5780601f1062000253576101008083540402835291602001916200027f565b820191906000526020600020905b8154815290600101906020018083116200026157829003601f168201915b50505050508160009081620002959190620003ed565b506001620002a48282620003ed565b505050620002b833620002f660201b60201c565b6001600b55600c805460ff19169055600e544210801590620002dc5750600f544211155b15620002f0576016805460ff191660011790555b620004b9565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200037357607f821691505b6020821081036200039457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003e857600081815260208120601f850160051c81016020861015620003c35750805b601f850160051c820191505b81811015620003e457828155600101620003cf565b5050505b505050565b81516001600160401b0381111562000409576200040962000348565b62000421816200041a84546200035e565b846200039a565b602080601f831160018114620004595760008415620004405750858301515b600019600386901b1c1916600185901b178555620003e4565b600085815260208120601f198616915b828110156200048a5788860151825594840194600190910190840162000469565b5085821015620004a95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6136a780620004c96000396000f3fe6080604052600436106103505760003560e01c8063717a002b116101c6578063c0ac9983116100f7578063de49e4db11610095578063ee8cdd4e1161006f578063ee8cdd4e14610922578063f013e0e114610942578063f2fde38b14610962578063fe575a871461098257600080fd5b8063de49e4db146108cd578063e222c7f9146108ed578063e985e9c51461090257600080fd5b8063cb645ccb116100d1578063cb645ccb1461085f578063d450fbc914610874578063d522364814610894578063dbbc853b146108b857600080fd5b8063c0ac99831461080a578063c87b56dd1461081f578063c8d2524c1461083f57600080fd5b80638da5cb5b11610164578063a22cb4651161013e578063a22cb465146107a0578063a8d43bd8146107c0578063ac307773146107d5578063b88d4fde146107ea57600080fd5b80638da5cb5b14610757578063931e2e491461077557806395d89b411461078b57600080fd5b80638456cb59116101a05780638456cb59146106e55780638462151c146106fa578063878dd332146107275780638d859f3e1461074157600080fd5b8063717a002b1461068f57806377325d7a146106a55780637a341bc7146106c557600080fd5b806342842e0e116102a05780635c975abb1161023e5780636f9fb98a116102185780636f9fb98a14610627578063704150331461063a57806370a082311461065a578063715018a61461067a57600080fd5b80635c975abb146105cf5780636352211e146105e7578063657fc38d1461060757600080fd5b806347b5dd541161027a57806347b5dd54146105595780634d853ee51461056f5780634f6ccce71461058f578063537df3b6146105af57600080fd5b806342842e0e146104f957806342966c681461051957806344337ea11461053957600080fd5b8063184d69ab1161030d5780632f745c59116102e75780632f745c591461048457806330176e13146104a45780633f4ba83a146104c45780633f564508146104d957600080fd5b8063184d69ab1461042d5780631e84c4131461044c57806323b872dd1461046457600080fd5b806301ffc9a71461035557806306fdde031461038a578063081812fc146103ac578063095ea7b3146103e45780631249c58b1461040657806318160ddd1461040e575b600080fd5b34801561036157600080fd5b50610375610370366004612cf5565b6109bb565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b5061039f6109cc565b6040516103819190612d6a565b3480156103b857600080fd5b506103cc6103c7366004612d7d565b610a5e565b6040516001600160a01b039091168152602001610381565b3480156103f057600080fd5b506104046103ff366004612dad565b610a87565b005b610404610a96565b34801561041a57600080fd5b506008545b604051908152602001610381565b34801561043957600080fd5b50601c5461037590610100900460ff1681565b34801561045857600080fd5b5060165460ff16610375565b34801561047057600080fd5b5061040461047f366004612dd7565b610d00565b34801561049057600080fd5b5061041f61049f366004612dad565b610d8b565b3480156104b057600080fd5b506104046104bf366004612ed2565b610e21565b3480156104d057600080fd5b50610404610e57565b3480156104e557600080fd5b506104046104f4366004612ed2565b610e8b565b34801561050557600080fd5b50610404610514366004612dd7565b610ec1565b34801561052557600080fd5b50610404610534366004612d7d565b610ee1565b34801561054557600080fd5b50610404610554366004612f07565b610f6d565b34801561056557600080fd5b5061041f601d5481565b34801561057b57600080fd5b506010546103cc906001600160a01b031681565b34801561059b57600080fd5b5061041f6105aa366004612d7d565b610fe3565b3480156105bb57600080fd5b506104046105ca366004612f07565b611076565b3480156105db57600080fd5b50600c5460ff16610375565b3480156105f357600080fd5b506103cc610602366004612d7d565b6110e9565b34801561061357600080fd5b50610404610622366004612ed2565b6110f4565b34801561063357600080fd5b504761041f565b34801561064657600080fd5b5061039f610655366004612d7d565b61112a565b34801561066657600080fd5b5061041f610675366004612f07565b6111f3565b34801561068657600080fd5b5061040461123b565b34801561069b57600080fd5b5061041f600f5481565b3480156106b157600080fd5b506104046106c0366004612f22565b61126f565b3480156106d157600080fd5b506104046106e0366004612f07565b611340565b3480156106f157600080fd5b5061040461144a565b34801561070657600080fd5b5061071a610715366004612f07565b61147c565b6040516103819190612f44565b34801561073357600080fd5b50601c546103759060ff1681565b34801561074d57600080fd5b5061041f600d5481565b34801561076357600080fd5b50600a546001600160a01b03166103cc565b34801561078157600080fd5b5061041f600e5481565b34801561079757600080fd5b5061039f61153e565b3480156107ac57600080fd5b506104046107bb366004612f88565b61154d565b3480156107cc57600080fd5b50610404611558565b3480156107e157600080fd5b506104046115e4565b3480156107f657600080fd5b50610404610805366004612fc4565b611669565b34801561081657600080fd5b5061039f611680565b34801561082b57600080fd5b5061039f61083a366004612d7d565b61170e565b34801561084b57600080fd5b5061041f61085a366004612d7d565b611776565b34801561086b57600080fd5b5061041f600081565b34801561088057600080fd5b5061039f61088f366004612d7d565b6117b2565b3480156108a057600080fd5b50336000908152601260205260409020541515610375565b3480156108c457600080fd5b5061039f6118c0565b3480156108d957600080fd5b506104046108e83660046130cf565b6118cd565b3480156108f957600080fd5b50610404611afe565b34801561090e57600080fd5b5061037561091d3660046131a3565b611b3c565b34801561092e57600080fd5b5061040461093d366004612d7d565b611b6a565b34801561094e57600080fd5b5061040461095d3660046131d6565b611bf3565b34801561096e57600080fd5b5061040461097d366004612f07565b611dd5565b34801561098e57600080fd5b5061037561099d366004612f07565b6001600160a01b031660009081526011602052604090205460ff1690565b60006109c682611e70565b92915050565b6060600080546109db9061327f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a079061327f565b8015610a545780601f10610a2957610100808354040283529160200191610a54565b820191906000526020600020905b815481529060010190602001808311610a3757829003601f168201915b5050505050905090565b6000610a6982611e95565b506000828152600460205260409020546001600160a01b03166109c6565b610a92828233611ece565b5050565b6002600b5403610aed5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600b55600e544210801590610b065750600f544211155b8015610b14575060165460ff165b15610b2b576016805460ff19166001179055610b36565b6016805460ff191690555b610b3e611edb565b6000600d5434610b4e91906132df565b90506001811015610ba15760405162461bcd60e51b815260206004820152601c60248201527f43616e2774206d696e74206c657373207468656e203120746f6b656e000000006044820152606401610ae4565b3360009081526011602052604090205460ff1615610c015760405162461bcd60e51b815260206004820181905260248201527f426c61636b6c69737465643a206d696e74696e67206e6f7420616c6c6f7765646044820152606401610ae4565b601c54610100900460ff1615610c9c5733600090815260126020526040902054610c6d5760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f7420656c696769626c6520666f72206d696e740000006044820152606401610ae4565b33600090815260126020526040902054811115610c9c5760405162461bcd60e51b8152600401610ae4906132f3565b60165460ff16610cee5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610ae4565b610cf83382611eff565b506001600b55565b6001600160a01b038216610d2a57604051633250574960e11b815260006004820152602401610ae4565b6000610d3783833361208b565b9050836001600160a01b0316816001600160a01b031614610d85576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610ae4565b50505050565b6000610d96836111f3565b8210610df85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ae4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e4b5760405162461bcd60e51b8152600401610ae490613342565b601b610a9282826133c5565b600a546001600160a01b03163314610e815760405162461bcd60e51b8152600401610ae490613342565b610e896120a0565b565b600a546001600160a01b03163314610eb55760405162461bcd60e51b8152600401610ae490613342565b6017610a9282826133c5565b610edc83838360405180602001604052806000815250611669565b505050565b6000818152600260205260409020546001600160a01b0316338114610f485760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f74206f776e6572206f66207468697320746f6b656e006044820152606401610ae4565b610f51826120ed565b6001601d6000828254610f649190613485565b90915550505050565b600a546001600160a01b03163314610f975760405162461bcd60e51b8152600401610ae490613342565b6001600160a01b038116600081815260116020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6000610fee60085490565b82106110515760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ae4565b600882815481106110645761106461349d565b90600052602060002001549050919050565b600a546001600160a01b031633146110a05760405162461bcd60e51b8152600401610ae490613342565b6001600160a01b038116600081815260116020526040808220805460ff19169055517f7534c63860313c46c473e4e98328f37017e9674e2162faf1a3ad7a96236c3b7b9190a250565b60006109c682611e95565b600a546001600160a01b0316331461111e5760405162461bcd60e51b8152600401610ae490613342565b6018610a9282826133c5565b606061113560085490565b82106111535760405162461bcd60e51b8152600401610ae4906134b3565b61115e600042613485565b61116783611776565b106111b45760405162461bcd60e51b815260206004820152601d60248201527f5468617420656e7469747920686173206e6f742067726f776e207965740000006044820152606401610ae4565b60176014600084815260200190815260200160002060186040516020016111dd93929190613567565b6040516020818303038152906040529050919050565b60006001600160a01b03821661121f576040516322718ad960e21b815260006004820152602401610ae4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112655760405162461bcd60e51b8152600401610ae490613342565b610e896000612141565b600a546001600160a01b031633146112995760405162461bcd60e51b8152600401610ae490613342565b8082106112f95760405162461bcd60e51b815260206004820152602860248201527f456e642074696d65206d7573742062652067726561746572207468616e2073746044820152676172742074696d6560c01b6064820152608401610ae4565b600e829055600f81905560408051838152602081018390527f8da114a60c42a34374a4db1437a7105ff2904ff5f6873c5aaa1eb33c030f0961910160405180910390a15050565b600a546001600160a01b0316331461136a5760405162461bcd60e51b8152600401610ae490613342565b6001600160a01b0381166113c05760405162461bcd60e51b815260206004820152601d60248201527f5a65726f20616464726573732063616e277420626520666f756e6465720000006044820152606401610ae4565b6010546001600160a01b03908116908216036114285760405162461bcd60e51b815260206004820152602160248201527f4e657720666f756e64657220697320657175616c207072657620666f756e64656044820152603960f91b6064820152608401610ae4565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146114745760405162461bcd60e51b8152600401610ae490613342565b610e89612193565b60606000611489836111f3565b9050806000036114ad5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156114c8576114c8612e13565b6040519080825280602002602001820160405280156114f1578160200160208202803683370190505b50905060005b828110156114a5576115098582610d8b565b82828151811061151b5761151b61349d565b6020908102919091010152806115308161358e565b9150506114f7565b50919050565b6060600180546109db9061327f565b610a923383836121d0565b600a546001600160a01b031633146115825760405162461bcd60e51b8152600401610ae490613342565b601c805460ff610100808304821615810261ff001990931692909217928390556040517f1cf28b997975c7be355bcef74f2f5019aa48253bc1e54b3c8b002471865fdba8936115da9390049091161515815260200190565b60405180910390a1565b600a546001600160a01b031633148061160757506010546001600160a01b031633145b6116535760405162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20726967687420746f2069740000000000000000006044820152606401610ae4565b601054610e89906001600160a01b03164761226f565b611674848484610d00565b610d85848484846123be565b6017805461168d9061327f565b80601f01602080910402602001604051908101604052809291908181526020018280546116b99061327f565b80156117065780601f106116db57610100808354040283529160200191611706565b820191906000526020600020905b8154815290600101906020018083116116e957829003601f168201915b505050505081565b606061171982611e95565b5060006117246124e7565b90506000815111611744576040518060200160405280600081525061176f565b8061174e846124f6565b60405160200161175f9291906135a7565b6040516020818303038152906040525b9392505050565b600061178160085490565b821061179f5760405162461bcd60e51b8152600401610ae4906134b3565b5060009081526013602052604090205490565b600a546060906001600160a01b031633146117df5760405162461bcd60e51b8152600401610ae490613342565b60085482106118005760405162461bcd60e51b8152600401610ae4906134b3565b601654610100900460ff16156118a2576015805461181d9061327f565b80601f01602080910402602001604051908101604052809291908181526020018280546118499061327f565b80156118965780601f1061186b57610100808354040283529160200191611896565b820191906000526020600020905b81548152906001019060200180831161187957829003601f168201915b50505050509050919050565b6000828152601460205260409020805461181d9061327f565b919050565b6018805461168d9061327f565b600a546001600160a01b031633146118f75760405162461bcd60e51b8152600401610ae490613342565b80518251146119485760405162461bcd60e51b815260206004820181905260248201527f6d697363656c6c616e656f7573206e756d626572206f6620656c656d656e74736044820152606401610ae4565b601654610100900460ff1615611981578160008151811061196b5761196b61349d565b602002602001015160159081610edc91906133c5565b60005b8151811015610edc576000601460008484815181106119a5576119a561349d565b6020026020010151815260200190815260200160002080546119c69061327f565b80601f01602080910402602001604051908101604052809291908181526020018280546119f29061327f565b8015611a3f5780601f10611a1457610100808354040283529160200191611a3f565b820191906000526020600020905b815481529060010190602001808311611a2257829003601f168201915b505050505090508051600014611a975760405162461bcd60e51b815260206004820152601e60248201527f4950465320686173682063616e20626520736574206f6e6c79206f6e636500006044820152606401610ae4565b838281518110611aa957611aa961349d565b602002602001015160146000858581518110611ac757611ac761349d565b602002602001015181526020019081526020016000209081611ae991906133c5565b50508080611af69061358e565b915050611984565b600a546001600160a01b03163314611b285760405162461bcd60e51b8152600401610ae490613342565b6016805460ff19811660ff90911615179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b03163314611b945760405162461bcd60e51b8152600401610ae490613342565b600d5460408051606080825260059082015264505249434560d81b6080820152602081019290925281018290527f0d072220716df8d505ad38ae8dbfe77b968e2c80bb73f08c38a08d5fe4f9911a9060a00160405180910390a1600d55565b600a546001600160a01b03163314611c1d5760405162461bcd60e51b8152600401610ae490613342565b8051825114611c875760405162461bcd60e51b815260206004820152603060248201527f546865206e756d626572206f662061646472657373657320616e6420616d6f7560448201526f0dce8e640c8de40dcdee840dac2e8c6d60831b6064820152608401610ae4565b60005b8251811015610edc5760006001600160a01b0316838281518110611cb057611cb061349d565b60200260200101516001600160a01b031603611d1d5760405162461bcd60e51b815260206004820152602660248201527f6f6e65206f7220666577206d656d6265727320697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae4565b818181518110611d2f57611d2f61349d565b602002602001015160126000858481518110611d4d57611d4d61349d565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550600060116000858481518110611d9157611d9161349d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611dcd8161358e565b915050611c8a565b600a546001600160a01b03163314611dff5760405162461bcd60e51b8152600401610ae490613342565b6001600160a01b038116611e645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae4565b611e6d81612141565b50565b60006001600160e01b0319821663780e9d6360e01b14806109c657506109c6826125f7565b6000818152600260205260408120546001600160a01b0316806109c657604051637e27328960e01b815260048101849052602401610ae4565b610edc8383836001612647565b600c5460ff1615610e895760405163d93c066560e01b815260040160405180910390fd5b6001600160a01b03821660009081526011602052604090205460ff1615611f685760405162461bcd60e51b815260206004820181905260248201527f426c61636b6c69737465643a206d696e74696e67206e6f7420616c6c6f7765646044820152606401610ae4565b601c54610100900460ff16156120035733600090815260126020526040902054611fd45760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f7420656c696769626c6520666f72206d696e740000006044820152606401610ae4565b336000908152601260205260409020548111156120035760405162461bcd60e51b8152600401610ae4906132f3565b601c54610100900460ff16156120385733600090815260126020526040812080548392906120329084906135d6565b90915550505b60005b81811015610edc576000601d5461205160085490565b61205b9190613485565b60008181526013602052604090204290559050612078848261274d565b50806120838161358e565b91505061203b565b6000612098848484612767565b949350505050565b6120a861277c565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b0390911681526020016115da565b60006120f8826110e9565b90506121068160008461279f565b6000612115600084600061208b565b90506001600160a01b038116610edc57604051637e27328960e01b815260048101849052602401610ae4565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61219b611edb565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120d53390565b6001600160a01b03821661220257604051630b61174360e31b81526001600160a01b0383166004820152602401610ae4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6002600b54036122c15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ae4565b6002600b55478082116122d457816122d6565b805b91506000836001600160a01b03168360405160006040518083038185875af1925050503d8060008114612325576040519150601f19603f3d011682016040523d82523d6000602084013e61232a565b606091505b50509050806123705760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610ae4565b836001600160a01b03167f2d7972e635b540e3a7d69ab075a726bac4112e45f631bde1b551cb069dcad6df846040516123ab91815260200190565b60405180910390a250506001600b555050565b6001600160a01b0383163b15610d8557604051630a85bd0160e11b81526001600160a01b0384169063150b7a02906124009033908890879087906004016135ed565b6020604051808303816000875af192505050801561243b575060408051601f3d908101601f191682019092526124389181019061362a565b60015b6124a4573d808015612469576040519150601f19603f3d011682016040523d82523d6000602084013e61246e565b606091505b50805160000361249c57604051633250574960e11b81526001600160a01b0385166004820152602401610ae4565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b146124e057604051633250574960e11b81526001600160a01b0385166004820152602401610ae4565b5050505050565b6060601b80546109db9061327f565b60608160000361251d5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561254757806125318161358e565b91506125409050600a836132df565b9150612521565b60008167ffffffffffffffff81111561256257612562612e13565b6040519080825280601f01601f19166020018201604052801561258c576020820181803683370190505b5090505b8415612098576125a16001836135d6565b91506125ae600a86613647565b6125b9906030613485565b60f81b8183815181106125ce576125ce61349d565b60200101906001600160f81b031916908160001a9053506125f0600a866132df565b9450612590565b60006001600160e01b031982166380ac58cd60e01b148061262857506001600160e01b03198216635b5e139f60e01b145b806109c657506301ffc9a760e01b6001600160e01b03198316146109c6565b808061265b57506001600160a01b03821615155b1561271d57600061266b84611e95565b90506001600160a01b038316158015906126975750826001600160a01b0316816001600160a01b031614155b80156126aa57506126a88184611b3c565b155b156126d35760405163a9fbf51f60e01b81526001600160a01b0384166004820152602401610ae4565b811561271b5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5050600090815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b610a9282826040518060200160405280600081525061284f565b6000612771611edb565b612098848484612866565b600c5460ff16610e8957604051638dfc202b60e01b815260040160405180910390fd5b6127a7611edb565b6127b283838361295f565b6001600160a01b03831660009081526011602052604090205460ff161580156127f457506001600160a01b03821660009081526011602052604090205460ff16155b610edc5760405162461bcd60e51b815260206004820152602660248201527f426c61636b6c69737465643a20746f6b656e207472616e736665722070726f686044820152651a589a5d195960d21b6064820152608401610ae4565b6128598383612a17565b610edc60008484846123be565b6000828152600260205260408120546001600160a01b039081169083161561289357612893818486612a88565b6001600160a01b038116156128d1576128b0600085600080612647565b6001600160a01b038116600090815260036020526040902080546000190190555b6001600160a01b03851615612900576001600160a01b0385166000908152600360205260409020805460010190555b60008481526002602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b6001600160a01b0383166129ba576129b581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6129dd565b816001600160a01b0316836001600160a01b0316146129dd576129dd8382612aec565b6001600160a01b0382166129f457610edc81612b89565b826001600160a01b0316826001600160a01b031614610edc57610edc8282612c38565b6001600160a01b038216612a4157604051633250574960e11b815260006004820152602401610ae4565b612a4d6000838361279f565b6000612a5b8383600061208b565b90506001600160a01b03811615610edc576040516339e3563760e11b815260006004820152602401610ae4565b612a93838383612c7c565b610edc576001600160a01b038316612ac157604051637e27328960e01b815260048101829052602401610ae4565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610ae4565b60006001612af9846111f3565b612b0391906135d6565b600083815260076020526040902054909150808214612b56576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b9b906001906135d6565b60008381526009602052604081205460088054939450909284908110612bc357612bc361349d565b906000526020600020015490508060088381548110612be457612be461349d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c1c57612c1c61365b565b6001900381819060005260206000200160009055905550505050565b6000612c43836111f3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038316158015906120985750826001600160a01b0316846001600160a01b03161480612cb65750612cb68484611b3c565b806120985750506000908152600460205260409020546001600160a01b03908116911614919050565b6001600160e01b031981168114611e6d57600080fd5b600060208284031215612d0757600080fd5b813561176f81612cdf565b60005b83811015612d2d578181015183820152602001612d15565b83811115610d855750506000910152565b60008151808452612d56816020860160208601612d12565b601f01601f19169290920160200192915050565b60208152600061176f6020830184612d3e565b600060208284031215612d8f57600080fd5b5035919050565b80356001600160a01b03811681146118bb57600080fd5b60008060408385031215612dc057600080fd5b612dc983612d96565b946020939093013593505050565b600080600060608486031215612dec57600080fd5b612df584612d96565b9250612e0360208501612d96565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612e5257612e52612e13565b604052919050565b600067ffffffffffffffff831115612e7457612e74612e13565b612e87601f8401601f1916602001612e29565b9050828152838383011115612e9b57600080fd5b828260208301376000602084830101529392505050565b600082601f830112612ec357600080fd5b61176f83833560208501612e5a565b600060208284031215612ee457600080fd5b813567ffffffffffffffff811115612efb57600080fd5b61209884828501612eb2565b600060208284031215612f1957600080fd5b61176f82612d96565b60008060408385031215612f3557600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b81811015612f7c57835183529284019291840191600101612f60565b50909695505050505050565b60008060408385031215612f9b57600080fd5b612fa483612d96565b915060208301358015158114612fb957600080fd5b809150509250929050565b60008060008060808587031215612fda57600080fd5b612fe385612d96565b9350612ff160208601612d96565b925060408501359150606085013567ffffffffffffffff81111561301457600080fd5b8501601f8101871361302557600080fd5b61303487823560208401612e5a565b91505092959194509250565b600067ffffffffffffffff82111561305a5761305a612e13565b5060051b60200190565b600082601f83011261307557600080fd5b8135602061308a61308583613040565b612e29565b82815260059290921b840181019181810190868411156130a957600080fd5b8286015b848110156130c457803583529183019183016130ad565b509695505050505050565b600080604083850312156130e257600080fd5b823567ffffffffffffffff808211156130fa57600080fd5b818501915085601f83011261310e57600080fd5b8135602061311e61308583613040565b82815260059290921b8401810191818101908984111561313d57600080fd5b8286015b84811015613175578035868111156131595760008081fd5b6131678c86838b0101612eb2565b845250918301918301613141565b509650508601359250508082111561318c57600080fd5b5061319985828601613064565b9150509250929050565b600080604083850312156131b657600080fd5b6131bf83612d96565b91506131cd60208401612d96565b90509250929050565b600080604083850312156131e957600080fd5b823567ffffffffffffffff8082111561320157600080fd5b818501915085601f83011261321557600080fd5b8135602061322561308583613040565b82815260059290921b8401810191818101908984111561324457600080fd5b948201945b838610156132695761325a86612d96565b82529482019490820190613249565b9650508601359250508082111561318c57600080fd5b600181811c9082168061329357607f821691505b60208210810361153857634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000826132ee576132ee6132b3565b500490565b6020808252602f908201527f596f75722077686974656c69737420616d6f756e74206c657373207468616e2060408201526e1e5bdd481d1c9e481d1bc81b5a5b9d608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610edc57600081815260208120601f850160051c8101602086101561339e5750805b601f850160051c820191505b818110156133bd578281556001016133aa565b505050505050565b815167ffffffffffffffff8111156133df576133df612e13565b6133f3816133ed845461327f565b84613377565b602080601f83116001811461342857600084156134105750858301515b600019600386901b1c1916600185901b1785556133bd565b600085815260208120601f198616915b8281101561345757888601518255948401946001909101908401613438565b50858210156134755787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115613498576134986132c9565b500190565b634e487b7160e01b600052603260045260246000fd5b60208082526021908201527f5468617420656e7469747920686173206e6f74206265656e206d616b652079656040820152601d60fa1b606082015260800190565b600081546135018161327f565b60018281168015613519576001811461352e5761355d565b60ff198416875282151583028701945061355d565b8560005260208060002060005b858110156135545781548a82015290840190820161353b565b50505082870194505b5050505092915050565b600061358561357f61357984886134f4565b866134f4565b846134f4565b95945050505050565b6000600182016135a0576135a06132c9565b5060010190565b600083516135b9818460208801612d12565b8351908301906135cd818360208801612d12565b01949350505050565b6000828210156135e8576135e86132c9565b500390565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061362090830184612d3e565b9695505050505050565b60006020828403121561363c57600080fd5b815161176f81612cdf565b600082613656576136566132b3565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220dd9ae6b2345f94b95101cfedaae7eea1391090812c154e4157f5754aa7ba7abe64736f6c634300080f003368747470733a2f2f6d656469612e616c7068616d696e642e636f2f6e66742f6c696e65612e6e66742f6170692f
Deployed Bytecode
0x6080604052600436106103505760003560e01c8063717a002b116101c6578063c0ac9983116100f7578063de49e4db11610095578063ee8cdd4e1161006f578063ee8cdd4e14610922578063f013e0e114610942578063f2fde38b14610962578063fe575a871461098257600080fd5b8063de49e4db146108cd578063e222c7f9146108ed578063e985e9c51461090257600080fd5b8063cb645ccb116100d1578063cb645ccb1461085f578063d450fbc914610874578063d522364814610894578063dbbc853b146108b857600080fd5b8063c0ac99831461080a578063c87b56dd1461081f578063c8d2524c1461083f57600080fd5b80638da5cb5b11610164578063a22cb4651161013e578063a22cb465146107a0578063a8d43bd8146107c0578063ac307773146107d5578063b88d4fde146107ea57600080fd5b80638da5cb5b14610757578063931e2e491461077557806395d89b411461078b57600080fd5b80638456cb59116101a05780638456cb59146106e55780638462151c146106fa578063878dd332146107275780638d859f3e1461074157600080fd5b8063717a002b1461068f57806377325d7a146106a55780637a341bc7146106c557600080fd5b806342842e0e116102a05780635c975abb1161023e5780636f9fb98a116102185780636f9fb98a14610627578063704150331461063a57806370a082311461065a578063715018a61461067a57600080fd5b80635c975abb146105cf5780636352211e146105e7578063657fc38d1461060757600080fd5b806347b5dd541161027a57806347b5dd54146105595780634d853ee51461056f5780634f6ccce71461058f578063537df3b6146105af57600080fd5b806342842e0e146104f957806342966c681461051957806344337ea11461053957600080fd5b8063184d69ab1161030d5780632f745c59116102e75780632f745c591461048457806330176e13146104a45780633f4ba83a146104c45780633f564508146104d957600080fd5b8063184d69ab1461042d5780631e84c4131461044c57806323b872dd1461046457600080fd5b806301ffc9a71461035557806306fdde031461038a578063081812fc146103ac578063095ea7b3146103e45780631249c58b1461040657806318160ddd1461040e575b600080fd5b34801561036157600080fd5b50610375610370366004612cf5565b6109bb565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b5061039f6109cc565b6040516103819190612d6a565b3480156103b857600080fd5b506103cc6103c7366004612d7d565b610a5e565b6040516001600160a01b039091168152602001610381565b3480156103f057600080fd5b506104046103ff366004612dad565b610a87565b005b610404610a96565b34801561041a57600080fd5b506008545b604051908152602001610381565b34801561043957600080fd5b50601c5461037590610100900460ff1681565b34801561045857600080fd5b5060165460ff16610375565b34801561047057600080fd5b5061040461047f366004612dd7565b610d00565b34801561049057600080fd5b5061041f61049f366004612dad565b610d8b565b3480156104b057600080fd5b506104046104bf366004612ed2565b610e21565b3480156104d057600080fd5b50610404610e57565b3480156104e557600080fd5b506104046104f4366004612ed2565b610e8b565b34801561050557600080fd5b50610404610514366004612dd7565b610ec1565b34801561052557600080fd5b50610404610534366004612d7d565b610ee1565b34801561054557600080fd5b50610404610554366004612f07565b610f6d565b34801561056557600080fd5b5061041f601d5481565b34801561057b57600080fd5b506010546103cc906001600160a01b031681565b34801561059b57600080fd5b5061041f6105aa366004612d7d565b610fe3565b3480156105bb57600080fd5b506104046105ca366004612f07565b611076565b3480156105db57600080fd5b50600c5460ff16610375565b3480156105f357600080fd5b506103cc610602366004612d7d565b6110e9565b34801561061357600080fd5b50610404610622366004612ed2565b6110f4565b34801561063357600080fd5b504761041f565b34801561064657600080fd5b5061039f610655366004612d7d565b61112a565b34801561066657600080fd5b5061041f610675366004612f07565b6111f3565b34801561068657600080fd5b5061040461123b565b34801561069b57600080fd5b5061041f600f5481565b3480156106b157600080fd5b506104046106c0366004612f22565b61126f565b3480156106d157600080fd5b506104046106e0366004612f07565b611340565b3480156106f157600080fd5b5061040461144a565b34801561070657600080fd5b5061071a610715366004612f07565b61147c565b6040516103819190612f44565b34801561073357600080fd5b50601c546103759060ff1681565b34801561074d57600080fd5b5061041f600d5481565b34801561076357600080fd5b50600a546001600160a01b03166103cc565b34801561078157600080fd5b5061041f600e5481565b34801561079757600080fd5b5061039f61153e565b3480156107ac57600080fd5b506104046107bb366004612f88565b61154d565b3480156107cc57600080fd5b50610404611558565b3480156107e157600080fd5b506104046115e4565b3480156107f657600080fd5b50610404610805366004612fc4565b611669565b34801561081657600080fd5b5061039f611680565b34801561082b57600080fd5b5061039f61083a366004612d7d565b61170e565b34801561084b57600080fd5b5061041f61085a366004612d7d565b611776565b34801561086b57600080fd5b5061041f600081565b34801561088057600080fd5b5061039f61088f366004612d7d565b6117b2565b3480156108a057600080fd5b50336000908152601260205260409020541515610375565b3480156108c457600080fd5b5061039f6118c0565b3480156108d957600080fd5b506104046108e83660046130cf565b6118cd565b3480156108f957600080fd5b50610404611afe565b34801561090e57600080fd5b5061037561091d3660046131a3565b611b3c565b34801561092e57600080fd5b5061040461093d366004612d7d565b611b6a565b34801561094e57600080fd5b5061040461095d3660046131d6565b611bf3565b34801561096e57600080fd5b5061040461097d366004612f07565b611dd5565b34801561098e57600080fd5b5061037561099d366004612f07565b6001600160a01b031660009081526011602052604090205460ff1690565b60006109c682611e70565b92915050565b6060600080546109db9061327f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a079061327f565b8015610a545780601f10610a2957610100808354040283529160200191610a54565b820191906000526020600020905b815481529060010190602001808311610a3757829003601f168201915b5050505050905090565b6000610a6982611e95565b506000828152600460205260409020546001600160a01b03166109c6565b610a92828233611ece565b5050565b6002600b5403610aed5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600b55600e544210801590610b065750600f544211155b8015610b14575060165460ff165b15610b2b576016805460ff19166001179055610b36565b6016805460ff191690555b610b3e611edb565b6000600d5434610b4e91906132df565b90506001811015610ba15760405162461bcd60e51b815260206004820152601c60248201527f43616e2774206d696e74206c657373207468656e203120746f6b656e000000006044820152606401610ae4565b3360009081526011602052604090205460ff1615610c015760405162461bcd60e51b815260206004820181905260248201527f426c61636b6c69737465643a206d696e74696e67206e6f7420616c6c6f7765646044820152606401610ae4565b601c54610100900460ff1615610c9c5733600090815260126020526040902054610c6d5760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f7420656c696769626c6520666f72206d696e740000006044820152606401610ae4565b33600090815260126020526040902054811115610c9c5760405162461bcd60e51b8152600401610ae4906132f3565b60165460ff16610cee5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610ae4565b610cf83382611eff565b506001600b55565b6001600160a01b038216610d2a57604051633250574960e11b815260006004820152602401610ae4565b6000610d3783833361208b565b9050836001600160a01b0316816001600160a01b031614610d85576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610ae4565b50505050565b6000610d96836111f3565b8210610df85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ae4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e4b5760405162461bcd60e51b8152600401610ae490613342565b601b610a9282826133c5565b600a546001600160a01b03163314610e815760405162461bcd60e51b8152600401610ae490613342565b610e896120a0565b565b600a546001600160a01b03163314610eb55760405162461bcd60e51b8152600401610ae490613342565b6017610a9282826133c5565b610edc83838360405180602001604052806000815250611669565b505050565b6000818152600260205260409020546001600160a01b0316338114610f485760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f74206f776e6572206f66207468697320746f6b656e006044820152606401610ae4565b610f51826120ed565b6001601d6000828254610f649190613485565b90915550505050565b600a546001600160a01b03163314610f975760405162461bcd60e51b8152600401610ae490613342565b6001600160a01b038116600081815260116020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6000610fee60085490565b82106110515760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ae4565b600882815481106110645761106461349d565b90600052602060002001549050919050565b600a546001600160a01b031633146110a05760405162461bcd60e51b8152600401610ae490613342565b6001600160a01b038116600081815260116020526040808220805460ff19169055517f7534c63860313c46c473e4e98328f37017e9674e2162faf1a3ad7a96236c3b7b9190a250565b60006109c682611e95565b600a546001600160a01b0316331461111e5760405162461bcd60e51b8152600401610ae490613342565b6018610a9282826133c5565b606061113560085490565b82106111535760405162461bcd60e51b8152600401610ae4906134b3565b61115e600042613485565b61116783611776565b106111b45760405162461bcd60e51b815260206004820152601d60248201527f5468617420656e7469747920686173206e6f742067726f776e207965740000006044820152606401610ae4565b60176014600084815260200190815260200160002060186040516020016111dd93929190613567565b6040516020818303038152906040529050919050565b60006001600160a01b03821661121f576040516322718ad960e21b815260006004820152602401610ae4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112655760405162461bcd60e51b8152600401610ae490613342565b610e896000612141565b600a546001600160a01b031633146112995760405162461bcd60e51b8152600401610ae490613342565b8082106112f95760405162461bcd60e51b815260206004820152602860248201527f456e642074696d65206d7573742062652067726561746572207468616e2073746044820152676172742074696d6560c01b6064820152608401610ae4565b600e829055600f81905560408051838152602081018390527f8da114a60c42a34374a4db1437a7105ff2904ff5f6873c5aaa1eb33c030f0961910160405180910390a15050565b600a546001600160a01b0316331461136a5760405162461bcd60e51b8152600401610ae490613342565b6001600160a01b0381166113c05760405162461bcd60e51b815260206004820152601d60248201527f5a65726f20616464726573732063616e277420626520666f756e6465720000006044820152606401610ae4565b6010546001600160a01b03908116908216036114285760405162461bcd60e51b815260206004820152602160248201527f4e657720666f756e64657220697320657175616c207072657620666f756e64656044820152603960f91b6064820152608401610ae4565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146114745760405162461bcd60e51b8152600401610ae490613342565b610e89612193565b60606000611489836111f3565b9050806000036114ad5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156114c8576114c8612e13565b6040519080825280602002602001820160405280156114f1578160200160208202803683370190505b50905060005b828110156114a5576115098582610d8b565b82828151811061151b5761151b61349d565b6020908102919091010152806115308161358e565b9150506114f7565b50919050565b6060600180546109db9061327f565b610a923383836121d0565b600a546001600160a01b031633146115825760405162461bcd60e51b8152600401610ae490613342565b601c805460ff610100808304821615810261ff001990931692909217928390556040517f1cf28b997975c7be355bcef74f2f5019aa48253bc1e54b3c8b002471865fdba8936115da9390049091161515815260200190565b60405180910390a1565b600a546001600160a01b031633148061160757506010546001600160a01b031633145b6116535760405162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20726967687420746f2069740000000000000000006044820152606401610ae4565b601054610e89906001600160a01b03164761226f565b611674848484610d00565b610d85848484846123be565b6017805461168d9061327f565b80601f01602080910402602001604051908101604052809291908181526020018280546116b99061327f565b80156117065780601f106116db57610100808354040283529160200191611706565b820191906000526020600020905b8154815290600101906020018083116116e957829003601f168201915b505050505081565b606061171982611e95565b5060006117246124e7565b90506000815111611744576040518060200160405280600081525061176f565b8061174e846124f6565b60405160200161175f9291906135a7565b6040516020818303038152906040525b9392505050565b600061178160085490565b821061179f5760405162461bcd60e51b8152600401610ae4906134b3565b5060009081526013602052604090205490565b600a546060906001600160a01b031633146117df5760405162461bcd60e51b8152600401610ae490613342565b60085482106118005760405162461bcd60e51b8152600401610ae4906134b3565b601654610100900460ff16156118a2576015805461181d9061327f565b80601f01602080910402602001604051908101604052809291908181526020018280546118499061327f565b80156118965780601f1061186b57610100808354040283529160200191611896565b820191906000526020600020905b81548152906001019060200180831161187957829003601f168201915b50505050509050919050565b6000828152601460205260409020805461181d9061327f565b919050565b6018805461168d9061327f565b600a546001600160a01b031633146118f75760405162461bcd60e51b8152600401610ae490613342565b80518251146119485760405162461bcd60e51b815260206004820181905260248201527f6d697363656c6c616e656f7573206e756d626572206f6620656c656d656e74736044820152606401610ae4565b601654610100900460ff1615611981578160008151811061196b5761196b61349d565b602002602001015160159081610edc91906133c5565b60005b8151811015610edc576000601460008484815181106119a5576119a561349d565b6020026020010151815260200190815260200160002080546119c69061327f565b80601f01602080910402602001604051908101604052809291908181526020018280546119f29061327f565b8015611a3f5780601f10611a1457610100808354040283529160200191611a3f565b820191906000526020600020905b815481529060010190602001808311611a2257829003601f168201915b505050505090508051600014611a975760405162461bcd60e51b815260206004820152601e60248201527f4950465320686173682063616e20626520736574206f6e6c79206f6e636500006044820152606401610ae4565b838281518110611aa957611aa961349d565b602002602001015160146000858581518110611ac757611ac761349d565b602002602001015181526020019081526020016000209081611ae991906133c5565b50508080611af69061358e565b915050611984565b600a546001600160a01b03163314611b285760405162461bcd60e51b8152600401610ae490613342565b6016805460ff19811660ff90911615179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b03163314611b945760405162461bcd60e51b8152600401610ae490613342565b600d5460408051606080825260059082015264505249434560d81b6080820152602081019290925281018290527f0d072220716df8d505ad38ae8dbfe77b968e2c80bb73f08c38a08d5fe4f9911a9060a00160405180910390a1600d55565b600a546001600160a01b03163314611c1d5760405162461bcd60e51b8152600401610ae490613342565b8051825114611c875760405162461bcd60e51b815260206004820152603060248201527f546865206e756d626572206f662061646472657373657320616e6420616d6f7560448201526f0dce8e640c8de40dcdee840dac2e8c6d60831b6064820152608401610ae4565b60005b8251811015610edc5760006001600160a01b0316838281518110611cb057611cb061349d565b60200260200101516001600160a01b031603611d1d5760405162461bcd60e51b815260206004820152602660248201527f6f6e65206f7220666577206d656d6265727320697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae4565b818181518110611d2f57611d2f61349d565b602002602001015160126000858481518110611d4d57611d4d61349d565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550600060116000858481518110611d9157611d9161349d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611dcd8161358e565b915050611c8a565b600a546001600160a01b03163314611dff5760405162461bcd60e51b8152600401610ae490613342565b6001600160a01b038116611e645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae4565b611e6d81612141565b50565b60006001600160e01b0319821663780e9d6360e01b14806109c657506109c6826125f7565b6000818152600260205260408120546001600160a01b0316806109c657604051637e27328960e01b815260048101849052602401610ae4565b610edc8383836001612647565b600c5460ff1615610e895760405163d93c066560e01b815260040160405180910390fd5b6001600160a01b03821660009081526011602052604090205460ff1615611f685760405162461bcd60e51b815260206004820181905260248201527f426c61636b6c69737465643a206d696e74696e67206e6f7420616c6c6f7765646044820152606401610ae4565b601c54610100900460ff16156120035733600090815260126020526040902054611fd45760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f7420656c696769626c6520666f72206d696e740000006044820152606401610ae4565b336000908152601260205260409020548111156120035760405162461bcd60e51b8152600401610ae4906132f3565b601c54610100900460ff16156120385733600090815260126020526040812080548392906120329084906135d6565b90915550505b60005b81811015610edc576000601d5461205160085490565b61205b9190613485565b60008181526013602052604090204290559050612078848261274d565b50806120838161358e565b91505061203b565b6000612098848484612767565b949350505050565b6120a861277c565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b0390911681526020016115da565b60006120f8826110e9565b90506121068160008461279f565b6000612115600084600061208b565b90506001600160a01b038116610edc57604051637e27328960e01b815260048101849052602401610ae4565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61219b611edb565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120d53390565b6001600160a01b03821661220257604051630b61174360e31b81526001600160a01b0383166004820152602401610ae4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6002600b54036122c15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ae4565b6002600b55478082116122d457816122d6565b805b91506000836001600160a01b03168360405160006040518083038185875af1925050503d8060008114612325576040519150601f19603f3d011682016040523d82523d6000602084013e61232a565b606091505b50509050806123705760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610ae4565b836001600160a01b03167f2d7972e635b540e3a7d69ab075a726bac4112e45f631bde1b551cb069dcad6df846040516123ab91815260200190565b60405180910390a250506001600b555050565b6001600160a01b0383163b15610d8557604051630a85bd0160e11b81526001600160a01b0384169063150b7a02906124009033908890879087906004016135ed565b6020604051808303816000875af192505050801561243b575060408051601f3d908101601f191682019092526124389181019061362a565b60015b6124a4573d808015612469576040519150601f19603f3d011682016040523d82523d6000602084013e61246e565b606091505b50805160000361249c57604051633250574960e11b81526001600160a01b0385166004820152602401610ae4565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b146124e057604051633250574960e11b81526001600160a01b0385166004820152602401610ae4565b5050505050565b6060601b80546109db9061327f565b60608160000361251d5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561254757806125318161358e565b91506125409050600a836132df565b9150612521565b60008167ffffffffffffffff81111561256257612562612e13565b6040519080825280601f01601f19166020018201604052801561258c576020820181803683370190505b5090505b8415612098576125a16001836135d6565b91506125ae600a86613647565b6125b9906030613485565b60f81b8183815181106125ce576125ce61349d565b60200101906001600160f81b031916908160001a9053506125f0600a866132df565b9450612590565b60006001600160e01b031982166380ac58cd60e01b148061262857506001600160e01b03198216635b5e139f60e01b145b806109c657506301ffc9a760e01b6001600160e01b03198316146109c6565b808061265b57506001600160a01b03821615155b1561271d57600061266b84611e95565b90506001600160a01b038316158015906126975750826001600160a01b0316816001600160a01b031614155b80156126aa57506126a88184611b3c565b155b156126d35760405163a9fbf51f60e01b81526001600160a01b0384166004820152602401610ae4565b811561271b5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5050600090815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b610a9282826040518060200160405280600081525061284f565b6000612771611edb565b612098848484612866565b600c5460ff16610e8957604051638dfc202b60e01b815260040160405180910390fd5b6127a7611edb565b6127b283838361295f565b6001600160a01b03831660009081526011602052604090205460ff161580156127f457506001600160a01b03821660009081526011602052604090205460ff16155b610edc5760405162461bcd60e51b815260206004820152602660248201527f426c61636b6c69737465643a20746f6b656e207472616e736665722070726f686044820152651a589a5d195960d21b6064820152608401610ae4565b6128598383612a17565b610edc60008484846123be565b6000828152600260205260408120546001600160a01b039081169083161561289357612893818486612a88565b6001600160a01b038116156128d1576128b0600085600080612647565b6001600160a01b038116600090815260036020526040902080546000190190555b6001600160a01b03851615612900576001600160a01b0385166000908152600360205260409020805460010190555b60008481526002602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b6001600160a01b0383166129ba576129b581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6129dd565b816001600160a01b0316836001600160a01b0316146129dd576129dd8382612aec565b6001600160a01b0382166129f457610edc81612b89565b826001600160a01b0316826001600160a01b031614610edc57610edc8282612c38565b6001600160a01b038216612a4157604051633250574960e11b815260006004820152602401610ae4565b612a4d6000838361279f565b6000612a5b8383600061208b565b90506001600160a01b03811615610edc576040516339e3563760e11b815260006004820152602401610ae4565b612a93838383612c7c565b610edc576001600160a01b038316612ac157604051637e27328960e01b815260048101829052602401610ae4565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610ae4565b60006001612af9846111f3565b612b0391906135d6565b600083815260076020526040902054909150808214612b56576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b9b906001906135d6565b60008381526009602052604081205460088054939450909284908110612bc357612bc361349d565b906000526020600020015490508060088381548110612be457612be461349d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c1c57612c1c61365b565b6001900381819060005260206000200160009055905550505050565b6000612c43836111f3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038316158015906120985750826001600160a01b0316846001600160a01b03161480612cb65750612cb68484611b3c565b806120985750506000908152600460205260409020546001600160a01b03908116911614919050565b6001600160e01b031981168114611e6d57600080fd5b600060208284031215612d0757600080fd5b813561176f81612cdf565b60005b83811015612d2d578181015183820152602001612d15565b83811115610d855750506000910152565b60008151808452612d56816020860160208601612d12565b601f01601f19169290920160200192915050565b60208152600061176f6020830184612d3e565b600060208284031215612d8f57600080fd5b5035919050565b80356001600160a01b03811681146118bb57600080fd5b60008060408385031215612dc057600080fd5b612dc983612d96565b946020939093013593505050565b600080600060608486031215612dec57600080fd5b612df584612d96565b9250612e0360208501612d96565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612e5257612e52612e13565b604052919050565b600067ffffffffffffffff831115612e7457612e74612e13565b612e87601f8401601f1916602001612e29565b9050828152838383011115612e9b57600080fd5b828260208301376000602084830101529392505050565b600082601f830112612ec357600080fd5b61176f83833560208501612e5a565b600060208284031215612ee457600080fd5b813567ffffffffffffffff811115612efb57600080fd5b61209884828501612eb2565b600060208284031215612f1957600080fd5b61176f82612d96565b60008060408385031215612f3557600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b81811015612f7c57835183529284019291840191600101612f60565b50909695505050505050565b60008060408385031215612f9b57600080fd5b612fa483612d96565b915060208301358015158114612fb957600080fd5b809150509250929050565b60008060008060808587031215612fda57600080fd5b612fe385612d96565b9350612ff160208601612d96565b925060408501359150606085013567ffffffffffffffff81111561301457600080fd5b8501601f8101871361302557600080fd5b61303487823560208401612e5a565b91505092959194509250565b600067ffffffffffffffff82111561305a5761305a612e13565b5060051b60200190565b600082601f83011261307557600080fd5b8135602061308a61308583613040565b612e29565b82815260059290921b840181019181810190868411156130a957600080fd5b8286015b848110156130c457803583529183019183016130ad565b509695505050505050565b600080604083850312156130e257600080fd5b823567ffffffffffffffff808211156130fa57600080fd5b818501915085601f83011261310e57600080fd5b8135602061311e61308583613040565b82815260059290921b8401810191818101908984111561313d57600080fd5b8286015b84811015613175578035868111156131595760008081fd5b6131678c86838b0101612eb2565b845250918301918301613141565b509650508601359250508082111561318c57600080fd5b5061319985828601613064565b9150509250929050565b600080604083850312156131b657600080fd5b6131bf83612d96565b91506131cd60208401612d96565b90509250929050565b600080604083850312156131e957600080fd5b823567ffffffffffffffff8082111561320157600080fd5b818501915085601f83011261321557600080fd5b8135602061322561308583613040565b82815260059290921b8401810191818101908984111561324457600080fd5b948201945b838610156132695761325a86612d96565b82529482019490820190613249565b9650508601359250508082111561318c57600080fd5b600181811c9082168061329357607f821691505b60208210810361153857634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000826132ee576132ee6132b3565b500490565b6020808252602f908201527f596f75722077686974656c69737420616d6f756e74206c657373207468616e2060408201526e1e5bdd481d1c9e481d1bc81b5a5b9d608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610edc57600081815260208120601f850160051c8101602086101561339e5750805b601f850160051c820191505b818110156133bd578281556001016133aa565b505050505050565b815167ffffffffffffffff8111156133df576133df612e13565b6133f3816133ed845461327f565b84613377565b602080601f83116001811461342857600084156134105750858301515b600019600386901b1c1916600185901b1785556133bd565b600085815260208120601f198616915b8281101561345757888601518255948401946001909101908401613438565b50858210156134755787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115613498576134986132c9565b500190565b634e487b7160e01b600052603260045260246000fd5b60208082526021908201527f5468617420656e7469747920686173206e6f74206265656e206d616b652079656040820152601d60fa1b606082015260800190565b600081546135018161327f565b60018281168015613519576001811461352e5761355d565b60ff198416875282151583028701945061355d565b8560005260208060002060005b858110156135545781548a82015290840190820161353b565b50505082870194505b5050505092915050565b600061358561357f61357984886134f4565b866134f4565b846134f4565b95945050505050565b6000600182016135a0576135a06132c9565b5060010190565b600083516135b9818460208801612d12565b8351908301906135cd818360208801612d12565b01949350505050565b6000828210156135e8576135e86132c9565b500390565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061362090830184612d3e565b9695505050505050565b60006020828403121561363c57600080fd5b815161176f81612cdf565b600082613656576136566132b3565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220dd9ae6b2345f94b95101cfedaae7eea1391090812c154e4157f5754aa7ba7abe64736f6c634300080f0033
Deployed Bytecode Sourcemap
62959:9497:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72274:179;;;;;;;;;;-1:-1:-1;72274:179:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;72274:179:0;;;;;;;;28386:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29558:158::-;;;;;;;;;;-1:-1:-1;29558:158:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;29558:158:0;1528:203:1;29377:115:0;;;;;;;;;;-1:-1:-1;29377:115:0;;;;;:::i;:::-;;:::i;:::-;;65836:620;;;:::i;48954:104::-;;;;;;;;;;-1:-1:-1;49036:10:0;:17;48954:104;;;2319:25:1;;;2307:2;2292:18;48954:104:0;2173:177:1;63967:38:0;;;;;;;;;;-1:-1:-1;63967:38:0;;;;;;;;;;;70836:102;;;;;;;;;;-1:-1:-1;70914:19:0;;;;70836:102;;30227:588;;;;;;;;;;-1:-1:-1;30227:588:0;;;;;:::i;:::-;;:::i;48649:241::-;;;;;;;;;;-1:-1:-1;48649:241:0;;;;;:::i;:::-;;:::i;68413:108::-;;;;;;;;;;-1:-1:-1;68413:108:0;;;;;:::i;:::-;;:::i;71604:67::-;;;;;;;;;;;;;:::i;71053:120::-;;;;;;;;;;-1:-1:-1;71053:120:0;;;;;:::i;:::-;;:::i;30886:134::-;;;;;;;;;;-1:-1:-1;30886:134:0;;;;;:::i;:::-;;:::i;64846:239::-;;;;;;;;;;-1:-1:-1;64846:239:0;;;;;:::i;:::-;;:::i;67595:139::-;;;;;;;;;;-1:-1:-1;67595:139:0;;;;;:::i;:::-;;:::i;64009:27::-;;;;;;;;;;;;;;;;63262:67;;;;;;;;;;-1:-1:-1;63262:67:0;;;;-1:-1:-1;;;;;63262:67:0;;;49123:218;;;;;;;;;;-1:-1:-1;49123:218:0;;;;;:::i;:::-;;:::i;67742:147::-;;;;;;;;;;-1:-1:-1;67742:147:0;;;;;:::i;:::-;;:::i;11445:86::-;;;;;;;;;;-1:-1:-1;11516:7:0;;;;11445:86;;28199:120;;;;;;;;;;-1:-1:-1;28199:120:0;;;;;:::i;:::-;;:::i;71178:::-;;;;;;;;;;-1:-1:-1;71178:120:0;;;;;:::i;:::-;;:::i;69403:98::-;;;;;;;;;;-1:-1:-1;69475:21:0;69403:98;;70104:350;;;;;;;;;;-1:-1:-1;70104:350:0;;;;;:::i;:::-;;:::i;27924:213::-;;;;;;;;;;-1:-1:-1;27924:213:0;;;;;:::i;:::-;;:::i;13931:85::-;;;;;;;;;;;;;:::i;63219:39::-;;;;;;;;;;;;;;;;68014:394;;;;;;;;;;-1:-1:-1;68014:394:0;;;;;:::i;:::-;;:::i;68663:257::-;;;;;;;;;;-1:-1:-1;68663:257:0;;;;;:::i;:::-;;:::i;71412:63::-;;;;;;;;;;;;;:::i;69506:404::-;;;;;;;;;;-1:-1:-1;69506:404:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;63926:37::-;;;;;;;;;;-1:-1:-1;63926:37:0;;;;;;;;63088:35;;;;;;;;;;;;;;;;13340:78;;;;;;;;;;-1:-1:-1;13407:6:0;;-1:-1:-1;;;;;13407:6:0;13340:78;;63174:41;;;;;;;;;;;;;;;;28546:95;;;;;;;;;;;;;:::i;29788:146::-;;;;;;;;;;-1:-1:-1;29788:146:0;;;;;:::i;:::-;;:::i;65090:166::-;;;;;;;;;;;;;:::i;68925:179::-;;;;;;;;;;;;;:::i;31091:211::-;;;;;;;;;;-1:-1:-1;31091:211:0;;;;;:::i;:::-;;:::i;63662:40::-;;;;;;;;;;;;;:::i;28712:260::-;;;;;;;;;;-1:-1:-1;28712:260:0;;;;;:::i;:::-;;:::i;69915:184::-;;;;;;;;;;-1:-1:-1;69915:184:0;;;;;:::i;:::-;;:::i;63127:43::-;;;;;;;;;;;;63169:1;63127:43;;70459:268;;;;;;;;;;-1:-1:-1;70459:268:0;;;;;:::i;:::-;;:::i;65725:106::-;;;;;;;;;;-1:-1:-1;65811:10:0;65780:4;65801:21;;;:9;:21;;;;;;:25;;65725:106;;63706:47;;;;;;;;;;;;;:::i;67101:491::-;;;;;;;;;;-1:-1:-1;67101:491:0;;;;;:::i;:::-;;:::i;70732:99::-;;;;;;;;;;;;;:::i;30005:155::-;;;;;;;;;;-1:-1:-1;30005:155:0;;;;;:::i;:::-;;:::i;68526:129::-;;;;;;;;;;-1:-1:-1;68526:129:0;;;;;:::i;:::-;;:::i;65264:456::-;;;;;;;;;;-1:-1:-1;65264:456:0;;;;;:::i;:::-;;:::i;14156:177::-;;;;;;;;;;-1:-1:-1;14156:177:0;;;;;:::i;:::-;;:::i;67897:112::-;;;;;;;;;;-1:-1:-1;67897:112:0;;;;;:::i;:::-;-1:-1:-1;;;;;67982:19:0;67958:4;67982:19;;;:10;:19;;;;;;;;;67897:112;72274:179;72385:4;72409:36;72433:11;72409:23;:36::i;:::-;72402:43;72274:179;-1:-1:-1;;72274:179:0:o;28386:91::-;28431:13;28464:5;28457:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28386:91;:::o;29558:158::-;29625:7;29645:22;29659:7;29645:13;:22::i;:::-;-1:-1:-1;32134:7:0;32161:24;;;:15;:24;;;;;;-1:-1:-1;;;;;32161:24:0;29687:21;32064:129;29377:115;29449:35;29458:2;29462:7;9587:10;29449:8;:35::i;:::-;29377:115;;:::o;65836:620::-;16112:1;16657:7;;:19;16649:63;;;;-1:-1:-1;;;16649:63:0;;10391:2:1;16649:63:0;;;10373:21:1;10430:2;10410:18;;;10403:30;10469:33;10449:18;;;10442:61;10520:18;;16649:63:0;;;;;;;;;16112:1;16778:7;:18;64673:13:::1;::::0;64654:15:::1;:32;::::0;::::1;::::0;:66:::1;;;64709:11;;64690:15;:30;;64654:66;:89;;;;-1:-1:-1::0;64724:19:0::1;::::0;::::1;;64654:89;64650:178;;;64751:19;:26:::0;;-1:-1:-1;;64751:26:0::1;64773:4;64751:26;::::0;;64650:178:::1;;;64795:19;:27:::0;;-1:-1:-1;;64795:27:0::1;::::0;;64650:178:::1;11050:19:::2;:17;:19::i;:::-;65927:14:::3;65956:5;;65944:9;:17;;;;:::i;:::-;65927:34;;65992:1;65982:6;:11;;65974:52;;;::::0;-1:-1:-1;;;65974:52:0;;11140:2:1;65974:52:0::3;::::0;::::3;11122:21:1::0;11179:2;11159:18;;;11152:30;11218;11198:18;;;11191:58;11266:18;;65974:52:0::3;10938:352:1::0;65974:52:0::3;66059:10;66048:22;::::0;;;:10:::3;:22;::::0;;;;;::::3;;66047:23;66039:68;;;::::0;-1:-1:-1;;;66039:68:0;;11497:2:1;66039:68:0::3;::::0;::::3;11479:21:1::0;;;11516:18;;;11509:30;11575:34;11555:18;;;11548:62;11627:18;;66039:68:0::3;11295:356:1::0;66039:68:0::3;66122:18;::::0;::::3;::::0;::::3;;;66118:224;;;66175:10;66189:1;66165:21:::0;;;:9:::3;:21;::::0;;;;;66157:67:::3;;;::::0;-1:-1:-1;;;66157:67:0;;11858:2:1;66157:67:0::3;::::0;::::3;11840:21:1::0;11897:2;11877:18;;;11870:30;11936:31;11916:18;;;11909:59;11985:18;;66157:67:0::3;11656:353:1::0;66157:67:0::3;66257:10;66247:21;::::0;;;:9:::3;:21;::::0;;;;;:31;-1:-1:-1;66247:31:0::3;66239:91;;;;-1:-1:-1::0;;;66239:91:0::3;;;;;;;:::i;:::-;66362:19;::::0;::::3;;66354:57;;;::::0;-1:-1:-1;;;66354:57:0;;12632:2:1;66354:57:0::3;::::0;::::3;12614:21:1::0;12671:2;12651:18;;;12644:30;12710:27;12690:18;;;12683:55;12755:18;;66354:57:0::3;12430:349:1::0;66354:57:0::3;66418:33;66432:10;66444:6;66418:13;:33::i;:::-;-1:-1:-1::0;16071:1:0;16933:7;:22;65836:620::o;30227:588::-;-1:-1:-1;;;;;30322:16:0;;30318:89;;30362:33;;-1:-1:-1;;;30362:33:0;;30392:1;30362:33;;;1674:51:1;1647:18;;30362:33:0;1528:203:1;30318:89:0;30628:21;30652:34;30660:2;30664:7;9587:10;30652:7;:34::i;:::-;30628:58;;30718:4;-1:-1:-1;;;;;30701:21:0;:13;-1:-1:-1;;;;;30701:21:0;;30697:111;;30746:50;;-1:-1:-1;;;30746:50:0;;-1:-1:-1;;;;;13042:15:1;;;30746:50:0;;;13024:34:1;13074:18;;;13067:34;;;13137:15;;13117:18;;;13110:43;12959:18;;30746:50:0;12784:375:1;30697:111:0;30307:508;30227:588;;;:::o;48649:241::-;48746:7;48776:23;48793:5;48776:16;:23::i;:::-;48768:5;:31;48760:87;;;;-1:-1:-1;;;48760:87:0;;13366:2:1;48760:87:0;;;13348:21:1;13405:2;13385:18;;;13378:30;13444:34;13424:18;;;13417:62;-1:-1:-1;;;13495:18:1;;;13488:41;13546:19;;48760:87:0;13164:407:1;48760:87:0;-1:-1:-1;;;;;;48859:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;48649:241::o;68413:108::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;68488:13:::1;:28;68504:12:::0;68488:13;:28:::1;:::i;71604:67::-:0;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;71653:10:::1;:8;:10::i;:::-;71604:67::o:0;71053:120::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;71136:14:::1;:32;71153:15:::0;71136:14;:32:::1;:::i;30886:134::-:0;30973:39;30990:4;30996:2;31000:7;30973:39;;;;;;;;;;;;:16;:39::i;:::-;30886:134;;;:::o;64846:239::-;64912:13;31919:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31919:16:0;64973:10;64964:19;;64956:63;;;;-1:-1:-1;;;64956:63:0;;16343:2:1;64956:63:0;;;16325:21:1;16382:2;16362:18;;;16355:30;16421:33;16401:18;;;16394:61;16472:18;;64956:63:0;16141:355:1;64956:63:0;65032:21;65045:7;65032:12;:21::i;:::-;65076:1;65060:12;;:17;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;64846:239:0:o;67595:139::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;67664:19:0;::::1;;::::0;;;:10:::1;:19;::::0;;;;;:26;;-1:-1:-1;;67664:26:0::1;67686:4;67664:26;::::0;;67706:20;::::1;::::0;67664:19;67706:20:::1;67595:139:::0;:::o;49123:218::-;49198:7;49228:30;49036:10;:17;;48954:104;49228:30;49220:5;:38;49212:95;;;;-1:-1:-1;;;49212:95:0;;16836:2:1;49212:95:0;;;16818:21:1;16875:2;16855:18;;;16848:30;16914:34;16894:18;;;16887:62;-1:-1:-1;;;16965:18:1;;;16958:42;17017:19;;49212:95:0;16634:408:1;49212:95:0;49319:10;49330:5;49319:17;;;;;;;;:::i;:::-;;;;;;;;;49312:24;;49123:218;;;:::o;67742:147::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;67816:19:0;::::1;67838:5;67816:19:::0;;;:10:::1;:19;::::0;;;;;:27;;-1:-1:-1;;67816:27:0::1;::::0;;67859:22;::::1;::::0;67838:5;67859:22:::1;67742:147:::0;:::o;28199:120::-;28262:7;28289:22;28303:7;28289:13;:22::i;71178:120::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;71261:14:::1;:32;71278:15:::0;71261:14;:32:::1;:::i;70104:350::-:0;70169:13;70207;49036:10;:17;;48954:104;70207:13;70197:7;:23;70189:69;;;;-1:-1:-1;;;70189:69:0;;;;;;;:::i;:::-;70294:33;63169:1;70294:15;:33;:::i;:::-;70271:20;70283:7;70271:11;:20::i;:::-;:56;70263:98;;;;-1:-1:-1;;;70263:98:0;;17783:2:1;70263:98:0;;;17765:21:1;17822:2;17802:18;;;17795:30;17861:31;17841:18;;;17834:59;17910:18;;70263:98:0;17581:353:1;70263:98:0;70397:14;70413:9;:18;70423:7;70413:18;;;;;;;;;;;70433:14;70380:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70366:83;;70104:350;;;:::o;27924:213::-;27987:7;-1:-1:-1;;;;;28011:19:0;;28007:89;;28054:30;;-1:-1:-1;;;28054:30:0;;28081:1;28054:30;;;1674:51:1;1647:18;;28054:30:0;1528:203:1;28007:89:0;-1:-1:-1;;;;;;28113:16:0;;;;;:9;:16;;;;;;;27924:213::o;13931:85::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;13990:21:::1;14008:1;13990:9;:21::i;68014:394::-:0;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;68167:15:::1;68147:17;:35;68128:119;;;::::0;-1:-1:-1;;;68128:119:0;;19230:2:1;68128:119:0::1;::::0;::::1;19212:21:1::0;19269:2;19249:18;;;19242:30;19308:34;19288:18;;;19281:62;-1:-1:-1;;;19359:18:1;;;19352:38;19407:19;;68128:119:0::1;19028:404:1::0;68128:119:0::1;68258:13;:33:::0;;;68302:11:::1;:29:::0;;;68347:53:::1;::::0;;19611:25:1;;;19667:2;19652:18;;19645:34;;;68347:53:0::1;::::0;19584:18:1;68347:53:0::1;;;;;;;68014:394:::0;;:::o;68663:257::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;68742:25:0;::::1;68734:67;;;::::0;-1:-1:-1;;;68734:67:0;;19892:2:1;68734:67:0::1;::::0;::::1;19874:21:1::0;19931:2;19911:18;;;19904:30;19970:31;19950:18;;;19943:59;20019:18;;68734:67:0::1;19690:353:1::0;68734:67:0::1;68835:7;::::0;-1:-1:-1;;;;;68835:7:0;;::::1;68820:22:::0;;::::1;::::0;68812:68:::1;;;::::0;-1:-1:-1;;;68812:68:0;;20250:2:1;68812:68:0::1;::::0;::::1;20232:21:1::0;20289:2;20269:18;;;20262:30;20328:34;20308:18;;;20301:62;-1:-1:-1;;;20379:18:1;;;20372:31;20420:19;;68812:68:0::1;20048:397:1::0;68812:68:0::1;68891:7;:21:::0;;-1:-1:-1;;;;;;68891:21:0::1;-1:-1:-1::0;;;;;68891:21:0;;;::::1;::::0;;;::::1;::::0;;68663:257::o;71412:63::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;71459:8:::1;:6;:8::i;69506:404::-:0;69566:28;69601:18;69622:15;69632:4;69622:9;:15::i;:::-;69601:36;;69646:10;69660:1;69646:15;69642:264;;69676:16;;;69690:1;69676:16;;;;;;;;;;;-1:-1:-1;69669:23:0;69506:404;-1:-1:-1;;;69506:404:0:o;69642:264::-;69710:23;69750:10;69736:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69736:25:0;;69710:51;;69772:13;69767:115;69799:10;69791:5;:18;69767:115;;;69843:32;69863:4;69869:5;69843:19;:32::i;:::-;69827:6;69834:5;69827:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;69811:7;;;;:::i;:::-;;;;69767:115;;69642:264;69596:314;69506:404;;;:::o;28546:95::-;28593:13;28626:7;28619:14;;;;;:::i;29788:146::-;29874:52;9587:10;29907:8;29917;29874:18;:52::i;65090:166::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;65172:18:::1;::::0;;::::1;;::::0;;::::1;::::0;::::1;65171:19;65150:40:::0;::::1;-1:-1:-1::0;;65150:40:0;;::::1;::::0;;;::::1;::::0;;;;65206:42:::1;::::0;::::1;::::0;::::1;::::0;65229:18;::::1;::::0;;::::1;565:14:1::0;558:22;540:41;;528:2;513:18;;400:187;65206:42:0::1;;;;;;;;65090:166::o:0;68925:179::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;68969:23;;:50;;-1:-1:-1;68996:7:0;;-1:-1:-1;;;;;68996:7:0;9587:10;68996:23;68969:50;68961:86;;;;-1:-1:-1;;;68961:86:0;;20792:2:1;68961:86:0;;;20774:21:1;20831:2;20811:18;;;20804:30;20870:25;20850:18;;;20843:53;20913:18;;68961:86:0;20590:347:1;68961:86:0;69068:7;;69052:47;;-1:-1:-1;;;;;69068:7:0;69475:21;69052:7;:47::i;31091:211::-;31205:31;31218:4;31224:2;31228:7;31205:12;:31::i;:::-;31247:47;31270:4;31276:2;31280:7;31289:4;31247:22;:47::i;63662:40::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28712:260::-;28776:13;28802:22;28816:7;28802:13;:22::i;:::-;;28837:21;28861:10;:8;:10::i;:::-;28837:34;;28913:1;28895:7;28889:21;:25;:75;;;;;;;;;;;;;;;;;28931:7;28940:18;:7;:16;:18::i;:::-;28917:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28889:75;28882:82;28712:260;-1:-1:-1;;;28712:260:0:o;69915:184::-;69974:7;70006:13;49036:10;:17;;48954:104;70006:13;69996:7;:23;69988:69;;;;-1:-1:-1;;;69988:69:0;;;;;;;:::i;:::-;-1:-1:-1;70069:25:0;;;;:16;:25;;;;;;;69915:184::o;70459:268::-;13407:6;;70530:13;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;49036:10;:17;70558:7:::1;:23;70550:69;;;;-1:-1:-1::0;;;70550:69:0::1;;;;;;;:::i;:::-;70627:17;::::0;::::1;::::0;::::1;;;70624:99;;;70659:15;70652:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70459:268:::0;;;:::o;70624:99::-:1;70699:18;::::0;;;:9:::1;:18;::::0;;;;70692:25;;::::1;::::0;::::1;:::i;70624:99::-;70459:268:::0;;;:::o;63706:47::-;;;;;;;:::i;67101:491::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;67228:8:::1;:15;67208:9;:16;:35;67200:80;;;::::0;-1:-1:-1;;;67200:80:0;;21619:2:1;67200:80:0::1;::::0;::::1;21601:21:1::0;;;21638:18;;;21631:30;21697:34;21677:18;;;21670:62;21749:18;;67200:80:0::1;21417:356:1::0;67200:80:0::1;67288:17;::::0;::::1;::::0;::::1;;;67285:76;;;67331:9;67341:1;67331:12;;;;;;;;:::i;:::-;;;;;;;67313:15;:30;;;;;;:::i;67285:76::-;67370:9;67365:223;67389:8;:15;67385:1;:19;67365:223;;;67417:21;67447:9;:22;67457:8;67466:1;67457:11;;;;;;;;:::i;:::-;;;;;;;67447:22;;;;;;;;;;;67417:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67484:8;:15;67503:1;67484:20;67476:63;;;::::0;-1:-1:-1;;;67476:63:0;;21980:2:1;67476:63:0::1;::::0;::::1;21962:21:1::0;22019:2;21999:18;;;21992:30;22058:32;22038:18;;;22031:60;22108:18;;67476:63:0::1;21778:354:1::0;67476:63:0::1;67570:9;67580:1;67570:12;;;;;;;;:::i;:::-;;;;;;;67545:9;:22;67555:8;67564:1;67555:11;;;;;;;;:::i;:::-;;;;;;;67545:22;;;;;;;;;;;:37;;;;;;:::i;:::-;;67411:177;67406:3;;;;;:::i;:::-;;;;67365:223;;70732:99:::0;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;70807:19:::1;::::0;;-1:-1:-1;;70784:42:0;::::1;70807:19;::::0;;::::1;70806:20;70784:42;::::0;;70732:99::o;30005:155::-;-1:-1:-1;;;;;30117:25:0;;;30093:4;30117:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30005:155::o;68526:129::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;68613:5:::1;::::0;68592:37:::1;::::0;;22395:2:1;22377:21;;;22434:1;22414:18;;;22407:29;-1:-1:-1;;;22467:3:1;22452:19;;22445:36;22548:4;22533:20;;22526:36;;;;22578:18;;22571:34;;;68592:37:0::1;::::0;22513:3:1;22498:19;68592:37:0::1;;;;;;;68634:5;:16:::0;68526:129::o;65264:456::-;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;65401:8:::1;:15;65380:10;:17;:36;65372:97;;;::::0;-1:-1:-1;;;65372:97:0;;22818:2:1;65372:97:0::1;::::0;::::1;22800:21:1::0;22857:2;22837:18;;;22830:30;22896:34;22876:18;;;22869:62;-1:-1:-1;;;22947:18:1;;;22940:46;23003:19;;65372:97:0::1;22616:412:1::0;65372:97:0::1;65485:6;65480:233;65501:10;:17;65497:1;:21;65480:233;;;65564:1;-1:-1:-1::0;;;;;65539:27:0::1;:10;65550:1;65539:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;65539:27:0::1;::::0;65531:78:::1;;;::::0;-1:-1:-1;;;65531:78:0;;23235:2:1;65531:78:0::1;::::0;::::1;23217:21:1::0;23274:2;23254:18;;;23247:30;23313:34;23293:18;;;23286:62;-1:-1:-1;;;23364:18:1;;;23357:36;23410:19;;65531:78:0::1;23033:402:1::0;65531:78:0::1;65651:8;65660:1;65651:11;;;;;;;;:::i;:::-;;;;;;;65624:9;:24;65634:10;65645:1;65634:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;65624:24:0::1;-1:-1:-1::0;;;;;65624:24:0::1;;;;;;;;;;;;:38;;;;65696:5;65668:10;:25;65679:10;65690:1;65679:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;65668:25:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;65668:25:0;:33;;-1:-1:-1;;65668:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65520:3;::::1;::::0;::::1;:::i;:::-;;;;65480:233;;14156:177:::0;13407:6;;-1:-1:-1;;;;;13407:6:0;9587:10;13533:23;13525:68;;;;-1:-1:-1;;;13525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14239:22:0;::::1;14231:73;;;::::0;-1:-1:-1;;;14231:73:0;;23642:2:1;14231:73:0::1;::::0;::::1;23624:21:1::0;23681:2;23661:18;;;23654:30;23720:34;23700:18;;;23693:62;-1:-1:-1;;;23771:18:1;;;23764:36;23817:19;;14231:73:0::1;23440:402:1::0;14231:73:0::1;14309:19;14319:8;14309:9;:19::i;:::-;14156:177:::0;:::o;48362:215::-;48464:4;-1:-1:-1;;;;;;48482:50:0;;-1:-1:-1;;;48482:50:0;;:90;;;48536:36;48560:11;48536:23;:36::i;42748:247::-;42811:7;31919:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31919:16:0;;42875:90;;42922:31;;-1:-1:-1;;;42922:31:0;;;;;2319:25:1;;;2292:18;;42922:31:0;2173:177:1;40980:122:0;41061:33;41070:2;41074:7;41083:4;41089;41061:8;:33::i;11604:132::-;11516:7;;;;11666:63;;;11702:15;;-1:-1:-1;;;11702:15:0;;;;;;;;;;;66461:635;-1:-1:-1;;;;;66543:17:0;;;;;;:10;:17;;;;;;;;66542:18;66534:63;;;;-1:-1:-1;;;66534:63:0;;11497:2:1;66534:63:0;;;11479:21:1;;;11516:18;;;11509:30;11575:34;11555:18;;;11548:62;11627:18;;66534:63:0;11295:356:1;66534:63:0;66612:18;;;;;;;66608:224;;;66665:10;66679:1;66655:21;;;:9;:21;;;;;;66647:67;;;;-1:-1:-1;;;66647:67:0;;11858:2:1;66647:67:0;;;11840:21:1;11897:2;11877:18;;;11870:30;11936:31;11916:18;;;11909:59;11985:18;;66647:67:0;11656:353:1;66647:67:0;66747:10;66737:21;;;;:9;:21;;;;;;:31;-1:-1:-1;66737:31:0;66729:91;;;;-1:-1:-1;;;66729:91:0;;;;;;;:::i;:::-;66848:18;;;;;;;66844:67;;;66884:10;66874:21;;;;:9;:21;;;;;:31;;66899:6;;66874:21;:31;;66899:6;;66874:31;:::i;:::-;;;;-1:-1:-1;;66844:67:0;66922:9;66917:175;66941:6;66937:1;:10;66917:175;;;66960:15;66994:12;;66978:13;49036:10;:17;;48954:104;66978:13;:28;;;;:::i;:::-;67012:25;;;;:16;:25;;;;;67040:15;67012:43;;66960:46;-1:-1:-1;67061:25:0;67071:5;66960:46;67061:9;:25::i;:::-;-1:-1:-1;66949:3:0;;;;:::i;:::-;;;;66917:175;;72037:229;72199:7;72226:32;72240:2;72244:7;72253:4;72226:13;:32::i;:::-;72219:39;72037:229;-1:-1:-1;;;;72037:229:0:o;12346:120::-;11309:16;:14;:16::i;:::-;12405:7:::1;:15:::0;;-1:-1:-1;;12405:15:0::1;::::0;;12436:22:::1;9587:10:::0;12445:12:::1;12436:22;::::0;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;12436:22:0::1;1528:203:1::0;37793:341:0;37845:13;37861:23;37876:7;37861:14;:23::i;:::-;37845:39;;37895:48;37916:5;37931:1;37935:7;37895:20;:48::i;:::-;37954:21;37978:40;37994:1;37998:7;38015:1;37978:7;:40::i;:::-;37954:64;-1:-1:-1;;;;;;38033:27:0;;38029:98;;38084:31;;-1:-1:-1;;;38084:31:0;;;;;2319:25:1;;;2292:18;;38084:31:0;2173:177:1;14338:152:0;14407:6;;;-1:-1:-1;;;;;14418:17:0;;;-1:-1:-1;;;;;;14418:17:0;;;;;;;14445:40;;14407:6;;;14418:17;14407:6;;14445:40;;14388:16;;14445:40;14383:107;14338:152;:::o;12087:118::-;11050:19;:17;:19::i;:::-;12147:7:::1;:14:::0;;-1:-1:-1;;12147:14:0::1;12157:4;12147:14;::::0;;12177:20:::1;12184:12;9587:10:::0;;9513:89;42187:318;-1:-1:-1;;;;;42295:22:0;;42291:93;;42341:31;;-1:-1:-1;;;42341:31:0;;-1:-1:-1;;;;;1692:32:1;;42341:31:0;;;1674:51:1;1647:18;;42341:31:0;1528:203:1;42291:93:0;-1:-1:-1;;;;;42394:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;42394:46:0;;;;;;;;;;42456:41;;540::1;;;42456::0;;513:18:1;42456:41:0;;;;;;;42187:318;;;:::o;69109:289::-;16112:1;16657:7;;:19;16649:63;;;;-1:-1:-1;;;16649:63:0;;10391:2:1;16649:63:0;;;10373:21:1;10430:2;10410:18;;;10403:30;10469:33;10449:18;;;10442:61;10520:18;;16649:63:0;10189:355:1;16649:63:0;16112:1;16778:7;:18;69475:21;69242:16;;::::1;:35;;69271:6;69242:35;;;69261:7;69242:35;69233:44;;69283:9;69298:2;-1:-1:-1::0;;;;;69298:7:0::1;69313:6;69298:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69282:42;;;69337:4;69329:35;;;::::0;-1:-1:-1;;;69329:35:0;;24389:2:1;69329:35:0::1;::::0;::::1;24371:21:1::0;24428:2;24408:18;;;24401:30;-1:-1:-1;;;24447:18:1;;;24440:48;24505:18;;69329:35:0::1;24187:342:1::0;69329:35:0::1;69382:2;-1:-1:-1::0;;;;;69374:19:0::1;;69386:6;69374:19;;;;2319:25:1::0;;2307:2;2292:18;;2173:177;69374:19:0::1;;;;;;;;-1:-1:-1::0;;16071:1:0;16933:7;:22;-1:-1:-1;;69109:289:0:o;43545:799::-;-1:-1:-1;;;;;43662:14:0;;;:18;43658:679;;43701:71;;-1:-1:-1;;;43701:71:0;;-1:-1:-1;;;;;43701:36:0;;;;;:71;;9587:10;;43752:4;;43758:7;;43767:4;;43701:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43701:71:0;;;;;;;;-1:-1:-1;;43701:71:0;;;;;;;;;;;;:::i;:::-;;;43697:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44015:6;:13;44032:1;44015:18;44011:300;;44065:25;;-1:-1:-1;;;44065:25:0;;-1:-1:-1;;;;;1692:32:1;;44065:25:0;;;1674:51:1;1647:18;;44065:25:0;1528:203:1;44011:300:0;44261:6;44255:13;44246:6;44242:2;44238:15;44231:38;43697:629;-1:-1:-1;;;;;;43820:51:0;;-1:-1:-1;;;43820:51:0;43816:132;;43903:25;;-1:-1:-1;;;43903:25:0;;-1:-1:-1;;;;;1692:32:1;;43903:25:0;;;1674:51:1;1647:18;;43903:25:0;1528:203:1;43816:132:0;43773:190;43545:799;;;;:::o;70943:105::-;71003:13;71030;71023:20;;;;;:::i;7505:594::-;7561:13;7764:5;7773:1;7764:10;7760:38;;-1:-1:-1;;7782:10:0;;;;;;;;;;;;-1:-1:-1;;;7782:10:0;;;;;7505:594::o;7760:38::-;7817:5;7802:12;7846:54;7853:9;;7846:54;;7870:8;;;;:::i;:::-;;-1:-1:-1;7884:10:0;;-1:-1:-1;7892:2:0;7884:10;;:::i;:::-;;;7846:54;;;7904:19;7936:6;7926:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7926:17:0;;7904:39;;7948:121;7955:10;;7948:121;;7973:11;7983:1;7973:11;;:::i;:::-;;-1:-1:-1;8033:10:0;8041:2;8033:5;:10;:::i;:::-;8020:24;;:2;:24;:::i;:::-;8007:39;;7990:6;7997;7990:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7990:56:0;;;;;;;;-1:-1:-1;8052:11:0;8061:2;8052:11;;:::i;:::-;;;7948:121;;27555:305;27657:4;-1:-1:-1;;;;;;27694:40:0;;-1:-1:-1;;;27694:40:0;;:105;;-1:-1:-1;;;;;;;27751:48:0;;-1:-1:-1;;;27751:48:0;27694:105;:158;;;-1:-1:-1;;;;;;;;;;24185:40:0;;;27816:36;24082:148;41290:678;41452:9;:31;;;-1:-1:-1;;;;;;41465:18:0;;;;41452:31;41448:471;;;41500:13;41516:22;41530:7;41516:13;:22::i;:::-;41500:38;-1:-1:-1;;;;;;41669:18:0;;;;;;:35;;;41700:4;-1:-1:-1;;;;;41691:13:0;:5;-1:-1:-1;;;;;41691:13:0;;;41669:35;:69;;;;;41709:29;41726:5;41733:4;41709:16;:29::i;:::-;41708:30;41669:69;41665:144;;;41766:27;;-1:-1:-1;;;41766:27:0;;-1:-1:-1;;;;;1692:32:1;;41766:27:0;;;1674:51:1;1647:18;;41766:27:0;1528:203:1;41665:144:0;41829:9;41825:83;;;41884:7;41880:2;-1:-1:-1;;;;;41864:28:0;41873:5;-1:-1:-1;;;;;41864:28:0;;;;;;;;;;;41825:83;41485:434;41448:471;-1:-1:-1;;41931:24:0;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41931:29:0;-1:-1:-1;;;;;41931:29:0;;;;;;;;;;41290:678::o;36940:102::-;37008:26;37018:2;37022:7;37008:26;;;;;;;;;;;;:9;:26::i;47369:210::-;47512:7;11050:19;:17;:19::i;:::-;47539:32:::1;47553:2;47557:7;47566:4;47539:13;:32::i;11813:130::-:0;11516:7;;;;11872:64;;11909:15;;-1:-1:-1;;;11909:15:0;;;;;;;;;;;71674:355;11050:19;:17;:19::i;:::-;71878:45:::1;71905:4;71911:2;71915:7;71878:26;:45::i;:::-;-1:-1:-1::0;;;;;71943:16:0;::::1;;::::0;;;:10:::1;:16;::::0;;;;;::::1;;71942:17;:36:::0;::::1;;;-1:-1:-1::0;;;;;;71964:14:0;::::1;;::::0;;;:10:::1;:14;::::0;;;;;::::1;;71963:15;71942:36;71934:87;;;::::0;-1:-1:-1;;;71934:87:0;;25601:2:1;71934:87:0::1;::::0;::::1;25583:21:1::0;25640:2;25620:18;;;25613:30;25679:34;25659:18;;;25652:62;-1:-1:-1;;;25730:18:1;;;25723:36;25776:19;;71934:87:0::1;25399:402:1::0;37269:185:0;37364:18;37370:2;37374:7;37364:5;:18::i;:::-;37393:53;37424:1;37428:2;37432:7;37441:4;37393:22;:53::i;35026:824::-;35112:7;31919:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31919:16:0;;;;35227:18;;;35223:88;;35262:37;35279:4;35285;35291:7;35262:16;:37::i;:::-;-1:-1:-1;;;;;35358:18:0;;;35354:263;;35476:48;35493:1;35497:7;35514:1;35518:5;35476:8;:48::i;:::-;-1:-1:-1;;;;;35570:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;35570:20:0;;;35354:263;-1:-1:-1;;;;;35633:16:0;;;35629:111;;-1:-1:-1;;;;;35695:13:0;;;;;;:9;:13;;;;;:18;;35712:1;35695:18;;;35629:111;35752:16;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35752:21:0;-1:-1:-1;;;;;35752:21:0;;;;;;;;;35791:27;;35752:16;;35791:27;;;;;;;35838:4;35026:824;-1:-1:-1;;;;35026:824:0:o;49906:487::-;-1:-1:-1;;;;;50079:18:0;;50075:157;;50105:40;50137:7;51160:10;:17;;51133:24;;;;:15;:24;;;;;:44;;;51182:24;;;;;;;;;;;;51062:149;50105:40;50075:157;;;50169:2;-1:-1:-1;;;;;50161:10:0;:4;-1:-1:-1;;;;;50161:10:0;;50157:75;;50179:47;50212:4;50218:7;50179:32;:47::i;:::-;-1:-1:-1;;;;;50240:16:0;;50236:153;;50264:45;50301:7;50264:36;:45::i;50236:153::-;50331:4;-1:-1:-1;;;;;50325:10:0;:2;-1:-1:-1;;;;;50325:10:0;;50321:68;;50343:40;50371:2;50375:7;50343:27;:40::i;36186:391::-;-1:-1:-1;;;;;36254:16:0;;36250:89;;36294:33;;-1:-1:-1;;;36294:33:0;;36324:1;36294:33;;;1674:51:1;1647:18;;36294:33:0;1528:203:1;36250:89:0;36349:45;36378:1;36382:2;36386:7;36349:20;:45::i;:::-;36405:21;36429:32;36437:2;36441:7;36458:1;36429:7;:32::i;:::-;36405:56;-1:-1:-1;;;;;;36476:27:0;;;36472:98;;36527:31;;-1:-1:-1;;;36527:31:0;;36555:1;36527:31;;;1674:51:1;1647:18;;36527:31:0;1528:203:1;33233:376:0;33346:38;33360:5;33367:7;33376;33346:13;:38::i;:::-;33341:261;;-1:-1:-1;;;;;33405:19:0;;33401:190;;33452:31;;-1:-1:-1;;;33452:31:0;;;;;2319:25:1;;;2292:18;;33452:31:0;2173:177:1;33401:190:0;33531:44;;-1:-1:-1;;;33531:44:0;;-1:-1:-1;;;;;25998:32:1;;33531:44:0;;;25980:51:1;26047:18;;;26040:34;;;25953:18;;33531:44:0;25806:274:1;51811:898:0;52059:22;52109:1;52084:22;52101:4;52084:16;:22::i;:::-;:26;;;;:::i;:::-;52115:18;52136:26;;;:17;:26;;;;;;52059:51;;-1:-1:-1;52257:28:0;;;52253:295;;-1:-1:-1;;;;;52315:18:0;;52293:19;52315:18;;;:12;:18;;;;;;;;:34;;;;;;;;;52357:30;;;;;;:44;;;52465:30;;:17;:30;;;;;:43;;;52253:295;-1:-1:-1;52632:26:0;;;;:17;:26;;;;;;;;52625:33;;;-1:-1:-1;;;;;52670:18:0;;;;;:12;:18;;;;;:34;;;;;;;52663:41;51811:898::o;52986:998::-;53246:10;:17;53221:22;;53246:21;;53266:1;;53246:21;:::i;:::-;53272:18;53293:24;;;:15;:24;;;;;;53642:10;:26;;53221:46;;-1:-1:-1;53293:24:0;;53221:46;;53642:26;;;;;;:::i;:::-;;;;;;;;;53620:48;;53700:11;53675:10;53686;53675:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;53774:28;;;:15;:28;;;;;;;:41;;;53934:24;;;;;53927:31;53963:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53057:927;;;52986:998;:::o;50676:200::-;50755:14;50772:20;50789:2;50772:16;:20::i;:::-;-1:-1:-1;;;;;50797:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;50836:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;50676:200:0:o;32513:276::-;32616:4;-1:-1:-1;;;;;32653:21:0;;;;;;:128;;;32701:7;-1:-1:-1;;;;;32692:16:0;:5;-1:-1:-1;;;;;32692:16:0;;:52;;;;32712:32;32729:5;32736:7;32712:16;:32::i;:::-;32692:88;;;-1:-1:-1;;32134:7:0;32161:24;;;:15;:24;;;;;;-1:-1:-1;;;;;32161:24:0;;;32748:32;;;;;-1:-1:-1;32513:276:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1914:254;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:275;2891:2;2885:9;2956:2;2937:13;;-1:-1:-1;;2933:27:1;2921:40;;2991:18;2976:34;;3012:22;;;2973:62;2970:88;;;3038:18;;:::i;:::-;3074:2;3067:22;2820:275;;-1:-1:-1;2820:275:1:o;3100:407::-;3165:5;3199:18;3191:6;3188:30;3185:56;;;3221:18;;:::i;:::-;3259:57;3304:2;3283:15;;-1:-1:-1;;3279:29:1;3310:4;3275:40;3259:57;:::i;:::-;3250:66;;3339:6;3332:5;3325:21;3379:3;3370:6;3365:3;3361:16;3358:25;3355:45;;;3396:1;3393;3386:12;3355:45;3445:6;3440:3;3433:4;3426:5;3422:16;3409:43;3499:1;3492:4;3483:6;3476:5;3472:18;3468:29;3461:40;3100:407;;;;;:::o;3512:222::-;3555:5;3608:3;3601:4;3593:6;3589:17;3585:27;3575:55;;3626:1;3623;3616:12;3575:55;3648:80;3724:3;3715:6;3702:20;3695:4;3687:6;3683:17;3648:80;:::i;3739:322::-;3808:6;3861:2;3849:9;3840:7;3836:23;3832:32;3829:52;;;3877:1;3874;3867:12;3829:52;3917:9;3904:23;3950:18;3942:6;3939:30;3936:50;;;3982:1;3979;3972:12;3936:50;4005;4047:7;4038:6;4027:9;4023:22;4005:50;:::i;4066:186::-;4125:6;4178:2;4166:9;4157:7;4153:23;4149:32;4146:52;;;4194:1;4191;4184:12;4146:52;4217:29;4236:9;4217:29;:::i;4257:248::-;4325:6;4333;4386:2;4374:9;4365:7;4361:23;4357:32;4354:52;;;4402:1;4399;4392:12;4354:52;-1:-1:-1;;4425:23:1;;;4495:2;4480:18;;;4467:32;;-1:-1:-1;4257:248:1:o;4510:632::-;4681:2;4733:21;;;4803:13;;4706:18;;;4825:22;;;4652:4;;4681:2;4904:15;;;;4878:2;4863:18;;;4652:4;4947:169;4961:6;4958:1;4955:13;4947:169;;;5022:13;;5010:26;;5091:15;;;;5056:12;;;;4983:1;4976:9;4947:169;;;-1:-1:-1;5133:3:1;;4510:632;-1:-1:-1;;;;;;4510:632:1:o;5147:347::-;5212:6;5220;5273:2;5261:9;5252:7;5248:23;5244:32;5241:52;;;5289:1;5286;5279:12;5241:52;5312:29;5331:9;5312:29;:::i;:::-;5302:39;;5391:2;5380:9;5376:18;5363:32;5438:5;5431:13;5424:21;5417:5;5414:32;5404:60;;5460:1;5457;5450:12;5404:60;5483:5;5473:15;;;5147:347;;;;;:::o;5499:667::-;5594:6;5602;5610;5618;5671:3;5659:9;5650:7;5646:23;5642:33;5639:53;;;5688:1;5685;5678:12;5639:53;5711:29;5730:9;5711:29;:::i;:::-;5701:39;;5759:38;5793:2;5782:9;5778:18;5759:38;:::i;:::-;5749:48;;5844:2;5833:9;5829:18;5816:32;5806:42;;5899:2;5888:9;5884:18;5871:32;5926:18;5918:6;5915:30;5912:50;;;5958:1;5955;5948:12;5912:50;5981:22;;6034:4;6026:13;;6022:27;-1:-1:-1;6012:55:1;;6063:1;6060;6053:12;6012:55;6086:74;6152:7;6147:2;6134:16;6129:2;6125;6121:11;6086:74;:::i;:::-;6076:84;;;5499:667;;;;;;;:::o;6171:182::-;6230:4;6263:18;6255:6;6252:30;6249:56;;;6285:18;;:::i;:::-;-1:-1:-1;6330:1:1;6326:14;6342:4;6322:25;;6171:182::o;6358:661::-;6412:5;6465:3;6458:4;6450:6;6446:17;6442:27;6432:55;;6483:1;6480;6473:12;6432:55;6519:6;6506:20;6545:4;6569:59;6585:42;6624:2;6585:42;:::i;:::-;6569:59;:::i;:::-;6662:15;;;6748:1;6744:10;;;;6732:23;;6728:32;;;6693:12;;;;6772:15;;;6769:35;;;6800:1;6797;6790:12;6769:35;6836:2;6828:6;6824:15;6848:142;6864:6;6859:3;6856:15;6848:142;;;6930:17;;6918:30;;6968:12;;;;6881;;6848:142;;;-1:-1:-1;7008:5:1;6358:661;-1:-1:-1;;;;;;6358:661:1:o;7024:1360::-;7152:6;7160;7213:2;7201:9;7192:7;7188:23;7184:32;7181:52;;;7229:1;7226;7219:12;7181:52;7269:9;7256:23;7298:18;7339:2;7331:6;7328:14;7325:34;;;7355:1;7352;7345:12;7325:34;7393:6;7382:9;7378:22;7368:32;;7438:7;7431:4;7427:2;7423:13;7419:27;7409:55;;7460:1;7457;7450:12;7409:55;7496:2;7483:16;7518:4;7542:59;7558:42;7597:2;7558:42;:::i;7542:59::-;7635:15;;;7717:1;7713:10;;;;7705:19;;7701:28;;;7666:12;;;;7741:19;;;7738:39;;;7773:1;7770;7763:12;7738:39;7805:2;7801;7797:11;7817:353;7833:6;7828:3;7825:15;7817:353;;;7919:3;7906:17;7955:2;7942:11;7939:19;7936:109;;;7999:1;8028:2;8024;8017:14;7936:109;8070:57;8119:7;8114:2;8100:11;8096:2;8092:20;8088:29;8070:57;:::i;:::-;8058:70;;-1:-1:-1;8148:12:1;;;;7850;;7817:353;;;-1:-1:-1;8189:5:1;-1:-1:-1;;8232:18:1;;8219:32;;-1:-1:-1;;8263:16:1;;;8260:36;;;8292:1;8289;8282:12;8260:36;;8315:63;8370:7;8359:8;8348:9;8344:24;8315:63;:::i;:::-;8305:73;;;7024:1360;;;;;:::o;8389:260::-;8457:6;8465;8518:2;8506:9;8497:7;8493:23;8489:32;8486:52;;;8534:1;8531;8524:12;8486:52;8557:29;8576:9;8557:29;:::i;:::-;8547:39;;8605:38;8639:2;8628:9;8624:18;8605:38;:::i;:::-;8595:48;;8389:260;;;;;:::o;8654:1145::-;8772:6;8780;8833:2;8821:9;8812:7;8808:23;8804:32;8801:52;;;8849:1;8846;8839:12;8801:52;8889:9;8876:23;8918:18;8959:2;8951:6;8948:14;8945:34;;;8975:1;8972;8965:12;8945:34;9013:6;9002:9;8998:22;8988:32;;9058:7;9051:4;9047:2;9043:13;9039:27;9029:55;;9080:1;9077;9070:12;9029:55;9116:2;9103:16;9138:4;9162:59;9178:42;9217:2;9178:42;:::i;9162:59::-;9255:15;;;9337:1;9333:10;;;;9325:19;;9321:28;;;9286:12;;;;9361:19;;;9358:39;;;9393:1;9390;9383:12;9358:39;9417:11;;;;9437:148;9453:6;9448:3;9445:15;9437:148;;;9519:23;9538:3;9519:23;:::i;:::-;9507:36;;9470:12;;;;9563;;;;9437:148;;;9604:5;-1:-1:-1;;9647:18:1;;9634:32;;-1:-1:-1;;9678:16:1;;;9675:36;;;9707:1;9704;9697:12;9804:380;9883:1;9879:12;;;;9926;;;9947:61;;10001:4;9993:6;9989:17;9979:27;;9947:61;10054:2;10046:6;10043:14;10023:18;10020:38;10017:161;;10100:10;10095:3;10091:20;10088:1;10081:31;10135:4;10132:1;10125:15;10163:4;10160:1;10153:15;10549:127;10610:10;10605:3;10601:20;10598:1;10591:31;10641:4;10638:1;10631:15;10665:4;10662:1;10655:15;10681:127;10742:10;10737:3;10733:20;10730:1;10723:31;10773:4;10770:1;10763:15;10797:4;10794:1;10787:15;10813:120;10853:1;10879;10869:35;;10884:18;;:::i;:::-;-1:-1:-1;10918:9:1;;10813:120::o;12014:411::-;12216:2;12198:21;;;12255:2;12235:18;;;12228:30;12294:34;12289:2;12274:18;;12267:62;-1:-1:-1;;;12360:2:1;12345:18;;12338:45;12415:3;12400:19;;12014:411::o;13576:356::-;13778:2;13760:21;;;13797:18;;;13790:30;13856:34;13851:2;13836:18;;13829:62;13923:2;13908:18;;13576:356::o;14063:545::-;14165:2;14160:3;14157:11;14154:448;;;14201:1;14226:5;14222:2;14215:17;14271:4;14267:2;14257:19;14341:2;14329:10;14325:19;14322:1;14318:27;14312:4;14308:38;14377:4;14365:10;14362:20;14359:47;;;-1:-1:-1;14400:4:1;14359:47;14455:2;14450:3;14446:12;14443:1;14439:20;14433:4;14429:31;14419:41;;14510:82;14528:2;14521:5;14518:13;14510:82;;;14573:17;;;14554:1;14543:13;14510:82;;;14514:3;;;14063:545;;;:::o;14784:1352::-;14910:3;14904:10;14937:18;14929:6;14926:30;14923:56;;;14959:18;;:::i;:::-;14988:97;15078:6;15038:38;15070:4;15064:11;15038:38;:::i;:::-;15032:4;14988:97;:::i;:::-;15140:4;;15204:2;15193:14;;15221:1;15216:663;;;;15923:1;15940:6;15937:89;;;-1:-1:-1;15992:19:1;;;15986:26;15937:89;-1:-1:-1;;14741:1:1;14737:11;;;14733:24;14729:29;14719:40;14765:1;14761:11;;;14716:57;16039:81;;15186:944;;15216:663;14010:1;14003:14;;;14047:4;14034:18;;-1:-1:-1;;15252:20:1;;;15370:236;15384:7;15381:1;15378:14;15370:236;;;15473:19;;;15467:26;15452:42;;15565:27;;;;15533:1;15521:14;;;;15400:19;;15370:236;;;15374:3;15634:6;15625:7;15622:19;15619:201;;;15695:19;;;15689:26;-1:-1:-1;;15778:1:1;15774:14;;;15790:3;15770:24;15766:37;15762:42;15747:58;15732:74;;15619:201;-1:-1:-1;;;;;15866:1:1;15850:14;;;15846:22;15833:36;;-1:-1:-1;14784:1352:1:o;16501:128::-;16541:3;16572:1;16568:6;16565:1;16562:13;16559:39;;;16578:18;;:::i;:::-;-1:-1:-1;16614:9:1;;16501:128::o;17047:127::-;17108:10;17103:3;17099:20;17096:1;17089:31;17139:4;17136:1;17129:15;17163:4;17160:1;17153:15;17179:397;17381:2;17363:21;;;17420:2;17400:18;;;17393:30;17459:34;17454:2;17439:18;;17432:62;-1:-1:-1;;;17525:2:1;17510:18;;17503:31;17566:3;17551:19;;17179:397::o;17939:722::-;17989:3;18030:5;18024:12;18059:36;18085:9;18059:36;:::i;:::-;18114:1;18131:18;;;18158:133;;;;18305:1;18300:355;;;;18124:531;;18158:133;-1:-1:-1;;18191:24:1;;18179:37;;18264:14;;18257:22;18245:35;;18236:45;;;-1:-1:-1;18158:133:1;;18300:355;18331:5;18328:1;18321:16;18360:4;18405:2;18402:1;18392:16;18430:1;18444:165;18458:6;18455:1;18452:13;18444:165;;;18536:14;;18523:11;;;18516:35;18579:16;;;;18473:10;;18444:165;;;18448:3;;;18638:6;18633:3;18629:16;18622:23;;18124:531;;;;;17939:722;;;;:::o;18666:357::-;18884:3;18909:108;18943:73;18977:38;19011:3;19003:6;18977:38;:::i;:::-;18969:6;18943:73;:::i;:::-;18935:6;18909:108;:::i;:::-;18902:115;18666:357;-1:-1:-1;;;;;18666:357:1:o;20450:135::-;20489:3;20510:17;;;20507:43;;20530:18;;:::i;:::-;-1:-1:-1;20577:1:1;20566:13;;20450:135::o;20942:470::-;21121:3;21159:6;21153:13;21175:53;21221:6;21216:3;21209:4;21201:6;21197:17;21175:53;:::i;:::-;21291:13;;21250:16;;;;21313:57;21291:13;21250:16;21347:4;21335:17;;21313:57;:::i;:::-;21386:20;;20942:470;-1:-1:-1;;;;20942:470:1:o;23847:125::-;23887:4;23915:1;23912;23909:8;23906:34;;;23920:18;;:::i;:::-;-1:-1:-1;23957:9:1;;23847:125::o;24534:489::-;-1:-1:-1;;;;;24803:15:1;;;24785:34;;24855:15;;24850:2;24835:18;;24828:43;24902:2;24887:18;;24880:34;;;24950:3;24945:2;24930:18;;24923:31;;;24728:4;;24971:46;;24997:19;;24989:6;24971:46;:::i;:::-;24963:54;24534:489;-1:-1:-1;;;;;;24534:489:1:o;25028:249::-;25097:6;25150:2;25138:9;25129:7;25125:23;25121:32;25118:52;;;25166:1;25163;25156:12;25118:52;25198:9;25192:16;25217:30;25241:5;25217:30;:::i;25282:112::-;25314:1;25340;25330:35;;25345:18;;:::i;:::-;-1:-1:-1;25379:9:1;;25282:112::o;26085:127::-;26146:10;26141:3;26137:20;26134:1;26127:31;26177:4;26174:1;26167:15;26201:4;26198:1;26191:15
Swarm Source
ipfs://dd9ae6b2345f94b95101cfedaae7eea1391090812c154e4157f5754aa7ba7abe
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.