ERC-721
Overview
Max Total Supply
1,222 MLSS
Holders
469
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MLSSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Mindless
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-31 */ // File: operator-filter-registry/src/lib/Constants.sol pragma solidity ^0.8.17; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; // File: operator-filter-registry/src/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address registrantToSubscribe) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address addr) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address addr) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); } // File: operator-filter-registry/src/OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. * Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract OperatorFilterer { /// @dev Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS); /// @dev The constructor that is called when the contract is being deployed. constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: operator-filter-registry/src/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/token/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @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 payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts2/mindless.sol //SPDX-License-Identifier: Unlicense pragma solidity ^0.8.21; contract Mindless is ERC721A, DefaultOperatorFilterer, ERC2981, Ownable { string private baseUri; bool public mintingEnabled = false; bool public teamMinted = false; bool public transferEnabled = false; uint256 public constant MAX_SUPPLY = 1222; uint256 public constant MAX_PER_WALLET = 3; uint256 public constant PRICE = 0.01 ether; constructor(string memory _baseUri) ERC721A("Mindless", "MLSS") { setDefaultRoyalty(msg.sender, 500); baseUri = _baseUri; } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { require(transferEnabled, "Not allowed before launch"); super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) { require(transferEnabled, "Not allowed before launch"); super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { if (msg.sender != owner()) { require(transferEnabled, "Not allowed before launch"); } super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { require(transferEnabled, "Not allowed before launch"); super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { require(transferEnabled, "Not allowed before launch"); super.safeTransferFrom(from, to, tokenId, data); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool){ return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } function mint(uint256 quantity) external payable { require(mintingEnabled, "Mint not active"); require(msg.sender == tx.origin, "No contracts allowed"); require(_totalMinted() + quantity <= MAX_SUPPLY, "Sold Out"); require(balanceOf(msg.sender) + quantity <= MAX_PER_WALLET, "Exceeds max per wallet"); require(PRICE * quantity <= msg.value,"Insufficient funds sent"); _mint(msg.sender, quantity); } function mintTeam() external onlyOwner { require(!teamMinted); teamMinted = true; _mint(msg.sender, 60); } function airdropMulti(uint256 quantity, address[] calldata adresses) external onlyOwner { require(_totalMinted() + quantity * adresses.length <= MAX_SUPPLY,"SOLD OUT"); for (uint32 i = 0; i < adresses.length;){ _mint(adresses[i], quantity); unchecked {i++;} } } function batchTransfer(uint256[] calldata tokenIds, address[] calldata adresses) external onlyOwner { for (uint32 i = 0; i < adresses.length;){ transferFrom(msg.sender, adresses[i], tokenIds[i]); unchecked {i++;} } } function setDefaultRoyalty(address receiver, uint96 feeNumerator) public onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); } function deleteDefaultRoyalty() public onlyOwner { _deleteDefaultRoyalty(); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function _baseURI() internal view override returns (string memory) { return baseUri; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } function launch() external onlyOwner { mintingEnabled = true; transferEnabled = true; } function setBaseUri(string memory _uri) external onlyOwner { baseUri = _uri; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address[]","name":"adresses","type":"address[]"}],"name":"airdropMulti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","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":"tokenIds","type":"uint256[]"},{"internalType":"address[]","name":"adresses","type":"address[]"}],"name":"batchTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","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":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040525f600c5f6101000a81548160ff0219169083151502179055505f600c60016101000a81548160ff0219169083151502179055505f600c60026101000a81548160ff0219169083151502179055503480156200005d575f80fd5b50604051620048a2380380620048a2833981810160405281019062000083919062000851565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f4d696e646c6573730000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4c535300000000000000000000000000000000000000000000000000000000815250816002908162000117919062000ad7565b50806003908162000129919062000ad7565b506200013a6200037460201b60201c565b5f8190555050505f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000325578015620001f6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001c192919062000bfe565b5f604051808303815f87803b158015620001d9575f80fd5b505af1158015620001ec573d5f803e3d5ffd5b5050505062000324565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002aa576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200027592919062000bfe565b5f604051808303815f87803b1580156200028d575f80fd5b505af1158015620002a0573d5f803e3d5ffd5b5050505062000323565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002f3919062000c29565b5f604051808303815f87803b1580156200030b575f80fd5b505af11580156200031e573d5f803e3d5ffd5b505050505b5b5b5050620003476200033b6200037c60201b60201c565b6200038360201b60201c565b6200035b336101f46200044660201b60201c565b80600b90816200036c919062000ad7565b505062000dc4565b5f6001905090565b5f33905090565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004566200046c60201b60201c565b620004688282620004fd60201b60201c565b5050565b6200047c6200037c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004a26200069b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f29062000ca2565b60405180910390fd5b565b6200050d620006c360201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200056e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005659062000d36565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d69062000da4565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f612710905090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6200072d82620006e5565b810181811067ffffffffffffffff821117156200074f576200074e620006f5565b5b80604052505050565b5f62000763620006cc565b905062000771828262000722565b919050565b5f67ffffffffffffffff821115620007935762000792620006f5565b5b6200079e82620006e5565b9050602081019050919050565b5f5b83811015620007ca578082015181840152602081019050620007ad565b5f8484015250505050565b5f620007eb620007e58462000776565b62000758565b9050828152602081018484840111156200080a5762000809620006e1565b5b62000817848285620007ab565b509392505050565b5f82601f830112620008365762000835620006dd565b5b815162000848848260208601620007d5565b91505092915050565b5f60208284031215620008695762000868620006d5565b5b5f82015167ffffffffffffffff811115620008895762000888620006d9565b5b62000897848285016200081f565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620008ef57607f821691505b602082108103620009055762000904620008aa565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200092c565b6200097586836200092c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620009bf620009b9620009b3846200098d565b62000996565b6200098d565b9050919050565b5f819050919050565b620009da836200099f565b620009f2620009e982620009c6565b84845462000938565b825550505050565b5f90565b62000a08620009fa565b62000a15818484620009cf565b505050565b5b8181101562000a3c5762000a305f82620009fe565b60018101905062000a1b565b5050565b601f82111562000a8b5762000a55816200090b565b62000a60846200091d565b8101602085101562000a70578190505b62000a8862000a7f856200091d565b83018262000a1a565b50505b505050565b5f82821c905092915050565b5f62000aad5f198460080262000a90565b1980831691505092915050565b5f62000ac7838362000a9c565b9150826002028217905092915050565b62000ae282620008a0565b67ffffffffffffffff81111562000afe5762000afd620006f5565b5b62000b0a8254620008d7565b62000b1782828562000a40565b5f60209050601f83116001811462000b4d575f841562000b38578287015190505b62000b44858262000aba565b86555062000bb3565b601f19841662000b5d866200090b565b5f5b8281101562000b865784890151825560018201915060208501945060208101905062000b5f565b8683101562000ba6578489015162000ba2601f89168262000a9c565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000be68262000bbb565b9050919050565b62000bf88162000bda565b82525050565b5f60408201905062000c135f83018562000bed565b62000c22602083018462000bed565b9392505050565b5f60208201905062000c3e5f83018462000bed565b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000c8a60208362000c44565b915062000c978262000c54565b602082019050919050565b5f6020820190508181035f83015262000cbb8162000c7c565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c206578636565645f8201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b5f62000d1e602a8362000c44565b915062000d2b8262000cc2565b604082019050919050565b5f6020820190508181035f83015262000d4f8162000d10565b9050919050565b7f455243323938313a20696e76616c6964207265636569766572000000000000005f82015250565b5f62000d8c60198362000c44565b915062000d998262000d56565b602082019050919050565b5f6020820190508181035f83015262000dbd8162000d7e565b9050919050565b613ad08062000dd25f395ff3fe6080604052600436106101f8575f3560e01c806370a082311161010c578063a0bcfc7f1161009f578063c52c15931161006e578063c52c159314610667578063c87b56dd1461068f578063e8b5498d146106cb578063e985e9c5146106f5578063f2fde38b14610731576101f8565b8063a0bcfc7f146105e5578063a22cb4651461060d578063aa1b103f14610635578063b88d4fde1461064b576101f8565b80638da5cb5b116100db5780638da5cb5b1461054b57806395d89b41146105755780639fd6db121461059f578063a0712d68146105c9576101f8565b806370a08231146104b957806370e197b3146104f5578063715018a61461050b5780638d859f3e14610521576101f8565b806323b872dd1161018f5780633ccfd60b1161015e5780633ccfd60b146103f757806341f434341461040d57806342842e0e146104375780634cd412d5146104535780636352211e1461047d576101f8565b806323b872dd1461034c5780632a55205a1461036857806332cb6b0c146103a55780633515fe23146103cf576101f8565b8063081812fc116101cb578063081812fc146102a0578063095ea7b3146102dc5780630f2cdd6c146102f857806318160ddd14610322576101f8565b806301339c21146101fc57806301ffc9a71461021257806304634d8d1461024e57806306fdde0314610276575b5f80fd5b348015610207575f80fd5b50610210610759565b005b34801561021d575f80fd5b5061023860048036038101906102339190612727565b610798565b604051610245919061276c565b60405180910390f35b348015610259575f80fd5b50610274600480360381019061026f9190612820565b6107b9565b005b348015610281575f80fd5b5061028a6107cf565b60405161029791906128e8565b60405180910390f35b3480156102ab575f80fd5b506102c660048036038101906102c1919061293b565b61085f565b6040516102d39190612975565b60405180910390f35b6102f660048036038101906102f1919061298e565b6108d9565b005b348015610303575f80fd5b5061030c610941565b60405161031991906129db565b60405180910390f35b34801561032d575f80fd5b50610336610946565b60405161034391906129db565b60405180910390f35b610366600480360381019061036191906129f4565b61095b565b005b348015610373575f80fd5b5061038e60048036038101906103899190612a44565b610a34565b60405161039c929190612a82565b60405180910390f35b3480156103b0575f80fd5b506103b9610c10565b6040516103c691906129db565b60405180910390f35b3480156103da575f80fd5b506103f560048036038101906103f09190612b0a565b610c16565b005b348015610402575f80fd5b5061040b610ce0565b005b348015610418575f80fd5b50610421610d5c565b60405161042e9190612bc2565b60405180910390f35b610451600480360381019061044c91906129f4565b610d6e565b005b34801561045e575f80fd5b50610467610e0c565b604051610474919061276c565b60405180910390f35b348015610488575f80fd5b506104a3600480360381019061049e919061293b565b610e1f565b6040516104b09190612975565b60405180910390f35b3480156104c4575f80fd5b506104df60048036038101906104da9190612bdb565b610e30565b6040516104ec91906129db565b60405180910390f35b348015610500575f80fd5b50610509610ee5565b005b348015610516575f80fd5b5061051f610f2e565b005b34801561052c575f80fd5b50610535610f41565b60405161054291906129db565b60405180910390f35b348015610556575f80fd5b5061055f610f4c565b60405161056c9190612975565b60405180910390f35b348015610580575f80fd5b50610589610f74565b60405161059691906128e8565b60405180910390f35b3480156105aa575f80fd5b506105b3611004565b6040516105c0919061276c565b60405180910390f35b6105e360048036038101906105de919061293b565b611016565b005b3480156105f0575f80fd5b5061060b60048036038101906106069190612d2e565b6111e2565b005b348015610618575f80fd5b50610633600480360381019061062e9190612d9f565b6111fd565b005b348015610640575f80fd5b50610649611265565b005b61066560048036038101906106609190612e7b565b611277565b005b348015610672575f80fd5b5061068d60048036038101906106889190612f50565b611317565b005b34801561069a575f80fd5b506106b560048036038101906106b0919061293b565b61139d565b6040516106c291906128e8565b60405180910390f35b3480156106d6575f80fd5b506106df611438565b6040516106ec919061276c565b60405180910390f35b348015610700575f80fd5b5061071b60048036038101906107169190612fce565b61144b565b604051610728919061276c565b60405180910390f35b34801561073c575f80fd5b5061075760048036038101906107529190612bdb565b6114d9565b005b61076161155b565b6001600c5f6101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b5f6107a2826115d9565b806107b257506107b18261166a565b5b9050919050565b6107c161155b565b6107cb82826116e3565b5050565b6060600280546107de90613039565b80601f016020809104026020016040519081016040528092919081815260200182805461080a90613039565b80156108555780601f1061082c57610100808354040283529160200191610855565b820191905f5260205f20905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b5f61086982611873565b61089f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108e3816118cd565b600c60029054906101000a900460ff16610932576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610929906130b3565b60405180910390fd5b61093c83836119c7565b505050565b600381565b5f61094f611b06565b6001545f540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461099957610998336118cd565b5b6109a1610f4c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a2357600c60029054906101000a900460ff16610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a19906130b3565b60405180910390fd5b5b610a2e848484611b0e565b50505050565b5f805f60095f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1603610bbd5760086040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f610bc6611e1c565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610bf291906130fe565b610bfc919061316c565b9050815f0151819350935050509250929050565b6104c681565b610c1e61155b565b6104c68282905084610c3091906130fe565b610c38611e25565b610c42919061319c565b1115610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90613219565b60405180910390fd5b5f5b828290508163ffffffff161015610cda57610ccd83838363ffffffff16818110610cb257610cb1613237565b5b9050602002016020810190610cc79190612bdb565b85611e36565b8080600101915050610c85565b50505050565b610ce861155b565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610d0d90613291565b5f6040518083038185875af1925050503d805f8114610d47576040519150601f19603f3d011682016040523d82523d5f602084013e610d4c565b606091505b5050905080610d59575f80fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dac57610dab336118cd565b5b600c60029054906101000a900460ff16610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df2906130b3565b60405180910390fd5b610e06848484611fdf565b50505050565b600c60029054906101000a900460ff1681565b5f610e2982611ffe565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e96576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610eed61155b565b600c60019054906101000a900460ff1615610f06575f80fd5b6001600c60016101000a81548160ff021916908315150217905550610f2c33603c611e36565b565b610f3661155b565b610f3f5f6120c1565b565b662386f26fc1000081565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f8390613039565b80601f0160208091040260200160405190810160405280929190818152602001828054610faf90613039565b8015610ffa5780601f10610fd157610100808354040283529160200191610ffa565b820191905f5260205f20905b815481529060010190602001808311610fdd57829003601f168201915b5050505050905090565b600c5f9054906101000a900460ff1681565b600c5f9054906101000a900460ff16611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b906132ef565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990613357565b60405180910390fd5b6104c6816110de611e25565b6110e8919061319c565b1115611129576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611120906133bf565b60405180910390fd5b60038161113533610e30565b61113f919061319c565b1115611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790613427565b60405180910390fd5b3481662386f26fc1000061119491906130fe565b11156111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc9061348f565b60405180910390fd5b6111df3382611e36565b50565b6111ea61155b565b80600b90816111f99190613641565b5050565b81611207816118cd565b600c60029054906101000a900460ff16611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d906130b3565b60405180910390fd5b6112608383612184565b505050565b61126d61155b565b61127561228a565b565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112b5576112b4336118cd565b5b600c60029054906101000a900460ff16611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb906130b3565b60405180910390fd5b611310858585856122d4565b5050505050565b61131f61155b565b5f5b828290508163ffffffff161015611396576113893384848463ffffffff1681811061134f5761134e613237565b5b90506020020160208101906113649190612bdb565b87878563ffffffff1681811061137d5761137c613237565b5b9050602002013561095b565b8080600101915050611321565b5050505050565b60606113a882611873565b6113de576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6113e7612346565b90505f8151036114055760405180602001604052805f815250611430565b8061140f846123d6565b60405160200161142092919061374a565b6040516020818303038152906040525b915050919050565b600c60019054906101000a900460ff1681565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6114e161155b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361154f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611546906137dd565b60405180910390fd5b611558816120c1565b50565b611563612425565b73ffffffffffffffffffffffffffffffffffffffff16611581610f4c565b73ffffffffffffffffffffffffffffffffffffffff16146115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90613845565b60405180910390fd5b565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061163357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116635750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116dc57506116db8261242c565b5b9050919050565b6116eb611e1c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611749576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611740906138d3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae9061393b565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b5f8161187d611b06565b1115801561188b57505f5482105b80156118c657505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156119c4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611943929190613959565b602060405180830381865afa15801561195e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119829190613994565b6119c357806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016119ba9190612975565b60405180910390fd5b5b50565b5f6119d182610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff166119f2612495565b73ffffffffffffffffffffffffffffffffffffffff1614611a5557611a1e81611a19612495565b61144b565b611a54576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f6001905090565b5f611b1882611ffe565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b7f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80611b8a8461249c565b91509150611ba08187611b9b612495565b6124bf565b611bec57611bb586611bb0612495565b61144b565b611beb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c51576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c5e8686866001612502565b8015611c68575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550611d3085611d0c888887612508565b7c02000000000000000000000000000000000000000000000000000000001761252f565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611dac575f6001850190505f60045f8381526020019081526020015f205403611daa575f548114611da9578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e148686866001612559565b505050505050565b5f612710905090565b5f611e2e611b06565b5f5403905090565b5f805490505f8203611e74576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e805f848385612502565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611ef283611ee35f865f612508565b611eec8561255f565b1761252f565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114611f8c5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050611f53565b505f8203611fc6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611fda5f848385612559565b505050565b611ff983838360405180602001604052805f815250611277565b505050565b5f808290508061200c611b06565b1161208a575f54811015612089575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603612087575b5f810361207d5760045f836001900393508381526020019081526020015f20549050612056565b80925050506120bc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060075f612190612495565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612239612495565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161227e919061276c565b60405180910390a35050565b60085f8082015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f820160146101000a8154906bffffffffffffffffffffffff02191690555050565b6122df84848461095b565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14612340576123098484848461256e565b61233f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b805461235590613039565b80601f016020809104026020016040519081016040528092919081815260200182805461238190613039565b80156123cc5780601f106123a3576101008083540402835291602001916123cc565b820191905f5260205f20905b8154815290600101906020018083116123af57829003601f168201915b5050505050905090565b606060a060405101806040526020810391505f825281835b60011561241057600184039350600a81066030018453600a81049050806123ee575b50828103602084039350808452505050919050565b5f33905090565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e861251e8686846126b9565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f6001821460e11b9050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612593612495565b8786866040518563ffffffff1660e01b81526004016125b59493929190613a11565b6020604051808303815f875af19250505080156125f057506040513d601f19601f820116820180604052508101906125ed9190613a6f565b60015b612666573d805f811461261e576040519150601f19603f3d011682016040523d82523d5f602084013e612623565b606091505b505f81510361265e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f9392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612706816126d2565b8114612710575f80fd5b50565b5f81359050612721816126fd565b92915050565b5f6020828403121561273c5761273b6126ca565b5b5f61274984828501612713565b91505092915050565b5f8115159050919050565b61276681612752565b82525050565b5f60208201905061277f5f83018461275d565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6127ae82612785565b9050919050565b6127be816127a4565b81146127c8575f80fd5b50565b5f813590506127d9816127b5565b92915050565b5f6bffffffffffffffffffffffff82169050919050565b6127ff816127df565b8114612809575f80fd5b50565b5f8135905061281a816127f6565b92915050565b5f8060408385031215612836576128356126ca565b5b5f612843858286016127cb565b92505060206128548582860161280c565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561289557808201518184015260208101905061287a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6128ba8261285e565b6128c48185612868565b93506128d4818560208601612878565b6128dd816128a0565b840191505092915050565b5f6020820190508181035f83015261290081846128b0565b905092915050565b5f819050919050565b61291a81612908565b8114612924575f80fd5b50565b5f8135905061293581612911565b92915050565b5f602082840312156129505761294f6126ca565b5b5f61295d84828501612927565b91505092915050565b61296f816127a4565b82525050565b5f6020820190506129885f830184612966565b92915050565b5f80604083850312156129a4576129a36126ca565b5b5f6129b1858286016127cb565b92505060206129c285828601612927565b9150509250929050565b6129d581612908565b82525050565b5f6020820190506129ee5f8301846129cc565b92915050565b5f805f60608486031215612a0b57612a0a6126ca565b5b5f612a18868287016127cb565b9350506020612a29868287016127cb565b9250506040612a3a86828701612927565b9150509250925092565b5f8060408385031215612a5a57612a596126ca565b5b5f612a6785828601612927565b9250506020612a7885828601612927565b9150509250929050565b5f604082019050612a955f830185612966565b612aa260208301846129cc565b9392505050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112612aca57612ac9612aa9565b5b8235905067ffffffffffffffff811115612ae757612ae6612aad565b5b602083019150836020820283011115612b0357612b02612ab1565b5b9250929050565b5f805f60408486031215612b2157612b206126ca565b5b5f612b2e86828701612927565b935050602084013567ffffffffffffffff811115612b4f57612b4e6126ce565b5b612b5b86828701612ab5565b92509250509250925092565b5f819050919050565b5f612b8a612b85612b8084612785565b612b67565b612785565b9050919050565b5f612b9b82612b70565b9050919050565b5f612bac82612b91565b9050919050565b612bbc81612ba2565b82525050565b5f602082019050612bd55f830184612bb3565b92915050565b5f60208284031215612bf057612bef6126ca565b5b5f612bfd848285016127cb565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612c40826128a0565b810181811067ffffffffffffffff82111715612c5f57612c5e612c0a565b5b80604052505050565b5f612c716126c1565b9050612c7d8282612c37565b919050565b5f67ffffffffffffffff821115612c9c57612c9b612c0a565b5b612ca5826128a0565b9050602081019050919050565b828183375f83830152505050565b5f612cd2612ccd84612c82565b612c68565b905082815260208101848484011115612cee57612ced612c06565b5b612cf9848285612cb2565b509392505050565b5f82601f830112612d1557612d14612aa9565b5b8135612d25848260208601612cc0565b91505092915050565b5f60208284031215612d4357612d426126ca565b5b5f82013567ffffffffffffffff811115612d6057612d5f6126ce565b5b612d6c84828501612d01565b91505092915050565b612d7e81612752565b8114612d88575f80fd5b50565b5f81359050612d9981612d75565b92915050565b5f8060408385031215612db557612db46126ca565b5b5f612dc2858286016127cb565b9250506020612dd385828601612d8b565b9150509250929050565b5f67ffffffffffffffff821115612df757612df6612c0a565b5b612e00826128a0565b9050602081019050919050565b5f612e1f612e1a84612ddd565b612c68565b905082815260208101848484011115612e3b57612e3a612c06565b5b612e46848285612cb2565b509392505050565b5f82601f830112612e6257612e61612aa9565b5b8135612e72848260208601612e0d565b91505092915050565b5f805f8060808587031215612e9357612e926126ca565b5b5f612ea0878288016127cb565b9450506020612eb1878288016127cb565b9350506040612ec287828801612927565b925050606085013567ffffffffffffffff811115612ee357612ee26126ce565b5b612eef87828801612e4e565b91505092959194509250565b5f8083601f840112612f1057612f0f612aa9565b5b8235905067ffffffffffffffff811115612f2d57612f2c612aad565b5b602083019150836020820283011115612f4957612f48612ab1565b5b9250929050565b5f805f8060408587031215612f6857612f676126ca565b5b5f85013567ffffffffffffffff811115612f8557612f846126ce565b5b612f9187828801612efb565b9450945050602085013567ffffffffffffffff811115612fb457612fb36126ce565b5b612fc087828801612ab5565b925092505092959194509250565b5f8060408385031215612fe457612fe36126ca565b5b5f612ff1858286016127cb565b9250506020613002858286016127cb565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061305057607f821691505b6020821081036130635761306261300c565b5b50919050565b7f4e6f7420616c6c6f776564206265666f7265206c61756e6368000000000000005f82015250565b5f61309d601983612868565b91506130a882613069565b602082019050919050565b5f6020820190508181035f8301526130ca81613091565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61310882612908565b915061311383612908565b925082820261312181612908565b91508282048414831517613138576131376130d1565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61317682612908565b915061318183612908565b9250826131915761319061313f565b5b828204905092915050565b5f6131a682612908565b91506131b183612908565b92508282019050808211156131c9576131c86130d1565b5b92915050565b7f534f4c44204f55540000000000000000000000000000000000000000000000005f82015250565b5f613203600883612868565b915061320e826131cf565b602082019050919050565b5f6020820190508181035f830152613230816131f7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81905092915050565b50565b5f61327c5f83613264565b91506132878261326e565b5f82019050919050565b5f61329b82613271565b9150819050919050565b7f4d696e74206e6f742061637469766500000000000000000000000000000000005f82015250565b5f6132d9600f83612868565b91506132e4826132a5565b602082019050919050565b5f6020820190508181035f830152613306816132cd565b9050919050565b7f4e6f20636f6e74726163747320616c6c6f7765640000000000000000000000005f82015250565b5f613341601483612868565b915061334c8261330d565b602082019050919050565b5f6020820190508181035f83015261336e81613335565b9050919050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f6133a9600883612868565b91506133b482613375565b602082019050919050565b5f6020820190508181035f8301526133d68161339d565b9050919050565b7f45786365656473206d6178207065722077616c6c6574000000000000000000005f82015250565b5f613411601683612868565b915061341c826133dd565b602082019050919050565b5f6020820190508181035f83015261343e81613405565b9050919050565b7f496e73756666696369656e742066756e64732073656e740000000000000000005f82015250565b5f613479601783612868565b915061348482613445565b602082019050919050565b5f6020820190508181035f8301526134a68161346d565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026135097fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134ce565b61351386836134ce565b95508019841693508086168417925050509392505050565b5f61354561354061353b84612908565b612b67565b612908565b9050919050565b5f819050919050565b61355e8361352b565b61357261356a8261354c565b8484546134da565b825550505050565b5f90565b61358661357a565b613591818484613555565b505050565b5b818110156135b4576135a95f8261357e565b600181019050613597565b5050565b601f8211156135f9576135ca816134ad565b6135d3846134bf565b810160208510156135e2578190505b6135f66135ee856134bf565b830182613596565b50505b505050565b5f82821c905092915050565b5f6136195f19846008026135fe565b1980831691505092915050565b5f613631838361360a565b9150826002028217905092915050565b61364a8261285e565b67ffffffffffffffff81111561366357613662612c0a565b5b61366d8254613039565b6136788282856135b8565b5f60209050601f8311600181146136a9575f8415613697578287015190505b6136a18582613626565b865550613708565b601f1984166136b7866134ad565b5f5b828110156136de578489015182556001820191506020850194506020810190506136b9565b868310156136fb57848901516136f7601f89168261360a565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b5f6137248261285e565b61372e8185613710565b935061373e818560208601612878565b80840191505092915050565b5f613755828561371a565b9150613761828461371a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6137c7602683612868565b91506137d28261376d565b604082019050919050565b5f6020820190508181035f8301526137f4816137bb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61382f602083612868565b915061383a826137fb565b602082019050919050565b5f6020820190508181035f83015261385c81613823565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c206578636565645f8201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b5f6138bd602a83612868565b91506138c882613863565b604082019050919050565b5f6020820190508181035f8301526138ea816138b1565b9050919050565b7f455243323938313a20696e76616c6964207265636569766572000000000000005f82015250565b5f613925601983612868565b9150613930826138f1565b602082019050919050565b5f6020820190508181035f83015261395281613919565b9050919050565b5f60408201905061396c5f830185612966565b6139796020830184612966565b9392505050565b5f8151905061398e81612d75565b92915050565b5f602082840312156139a9576139a86126ca565b5b5f6139b684828501613980565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f6139e3826139bf565b6139ed81856139c9565b93506139fd818560208601612878565b613a06816128a0565b840191505092915050565b5f608082019050613a245f830187612966565b613a316020830186612966565b613a3e60408301856129cc565b8181036060830152613a5081846139d9565b905095945050505050565b5f81519050613a69816126fd565b92915050565b5f60208284031215613a8457613a836126ca565b5b5f613a9184828501613a5b565b9150509291505056fea2646970667358221220ca60ccf5c2ead1a7fe8cc5feaad2580f3b1e616a683896c89ea96b1e5822d69664736f6c6343000815003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569617676737871616b6178336e67706734746170657379746b3771376b37766464653675673532346d64657a62366a6a62346172752f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101f8575f3560e01c806370a082311161010c578063a0bcfc7f1161009f578063c52c15931161006e578063c52c159314610667578063c87b56dd1461068f578063e8b5498d146106cb578063e985e9c5146106f5578063f2fde38b14610731576101f8565b8063a0bcfc7f146105e5578063a22cb4651461060d578063aa1b103f14610635578063b88d4fde1461064b576101f8565b80638da5cb5b116100db5780638da5cb5b1461054b57806395d89b41146105755780639fd6db121461059f578063a0712d68146105c9576101f8565b806370a08231146104b957806370e197b3146104f5578063715018a61461050b5780638d859f3e14610521576101f8565b806323b872dd1161018f5780633ccfd60b1161015e5780633ccfd60b146103f757806341f434341461040d57806342842e0e146104375780634cd412d5146104535780636352211e1461047d576101f8565b806323b872dd1461034c5780632a55205a1461036857806332cb6b0c146103a55780633515fe23146103cf576101f8565b8063081812fc116101cb578063081812fc146102a0578063095ea7b3146102dc5780630f2cdd6c146102f857806318160ddd14610322576101f8565b806301339c21146101fc57806301ffc9a71461021257806304634d8d1461024e57806306fdde0314610276575b5f80fd5b348015610207575f80fd5b50610210610759565b005b34801561021d575f80fd5b5061023860048036038101906102339190612727565b610798565b604051610245919061276c565b60405180910390f35b348015610259575f80fd5b50610274600480360381019061026f9190612820565b6107b9565b005b348015610281575f80fd5b5061028a6107cf565b60405161029791906128e8565b60405180910390f35b3480156102ab575f80fd5b506102c660048036038101906102c1919061293b565b61085f565b6040516102d39190612975565b60405180910390f35b6102f660048036038101906102f1919061298e565b6108d9565b005b348015610303575f80fd5b5061030c610941565b60405161031991906129db565b60405180910390f35b34801561032d575f80fd5b50610336610946565b60405161034391906129db565b60405180910390f35b610366600480360381019061036191906129f4565b61095b565b005b348015610373575f80fd5b5061038e60048036038101906103899190612a44565b610a34565b60405161039c929190612a82565b60405180910390f35b3480156103b0575f80fd5b506103b9610c10565b6040516103c691906129db565b60405180910390f35b3480156103da575f80fd5b506103f560048036038101906103f09190612b0a565b610c16565b005b348015610402575f80fd5b5061040b610ce0565b005b348015610418575f80fd5b50610421610d5c565b60405161042e9190612bc2565b60405180910390f35b610451600480360381019061044c91906129f4565b610d6e565b005b34801561045e575f80fd5b50610467610e0c565b604051610474919061276c565b60405180910390f35b348015610488575f80fd5b506104a3600480360381019061049e919061293b565b610e1f565b6040516104b09190612975565b60405180910390f35b3480156104c4575f80fd5b506104df60048036038101906104da9190612bdb565b610e30565b6040516104ec91906129db565b60405180910390f35b348015610500575f80fd5b50610509610ee5565b005b348015610516575f80fd5b5061051f610f2e565b005b34801561052c575f80fd5b50610535610f41565b60405161054291906129db565b60405180910390f35b348015610556575f80fd5b5061055f610f4c565b60405161056c9190612975565b60405180910390f35b348015610580575f80fd5b50610589610f74565b60405161059691906128e8565b60405180910390f35b3480156105aa575f80fd5b506105b3611004565b6040516105c0919061276c565b60405180910390f35b6105e360048036038101906105de919061293b565b611016565b005b3480156105f0575f80fd5b5061060b60048036038101906106069190612d2e565b6111e2565b005b348015610618575f80fd5b50610633600480360381019061062e9190612d9f565b6111fd565b005b348015610640575f80fd5b50610649611265565b005b61066560048036038101906106609190612e7b565b611277565b005b348015610672575f80fd5b5061068d60048036038101906106889190612f50565b611317565b005b34801561069a575f80fd5b506106b560048036038101906106b0919061293b565b61139d565b6040516106c291906128e8565b60405180910390f35b3480156106d6575f80fd5b506106df611438565b6040516106ec919061276c565b60405180910390f35b348015610700575f80fd5b5061071b60048036038101906107169190612fce565b61144b565b604051610728919061276c565b60405180910390f35b34801561073c575f80fd5b5061075760048036038101906107529190612bdb565b6114d9565b005b61076161155b565b6001600c5f6101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b5f6107a2826115d9565b806107b257506107b18261166a565b5b9050919050565b6107c161155b565b6107cb82826116e3565b5050565b6060600280546107de90613039565b80601f016020809104026020016040519081016040528092919081815260200182805461080a90613039565b80156108555780601f1061082c57610100808354040283529160200191610855565b820191905f5260205f20905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b5f61086982611873565b61089f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108e3816118cd565b600c60029054906101000a900460ff16610932576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610929906130b3565b60405180910390fd5b61093c83836119c7565b505050565b600381565b5f61094f611b06565b6001545f540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461099957610998336118cd565b5b6109a1610f4c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a2357600c60029054906101000a900460ff16610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a19906130b3565b60405180910390fd5b5b610a2e848484611b0e565b50505050565b5f805f60095f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1603610bbd5760086040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f610bc6611e1c565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610bf291906130fe565b610bfc919061316c565b9050815f0151819350935050509250929050565b6104c681565b610c1e61155b565b6104c68282905084610c3091906130fe565b610c38611e25565b610c42919061319c565b1115610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90613219565b60405180910390fd5b5f5b828290508163ffffffff161015610cda57610ccd83838363ffffffff16818110610cb257610cb1613237565b5b9050602002016020810190610cc79190612bdb565b85611e36565b8080600101915050610c85565b50505050565b610ce861155b565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610d0d90613291565b5f6040518083038185875af1925050503d805f8114610d47576040519150601f19603f3d011682016040523d82523d5f602084013e610d4c565b606091505b5050905080610d59575f80fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dac57610dab336118cd565b5b600c60029054906101000a900460ff16610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df2906130b3565b60405180910390fd5b610e06848484611fdf565b50505050565b600c60029054906101000a900460ff1681565b5f610e2982611ffe565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e96576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610eed61155b565b600c60019054906101000a900460ff1615610f06575f80fd5b6001600c60016101000a81548160ff021916908315150217905550610f2c33603c611e36565b565b610f3661155b565b610f3f5f6120c1565b565b662386f26fc1000081565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f8390613039565b80601f0160208091040260200160405190810160405280929190818152602001828054610faf90613039565b8015610ffa5780601f10610fd157610100808354040283529160200191610ffa565b820191905f5260205f20905b815481529060010190602001808311610fdd57829003601f168201915b5050505050905090565b600c5f9054906101000a900460ff1681565b600c5f9054906101000a900460ff16611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b906132ef565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990613357565b60405180910390fd5b6104c6816110de611e25565b6110e8919061319c565b1115611129576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611120906133bf565b60405180910390fd5b60038161113533610e30565b61113f919061319c565b1115611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790613427565b60405180910390fd5b3481662386f26fc1000061119491906130fe565b11156111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc9061348f565b60405180910390fd5b6111df3382611e36565b50565b6111ea61155b565b80600b90816111f99190613641565b5050565b81611207816118cd565b600c60029054906101000a900460ff16611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d906130b3565b60405180910390fd5b6112608383612184565b505050565b61126d61155b565b61127561228a565b565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112b5576112b4336118cd565b5b600c60029054906101000a900460ff16611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb906130b3565b60405180910390fd5b611310858585856122d4565b5050505050565b61131f61155b565b5f5b828290508163ffffffff161015611396576113893384848463ffffffff1681811061134f5761134e613237565b5b90506020020160208101906113649190612bdb565b87878563ffffffff1681811061137d5761137c613237565b5b9050602002013561095b565b8080600101915050611321565b5050505050565b60606113a882611873565b6113de576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6113e7612346565b90505f8151036114055760405180602001604052805f815250611430565b8061140f846123d6565b60405160200161142092919061374a565b6040516020818303038152906040525b915050919050565b600c60019054906101000a900460ff1681565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6114e161155b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361154f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611546906137dd565b60405180910390fd5b611558816120c1565b50565b611563612425565b73ffffffffffffffffffffffffffffffffffffffff16611581610f4c565b73ffffffffffffffffffffffffffffffffffffffff16146115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90613845565b60405180910390fd5b565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061163357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116635750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116dc57506116db8261242c565b5b9050919050565b6116eb611e1c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611749576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611740906138d3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae9061393b565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b5f8161187d611b06565b1115801561188b57505f5482105b80156118c657505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156119c4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611943929190613959565b602060405180830381865afa15801561195e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119829190613994565b6119c357806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016119ba9190612975565b60405180910390fd5b5b50565b5f6119d182610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff166119f2612495565b73ffffffffffffffffffffffffffffffffffffffff1614611a5557611a1e81611a19612495565b61144b565b611a54576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f6001905090565b5f611b1882611ffe565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b7f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80611b8a8461249c565b91509150611ba08187611b9b612495565b6124bf565b611bec57611bb586611bb0612495565b61144b565b611beb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c51576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c5e8686866001612502565b8015611c68575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550611d3085611d0c888887612508565b7c02000000000000000000000000000000000000000000000000000000001761252f565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611dac575f6001850190505f60045f8381526020019081526020015f205403611daa575f548114611da9578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e148686866001612559565b505050505050565b5f612710905090565b5f611e2e611b06565b5f5403905090565b5f805490505f8203611e74576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e805f848385612502565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611ef283611ee35f865f612508565b611eec8561255f565b1761252f565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114611f8c5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050611f53565b505f8203611fc6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611fda5f848385612559565b505050565b611ff983838360405180602001604052805f815250611277565b505050565b5f808290508061200c611b06565b1161208a575f54811015612089575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603612087575b5f810361207d5760045f836001900393508381526020019081526020015f20549050612056565b80925050506120bc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060075f612190612495565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612239612495565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161227e919061276c565b60405180910390a35050565b60085f8082015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f820160146101000a8154906bffffffffffffffffffffffff02191690555050565b6122df84848461095b565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14612340576123098484848461256e565b61233f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b805461235590613039565b80601f016020809104026020016040519081016040528092919081815260200182805461238190613039565b80156123cc5780601f106123a3576101008083540402835291602001916123cc565b820191905f5260205f20905b8154815290600101906020018083116123af57829003601f168201915b5050505050905090565b606060a060405101806040526020810391505f825281835b60011561241057600184039350600a81066030018453600a81049050806123ee575b50828103602084039350808452505050919050565b5f33905090565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e861251e8686846126b9565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f6001821460e11b9050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612593612495565b8786866040518563ffffffff1660e01b81526004016125b59493929190613a11565b6020604051808303815f875af19250505080156125f057506040513d601f19601f820116820180604052508101906125ed9190613a6f565b60015b612666573d805f811461261e576040519150601f19603f3d011682016040523d82523d5f602084013e612623565b606091505b505f81510361265e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f9392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612706816126d2565b8114612710575f80fd5b50565b5f81359050612721816126fd565b92915050565b5f6020828403121561273c5761273b6126ca565b5b5f61274984828501612713565b91505092915050565b5f8115159050919050565b61276681612752565b82525050565b5f60208201905061277f5f83018461275d565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6127ae82612785565b9050919050565b6127be816127a4565b81146127c8575f80fd5b50565b5f813590506127d9816127b5565b92915050565b5f6bffffffffffffffffffffffff82169050919050565b6127ff816127df565b8114612809575f80fd5b50565b5f8135905061281a816127f6565b92915050565b5f8060408385031215612836576128356126ca565b5b5f612843858286016127cb565b92505060206128548582860161280c565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561289557808201518184015260208101905061287a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6128ba8261285e565b6128c48185612868565b93506128d4818560208601612878565b6128dd816128a0565b840191505092915050565b5f6020820190508181035f83015261290081846128b0565b905092915050565b5f819050919050565b61291a81612908565b8114612924575f80fd5b50565b5f8135905061293581612911565b92915050565b5f602082840312156129505761294f6126ca565b5b5f61295d84828501612927565b91505092915050565b61296f816127a4565b82525050565b5f6020820190506129885f830184612966565b92915050565b5f80604083850312156129a4576129a36126ca565b5b5f6129b1858286016127cb565b92505060206129c285828601612927565b9150509250929050565b6129d581612908565b82525050565b5f6020820190506129ee5f8301846129cc565b92915050565b5f805f60608486031215612a0b57612a0a6126ca565b5b5f612a18868287016127cb565b9350506020612a29868287016127cb565b9250506040612a3a86828701612927565b9150509250925092565b5f8060408385031215612a5a57612a596126ca565b5b5f612a6785828601612927565b9250506020612a7885828601612927565b9150509250929050565b5f604082019050612a955f830185612966565b612aa260208301846129cc565b9392505050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112612aca57612ac9612aa9565b5b8235905067ffffffffffffffff811115612ae757612ae6612aad565b5b602083019150836020820283011115612b0357612b02612ab1565b5b9250929050565b5f805f60408486031215612b2157612b206126ca565b5b5f612b2e86828701612927565b935050602084013567ffffffffffffffff811115612b4f57612b4e6126ce565b5b612b5b86828701612ab5565b92509250509250925092565b5f819050919050565b5f612b8a612b85612b8084612785565b612b67565b612785565b9050919050565b5f612b9b82612b70565b9050919050565b5f612bac82612b91565b9050919050565b612bbc81612ba2565b82525050565b5f602082019050612bd55f830184612bb3565b92915050565b5f60208284031215612bf057612bef6126ca565b5b5f612bfd848285016127cb565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612c40826128a0565b810181811067ffffffffffffffff82111715612c5f57612c5e612c0a565b5b80604052505050565b5f612c716126c1565b9050612c7d8282612c37565b919050565b5f67ffffffffffffffff821115612c9c57612c9b612c0a565b5b612ca5826128a0565b9050602081019050919050565b828183375f83830152505050565b5f612cd2612ccd84612c82565b612c68565b905082815260208101848484011115612cee57612ced612c06565b5b612cf9848285612cb2565b509392505050565b5f82601f830112612d1557612d14612aa9565b5b8135612d25848260208601612cc0565b91505092915050565b5f60208284031215612d4357612d426126ca565b5b5f82013567ffffffffffffffff811115612d6057612d5f6126ce565b5b612d6c84828501612d01565b91505092915050565b612d7e81612752565b8114612d88575f80fd5b50565b5f81359050612d9981612d75565b92915050565b5f8060408385031215612db557612db46126ca565b5b5f612dc2858286016127cb565b9250506020612dd385828601612d8b565b9150509250929050565b5f67ffffffffffffffff821115612df757612df6612c0a565b5b612e00826128a0565b9050602081019050919050565b5f612e1f612e1a84612ddd565b612c68565b905082815260208101848484011115612e3b57612e3a612c06565b5b612e46848285612cb2565b509392505050565b5f82601f830112612e6257612e61612aa9565b5b8135612e72848260208601612e0d565b91505092915050565b5f805f8060808587031215612e9357612e926126ca565b5b5f612ea0878288016127cb565b9450506020612eb1878288016127cb565b9350506040612ec287828801612927565b925050606085013567ffffffffffffffff811115612ee357612ee26126ce565b5b612eef87828801612e4e565b91505092959194509250565b5f8083601f840112612f1057612f0f612aa9565b5b8235905067ffffffffffffffff811115612f2d57612f2c612aad565b5b602083019150836020820283011115612f4957612f48612ab1565b5b9250929050565b5f805f8060408587031215612f6857612f676126ca565b5b5f85013567ffffffffffffffff811115612f8557612f846126ce565b5b612f9187828801612efb565b9450945050602085013567ffffffffffffffff811115612fb457612fb36126ce565b5b612fc087828801612ab5565b925092505092959194509250565b5f8060408385031215612fe457612fe36126ca565b5b5f612ff1858286016127cb565b9250506020613002858286016127cb565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061305057607f821691505b6020821081036130635761306261300c565b5b50919050565b7f4e6f7420616c6c6f776564206265666f7265206c61756e6368000000000000005f82015250565b5f61309d601983612868565b91506130a882613069565b602082019050919050565b5f6020820190508181035f8301526130ca81613091565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61310882612908565b915061311383612908565b925082820261312181612908565b91508282048414831517613138576131376130d1565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61317682612908565b915061318183612908565b9250826131915761319061313f565b5b828204905092915050565b5f6131a682612908565b91506131b183612908565b92508282019050808211156131c9576131c86130d1565b5b92915050565b7f534f4c44204f55540000000000000000000000000000000000000000000000005f82015250565b5f613203600883612868565b915061320e826131cf565b602082019050919050565b5f6020820190508181035f830152613230816131f7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81905092915050565b50565b5f61327c5f83613264565b91506132878261326e565b5f82019050919050565b5f61329b82613271565b9150819050919050565b7f4d696e74206e6f742061637469766500000000000000000000000000000000005f82015250565b5f6132d9600f83612868565b91506132e4826132a5565b602082019050919050565b5f6020820190508181035f830152613306816132cd565b9050919050565b7f4e6f20636f6e74726163747320616c6c6f7765640000000000000000000000005f82015250565b5f613341601483612868565b915061334c8261330d565b602082019050919050565b5f6020820190508181035f83015261336e81613335565b9050919050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f6133a9600883612868565b91506133b482613375565b602082019050919050565b5f6020820190508181035f8301526133d68161339d565b9050919050565b7f45786365656473206d6178207065722077616c6c6574000000000000000000005f82015250565b5f613411601683612868565b915061341c826133dd565b602082019050919050565b5f6020820190508181035f83015261343e81613405565b9050919050565b7f496e73756666696369656e742066756e64732073656e740000000000000000005f82015250565b5f613479601783612868565b915061348482613445565b602082019050919050565b5f6020820190508181035f8301526134a68161346d565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026135097fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134ce565b61351386836134ce565b95508019841693508086168417925050509392505050565b5f61354561354061353b84612908565b612b67565b612908565b9050919050565b5f819050919050565b61355e8361352b565b61357261356a8261354c565b8484546134da565b825550505050565b5f90565b61358661357a565b613591818484613555565b505050565b5b818110156135b4576135a95f8261357e565b600181019050613597565b5050565b601f8211156135f9576135ca816134ad565b6135d3846134bf565b810160208510156135e2578190505b6135f66135ee856134bf565b830182613596565b50505b505050565b5f82821c905092915050565b5f6136195f19846008026135fe565b1980831691505092915050565b5f613631838361360a565b9150826002028217905092915050565b61364a8261285e565b67ffffffffffffffff81111561366357613662612c0a565b5b61366d8254613039565b6136788282856135b8565b5f60209050601f8311600181146136a9575f8415613697578287015190505b6136a18582613626565b865550613708565b601f1984166136b7866134ad565b5f5b828110156136de578489015182556001820191506020850194506020810190506136b9565b868310156136fb57848901516136f7601f89168261360a565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b5f6137248261285e565b61372e8185613710565b935061373e818560208601612878565b80840191505092915050565b5f613755828561371a565b9150613761828461371a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6137c7602683612868565b91506137d28261376d565b604082019050919050565b5f6020820190508181035f8301526137f4816137bb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61382f602083612868565b915061383a826137fb565b602082019050919050565b5f6020820190508181035f83015261385c81613823565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c206578636565645f8201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b5f6138bd602a83612868565b91506138c882613863565b604082019050919050565b5f6020820190508181035f8301526138ea816138b1565b9050919050565b7f455243323938313a20696e76616c6964207265636569766572000000000000005f82015250565b5f613925601983612868565b9150613930826138f1565b602082019050919050565b5f6020820190508181035f83015261395281613919565b9050919050565b5f60408201905061396c5f830185612966565b6139796020830184612966565b9392505050565b5f8151905061398e81612d75565b92915050565b5f602082840312156139a9576139a86126ca565b5b5f6139b684828501613980565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f6139e3826139bf565b6139ed81856139c9565b93506139fd818560208601612878565b613a06816128a0565b840191505092915050565b5f608082019050613a245f830187612966565b613a316020830186612966565b613a3e60408301856129cc565b8181036060830152613a5081846139d9565b905095945050505050565b5f81519050613a69816126fd565b92915050565b5f60208284031215613a8457613a836126ca565b5b5f613a9184828501613a5b565b9150509291505056fea2646970667358221220ca60ccf5c2ead1a7fe8cc5feaad2580f3b1e616a683896c89ea96b1e5822d69664736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569617676737871616b6178336e67706734746170657379746b3771376b37766464653675673532346d64657a62366a6a62346172752f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseUri (string): ipfs://bafybeiavvsxqakax3ngpg4tapesytk7q7k7vdde6ug524mdezb6jjb4aru/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f62616679626569617676737871616b6178336e677067347461
Arg [3] : 70657379746b3771376b37766464653675673532346d64657a62366a6a623461
Arg [4] : 72752f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
73223:4126:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77136:110;;;;;;;;;;;;;:::i;:::-;;75065:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76498:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40984:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47475:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74005:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73503:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36735:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74242:288;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19181:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;73455:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75898:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76966:162;;;;;;;;;;;;;:::i;:::-;;7735:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74538:243;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73411:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42377:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37919:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75752:138;;;;;;;;;;;;;:::i;:::-;;13864:103;;;;;;;;;;;;;:::i;:::-;;73552:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13216:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41160:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73333:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75287:457;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77254:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73757:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76650:91;;;;;;;;;;;;;:::i;:::-;;74789:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76225:265;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41370:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73374:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48424:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14122:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77136:110;13102:13;:11;:13::i;:::-;77201:4:::1;77184:14;;:21;;;;;;;;;;;;;;;;;;77234:4;77216:15;;:22;;;;;;;;;;;;;;;;;;77136:110::o:0;75065:214::-;75168:4;75191:38;75217:11;75191:25;:38::i;:::-;:80;;;;75233:38;75259:11;75233:25;:38::i;:::-;75191:80;75184:87;;75065:214;;;:::o;76498:144::-;13102:13;:11;:13::i;:::-;76592:42:::1;76611:8;76621:12;76592:18;:42::i;:::-;76498:144:::0;;:::o;40984:100::-;41038:13;41071:5;41064:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40984:100;:::o;47475:218::-;47551:7;47576:16;47584:7;47576;:16::i;:::-;47571:64;;47601:34;;;;;;;;;;;;;;47571:64;47655:15;:24;47671:7;47655:24;;;;;;;;;;;:30;;;;;;;;;;;;47648:37;;47475:218;;;:::o;74005:229::-;74109:8;9517:30;9538:8;9517:20;:30::i;:::-;74138:15:::1;;;;;;;;;;;74130:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;74194:32;74208:8;74218:7;74194:13;:32::i;:::-;74005:229:::0;;;:::o;73503:42::-;73544:1;73503:42;:::o;36735:323::-;36796:7;37024:15;:13;:15::i;:::-;37009:12;;36993:13;;:28;:46;36986:53;;36735:323;:::o;74242:288::-;74351:4;9251:10;9243:18;;:4;:18;;;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;9239:83;74386:7:::1;:5;:7::i;:::-;74372:21;;:10;:21;;;74368:107;;74418:15;;;;;;;;;;;74410:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;74368:107;74485:37;74504:4;74510:2;74514:7;74485:18;:37::i;:::-;74242:288:::0;;;;:::o;19181:442::-;19278:7;19287;19307:26;19336:17;:27;19354:8;19336:27;;;;;;;;;;;19307:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19408:1;19380:30;;:7;:16;;;:30;;;19376:92;;19437:19;19427:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19376:92;19480:21;19545:17;:15;:17::i;:::-;19504:58;;19518:7;:23;;;19505:36;;:10;:36;;;;:::i;:::-;19504:58;;;;:::i;:::-;19480:82;;19583:7;:16;;;19601:13;19575:40;;;;;;19181:442;;;;;:::o;73455:41::-;73492:4;73455:41;:::o;75898:319::-;13102:13;:11;:13::i;:::-;73492:4:::1;76033:8;;:15;;76022:8;:26;;;;:::i;:::-;76005:14;:12;:14::i;:::-;:43;;;;:::i;:::-;:57;;75997:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;76090:8;76085:125;76108:8;;:15;;76104:1;:19;;;76085:125;;;76140:28;76146:8;;76155:1;76146:11;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;76159:8;76140:5;:28::i;:::-;76194:3;;;;;;;76085:125;;;;75898:319:::0;;;:::o;76966:162::-;13102:13;:11;:13::i;:::-;77017:12:::1;77043:10;77035:24;;77067:21;77035:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77016:77;;;77112:7;77104:16;;;::::0;::::1;;77005:123;76966:162::o:0;7735:143::-;151:42;7735:143;:::o;74538:243::-;74651:4;9251:10;9243:18;;:4;:18;;;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;9239:83;74676:15:::1;;;;;;;;;;;74668:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;74732:41;74755:4;74761:2;74765:7;74732:22;:41::i;:::-;74538:243:::0;;;;:::o;73411:35::-;;;;;;;;;;;;;:::o;42377:152::-;42449:7;42492:27;42511:7;42492:18;:27::i;:::-;42469:52;;42377:152;;;:::o;37919:233::-;37991:7;38032:1;38015:19;;:5;:19;;;38011:60;;38043:28;;;;;;;;;;;;;;38011:60;32078:13;38089:18;:25;38108:5;38089:25;;;;;;;;;;;;;;;;:55;38082:62;;37919:233;;;:::o;75752:138::-;13102:13;:11;:13::i;:::-;75811:10:::1;;;;;;;;;;;75810:11;75802:20;;;::::0;::::1;;75846:4;75833:10;;:17;;;;;;;;;;;;;;;;;;75861:21;75867:10;75879:2;75861:5;:21::i;:::-;75752:138::o:0;13864:103::-;13102:13;:11;:13::i;:::-;13929:30:::1;13956:1;13929:18;:30::i;:::-;13864:103::o:0;73552:42::-;73584:10;73552:42;:::o;13216:87::-;13262:7;13289:6;;;;;;;;;;;13282:13;;13216:87;:::o;41160:104::-;41216:13;41249:7;41242:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41160:104;:::o;73333:34::-;;;;;;;;;;;;;:::o;75287:457::-;75355:14;;;;;;;;;;;75347:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;75422:9;75408:23;;:10;:23;;;75400:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;73492:4;75492:8;75475:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:39;;75467:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;73544:1;75570:8;75546:21;75556:10;75546:9;:21::i;:::-;:32;;;;:::i;:::-;:50;;75538:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;75662:9;75650:8;73584:10;75642:16;;;;:::i;:::-;:29;;75634:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;75709:27;75715:10;75727:8;75709:5;:27::i;:::-;75287:457;:::o;77254:92::-;13102:13;:11;:13::i;:::-;77334:4:::1;77324:7;:14;;;;;;:::i;:::-;;77254:92:::0;:::o;73757:240::-;73861:8;9517:30;9538:8;9517:20;:30::i;:::-;73890:15:::1;;;;;;;;;;;73882:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;73946:43;73970:8;73980;73946:23;:43::i;:::-;73757:240:::0;;;:::o;76650:91::-;13102:13;:11;:13::i;:::-;76710:23:::1;:21;:23::i;:::-;76650:91::o:0;74789:268::-;74921:4;9251:10;9243:18;;:4;:18;;;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;9239:83;74946:15:::1;;;;;;;;;;;74938:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;75002:47;75025:4;75031:2;75035:7;75044:4;75002:22;:47::i;:::-;74789:268:::0;;;;;:::o;76225:265::-;13102:13;:11;:13::i;:::-;76341:8:::1;76336:147;76359:8;;:15;;76355:1;:19;;;76336:147;;;76391:50;76404:10;76416:8;;76425:1;76416:11;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;76429:8;;76438:1;76429:11;;;;;;;;;:::i;:::-;;;;;;;;76391:12;:50::i;:::-;76467:3;;;;;;;76336:147;;;;76225:265:::0;;;;:::o;41370:318::-;41443:13;41474:16;41482:7;41474;:16::i;:::-;41469:59;;41499:29;;;;;;;;;;;;;;41469:59;41541:21;41565:10;:8;:10::i;:::-;41541:34;;41618:1;41599:7;41593:21;:26;:87;;;;;;;;;;;;;;;;;41646:7;41655:18;41665:7;41655:9;:18::i;:::-;41629:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41593:87;41586:94;;;41370:318;;;:::o;73374:30::-;;;;;;;;;;;;;:::o;48424:164::-;48521:4;48545:18;:25;48564:5;48545:25;;;;;;;;;;;;;;;:35;48571:8;48545:35;;;;;;;;;;;;;;;;;;;;;;;;;48538:42;;48424:164;;;;:::o;14122:201::-;13102:13;:11;:13::i;:::-;14231:1:::1;14211:22;;:8;:22;;::::0;14203:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;14287:28;14306:8;14287:18;:28::i;:::-;14122:201:::0;:::o;13381:132::-;13456:12;:10;:12::i;:::-;13445:23;;:7;:5;:7::i;:::-;:23;;;13437:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13381:132::o;40082:639::-;40167:4;40506:10;40491:25;;:11;:25;;;;:102;;;;40583:10;40568:25;;:11;:25;;;;40491:102;:179;;;;40660:10;40645:25;;:11;:25;;;;40491:179;40471:199;;40082:639;;;:::o;18911:215::-;19013:4;19052:26;19037:41;;;:11;:41;;;;:81;;;;19082:36;19106:11;19082:23;:36::i;:::-;19037:81;19030:88;;18911:215;;;:::o;20273:332::-;20392:17;:15;:17::i;:::-;20376:33;;:12;:33;;;;20368:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;20495:1;20475:22;;:8;:22;;;20467:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;20562:35;;;;;;;;20574:8;20562:35;;;;;;20584:12;20562:35;;;;;20540:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20273:332;;:::o;48846:282::-;48911:4;48967:7;48948:15;:13;:15::i;:::-;:26;;:66;;;;;49001:13;;48991:7;:23;48948:66;:153;;;;;49100:1;32854:8;49052:17;:26;49070:7;49052:26;;;;;;;;;;;;:44;:49;48948:153;48928:173;;48846:282;;;:::o;9660:647::-;9899:1;151:42;9851:45;;;:49;9847:453;;;151:42;10150;;;10201:4;10208:8;10150:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10145:144;;10264:8;10245:28;;;;;;;;;;;:::i;:::-;;;;;;;;10145:144;9847:453;9660:647;:::o;46908:408::-;46997:13;47013:16;47021:7;47013;:16::i;:::-;46997:32;;47069:5;47046:28;;:19;:17;:19::i;:::-;:28;;;47042:175;;47094:44;47111:5;47118:19;:17;:19::i;:::-;47094:16;:44::i;:::-;47089:128;;47166:35;;;;;;;;;;;;;;47089:128;47042:175;47262:2;47229:15;:24;47245:7;47229:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;47300:7;47296:2;47280:28;;47289:5;47280:28;;;;;;;;;;;;46986:330;46908:408;;:::o;76749:101::-;76814:7;76841:1;76834:8;;76749:101;:::o;51114:2825::-;51256:27;51286;51305:7;51286:18;:27::i;:::-;51256:57;;51371:4;51330:45;;51346:19;51330:45;;;51326:86;;51384:28;;;;;;;;;;;;;;51326:86;51426:27;51455:23;51482:35;51509:7;51482:26;:35::i;:::-;51425:92;;;;51617:68;51642:15;51659:4;51665:19;:17;:19::i;:::-;51617:24;:68::i;:::-;51612:180;;51705:43;51722:4;51728:19;:17;:19::i;:::-;51705:16;:43::i;:::-;51700:92;;51757:35;;;;;;;;;;;;;;51700:92;51612:180;51823:1;51809:16;;:2;:16;;;51805:52;;51834:23;;;;;;;;;;;;;;51805:52;51870:43;51892:4;51898:2;51902:7;51911:1;51870:21;:43::i;:::-;52006:15;52003:160;;;52146:1;52125:19;52118:30;52003:160;52543:18;:24;52562:4;52543:24;;;;;;;;;;;;;;;;52541:26;;;;;;;;;;;;52612:18;:22;52631:2;52612:22;;;;;;;;;;;;;;;;52610:24;;;;;;;;;;;52934:146;52971:2;53020:45;53035:4;53041:2;53045:19;53020:14;:45::i;:::-;33134:8;52992:73;52934:18;:146::i;:::-;52905:17;:26;52923:7;52905:26;;;;;;;;;;;:175;;;;53251:1;33134:8;53200:19;:47;:52;53196:627;;53273:19;53305:1;53295:7;:11;53273:33;;53462:1;53428:17;:30;53446:11;53428:30;;;;;;;;;;;;:35;53424:384;;53566:13;;53551:11;:28;53547:242;;53746:19;53713:17;:30;53731:11;53713:30;;;;;;;;;;;:52;;;;53547:242;53424:384;53254:569;53196:627;53870:7;53866:2;53851:27;;53860:4;53851:27;;;;;;;;;;;;53889:42;53910:4;53916:2;53920:7;53929:1;53889:20;:42::i;:::-;51245:2694;;;51114:2825;;;:::o;19905:97::-;19963:6;19989:5;19982:12;;19905:97;:::o;37156:296::-;37211:7;37418:15;:13;:15::i;:::-;37402:13;;:31;37395:38;;37156:296;:::o;58495:2966::-;58568:20;58591:13;;58568:36;;58631:1;58619:8;:13;58615:44;;58641:18;;;;;;;;;;;;;;58615:44;58672:61;58702:1;58706:2;58710:12;58724:8;58672:21;:61::i;:::-;59216:1;32216:2;59186:1;:26;;59185:32;59173:8;:45;59147:18;:22;59166:2;59147:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;59495:139;59532:2;59586:33;59609:1;59613:2;59617:1;59586:14;:33::i;:::-;59553:30;59574:8;59553:20;:30::i;:::-;:66;59495:18;:139::i;:::-;59461:17;:31;59479:12;59461:31;;;;;;;;;;;:173;;;;59651:16;59682:11;59711:8;59696:12;:23;59682:37;;60232:16;60228:2;60224:25;60212:37;;60604:12;60564:8;60523:1;60461:25;60402:1;60341;60314:335;60975:1;60961:12;60957:20;60915:346;61016:3;61007:7;61004:16;60915:346;;61234:7;61224:8;61221:1;61194:25;61191:1;61188;61183:59;61069:1;61060:7;61056:15;61045:26;;60915:346;;;60919:77;61306:1;61294:8;:13;61290:45;;61316:19;;;;;;;;;;;;;;61290:45;61368:3;61352:13;:19;;;;58921:2462;;61393:60;61422:1;61426:2;61430:12;61444:8;61393:20;:60::i;:::-;58557:2904;58495:2966;;:::o;54035:193::-;54181:39;54198:4;54204:2;54208:7;54181:39;;;;;;;;;;;;:16;:39::i;:::-;54035:193;;;:::o;43532:1275::-;43599:7;43619:12;43634:7;43619:22;;43702:4;43683:15;:13;:15::i;:::-;:23;43679:1061;;43736:13;;43729:4;:20;43725:1015;;;43774:14;43791:17;:23;43809:4;43791:23;;;;;;;;;;;;43774:40;;43908:1;32854:8;43880:6;:24;:29;43876:845;;44545:113;44562:1;44552:6;:11;44545:113;;44605:17;:25;44623:6;;;;;;;44605:25;;;;;;;;;;;;44596:34;;44545:113;;;44691:6;44684:13;;;;;;43876:845;43751:989;43725:1015;43679:1061;44768:31;;;;;;;;;;;;;;43532:1275;;;;:::o;14483:191::-;14557:16;14576:6;;;;;;;;;;;14557:25;;14602:8;14593:6;;:17;;;;;;;;;;;;;;;;;;14657:8;14626:40;;14647:8;14626:40;;;;;;;;;;;;14546:128;14483:191;:::o;48033:234::-;48180:8;48128:18;:39;48147:19;:17;:19::i;:::-;48128:39;;;;;;;;;;;;;;;:49;48168:8;48128:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;48240:8;48204:55;;48219:19;:17;:19::i;:::-;48204:55;;;48250:8;48204:55;;;;;;:::i;:::-;;;;;;;;48033:234;;:::o;20681:95::-;20749:19;;20742:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20681:95::o;54826:407::-;55001:31;55014:4;55020:2;55024:7;55001:12;:31::i;:::-;55065:1;55047:2;:14;;;:19;55043:183;;55086:56;55117:4;55123:2;55127:7;55136:5;55086:30;:56::i;:::-;55081:145;;55170:40;;;;;;;;;;;;;;55081:145;55043:183;54826:407;;;;:::o;76858:100::-;76910:13;76943:7;76936:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76858:100;:::o;71361:1745::-;71426:17;71860:4;71853;71847:11;71843:22;71952:1;71946:4;71939:15;72027:4;72024:1;72020:12;72013:19;;72109:1;72104:3;72097:14;72213:3;72452:5;72434:428;72460:1;72434:428;;;72500:1;72495:3;72491:11;72484:18;;72671:2;72665:4;72661:13;72657:2;72653:22;72648:3;72640:36;72765:2;72759:4;72755:13;72747:21;;72832:4;72434:428;72822:25;72434:428;72438:21;72901:3;72896;72892:13;73016:4;73011:3;73007:14;73000:21;;73081:6;73076:3;73069:19;71465:1634;;;71361:1745;;;:::o;11767:98::-;11820:7;11847:10;11840:17;;11767:98;:::o;16463:157::-;16548:4;16587:25;16572:40;;;:11;:40;;;;16565:47;;16463:157;;;:::o;71154:105::-;71214:7;71241:10;71234:17;;71154:105;:::o;50009:485::-;50111:27;50140:23;50181:38;50222:15;:24;50238:7;50222:24;;;;;;;;;;;50181:65;;50399:18;50376:41;;50456:19;50450:26;50431:45;;50361:126;50009:485;;;:::o;49237:659::-;49386:11;49551:16;49544:5;49540:28;49531:37;;49711:16;49700:9;49696:32;49683:45;;49861:15;49850:9;49847:30;49839:5;49828:9;49825:20;49822:56;49812:66;;49237:659;;;;;:::o;55895:159::-;;;;;:::o;70463:311::-;70598:7;70618:16;33258:3;70644:19;:41;;70618:68;;33258:3;70712:31;70723:4;70729:2;70733:9;70712:10;:31::i;:::-;70704:40;;:62;;70697:69;;;70463:311;;;;;:::o;45355:450::-;45435:14;45603:16;45596:5;45592:28;45583:37;;45780:5;45766:11;45741:23;45737:41;45734:52;45727:5;45724:63;45714:73;;45355:450;;;;:::o;56719:158::-;;;;;:::o;45907:324::-;45977:14;46210:1;46200:8;46197:15;46171:24;46167:46;46157:56;;45907:324;;;:::o;57317:716::-;57480:4;57526:2;57501:45;;;57547:19;:17;:19::i;:::-;57568:4;57574:7;57583:5;57501:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57497:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57801:1;57784:6;:13;:18;57780:235;;57830:40;;;;;;;;;;;;;;57780:235;57973:6;57967:13;57958:6;57954:2;57950:15;57943:38;57497:529;57670:54;;;57660:64;;;:6;:64;;;;57653:71;;;57317:716;;;;;;:::o;70164:147::-;70301:6;70164:147;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:246::-;3248:1;3258:113;3272:6;3269:1;3266:13;3258:113;;;3357:1;3352:3;3348:11;3342:18;3338:1;3333:3;3329:11;3322:39;3294:2;3291:1;3287:10;3282:15;;3258:113;;;3405:1;3396:6;3391:3;3387:16;3380:27;3229:184;3167:246;;;:::o;3419:102::-;3460:6;3511:2;3507:7;3502:2;3495:5;3491:14;3487:28;3477:38;;3419:102;;;:::o;3527:377::-;3615:3;3643:39;3676:5;3643:39;:::i;:::-;3698:71;3762:6;3757:3;3698:71;:::i;:::-;3691:78;;3778:65;3836:6;3831:3;3824:4;3817:5;3813:16;3778:65;:::i;:::-;3868:29;3890:6;3868:29;:::i;:::-;3863:3;3859:39;3852:46;;3619:285;3527:377;;;;:::o;3910:313::-;4023:4;4061:2;4050:9;4046:18;4038:26;;4110:9;4104:4;4100:20;4096:1;4085:9;4081:17;4074:47;4138:78;4211:4;4202:6;4138:78;:::i;:::-;4130:86;;3910:313;;;;:::o;4229:77::-;4266:7;4295:5;4284:16;;4229:77;;;:::o;4312:122::-;4385:24;4403:5;4385:24;:::i;:::-;4378:5;4375:35;4365:63;;4424:1;4421;4414:12;4365:63;4312:122;:::o;4440:139::-;4486:5;4524:6;4511:20;4502:29;;4540:33;4567:5;4540:33;:::i;:::-;4440:139;;;;:::o;4585:329::-;4644:6;4693:2;4681:9;4672:7;4668:23;4664:32;4661:119;;;4699:79;;:::i;:::-;4661:119;4819:1;4844:53;4889:7;4880:6;4869:9;4865:22;4844:53;:::i;:::-;4834:63;;4790:117;4585:329;;;;:::o;4920:118::-;5007:24;5025:5;5007:24;:::i;:::-;5002:3;4995:37;4920:118;;:::o;5044:222::-;5137:4;5175:2;5164:9;5160:18;5152:26;;5188:71;5256:1;5245:9;5241:17;5232:6;5188:71;:::i;:::-;5044:222;;;;:::o;5272:474::-;5340:6;5348;5397:2;5385:9;5376:7;5372:23;5368:32;5365:119;;;5403:79;;:::i;:::-;5365:119;5523:1;5548:53;5593:7;5584:6;5573:9;5569:22;5548:53;:::i;:::-;5538:63;;5494:117;5650:2;5676:53;5721:7;5712:6;5701:9;5697:22;5676:53;:::i;:::-;5666:63;;5621:118;5272:474;;;;;:::o;5752:118::-;5839:24;5857:5;5839:24;:::i;:::-;5834:3;5827:37;5752:118;;:::o;5876:222::-;5969:4;6007:2;5996:9;5992:18;5984:26;;6020:71;6088:1;6077:9;6073:17;6064:6;6020:71;:::i;:::-;5876:222;;;;:::o;6104:619::-;6181:6;6189;6197;6246:2;6234:9;6225:7;6221:23;6217:32;6214:119;;;6252:79;;:::i;:::-;6214:119;6372:1;6397:53;6442:7;6433:6;6422:9;6418:22;6397:53;:::i;:::-;6387:63;;6343:117;6499:2;6525:53;6570:7;6561:6;6550:9;6546:22;6525:53;:::i;:::-;6515:63;;6470:118;6627:2;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6598:118;6104:619;;;;;:::o;6729:474::-;6797:6;6805;6854:2;6842:9;6833:7;6829:23;6825:32;6822:119;;;6860:79;;:::i;:::-;6822:119;6980:1;7005:53;7050:7;7041:6;7030:9;7026:22;7005:53;:::i;:::-;6995:63;;6951:117;7107:2;7133:53;7178:7;7169:6;7158:9;7154:22;7133:53;:::i;:::-;7123:63;;7078:118;6729:474;;;;;:::o;7209:332::-;7330:4;7368:2;7357:9;7353:18;7345:26;;7381:71;7449:1;7438:9;7434:17;7425:6;7381:71;:::i;:::-;7462:72;7530:2;7519:9;7515:18;7506:6;7462:72;:::i;:::-;7209:332;;;;;:::o;7547:117::-;7656:1;7653;7646:12;7670:117;7779:1;7776;7769:12;7793:117;7902:1;7899;7892:12;7933:568;8006:8;8016:6;8066:3;8059:4;8051:6;8047:17;8043:27;8033:122;;8074:79;;:::i;:::-;8033:122;8187:6;8174:20;8164:30;;8217:18;8209:6;8206:30;8203:117;;;8239:79;;:::i;:::-;8203:117;8353:4;8345:6;8341:17;8329:29;;8407:3;8399:4;8391:6;8387:17;8377:8;8373:32;8370:41;8367:128;;;8414:79;;:::i;:::-;8367:128;7933:568;;;;;:::o;8507:704::-;8602:6;8610;8618;8667:2;8655:9;8646:7;8642:23;8638:32;8635:119;;;8673:79;;:::i;:::-;8635:119;8793:1;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8764:117;8948:2;8937:9;8933:18;8920:32;8979:18;8971:6;8968:30;8965:117;;;9001:79;;:::i;:::-;8965:117;9114:80;9186:7;9177:6;9166:9;9162:22;9114:80;:::i;:::-;9096:98;;;;8891:313;8507:704;;;;;:::o;9217:60::-;9245:3;9266:5;9259:12;;9217:60;;;:::o;9283:142::-;9333:9;9366:53;9384:34;9393:24;9411:5;9393:24;:::i;:::-;9384:34;:::i;:::-;9366:53;:::i;:::-;9353:66;;9283:142;;;:::o;9431:126::-;9481:9;9514:37;9545:5;9514:37;:::i;:::-;9501:50;;9431:126;;;:::o;9563:157::-;9644:9;9677:37;9708:5;9677:37;:::i;:::-;9664:50;;9563:157;;;:::o;9726:193::-;9844:68;9906:5;9844:68;:::i;:::-;9839:3;9832:81;9726:193;;:::o;9925:284::-;10049:4;10087:2;10076:9;10072:18;10064:26;;10100:102;10199:1;10188:9;10184:17;10175:6;10100:102;:::i;:::-;9925:284;;;;:::o;10215:329::-;10274:6;10323:2;10311:9;10302:7;10298:23;10294:32;10291:119;;;10329:79;;:::i;:::-;10291:119;10449:1;10474:53;10519:7;10510:6;10499:9;10495:22;10474:53;:::i;:::-;10464:63;;10420:117;10215:329;;;;:::o;10550:117::-;10659:1;10656;10649:12;10673:180;10721:77;10718:1;10711:88;10818:4;10815:1;10808:15;10842:4;10839:1;10832:15;10859:281;10942:27;10964:4;10942:27;:::i;:::-;10934:6;10930:40;11072:6;11060:10;11057:22;11036:18;11024:10;11021:34;11018:62;11015:88;;;11083:18;;:::i;:::-;11015:88;11123:10;11119:2;11112:22;10902:238;10859:281;;:::o;11146:129::-;11180:6;11207:20;;:::i;:::-;11197:30;;11236:33;11264:4;11256:6;11236:33;:::i;:::-;11146:129;;;:::o;11281:308::-;11343:4;11433:18;11425:6;11422:30;11419:56;;;11455:18;;:::i;:::-;11419:56;11493:29;11515:6;11493:29;:::i;:::-;11485:37;;11577:4;11571;11567:15;11559:23;;11281:308;;;:::o;11595:146::-;11692:6;11687:3;11682;11669:30;11733:1;11724:6;11719:3;11715:16;11708:27;11595:146;;;:::o;11747:425::-;11825:5;11850:66;11866:49;11908:6;11866:49;:::i;:::-;11850:66;:::i;:::-;11841:75;;11939:6;11932:5;11925:21;11977:4;11970:5;11966:16;12015:3;12006:6;12001:3;11997:16;11994:25;11991:112;;;12022:79;;:::i;:::-;11991:112;12112:54;12159:6;12154:3;12149;12112:54;:::i;:::-;11831:341;11747:425;;;;;:::o;12192:340::-;12248:5;12297:3;12290:4;12282:6;12278:17;12274:27;12264:122;;12305:79;;:::i;:::-;12264:122;12422:6;12409:20;12447:79;12522:3;12514:6;12507:4;12499:6;12495:17;12447:79;:::i;:::-;12438:88;;12254:278;12192:340;;;;:::o;12538:509::-;12607:6;12656:2;12644:9;12635:7;12631:23;12627:32;12624:119;;;12662:79;;:::i;:::-;12624:119;12810:1;12799:9;12795:17;12782:31;12840:18;12832:6;12829:30;12826:117;;;12862:79;;:::i;:::-;12826:117;12967:63;13022:7;13013:6;13002:9;12998:22;12967:63;:::i;:::-;12957:73;;12753:287;12538:509;;;;:::o;13053:116::-;13123:21;13138:5;13123:21;:::i;:::-;13116:5;13113:32;13103:60;;13159:1;13156;13149:12;13103:60;13053:116;:::o;13175:133::-;13218:5;13256:6;13243:20;13234:29;;13272:30;13296:5;13272:30;:::i;:::-;13175:133;;;;:::o;13314:468::-;13379:6;13387;13436:2;13424:9;13415:7;13411:23;13407:32;13404:119;;;13442:79;;:::i;:::-;13404:119;13562:1;13587:53;13632:7;13623:6;13612:9;13608:22;13587:53;:::i;:::-;13577:63;;13533:117;13689:2;13715:50;13757:7;13748:6;13737:9;13733:22;13715:50;:::i;:::-;13705:60;;13660:115;13314:468;;;;;:::o;13788:307::-;13849:4;13939:18;13931:6;13928:30;13925:56;;;13961:18;;:::i;:::-;13925:56;13999:29;14021:6;13999:29;:::i;:::-;13991:37;;14083:4;14077;14073:15;14065:23;;13788:307;;;:::o;14101:423::-;14178:5;14203:65;14219:48;14260:6;14219:48;:::i;:::-;14203:65;:::i;:::-;14194:74;;14291:6;14284:5;14277:21;14329:4;14322:5;14318:16;14367:3;14358:6;14353:3;14349:16;14346:25;14343:112;;;14374:79;;:::i;:::-;14343:112;14464:54;14511:6;14506:3;14501;14464:54;:::i;:::-;14184:340;14101:423;;;;;:::o;14543:338::-;14598:5;14647:3;14640:4;14632:6;14628:17;14624:27;14614:122;;14655:79;;:::i;:::-;14614:122;14772:6;14759:20;14797:78;14871:3;14863:6;14856:4;14848:6;14844:17;14797:78;:::i;:::-;14788:87;;14604:277;14543:338;;;;:::o;14887:943::-;14982:6;14990;14998;15006;15055:3;15043:9;15034:7;15030:23;15026:33;15023:120;;;15062:79;;:::i;:::-;15023:120;15182:1;15207:53;15252:7;15243:6;15232:9;15228:22;15207:53;:::i;:::-;15197:63;;15153:117;15309:2;15335:53;15380:7;15371:6;15360:9;15356:22;15335:53;:::i;:::-;15325:63;;15280:118;15437:2;15463:53;15508:7;15499:6;15488:9;15484:22;15463:53;:::i;:::-;15453:63;;15408:118;15593:2;15582:9;15578:18;15565:32;15624:18;15616:6;15613:30;15610:117;;;15646:79;;:::i;:::-;15610:117;15751:62;15805:7;15796:6;15785:9;15781:22;15751:62;:::i;:::-;15741:72;;15536:287;14887:943;;;;;;;:::o;15853:568::-;15926:8;15936:6;15986:3;15979:4;15971:6;15967:17;15963:27;15953:122;;15994:79;;:::i;:::-;15953:122;16107:6;16094:20;16084:30;;16137:18;16129:6;16126:30;16123:117;;;16159:79;;:::i;:::-;16123:117;16273:4;16265:6;16261:17;16249:29;;16327:3;16319:4;16311:6;16307:17;16297:8;16293:32;16290:41;16287:128;;;16334:79;;:::i;:::-;16287:128;15853:568;;;;;:::o;16427:934::-;16549:6;16557;16565;16573;16622:2;16610:9;16601:7;16597:23;16593:32;16590:119;;;16628:79;;:::i;:::-;16590:119;16776:1;16765:9;16761:17;16748:31;16806:18;16798:6;16795:30;16792:117;;;16828:79;;:::i;:::-;16792:117;16941:80;17013:7;17004:6;16993:9;16989:22;16941:80;:::i;:::-;16923:98;;;;16719:312;17098:2;17087:9;17083:18;17070:32;17129:18;17121:6;17118:30;17115:117;;;17151:79;;:::i;:::-;17115:117;17264:80;17336:7;17327:6;17316:9;17312:22;17264:80;:::i;:::-;17246:98;;;;17041:313;16427:934;;;;;;;:::o;17367:474::-;17435:6;17443;17492:2;17480:9;17471:7;17467:23;17463:32;17460:119;;;17498:79;;:::i;:::-;17460:119;17618:1;17643:53;17688:7;17679:6;17668:9;17664:22;17643:53;:::i;:::-;17633:63;;17589:117;17745:2;17771:53;17816:7;17807:6;17796:9;17792:22;17771:53;:::i;:::-;17761:63;;17716:118;17367:474;;;;;:::o;17847:180::-;17895:77;17892:1;17885:88;17992:4;17989:1;17982:15;18016:4;18013:1;18006:15;18033:320;18077:6;18114:1;18108:4;18104:12;18094:22;;18161:1;18155:4;18151:12;18182:18;18172:81;;18238:4;18230:6;18226:17;18216:27;;18172:81;18300:2;18292:6;18289:14;18269:18;18266:38;18263:84;;18319:18;;:::i;:::-;18263:84;18084:269;18033:320;;;:::o;18359:175::-;18499:27;18495:1;18487:6;18483:14;18476:51;18359:175;:::o;18540:366::-;18682:3;18703:67;18767:2;18762:3;18703:67;:::i;:::-;18696:74;;18779:93;18868:3;18779:93;:::i;:::-;18897:2;18892:3;18888:12;18881:19;;18540:366;;;:::o;18912:419::-;19078:4;19116:2;19105:9;19101:18;19093:26;;19165:9;19159:4;19155:20;19151:1;19140:9;19136:17;19129:47;19193:131;19319:4;19193:131;:::i;:::-;19185:139;;18912:419;;;:::o;19337:180::-;19385:77;19382:1;19375:88;19482:4;19479:1;19472:15;19506:4;19503:1;19496:15;19523:410;19563:7;19586:20;19604:1;19586:20;:::i;:::-;19581:25;;19620:20;19638:1;19620:20;:::i;:::-;19615:25;;19675:1;19672;19668:9;19697:30;19715:11;19697:30;:::i;:::-;19686:41;;19876:1;19867:7;19863:15;19860:1;19857:22;19837:1;19830:9;19810:83;19787:139;;19906:18;;:::i;:::-;19787:139;19571:362;19523:410;;;;:::o;19939:180::-;19987:77;19984:1;19977:88;20084:4;20081:1;20074:15;20108:4;20105:1;20098:15;20125:185;20165:1;20182:20;20200:1;20182:20;:::i;:::-;20177:25;;20216:20;20234:1;20216:20;:::i;:::-;20211:25;;20255:1;20245:35;;20260:18;;:::i;:::-;20245:35;20302:1;20299;20295:9;20290:14;;20125:185;;;;:::o;20316:191::-;20356:3;20375:20;20393:1;20375:20;:::i;:::-;20370:25;;20409:20;20427:1;20409:20;:::i;:::-;20404:25;;20452:1;20449;20445:9;20438:16;;20473:3;20470:1;20467:10;20464:36;;;20480:18;;:::i;:::-;20464:36;20316:191;;;;:::o;20513:158::-;20653:10;20649:1;20641:6;20637:14;20630:34;20513:158;:::o;20677:365::-;20819:3;20840:66;20904:1;20899:3;20840:66;:::i;:::-;20833:73;;20915:93;21004:3;20915:93;:::i;:::-;21033:2;21028:3;21024:12;21017:19;;20677:365;;;:::o;21048:419::-;21214:4;21252:2;21241:9;21237:18;21229:26;;21301:9;21295:4;21291:20;21287:1;21276:9;21272:17;21265:47;21329:131;21455:4;21329:131;:::i;:::-;21321:139;;21048:419;;;:::o;21473:180::-;21521:77;21518:1;21511:88;21618:4;21615:1;21608:15;21642:4;21639:1;21632:15;21659:147;21760:11;21797:3;21782:18;;21659:147;;;;:::o;21812:114::-;;:::o;21932:398::-;22091:3;22112:83;22193:1;22188:3;22112:83;:::i;:::-;22105:90;;22204:93;22293:3;22204:93;:::i;:::-;22322:1;22317:3;22313:11;22306:18;;21932:398;;;:::o;22336:379::-;22520:3;22542:147;22685:3;22542:147;:::i;:::-;22535:154;;22706:3;22699:10;;22336:379;;;:::o;22721:165::-;22861:17;22857:1;22849:6;22845:14;22838:41;22721:165;:::o;22892:366::-;23034:3;23055:67;23119:2;23114:3;23055:67;:::i;:::-;23048:74;;23131:93;23220:3;23131:93;:::i;:::-;23249:2;23244:3;23240:12;23233:19;;22892:366;;;:::o;23264:419::-;23430:4;23468:2;23457:9;23453:18;23445:26;;23517:9;23511:4;23507:20;23503:1;23492:9;23488:17;23481:47;23545:131;23671:4;23545:131;:::i;:::-;23537:139;;23264:419;;;:::o;23689:170::-;23829:22;23825:1;23817:6;23813:14;23806:46;23689:170;:::o;23865:366::-;24007:3;24028:67;24092:2;24087:3;24028:67;:::i;:::-;24021:74;;24104:93;24193:3;24104:93;:::i;:::-;24222:2;24217:3;24213:12;24206:19;;23865:366;;;:::o;24237:419::-;24403:4;24441:2;24430:9;24426:18;24418:26;;24490:9;24484:4;24480:20;24476:1;24465:9;24461:17;24454:47;24518:131;24644:4;24518:131;:::i;:::-;24510:139;;24237:419;;;:::o;24662:158::-;24802:10;24798:1;24790:6;24786:14;24779:34;24662:158;:::o;24826:365::-;24968:3;24989:66;25053:1;25048:3;24989:66;:::i;:::-;24982:73;;25064:93;25153:3;25064:93;:::i;:::-;25182:2;25177:3;25173:12;25166:19;;24826:365;;;:::o;25197:419::-;25363:4;25401:2;25390:9;25386:18;25378:26;;25450:9;25444:4;25440:20;25436:1;25425:9;25421:17;25414:47;25478:131;25604:4;25478:131;:::i;:::-;25470:139;;25197:419;;;:::o;25622:172::-;25762:24;25758:1;25750:6;25746:14;25739:48;25622:172;:::o;25800:366::-;25942:3;25963:67;26027:2;26022:3;25963:67;:::i;:::-;25956:74;;26039:93;26128:3;26039:93;:::i;:::-;26157:2;26152:3;26148:12;26141:19;;25800:366;;;:::o;26172:419::-;26338:4;26376:2;26365:9;26361:18;26353:26;;26425:9;26419:4;26415:20;26411:1;26400:9;26396:17;26389:47;26453:131;26579:4;26453:131;:::i;:::-;26445:139;;26172:419;;;:::o;26597:173::-;26737:25;26733:1;26725:6;26721:14;26714:49;26597:173;:::o;26776:366::-;26918:3;26939:67;27003:2;26998:3;26939:67;:::i;:::-;26932:74;;27015:93;27104:3;27015:93;:::i;:::-;27133:2;27128:3;27124:12;27117:19;;26776:366;;;:::o;27148:419::-;27314:4;27352:2;27341:9;27337:18;27329:26;;27401:9;27395:4;27391:20;27387:1;27376:9;27372:17;27365:47;27429:131;27555:4;27429:131;:::i;:::-;27421:139;;27148:419;;;:::o;27573:141::-;27622:4;27645:3;27637:11;;27668:3;27665:1;27658:14;27702:4;27699:1;27689:18;27681:26;;27573:141;;;:::o;27720:93::-;27757:6;27804:2;27799;27792:5;27788:14;27784:23;27774:33;;27720:93;;;:::o;27819:107::-;27863:8;27913:5;27907:4;27903:16;27882:37;;27819:107;;;;:::o;27932:393::-;28001:6;28051:1;28039:10;28035:18;28074:97;28104:66;28093:9;28074:97;:::i;:::-;28192:39;28222:8;28211:9;28192:39;:::i;:::-;28180:51;;28264:4;28260:9;28253:5;28249:21;28240:30;;28313:4;28303:8;28299:19;28292:5;28289:30;28279:40;;28008:317;;27932:393;;;;;:::o;28331:142::-;28381:9;28414:53;28432:34;28441:24;28459:5;28441:24;:::i;:::-;28432:34;:::i;:::-;28414:53;:::i;:::-;28401:66;;28331:142;;;:::o;28479:75::-;28522:3;28543:5;28536:12;;28479:75;;;:::o;28560:269::-;28670:39;28701:7;28670:39;:::i;:::-;28731:91;28780:41;28804:16;28780:41;:::i;:::-;28772:6;28765:4;28759:11;28731:91;:::i;:::-;28725:4;28718:105;28636:193;28560:269;;;:::o;28835:73::-;28880:3;28835:73;:::o;28914:189::-;28991:32;;:::i;:::-;29032:65;29090:6;29082;29076:4;29032:65;:::i;:::-;28967:136;28914:189;;:::o;29109:186::-;29169:120;29186:3;29179:5;29176:14;29169:120;;;29240:39;29277:1;29270:5;29240:39;:::i;:::-;29213:1;29206:5;29202:13;29193:22;;29169:120;;;29109:186;;:::o;29301:543::-;29402:2;29397:3;29394:11;29391:446;;;29436:38;29468:5;29436:38;:::i;:::-;29520:29;29538:10;29520:29;:::i;:::-;29510:8;29506:44;29703:2;29691:10;29688:18;29685:49;;;29724:8;29709:23;;29685:49;29747:80;29803:22;29821:3;29803:22;:::i;:::-;29793:8;29789:37;29776:11;29747:80;:::i;:::-;29406:431;;29391:446;29301:543;;;:::o;29850:117::-;29904:8;29954:5;29948:4;29944:16;29923:37;;29850:117;;;;:::o;29973:169::-;30017:6;30050:51;30098:1;30094:6;30086:5;30083:1;30079:13;30050:51;:::i;:::-;30046:56;30131:4;30125;30121:15;30111:25;;30024:118;29973:169;;;;:::o;30147:295::-;30223:4;30369:29;30394:3;30388:4;30369:29;:::i;:::-;30361:37;;30431:3;30428:1;30424:11;30418:4;30415:21;30407:29;;30147:295;;;;:::o;30447:1395::-;30564:37;30597:3;30564:37;:::i;:::-;30666:18;30658:6;30655:30;30652:56;;;30688:18;;:::i;:::-;30652:56;30732:38;30764:4;30758:11;30732:38;:::i;:::-;30817:67;30877:6;30869;30863:4;30817:67;:::i;:::-;30911:1;30935:4;30922:17;;30967:2;30959:6;30956:14;30984:1;30979:618;;;;31641:1;31658:6;31655:77;;;31707:9;31702:3;31698:19;31692:26;31683:35;;31655:77;31758:67;31818:6;31811:5;31758:67;:::i;:::-;31752:4;31745:81;31614:222;30949:887;;30979:618;31031:4;31027:9;31019:6;31015:22;31065:37;31097:4;31065:37;:::i;:::-;31124:1;31138:208;31152:7;31149:1;31146:14;31138:208;;;31231:9;31226:3;31222:19;31216:26;31208:6;31201:42;31282:1;31274:6;31270:14;31260:24;;31329:2;31318:9;31314:18;31301:31;;31175:4;31172:1;31168:12;31163:17;;31138:208;;;31374:6;31365:7;31362:19;31359:179;;;31432:9;31427:3;31423:19;31417:26;31475:48;31517:4;31509:6;31505:17;31494:9;31475:48;:::i;:::-;31467:6;31460:64;31382:156;31359:179;31584:1;31580;31572:6;31568:14;31564:22;31558:4;31551:36;30986:611;;;30949:887;;30539:1303;;;30447:1395;;:::o;31848:148::-;31950:11;31987:3;31972:18;;31848:148;;;;:::o;32002:390::-;32108:3;32136:39;32169:5;32136:39;:::i;:::-;32191:89;32273:6;32268:3;32191:89;:::i;:::-;32184:96;;32289:65;32347:6;32342:3;32335:4;32328:5;32324:16;32289:65;:::i;:::-;32379:6;32374:3;32370:16;32363:23;;32112:280;32002:390;;;;:::o;32398:435::-;32578:3;32600:95;32691:3;32682:6;32600:95;:::i;:::-;32593:102;;32712:95;32803:3;32794:6;32712:95;:::i;:::-;32705:102;;32824:3;32817:10;;32398:435;;;;;:::o;32839:225::-;32979:34;32975:1;32967:6;32963:14;32956:58;33048:8;33043:2;33035:6;33031:15;33024:33;32839:225;:::o;33070:366::-;33212:3;33233:67;33297:2;33292:3;33233:67;:::i;:::-;33226:74;;33309:93;33398:3;33309:93;:::i;:::-;33427:2;33422:3;33418:12;33411:19;;33070:366;;;:::o;33442:419::-;33608:4;33646:2;33635:9;33631:18;33623:26;;33695:9;33689:4;33685:20;33681:1;33670:9;33666:17;33659:47;33723:131;33849:4;33723:131;:::i;:::-;33715:139;;33442:419;;;:::o;33867:182::-;34007:34;34003:1;33995:6;33991:14;33984:58;33867:182;:::o;34055:366::-;34197:3;34218:67;34282:2;34277:3;34218:67;:::i;:::-;34211:74;;34294:93;34383:3;34294:93;:::i;:::-;34412:2;34407:3;34403:12;34396:19;;34055:366;;;:::o;34427:419::-;34593:4;34631:2;34620:9;34616:18;34608:26;;34680:9;34674:4;34670:20;34666:1;34655:9;34651:17;34644:47;34708:131;34834:4;34708:131;:::i;:::-;34700:139;;34427:419;;;:::o;34852:229::-;34992:34;34988:1;34980:6;34976:14;34969:58;35061:12;35056:2;35048:6;35044:15;35037:37;34852:229;:::o;35087:366::-;35229:3;35250:67;35314:2;35309:3;35250:67;:::i;:::-;35243:74;;35326:93;35415:3;35326:93;:::i;:::-;35444:2;35439:3;35435:12;35428:19;;35087:366;;;:::o;35459:419::-;35625:4;35663:2;35652:9;35648:18;35640:26;;35712:9;35706:4;35702:20;35698:1;35687:9;35683:17;35676:47;35740:131;35866:4;35740:131;:::i;:::-;35732:139;;35459:419;;;:::o;35884:175::-;36024:27;36020:1;36012:6;36008:14;36001:51;35884:175;:::o;36065:366::-;36207:3;36228:67;36292:2;36287:3;36228:67;:::i;:::-;36221:74;;36304:93;36393:3;36304:93;:::i;:::-;36422:2;36417:3;36413:12;36406:19;;36065:366;;;:::o;36437:419::-;36603:4;36641:2;36630:9;36626:18;36618:26;;36690:9;36684:4;36680:20;36676:1;36665:9;36661:17;36654:47;36718:131;36844:4;36718:131;:::i;:::-;36710:139;;36437:419;;;:::o;36862:332::-;36983:4;37021:2;37010:9;37006:18;36998:26;;37034:71;37102:1;37091:9;37087:17;37078:6;37034:71;:::i;:::-;37115:72;37183:2;37172:9;37168:18;37159:6;37115:72;:::i;:::-;36862:332;;;;;:::o;37200:137::-;37254:5;37285:6;37279:13;37270:22;;37301:30;37325:5;37301:30;:::i;:::-;37200:137;;;;:::o;37343:345::-;37410:6;37459:2;37447:9;37438:7;37434:23;37430:32;37427:119;;;37465:79;;:::i;:::-;37427:119;37585:1;37610:61;37663:7;37654:6;37643:9;37639:22;37610:61;:::i;:::-;37600:71;;37556:125;37343:345;;;;:::o;37694:98::-;37745:6;37779:5;37773:12;37763:22;;37694:98;;;:::o;37798:168::-;37881:11;37915:6;37910:3;37903:19;37955:4;37950:3;37946:14;37931:29;;37798:168;;;;:::o;37972:373::-;38058:3;38086:38;38118:5;38086:38;:::i;:::-;38140:70;38203:6;38198:3;38140:70;:::i;:::-;38133:77;;38219:65;38277:6;38272:3;38265:4;38258:5;38254:16;38219:65;:::i;:::-;38309:29;38331:6;38309:29;:::i;:::-;38304:3;38300:39;38293:46;;38062:283;37972:373;;;;:::o;38351:640::-;38546:4;38584:3;38573:9;38569:19;38561:27;;38598:71;38666:1;38655:9;38651:17;38642:6;38598:71;:::i;:::-;38679:72;38747:2;38736:9;38732:18;38723:6;38679:72;:::i;:::-;38761;38829:2;38818:9;38814:18;38805:6;38761:72;:::i;:::-;38880:9;38874:4;38870:20;38865:2;38854:9;38850:18;38843:48;38908:76;38979:4;38970:6;38908:76;:::i;:::-;38900:84;;38351:640;;;;;;;:::o;38997:141::-;39053:5;39084:6;39078:13;39069:22;;39100:32;39126:5;39100:32;:::i;:::-;38997:141;;;;:::o;39144:349::-;39213:6;39262:2;39250:9;39241:7;39237:23;39233:32;39230:119;;;39268:79;;:::i;:::-;39230:119;39388:1;39413:63;39468:7;39459:6;39448:9;39444:22;39413:63;:::i;:::-;39403:73;;39359:127;39144:349;;;;:::o
Swarm Source
ipfs://ca60ccf5c2ead1a7fe8cc5feaad2580f3b1e616a683896c89ea96b1e5822d696
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.