Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
3,600 mFrS
Holders
549
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 mFrSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MeltedFacesReshape
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-19 */ /** * */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT // 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; } } /** * */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT // 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); } /** * */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [////IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * ////IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } /** * */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; ////import "../utils/Context.sol"; /** * @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); } } /** * */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; ////import './IERC721A.sol'; /** * @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) } } } /** * */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT pragma solidity ^0.8.7; ////import "erc721a/contracts/ERC721A.sol"; ////import "@openzeppelin/contracts/access/Ownable.sol"; ////import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; ////import "@openzeppelin/contracts/utils/Address.sol"; contract MeltedFacesReshape is ERC721A, Ownable { constructor() ERC721A("MeLtEd FaCeS rEsHaPe", "mFrS") {} mapping(address => uint256) public minted; bytes32 public merkleRoot; uint256 public price = 0.0055 ether; uint256 public maxQuantity = 5; uint256 public maxSupply = 4444; bool public publicSale = false; bool public whitelistSale = false; string baseUri = ""; string tokenUriSuffix; // Public payable functions function whitelistMint(uint256 quantity, bytes32[] calldata proof) external payable { require(whitelistSale, "whitelist not active"); require(totalSupply() + quantity <= maxSupply, "max supply exceeded"); require(quantity <= maxQuantity, "too many"); require(msg.value >= price * quantity, "insufficient value"); require(minted[msg.sender] + quantity <= maxQuantity, "already minted max"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(proof, merkleRoot, leaf), 'not whitelisted'); minted[msg.sender] = quantity; _safeMint(msg.sender, quantity); } function mint(uint256 quantity) external payable { // Special owner mint case if (owner() == msg.sender) { require(totalSupply() + quantity <= maxSupply, "max supply exceeded"); _safeMint(msg.sender, quantity); return; } require(publicSale, "sale not active"); require(totalSupply() + quantity <= maxSupply, "max supply exceeded"); require(quantity <= maxQuantity, "too many"); require(msg.value >= price * quantity, "insufficient value"); require(minted[msg.sender] + quantity <= maxQuantity, "already minted max"); minted[msg.sender] = quantity; _safeMint(msg.sender, quantity); } // View functions function _baseURI() internal view virtual override returns (string memory) { return baseUri; } 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), tokenUriSuffix)) : ''; } // Admin functions function setPrice(uint256 new_price) external onlyOwner { price = new_price; } function setMaxQuantity(uint256 new_max_quantity) external onlyOwner { maxQuantity = new_max_quantity; } function setMerkleRoot(bytes32 merkle_root) external onlyOwner { merkleRoot = merkle_root; } function setSaleActive(bool sale_active) external onlyOwner { publicSale = sale_active; } function setWhitelistActive(bool wl_active) external onlyOwner { whitelistSale = wl_active; } function setBaseUri(string calldata base_uri) external onlyOwner { baseUri = base_uri; } function setUriSuffix(string calldata uri_suffix) external onlyOwner { tokenUriSuffix = uri_suffix; } function setMaxSupply(uint max_supply) external onlyOwner { require(max_supply >= totalSupply(), "Specified supply is lower than current balance" ); maxSupply = max_supply; } // Admin actions function gift(uint[] calldata quantity, address[] calldata recipient) external onlyOwner { require(quantity.length == recipient.length, "Must provide equal quantities and recipients" ); uint totalQuantity = 0; uint256 supply = totalSupply(); for(uint i = 0; i < quantity.length; ++i){ totalQuantity += quantity[i]; } require( supply + totalQuantity <= maxSupply, "Mint/order exceeds supply" ); delete totalQuantity; for(uint i = 0; i < recipient.length; ++i){ _safeMint(recipient[i], quantity[i]); } } function withdraw() external onlyOwner { Address.sendValue(payable(owner()), address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address","name":"to","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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"base_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_max_quantity","type":"uint256"}],"name":"setMaxQuantity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkle_root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"sale_active","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_suffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"wl_active","type":"bool"}],"name":"setWhitelistActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266138a388a43c000600b556005600c5561115c600d556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff02191690831515021790555060405180602001604052806000815250600f90805190602001906200007792919062000235565b503480156200008557600080fd5b506040518060400160405280601481526020017f4d654c74456420466143655320724573486150650000000000000000000000008152506040518060400160405280600481526020017f6d4672530000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010a92919062000235565b5080600390805190602001906200012392919062000235565b50620001346200016260201b60201c565b60008190555050506200015c620001506200016760201b60201c565b6200016f60201b60201c565b6200034a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024390620002e5565b90600052602060002090601f016020900481019282620002675760008555620002b3565b82601f106200028257805160ff1916838001178555620002b3565b82800160010185558215620002b3579182015b82811115620002b257825182559160200191906001019062000295565b5b509050620002c29190620002c6565b5090565b5b80821115620002e1576000816000905550600101620002c7565b5090565b60006002820490506001821680620002fe57607f821691505b602082108114156200031557620003146200031b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613a1c806200035a6000396000f3fe60806040526004361061020f5760003560e01c80637cb6475911610118578063a22cb465116100a0578063d2cab0561161006f578063d2cab0561461072e578063d5abeb011461074a578063e640cf7d14610775578063e985e9c5146107a0578063f2fde38b146107dd5761020f565b8063a22cb46514610683578063b88d4fde146106ac578063c3b754dc146106c8578063c87b56dd146106f15761020f565b806395d89b41116100e757806395d89b41146105bf57806396ea3a47146105ea578063a035b1fe14610613578063a0712d681461063e578063a0bcfc7f1461065a5761020f565b80637cb6475914610519578063841718a6146105425780638da5cb5b1461056b57806391b7f5ed146105965761020f565b806331ffd6f11161019b5780634a65a5751161016a5780634a65a575146104365780636352211e1461045f5780636f8b44b01461049c57806370a08231146104c5578063715018a6146105025761020f565b806331ffd6f1146103ad57806333bc1c5c146103d85780633ccfd60b1461040357806342842e0e1461041a5761020f565b806316ba10e0116101e257806316ba10e0146102d557806318160ddd146102fe5780631e7269c51461032957806323b872dd146103665780632eb4a7ab146103825761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612af8565b610806565b6040516102489190613076565b60405180910390f35b34801561025d57600080fd5b50610266610898565b60405161027391906130ac565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612b9f565b61092a565b6040516102b0919061300f565b60405180910390f35b6102d360048036038101906102ce91906129dd565b6109a9565b005b3480156102e157600080fd5b506102fc60048036038101906102f79190612b52565b610aed565b005b34801561030a57600080fd5b50610313610b0b565b604051610320919061328e565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b919061285a565b610b22565b60405161035d919061328e565b60405180910390f35b610380600480360381019061037b91906128c7565b610b3a565b005b34801561038e57600080fd5b50610397610e5f565b6040516103a49190613091565b60405180910390f35b3480156103b957600080fd5b506103c2610e65565b6040516103cf9190613076565b60405180910390f35b3480156103e457600080fd5b506103ed610e78565b6040516103fa9190613076565b60405180910390f35b34801561040f57600080fd5b50610418610e8b565b005b610434600480360381019061042f91906128c7565b610ea6565b005b34801561044257600080fd5b5061045d60048036038101906104589190612b9f565b610ec6565b005b34801561046b57600080fd5b5061048660048036038101906104819190612b9f565b610ed8565b604051610493919061300f565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be9190612b9f565b610eea565b005b3480156104d157600080fd5b506104ec60048036038101906104e7919061285a565b610f46565b6040516104f9919061328e565b60405180910390f35b34801561050e57600080fd5b50610517610fff565b005b34801561052557600080fd5b50610540600480360381019061053b9190612acb565b611013565b005b34801561054e57600080fd5b5061056960048036038101906105649190612a9e565b611025565b005b34801561057757600080fd5b5061058061104a565b60405161058d919061300f565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190612b9f565b611074565b005b3480156105cb57600080fd5b506105d4611086565b6040516105e191906130ac565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190612a1d565b611118565b005b34801561061f57600080fd5b50610628611282565b604051610635919061328e565b60405180910390f35b61065860048036038101906106539190612b9f565b611288565b005b34801561066657600080fd5b50610681600480360381019061067c9190612b52565b611545565b005b34801561068f57600080fd5b506106aa60048036038101906106a5919061299d565b611563565b005b6106c660048036038101906106c1919061291a565b61166e565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190612a9e565b6116e1565b005b3480156106fd57600080fd5b5061071860048036038101906107139190612b9f565b611706565b60405161072591906130ac565b60405180910390f35b61074860048036038101906107439190612bcc565b6117a8565b005b34801561075657600080fd5b5061075f611a7e565b60405161076c919061328e565b60405180910390f35b34801561078157600080fd5b5061078a611a84565b604051610797919061328e565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c29190612887565b611a8a565b6040516107d49190613076565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff919061285a565b611b1e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108915750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108a7906134d2565b80601f01602080910402602001604051908101604052809291908181526020018280546108d3906134d2565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905090565b600061093582611ba2565b61096b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b482610ed8565b90508073ffffffffffffffffffffffffffffffffffffffff166109d5611c01565b73ffffffffffffffffffffffffffffffffffffffff1614610a3857610a01816109fc611c01565b611a8a565b610a37576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610af5611c09565b818160109190610b06929190612571565b505050565b6000610b15611c87565b6001546000540303905090565b60096020528060005260406000206000915090505481565b6000610b4582611c8c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bac576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bb884611d5a565b91509150610bce8187610bc9611c01565b611d81565b610c1a57610be386610bde611c01565b611a8a565b610c19576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c81576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c8e8686866001611dc5565b8015610c9957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d6785610d43888887611dcb565b7c020000000000000000000000000000000000000000000000000000000017611df3565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610def576000600185019050600060046000838152602001908152602001600020541415610ded576000548114610dec578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e578686866001611e1e565b505050505050565b600a5481565b600e60019054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b610e93611c09565b610ea4610e9e61104a565b47611e24565b565b610ec18383836040518060200160405280600081525061166e565b505050565b610ece611c09565b80600c8190555050565b6000610ee382611c8c565b9050919050565b610ef2611c09565b610efa610b0b565b811015610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f339061314e565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fae576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611007611c09565b6110116000611f18565b565b61101b611c09565b80600a8190555050565b61102d611c09565b80600e60006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61107c611c09565b80600b8190555050565b606060038054611095906134d2565b80601f01602080910402602001604051908101604052809291908181526020018280546110c1906134d2565b801561110e5780601f106110e35761010080835404028352916020019161110e565b820191906000526020600020905b8154815290600101906020018083116110f157829003601f168201915b5050505050905090565b611120611c09565b818190508484905014611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f9061324e565b60405180910390fd5b600080611173610b0b565b905060005b868690508110156111bb5786868281811061119657611195613600565b5b90506020020135836111a89190613362565b9250806111b490613535565b9050611178565b50600d5482826111cb9190613362565b111561120c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112039061326e565b60405180910390fd5b6000915060005b848490508110156112795761126885858381811061123457611233613600565b5b9050602002016020810190611249919061285a565b88888481811061125c5761125b613600565b5b90506020020135611fde565b8061127290613535565b9050611213565b50505050505050565b600b5481565b3373ffffffffffffffffffffffffffffffffffffffff166112a761104a565b73ffffffffffffffffffffffffffffffffffffffff16141561132957600d54816112cf610b0b565b6112d99190613362565b111561131a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611311906130ee565b60405180910390fd5b6113243382611fde565b611542565b600e60009054906101000a900460ff16611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f9061310e565b60405180910390fd5b600d5481611384610b0b565b61138e9190613362565b11156113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c6906130ee565b60405180910390fd5b600c54811115611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b906131ee565b60405180910390fd5b80600b5461142291906133b8565b341015611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b9061312e565b60405180910390fd5b600c5481600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114b29190613362565b11156114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea9061320e565b60405180910390fd5b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115413382611fde565b5b50565b61154d611c09565b8181600f919061155e929190612571565b505050565b8060076000611570611c01565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661161d611c01565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116629190613076565b60405180910390a35050565b611679848484610b3a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116db576116a484848484611ffc565b6116da576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6116e9611c09565b80600e60016101000a81548160ff02191690831515021790555050565b606061171182611ba2565b611747576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061175161215c565b905060008151141561177257604051806020016040528060008152506117a0565b8061177c846121ee565b601060405160200161179093929190612fc9565b6040516020818303038152906040525b915050919050565b600e60019054906101000a900460ff166117f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ee906131ae565b60405180910390fd5b600d5483611803610b0b565b61180d9190613362565b111561184e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611845906130ee565b60405180910390fd5b600c54831115611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a906131ee565b60405180910390fd5b82600b546118a191906133b8565b3410156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da9061312e565b60405180910390fd5b600c5483600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119319190613362565b1115611972576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119699061320e565b60405180910390fd5b6000336040516020016119859190612fae565b6040516020818303038152906040528051906020012090506119eb838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483612247565b611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a219061322e565b60405180910390fd5b83600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a783385611fde565b50505050565b600d5481565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b26611c09565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d906130ce565b60405180910390fd5b611b9f81611f18565b50565b600081611bad611c87565b11158015611bbc575060005482105b8015611bfa575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611c1161225e565b73ffffffffffffffffffffffffffffffffffffffff16611c2f61104a565b73ffffffffffffffffffffffffffffffffffffffff1614611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c906131ce565b60405180910390fd5b565b600090565b60008082905080611c9b611c87565b11611d2357600054811015611d225760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d20575b6000811415611d16576004600083600190039350838152602001908152602001600020549050611ceb565b8092505050611d55565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611de2868684612266565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5e9061318e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611e8d90612ffa565b60006040518083038185875af1925050503d8060008114611eca576040519150601f19603f3d011682016040523d82523d6000602084013e611ecf565b606091505b5050905080611f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0a9061316e565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ff882826040518060200160405280600081525061226f565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612022611c01565b8786866040518563ffffffff1660e01b8152600401612044949392919061302a565b602060405180830381600087803b15801561205e57600080fd5b505af192505050801561208f57506040513d601f19601f8201168201806040525081019061208c9190612b25565b60015b612109573d80600081146120bf576040519150601f19603f3d011682016040523d82523d6000602084013e6120c4565b606091505b50600081511415612101576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f805461216b906134d2565b80601f0160208091040260200160405190810160405280929190818152602001828054612197906134d2565b80156121e45780601f106121b9576101008083540402835291602001916121e4565b820191906000526020600020905b8154815290600101906020018083116121c757829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561223257600184039350600a81066030018453600a810490508061222d57612232565b612207565b50828103602084039350808452505050919050565b600082612254858461230c565b1490509392505050565b600033905090565b60009392505050565b6122798383612362565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461230757600080549050600083820390505b6122b96000868380600101945086611ffc565b6122ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122a657816000541461230457600080fd5b50505b505050565b60008082905060005b8451811015612357576123428286838151811061233557612334613600565b5b602002602001015161251f565b9150808061234f90613535565b915050612315565b508091505092915050565b60008054905060008214156123a3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123b06000848385611dc5565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612427836124186000866000611dcb565b6124218561254a565b17611df3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146124c857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061248d565b506000821415612504576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061251a6000848385611e1e565b505050565b600081831061253757612532828461255a565b612542565b612541838361255a565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b82805461257d906134d2565b90600052602060002090601f01602090048101928261259f57600085556125e6565b82601f106125b857803560ff19168380011785556125e6565b828001600101855582156125e6579182015b828111156125e55782358255916020019190600101906125ca565b5b5090506125f391906125f7565b5090565b5b808211156126105760008160009055506001016125f8565b5090565b6000612627612622846132ce565b6132a9565b9050828152602081018484840111156126435761264261366d565b5b61264e848285613490565b509392505050565b60008135905061266581613973565b92915050565b60008083601f84011261268157612680613663565b5b8235905067ffffffffffffffff81111561269e5761269d61365e565b5b6020830191508360208202830111156126ba576126b9613668565b5b9250929050565b60008083601f8401126126d7576126d6613663565b5b8235905067ffffffffffffffff8111156126f4576126f361365e565b5b6020830191508360208202830111156127105761270f613668565b5b9250929050565b60008083601f84011261272d5761272c613663565b5b8235905067ffffffffffffffff81111561274a5761274961365e565b5b60208301915083602082028301111561276657612765613668565b5b9250929050565b60008135905061277c8161398a565b92915050565b600081359050612791816139a1565b92915050565b6000813590506127a6816139b8565b92915050565b6000815190506127bb816139b8565b92915050565b600082601f8301126127d6576127d5613663565b5b81356127e6848260208601612614565b91505092915050565b60008083601f84011261280557612804613663565b5b8235905067ffffffffffffffff8111156128225761282161365e565b5b60208301915083600182028301111561283e5761283d613668565b5b9250929050565b600081359050612854816139cf565b92915050565b6000602082840312156128705761286f613677565b5b600061287e84828501612656565b91505092915050565b6000806040838503121561289e5761289d613677565b5b60006128ac85828601612656565b92505060206128bd85828601612656565b9150509250929050565b6000806000606084860312156128e0576128df613677565b5b60006128ee86828701612656565b93505060206128ff86828701612656565b925050604061291086828701612845565b9150509250925092565b6000806000806080858703121561293457612933613677565b5b600061294287828801612656565b945050602061295387828801612656565b935050604061296487828801612845565b925050606085013567ffffffffffffffff81111561298557612984613672565b5b612991878288016127c1565b91505092959194509250565b600080604083850312156129b4576129b3613677565b5b60006129c285828601612656565b92505060206129d38582860161276d565b9150509250929050565b600080604083850312156129f4576129f3613677565b5b6000612a0285828601612656565b9250506020612a1385828601612845565b9150509250929050565b60008060008060408587031215612a3757612a36613677565b5b600085013567ffffffffffffffff811115612a5557612a54613672565b5b612a6187828801612717565b9450945050602085013567ffffffffffffffff811115612a8457612a83613672565b5b612a908782880161266b565b925092505092959194509250565b600060208284031215612ab457612ab3613677565b5b6000612ac28482850161276d565b91505092915050565b600060208284031215612ae157612ae0613677565b5b6000612aef84828501612782565b91505092915050565b600060208284031215612b0e57612b0d613677565b5b6000612b1c84828501612797565b91505092915050565b600060208284031215612b3b57612b3a613677565b5b6000612b49848285016127ac565b91505092915050565b60008060208385031215612b6957612b68613677565b5b600083013567ffffffffffffffff811115612b8757612b86613672565b5b612b93858286016127ef565b92509250509250929050565b600060208284031215612bb557612bb4613677565b5b6000612bc384828501612845565b91505092915050565b600080600060408486031215612be557612be4613677565b5b6000612bf386828701612845565b935050602084013567ffffffffffffffff811115612c1457612c13613672565b5b612c20868287016126c1565b92509250509250925092565b612c3581613412565b82525050565b612c4c612c4782613412565b61357e565b82525050565b612c5b81613424565b82525050565b612c6a81613430565b82525050565b6000612c7b82613314565b612c85818561332a565b9350612c9581856020860161349f565b612c9e8161367c565b840191505092915050565b6000612cb48261331f565b612cbe8185613346565b9350612cce81856020860161349f565b612cd78161367c565b840191505092915050565b6000612ced8261331f565b612cf78185613357565b9350612d0781856020860161349f565b80840191505092915050565b60008154612d20816134d2565b612d2a8186613357565b94506001821660008114612d455760018114612d5657612d89565b60ff19831686528186019350612d89565b612d5f856132ff565b60005b83811015612d8157815481890152600182019150602081019050612d62565b838801955050505b50505092915050565b6000612d9f602683613346565b9150612daa8261369a565b604082019050919050565b6000612dc2601383613346565b9150612dcd826136e9565b602082019050919050565b6000612de5600f83613346565b9150612df082613712565b602082019050919050565b6000612e08601283613346565b9150612e138261373b565b602082019050919050565b6000612e2b602e83613346565b9150612e3682613764565b604082019050919050565b6000612e4e603a83613346565b9150612e59826137b3565b604082019050919050565b6000612e71601d83613346565b9150612e7c82613802565b602082019050919050565b6000612e94601483613346565b9150612e9f8261382b565b602082019050919050565b6000612eb7602083613346565b9150612ec282613854565b602082019050919050565b6000612eda600883613346565b9150612ee58261387d565b602082019050919050565b6000612efd60008361333b565b9150612f08826138a6565b600082019050919050565b6000612f20601283613346565b9150612f2b826138a9565b602082019050919050565b6000612f43600f83613346565b9150612f4e826138d2565b602082019050919050565b6000612f66602c83613346565b9150612f71826138fb565b604082019050919050565b6000612f89601983613346565b9150612f948261394a565b602082019050919050565b612fa881613486565b82525050565b6000612fba8284612c3b565b60148201915081905092915050565b6000612fd58286612ce2565b9150612fe18285612ce2565b9150612fed8284612d13565b9150819050949350505050565b600061300582612ef0565b9150819050919050565b60006020820190506130246000830184612c2c565b92915050565b600060808201905061303f6000830187612c2c565b61304c6020830186612c2c565b6130596040830185612f9f565b818103606083015261306b8184612c70565b905095945050505050565b600060208201905061308b6000830184612c52565b92915050565b60006020820190506130a66000830184612c61565b92915050565b600060208201905081810360008301526130c68184612ca9565b905092915050565b600060208201905081810360008301526130e781612d92565b9050919050565b6000602082019050818103600083015261310781612db5565b9050919050565b6000602082019050818103600083015261312781612dd8565b9050919050565b6000602082019050818103600083015261314781612dfb565b9050919050565b6000602082019050818103600083015261316781612e1e565b9050919050565b6000602082019050818103600083015261318781612e41565b9050919050565b600060208201905081810360008301526131a781612e64565b9050919050565b600060208201905081810360008301526131c781612e87565b9050919050565b600060208201905081810360008301526131e781612eaa565b9050919050565b6000602082019050818103600083015261320781612ecd565b9050919050565b6000602082019050818103600083015261322781612f13565b9050919050565b6000602082019050818103600083015261324781612f36565b9050919050565b6000602082019050818103600083015261326781612f59565b9050919050565b6000602082019050818103600083015261328781612f7c565b9050919050565b60006020820190506132a36000830184612f9f565b92915050565b60006132b36132c4565b90506132bf8282613504565b919050565b6000604051905090565b600067ffffffffffffffff8211156132e9576132e861362f565b5b6132f28261367c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061336d82613486565b915061337883613486565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133ad576133ac6135a2565b5b828201905092915050565b60006133c382613486565b91506133ce83613486565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613407576134066135a2565b5b828202905092915050565b600061341d82613466565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134bd5780820151818401526020810190506134a2565b838111156134cc576000848401525b50505050565b600060028204905060018216806134ea57607f821691505b602082108114156134fe576134fd6135d1565b5b50919050565b61350d8261367c565b810181811067ffffffffffffffff8211171561352c5761352b61362f565b5b80604052505050565b600061354082613486565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613573576135726135a2565b5b600182019050919050565b600061358982613590565b9050919050565b600061359b8261368d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d617820737570706c7920657863656564656400000000000000000000000000600082015250565b7f73616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b7f696e73756666696369656e742076616c75650000000000000000000000000000600082015250565b7f53706563696669656420737570706c79206973206c6f776572207468616e206360008201527f757272656e742062616c616e6365000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f77686974656c697374206e6f7420616374697665000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f746f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b50565b7f616c7265616479206d696e746564206d61780000000000000000000000000000600082015250565b7f6e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f4d7573742070726f7669646520657175616c207175616e74697469657320616e60008201527f6420726563697069656e74730000000000000000000000000000000000000000602082015250565b7f4d696e742f6f72646572206578636565647320737570706c7900000000000000600082015250565b61397c81613412565b811461398757600080fd5b50565b61399381613424565b811461399e57600080fd5b50565b6139aa81613430565b81146139b557600080fd5b50565b6139c18161343a565b81146139cc57600080fd5b50565b6139d881613486565b81146139e357600080fd5b5056fea264697066735822122008b4eb37b8513207fd97839494be5ed5e183153864aa83ea695525355f05264364736f6c63430008070033
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80637cb6475911610118578063a22cb465116100a0578063d2cab0561161006f578063d2cab0561461072e578063d5abeb011461074a578063e640cf7d14610775578063e985e9c5146107a0578063f2fde38b146107dd5761020f565b8063a22cb46514610683578063b88d4fde146106ac578063c3b754dc146106c8578063c87b56dd146106f15761020f565b806395d89b41116100e757806395d89b41146105bf57806396ea3a47146105ea578063a035b1fe14610613578063a0712d681461063e578063a0bcfc7f1461065a5761020f565b80637cb6475914610519578063841718a6146105425780638da5cb5b1461056b57806391b7f5ed146105965761020f565b806331ffd6f11161019b5780634a65a5751161016a5780634a65a575146104365780636352211e1461045f5780636f8b44b01461049c57806370a08231146104c5578063715018a6146105025761020f565b806331ffd6f1146103ad57806333bc1c5c146103d85780633ccfd60b1461040357806342842e0e1461041a5761020f565b806316ba10e0116101e257806316ba10e0146102d557806318160ddd146102fe5780631e7269c51461032957806323b872dd146103665780632eb4a7ab146103825761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612af8565b610806565b6040516102489190613076565b60405180910390f35b34801561025d57600080fd5b50610266610898565b60405161027391906130ac565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612b9f565b61092a565b6040516102b0919061300f565b60405180910390f35b6102d360048036038101906102ce91906129dd565b6109a9565b005b3480156102e157600080fd5b506102fc60048036038101906102f79190612b52565b610aed565b005b34801561030a57600080fd5b50610313610b0b565b604051610320919061328e565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b919061285a565b610b22565b60405161035d919061328e565b60405180910390f35b610380600480360381019061037b91906128c7565b610b3a565b005b34801561038e57600080fd5b50610397610e5f565b6040516103a49190613091565b60405180910390f35b3480156103b957600080fd5b506103c2610e65565b6040516103cf9190613076565b60405180910390f35b3480156103e457600080fd5b506103ed610e78565b6040516103fa9190613076565b60405180910390f35b34801561040f57600080fd5b50610418610e8b565b005b610434600480360381019061042f91906128c7565b610ea6565b005b34801561044257600080fd5b5061045d60048036038101906104589190612b9f565b610ec6565b005b34801561046b57600080fd5b5061048660048036038101906104819190612b9f565b610ed8565b604051610493919061300f565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be9190612b9f565b610eea565b005b3480156104d157600080fd5b506104ec60048036038101906104e7919061285a565b610f46565b6040516104f9919061328e565b60405180910390f35b34801561050e57600080fd5b50610517610fff565b005b34801561052557600080fd5b50610540600480360381019061053b9190612acb565b611013565b005b34801561054e57600080fd5b5061056960048036038101906105649190612a9e565b611025565b005b34801561057757600080fd5b5061058061104a565b60405161058d919061300f565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190612b9f565b611074565b005b3480156105cb57600080fd5b506105d4611086565b6040516105e191906130ac565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190612a1d565b611118565b005b34801561061f57600080fd5b50610628611282565b604051610635919061328e565b60405180910390f35b61065860048036038101906106539190612b9f565b611288565b005b34801561066657600080fd5b50610681600480360381019061067c9190612b52565b611545565b005b34801561068f57600080fd5b506106aa60048036038101906106a5919061299d565b611563565b005b6106c660048036038101906106c1919061291a565b61166e565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190612a9e565b6116e1565b005b3480156106fd57600080fd5b5061071860048036038101906107139190612b9f565b611706565b60405161072591906130ac565b60405180910390f35b61074860048036038101906107439190612bcc565b6117a8565b005b34801561075657600080fd5b5061075f611a7e565b60405161076c919061328e565b60405180910390f35b34801561078157600080fd5b5061078a611a84565b604051610797919061328e565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c29190612887565b611a8a565b6040516107d49190613076565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff919061285a565b611b1e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108915750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108a7906134d2565b80601f01602080910402602001604051908101604052809291908181526020018280546108d3906134d2565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905090565b600061093582611ba2565b61096b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b482610ed8565b90508073ffffffffffffffffffffffffffffffffffffffff166109d5611c01565b73ffffffffffffffffffffffffffffffffffffffff1614610a3857610a01816109fc611c01565b611a8a565b610a37576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610af5611c09565b818160109190610b06929190612571565b505050565b6000610b15611c87565b6001546000540303905090565b60096020528060005260406000206000915090505481565b6000610b4582611c8c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bac576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bb884611d5a565b91509150610bce8187610bc9611c01565b611d81565b610c1a57610be386610bde611c01565b611a8a565b610c19576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c81576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c8e8686866001611dc5565b8015610c9957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d6785610d43888887611dcb565b7c020000000000000000000000000000000000000000000000000000000017611df3565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610def576000600185019050600060046000838152602001908152602001600020541415610ded576000548114610dec578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e578686866001611e1e565b505050505050565b600a5481565b600e60019054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b610e93611c09565b610ea4610e9e61104a565b47611e24565b565b610ec18383836040518060200160405280600081525061166e565b505050565b610ece611c09565b80600c8190555050565b6000610ee382611c8c565b9050919050565b610ef2611c09565b610efa610b0b565b811015610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f339061314e565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fae576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611007611c09565b6110116000611f18565b565b61101b611c09565b80600a8190555050565b61102d611c09565b80600e60006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61107c611c09565b80600b8190555050565b606060038054611095906134d2565b80601f01602080910402602001604051908101604052809291908181526020018280546110c1906134d2565b801561110e5780601f106110e35761010080835404028352916020019161110e565b820191906000526020600020905b8154815290600101906020018083116110f157829003601f168201915b5050505050905090565b611120611c09565b818190508484905014611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f9061324e565b60405180910390fd5b600080611173610b0b565b905060005b868690508110156111bb5786868281811061119657611195613600565b5b90506020020135836111a89190613362565b9250806111b490613535565b9050611178565b50600d5482826111cb9190613362565b111561120c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112039061326e565b60405180910390fd5b6000915060005b848490508110156112795761126885858381811061123457611233613600565b5b9050602002016020810190611249919061285a565b88888481811061125c5761125b613600565b5b90506020020135611fde565b8061127290613535565b9050611213565b50505050505050565b600b5481565b3373ffffffffffffffffffffffffffffffffffffffff166112a761104a565b73ffffffffffffffffffffffffffffffffffffffff16141561132957600d54816112cf610b0b565b6112d99190613362565b111561131a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611311906130ee565b60405180910390fd5b6113243382611fde565b611542565b600e60009054906101000a900460ff16611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f9061310e565b60405180910390fd5b600d5481611384610b0b565b61138e9190613362565b11156113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c6906130ee565b60405180910390fd5b600c54811115611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b906131ee565b60405180910390fd5b80600b5461142291906133b8565b341015611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b9061312e565b60405180910390fd5b600c5481600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114b29190613362565b11156114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea9061320e565b60405180910390fd5b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115413382611fde565b5b50565b61154d611c09565b8181600f919061155e929190612571565b505050565b8060076000611570611c01565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661161d611c01565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116629190613076565b60405180910390a35050565b611679848484610b3a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116db576116a484848484611ffc565b6116da576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6116e9611c09565b80600e60016101000a81548160ff02191690831515021790555050565b606061171182611ba2565b611747576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061175161215c565b905060008151141561177257604051806020016040528060008152506117a0565b8061177c846121ee565b601060405160200161179093929190612fc9565b6040516020818303038152906040525b915050919050565b600e60019054906101000a900460ff166117f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ee906131ae565b60405180910390fd5b600d5483611803610b0b565b61180d9190613362565b111561184e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611845906130ee565b60405180910390fd5b600c54831115611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a906131ee565b60405180910390fd5b82600b546118a191906133b8565b3410156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da9061312e565b60405180910390fd5b600c5483600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119319190613362565b1115611972576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119699061320e565b60405180910390fd5b6000336040516020016119859190612fae565b6040516020818303038152906040528051906020012090506119eb838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483612247565b611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a219061322e565b60405180910390fd5b83600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a783385611fde565b50505050565b600d5481565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b26611c09565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d906130ce565b60405180910390fd5b611b9f81611f18565b50565b600081611bad611c87565b11158015611bbc575060005482105b8015611bfa575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611c1161225e565b73ffffffffffffffffffffffffffffffffffffffff16611c2f61104a565b73ffffffffffffffffffffffffffffffffffffffff1614611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c906131ce565b60405180910390fd5b565b600090565b60008082905080611c9b611c87565b11611d2357600054811015611d225760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d20575b6000811415611d16576004600083600190039350838152602001908152602001600020549050611ceb565b8092505050611d55565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611de2868684612266565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5e9061318e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611e8d90612ffa565b60006040518083038185875af1925050503d8060008114611eca576040519150601f19603f3d011682016040523d82523d6000602084013e611ecf565b606091505b5050905080611f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0a9061316e565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ff882826040518060200160405280600081525061226f565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612022611c01565b8786866040518563ffffffff1660e01b8152600401612044949392919061302a565b602060405180830381600087803b15801561205e57600080fd5b505af192505050801561208f57506040513d601f19601f8201168201806040525081019061208c9190612b25565b60015b612109573d80600081146120bf576040519150601f19603f3d011682016040523d82523d6000602084013e6120c4565b606091505b50600081511415612101576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f805461216b906134d2565b80601f0160208091040260200160405190810160405280929190818152602001828054612197906134d2565b80156121e45780601f106121b9576101008083540402835291602001916121e4565b820191906000526020600020905b8154815290600101906020018083116121c757829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561223257600184039350600a81066030018453600a810490508061222d57612232565b612207565b50828103602084039350808452505050919050565b600082612254858461230c565b1490509392505050565b600033905090565b60009392505050565b6122798383612362565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461230757600080549050600083820390505b6122b96000868380600101945086611ffc565b6122ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122a657816000541461230457600080fd5b50505b505050565b60008082905060005b8451811015612357576123428286838151811061233557612334613600565b5b602002602001015161251f565b9150808061234f90613535565b915050612315565b508091505092915050565b60008054905060008214156123a3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123b06000848385611dc5565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612427836124186000866000611dcb565b6124218561254a565b17611df3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146124c857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061248d565b506000821415612504576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061251a6000848385611e1e565b505050565b600081831061253757612532828461255a565b612542565b612541838361255a565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b82805461257d906134d2565b90600052602060002090601f01602090048101928261259f57600085556125e6565b82601f106125b857803560ff19168380011785556125e6565b828001600101855582156125e6579182015b828111156125e55782358255916020019190600101906125ca565b5b5090506125f391906125f7565b5090565b5b808211156126105760008160009055506001016125f8565b5090565b6000612627612622846132ce565b6132a9565b9050828152602081018484840111156126435761264261366d565b5b61264e848285613490565b509392505050565b60008135905061266581613973565b92915050565b60008083601f84011261268157612680613663565b5b8235905067ffffffffffffffff81111561269e5761269d61365e565b5b6020830191508360208202830111156126ba576126b9613668565b5b9250929050565b60008083601f8401126126d7576126d6613663565b5b8235905067ffffffffffffffff8111156126f4576126f361365e565b5b6020830191508360208202830111156127105761270f613668565b5b9250929050565b60008083601f84011261272d5761272c613663565b5b8235905067ffffffffffffffff81111561274a5761274961365e565b5b60208301915083602082028301111561276657612765613668565b5b9250929050565b60008135905061277c8161398a565b92915050565b600081359050612791816139a1565b92915050565b6000813590506127a6816139b8565b92915050565b6000815190506127bb816139b8565b92915050565b600082601f8301126127d6576127d5613663565b5b81356127e6848260208601612614565b91505092915050565b60008083601f84011261280557612804613663565b5b8235905067ffffffffffffffff8111156128225761282161365e565b5b60208301915083600182028301111561283e5761283d613668565b5b9250929050565b600081359050612854816139cf565b92915050565b6000602082840312156128705761286f613677565b5b600061287e84828501612656565b91505092915050565b6000806040838503121561289e5761289d613677565b5b60006128ac85828601612656565b92505060206128bd85828601612656565b9150509250929050565b6000806000606084860312156128e0576128df613677565b5b60006128ee86828701612656565b93505060206128ff86828701612656565b925050604061291086828701612845565b9150509250925092565b6000806000806080858703121561293457612933613677565b5b600061294287828801612656565b945050602061295387828801612656565b935050604061296487828801612845565b925050606085013567ffffffffffffffff81111561298557612984613672565b5b612991878288016127c1565b91505092959194509250565b600080604083850312156129b4576129b3613677565b5b60006129c285828601612656565b92505060206129d38582860161276d565b9150509250929050565b600080604083850312156129f4576129f3613677565b5b6000612a0285828601612656565b9250506020612a1385828601612845565b9150509250929050565b60008060008060408587031215612a3757612a36613677565b5b600085013567ffffffffffffffff811115612a5557612a54613672565b5b612a6187828801612717565b9450945050602085013567ffffffffffffffff811115612a8457612a83613672565b5b612a908782880161266b565b925092505092959194509250565b600060208284031215612ab457612ab3613677565b5b6000612ac28482850161276d565b91505092915050565b600060208284031215612ae157612ae0613677565b5b6000612aef84828501612782565b91505092915050565b600060208284031215612b0e57612b0d613677565b5b6000612b1c84828501612797565b91505092915050565b600060208284031215612b3b57612b3a613677565b5b6000612b49848285016127ac565b91505092915050565b60008060208385031215612b6957612b68613677565b5b600083013567ffffffffffffffff811115612b8757612b86613672565b5b612b93858286016127ef565b92509250509250929050565b600060208284031215612bb557612bb4613677565b5b6000612bc384828501612845565b91505092915050565b600080600060408486031215612be557612be4613677565b5b6000612bf386828701612845565b935050602084013567ffffffffffffffff811115612c1457612c13613672565b5b612c20868287016126c1565b92509250509250925092565b612c3581613412565b82525050565b612c4c612c4782613412565b61357e565b82525050565b612c5b81613424565b82525050565b612c6a81613430565b82525050565b6000612c7b82613314565b612c85818561332a565b9350612c9581856020860161349f565b612c9e8161367c565b840191505092915050565b6000612cb48261331f565b612cbe8185613346565b9350612cce81856020860161349f565b612cd78161367c565b840191505092915050565b6000612ced8261331f565b612cf78185613357565b9350612d0781856020860161349f565b80840191505092915050565b60008154612d20816134d2565b612d2a8186613357565b94506001821660008114612d455760018114612d5657612d89565b60ff19831686528186019350612d89565b612d5f856132ff565b60005b83811015612d8157815481890152600182019150602081019050612d62565b838801955050505b50505092915050565b6000612d9f602683613346565b9150612daa8261369a565b604082019050919050565b6000612dc2601383613346565b9150612dcd826136e9565b602082019050919050565b6000612de5600f83613346565b9150612df082613712565b602082019050919050565b6000612e08601283613346565b9150612e138261373b565b602082019050919050565b6000612e2b602e83613346565b9150612e3682613764565b604082019050919050565b6000612e4e603a83613346565b9150612e59826137b3565b604082019050919050565b6000612e71601d83613346565b9150612e7c82613802565b602082019050919050565b6000612e94601483613346565b9150612e9f8261382b565b602082019050919050565b6000612eb7602083613346565b9150612ec282613854565b602082019050919050565b6000612eda600883613346565b9150612ee58261387d565b602082019050919050565b6000612efd60008361333b565b9150612f08826138a6565b600082019050919050565b6000612f20601283613346565b9150612f2b826138a9565b602082019050919050565b6000612f43600f83613346565b9150612f4e826138d2565b602082019050919050565b6000612f66602c83613346565b9150612f71826138fb565b604082019050919050565b6000612f89601983613346565b9150612f948261394a565b602082019050919050565b612fa881613486565b82525050565b6000612fba8284612c3b565b60148201915081905092915050565b6000612fd58286612ce2565b9150612fe18285612ce2565b9150612fed8284612d13565b9150819050949350505050565b600061300582612ef0565b9150819050919050565b60006020820190506130246000830184612c2c565b92915050565b600060808201905061303f6000830187612c2c565b61304c6020830186612c2c565b6130596040830185612f9f565b818103606083015261306b8184612c70565b905095945050505050565b600060208201905061308b6000830184612c52565b92915050565b60006020820190506130a66000830184612c61565b92915050565b600060208201905081810360008301526130c68184612ca9565b905092915050565b600060208201905081810360008301526130e781612d92565b9050919050565b6000602082019050818103600083015261310781612db5565b9050919050565b6000602082019050818103600083015261312781612dd8565b9050919050565b6000602082019050818103600083015261314781612dfb565b9050919050565b6000602082019050818103600083015261316781612e1e565b9050919050565b6000602082019050818103600083015261318781612e41565b9050919050565b600060208201905081810360008301526131a781612e64565b9050919050565b600060208201905081810360008301526131c781612e87565b9050919050565b600060208201905081810360008301526131e781612eaa565b9050919050565b6000602082019050818103600083015261320781612ecd565b9050919050565b6000602082019050818103600083015261322781612f13565b9050919050565b6000602082019050818103600083015261324781612f36565b9050919050565b6000602082019050818103600083015261326781612f59565b9050919050565b6000602082019050818103600083015261328781612f7c565b9050919050565b60006020820190506132a36000830184612f9f565b92915050565b60006132b36132c4565b90506132bf8282613504565b919050565b6000604051905090565b600067ffffffffffffffff8211156132e9576132e861362f565b5b6132f28261367c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061336d82613486565b915061337883613486565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133ad576133ac6135a2565b5b828201905092915050565b60006133c382613486565b91506133ce83613486565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613407576134066135a2565b5b828202905092915050565b600061341d82613466565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134bd5780820151818401526020810190506134a2565b838111156134cc576000848401525b50505050565b600060028204905060018216806134ea57607f821691505b602082108114156134fe576134fd6135d1565b5b50919050565b61350d8261367c565b810181811067ffffffffffffffff8211171561352c5761352b61362f565b5b80604052505050565b600061354082613486565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613573576135726135a2565b5b600182019050919050565b600061358982613590565b9050919050565b600061359b8261368d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d617820737570706c7920657863656564656400000000000000000000000000600082015250565b7f73616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b7f696e73756666696369656e742076616c75650000000000000000000000000000600082015250565b7f53706563696669656420737570706c79206973206c6f776572207468616e206360008201527f757272656e742062616c616e6365000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f77686974656c697374206e6f7420616374697665000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f746f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b50565b7f616c7265616479206d696e746564206d61780000000000000000000000000000600082015250565b7f6e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f4d7573742070726f7669646520657175616c207175616e74697469657320616e60008201527f6420726563697069656e74730000000000000000000000000000000000000000602082015250565b7f4d696e742f6f72646572206578636565647320737570706c7900000000000000600082015250565b61397c81613412565b811461398757600080fd5b50565b61399381613424565b811461399e57600080fd5b50565b6139aa81613430565b81146139b557600080fd5b50565b6139c18161343a565b81146139cc57600080fd5b50565b6139d881613486565b81146139e357600080fd5b5056fea264697066735822122008b4eb37b8513207fd97839494be5ed5e183153864aa83ea695525355f05264364736f6c63430008070033
Deployed Bytecode Sourcemap
72978:3813:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39600:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40502:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46993:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46426:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75816:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36253:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73094:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50632:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73141:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73316:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73282:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76681:107;;;;;;;;;;;;;:::i;:::-;;53553:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75300:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41895:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75928:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37437:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29304:103;;;;;;;;;;;;;:::i;:::-;;75414:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75516:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28656:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75212:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40678:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76134:542;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73172:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74064:647;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75718:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47551:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54344:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75615:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74852:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73435:621;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73245:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73211:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47942:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29562:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39600:639;39685:4;40024:10;40009:25;;:11;:25;;;;:102;;;;40101:10;40086:25;;:11;:25;;;;40009:102;:179;;;;40178:10;40163:25;;:11;:25;;;;40009:179;39989:199;;39600:639;;;:::o;40502:100::-;40556:13;40589:5;40582:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40502:100;:::o;46993:218::-;47069:7;47094:16;47102:7;47094;:16::i;:::-;47089:64;;47119:34;;;;;;;;;;;;;;47089:64;47173:15;:24;47189:7;47173:24;;;;;;;;;;;:30;;;;;;;;;;;;47166:37;;46993:218;;;:::o;46426:408::-;46515:13;46531:16;46539:7;46531;:16::i;:::-;46515:32;;46587:5;46564:28;;:19;:17;:19::i;:::-;:28;;;46560:175;;46612:44;46629:5;46636:19;:17;:19::i;:::-;46612:16;:44::i;:::-;46607:128;;46684:35;;;;;;;;;;;;;;46607:128;46560:175;46780:2;46747:15;:24;46763:7;46747:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;46818:7;46814:2;46798:28;;46807:5;46798:28;;;;;;;;;;;;46504:330;46426:408;;:::o;75816:106::-;28542:13;:11;:13::i;:::-;75907:10:::1;;75890:14;:27;;;;;;;:::i;:::-;;75816:106:::0;;:::o;36253:323::-;36314:7;36542:15;:13;:15::i;:::-;36527:12;;36511:13;;:28;:46;36504:53;;36253:323;:::o;73094:41::-;;;;;;;;;;;;;;;;;:::o;50632:2825::-;50774:27;50804;50823:7;50804:18;:27::i;:::-;50774:57;;50889:4;50848:45;;50864:19;50848:45;;;50844:86;;50902:28;;;;;;;;;;;;;;50844:86;50944:27;50973:23;51000:35;51027:7;51000:26;:35::i;:::-;50943:92;;;;51135:68;51160:15;51177:4;51183:19;:17;:19::i;:::-;51135:24;:68::i;:::-;51130:180;;51223:43;51240:4;51246:19;:17;:19::i;:::-;51223:16;:43::i;:::-;51218:92;;51275:35;;;;;;;;;;;;;;51218:92;51130:180;51341:1;51327:16;;:2;:16;;;51323:52;;;51352:23;;;;;;;;;;;;;;51323:52;51388:43;51410:4;51416:2;51420:7;51429:1;51388:21;:43::i;:::-;51524:15;51521:160;;;51664:1;51643:19;51636:30;51521:160;52061:18;:24;52080:4;52061:24;;;;;;;;;;;;;;;;52059:26;;;;;;;;;;;;52130:18;:22;52149:2;52130:22;;;;;;;;;;;;;;;;52128:24;;;;;;;;;;;52452:146;52489:2;52538:45;52553:4;52559:2;52563:19;52538:14;:45::i;:::-;32652:8;52510:73;52452:18;:146::i;:::-;52423:17;:26;52441:7;52423:26;;;;;;;;;;;:175;;;;52769:1;32652:8;52718:19;:47;:52;52714:627;;;52791:19;52823:1;52813:7;:11;52791:33;;52980:1;52946:17;:30;52964:11;52946:30;;;;;;;;;;;;:35;52942:384;;;53084:13;;53069:11;:28;53065:242;;53264:19;53231:17;:30;53249:11;53231:30;;;;;;;;;;;:52;;;;53065:242;52942:384;52772:569;52714:627;53388:7;53384:2;53369:27;;53378:4;53369:27;;;;;;;;;;;;53407:42;53428:4;53434:2;53438:7;53447:1;53407:20;:42::i;:::-;50763:2694;;;50632:2825;;;:::o;73141:25::-;;;;:::o;73316:33::-;;;;;;;;;;;;;:::o;73282:30::-;;;;;;;;;;;;;:::o;76681:107::-;28542:13;:11;:13::i;:::-;76725:58:::1;76751:7;:5;:7::i;:::-;76761:21;76725:17;:58::i;:::-;76681:107::o:0;53553:193::-;53699:39;53716:4;53722:2;53726:7;53699:39;;;;;;;;;;;;:16;:39::i;:::-;53553:193;;;:::o;75300:109::-;28542:13;:11;:13::i;:::-;75388:16:::1;75374:11;:30;;;;75300:109:::0;:::o;41895:152::-;41967:7;42010:27;42029:7;42010:18;:27::i;:::-;41987:52;;41895:152;;;:::o;75928:182::-;28542:13;:11;:13::i;:::-;76013::::1;:11;:13::i;:::-;75999:10;:27;;75991:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;76095:10;76083:9;:22;;;;75928:182:::0;:::o;37437:233::-;37509:7;37550:1;37533:19;;:5;:19;;;37529:60;;;37561:28;;;;;;;;;;;;;;37529:60;31596:13;37607:18;:25;37626:5;37607:25;;;;;;;;;;;;;;;;:55;37600:62;;37437:233;;;:::o;29304:103::-;28542:13;:11;:13::i;:::-;29369:30:::1;29396:1;29369:18;:30::i;:::-;29304:103::o:0;75414:97::-;28542:13;:11;:13::i;:::-;75495:11:::1;75482:10;:24;;;;75414:97:::0;:::o;75516:94::-;28542:13;:11;:13::i;:::-;75594:11:::1;75581:10;;:24;;;;;;;;;;;;;;;;;;75516:94:::0;:::o;28656:87::-;28702:7;28729:6;;;;;;;;;;;28722:13;;28656:87;:::o;75212:83::-;28542:13;:11;:13::i;:::-;75281:9:::1;75273:5;:17;;;;75212:83:::0;:::o;40678:104::-;40734:13;40767:7;40760:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40678:104;:::o;76134:542::-;28542:13;:11;:13::i;:::-;76255:9:::1;;:16;;76236:8;;:15;;:35;76228:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;76328:18;76355:14:::0;76372:13:::1;:11;:13::i;:::-;76355:30;;76394:6;76390:81;76410:8;;:15;;76406:1;:19;76390:81;;;76454:8;;76463:1;76454:11;;;;;;;:::i;:::-;;;;;;;;76437:28;;;;;:::i;:::-;;;76427:3;;;;:::i;:::-;;;76390:81;;;;76510:9;;76493:13;76484:6;:22;;;;:::i;:::-;:35;;76475:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;76555:20;;;76586:6;76582:90;76602:9;;:16;;76598:1;:20;76582:90;;;76630:36;76640:9;;76650:1;76640:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;76654:8;;76663:1;76654:11;;;;;;;:::i;:::-;;;;;;;;76630:9;:36::i;:::-;76620:3;;;;:::i;:::-;;;76582:90;;;;76223:453;;76134:542:::0;;;;:::o;73172:35::-;;;;:::o;74064:647::-;74163:10;74152:21;;:7;:5;:7::i;:::-;:21;;;74148:161;;;74217:9;;74205:8;74189:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;74181:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;74258:31;74268:10;74280:8;74258:9;:31::i;:::-;74297:7;;74148:161;74323:10;;;;;;;;;;;74315:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;74396:9;;74384:8;74368:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;74360:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;74454:11;;74442:8;:23;;74434:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;74512:8;74504:5;;:16;;;;:::i;:::-;74491:9;:29;;74483:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;74589:11;;74577:8;74556:6;:18;74563:10;74556:18;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;:44;;74548:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;74651:8;74630:6;:18;74637:10;74630:18;;;;;;;;;;;;;;;:29;;;;74672:31;74682:10;74694:8;74672:9;:31::i;:::-;74064:647;;:::o;75718:93::-;28542:13;:11;:13::i;:::-;75798:8:::1;;75788:7;:18;;;;;;;:::i;:::-;;75718:93:::0;;:::o;47551:234::-;47698:8;47646:18;:39;47665:19;:17;:19::i;:::-;47646:39;;;;;;;;;;;;;;;:49;47686:8;47646:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;47758:8;47722:55;;47737:19;:17;:19::i;:::-;47722:55;;;47768:8;47722:55;;;;;;:::i;:::-;;;;;;;;47551:234;;:::o;54344:407::-;54519:31;54532:4;54538:2;54542:7;54519:12;:31::i;:::-;54583:1;54565:2;:14;;;:19;54561:183;;54604:56;54635:4;54641:2;54645:7;54654:5;54604:30;:56::i;:::-;54599:145;;54688:40;;;;;;;;;;;;;;54599:145;54561:183;54344:407;;;;:::o;75615:98::-;28542:13;:11;:13::i;:::-;75699:9:::1;75683:13;;:25;;;;;;;;;;;;;;;;;;75615:98:::0;:::o;74852:334::-;74925:13;74956:16;74964:7;74956;:16::i;:::-;74951:59;;74981:29;;;;;;;;;;;;;;74951:59;75023:21;75047:10;:8;:10::i;:::-;75023:34;;75100:1;75081:7;75075:21;:26;;:103;;;;;;;;;;;;;;;;;75128:7;75137:18;75147:7;75137:9;:18::i;:::-;75157:14;75111:61;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75075:103;75068:110;;;74852:334;;;:::o;73435:621::-;73532:13;;;;;;;;;;;73524:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;73613:9;;73601:8;73585:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;73577:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;73671:11;;73659:8;:23;;73651:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;73729:8;73721:5;;:16;;;;:::i;:::-;73708:9;:29;;73700:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;73806:11;;73794:8;73773:6;:18;73780:10;73773:18;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;:44;;73765:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;73847:12;73889:10;73872:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;73862:39;;;;;;73847:54;;73914:43;73933:5;;73914:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73940:10;;73952:4;73914:18;:43::i;:::-;73906:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;74005:8;73984:6;:18;73991:10;73984:18;;;;;;;;;;;;;;;:29;;;;74020:31;74030:10;74042:8;74020:9;:31::i;:::-;73519:537;73435:621;;;:::o;73245:31::-;;;;:::o;73211:30::-;;;;:::o;47942:164::-;48039:4;48063:18;:25;48082:5;48063:25;;;;;;;;;;;;;;;:35;48089:8;48063:35;;;;;;;;;;;;;;;;;;;;;;;;;48056:42;;47942:164;;;;:::o;29562:201::-;28542:13;:11;:13::i;:::-;29671:1:::1;29651:22;;:8;:22;;;;29643:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29727:28;29746:8;29727:18;:28::i;:::-;29562:201:::0;:::o;48364:282::-;48429:4;48485:7;48466:15;:13;:15::i;:::-;:26;;:66;;;;;48519:13;;48509:7;:23;48466:66;:153;;;;;48618:1;32372:8;48570:17;:26;48588:7;48570:26;;;;;;;;;;;;:44;:49;48466:153;48446:173;;48364:282;;;:::o;70672:105::-;70732:7;70759:10;70752:17;;70672:105;:::o;28821:132::-;28896:12;:10;:12::i;:::-;28885:23;;:7;:5;:7::i;:::-;:23;;;28877:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28821:132::o;35769:92::-;35825:7;35769:92;:::o;43050:1275::-;43117:7;43137:12;43152:7;43137:22;;43220:4;43201:15;:13;:15::i;:::-;:23;43197:1061;;43254:13;;43247:4;:20;43243:1015;;;43292:14;43309:17;:23;43327:4;43309:23;;;;;;;;;;;;43292:40;;43426:1;32372:8;43398:6;:24;:29;43394:845;;;44063:113;44080:1;44070:6;:11;44063:113;;;44123:17;:25;44141:6;;;;;;;44123:25;;;;;;;;;;;;44114:34;;44063:113;;;44209:6;44202:13;;;;;;43394:845;43269:989;43243:1015;43197:1061;44286:31;;;;;;;;;;;;;;43050:1275;;;;:::o;49527:485::-;49629:27;49658:23;49699:38;49740:15;:24;49756:7;49740:24;;;;;;;;;;;49699:65;;49917:18;49894:41;;49974:19;49968:26;49949:45;;49879:126;49527:485;;;:::o;48755:659::-;48904:11;49069:16;49062:5;49058:28;49049:37;;49229:16;49218:9;49214:32;49201:45;;49379:15;49368:9;49365:30;49357:5;49346:9;49343:20;49340:56;49330:66;;48755:659;;;;;:::o;55413:159::-;;;;;:::o;69981:311::-;70116:7;70136:16;32776:3;70162:19;:41;;70136:68;;32776:3;70230:31;70241:4;70247:2;70251:9;70230:10;:31::i;:::-;70222:40;;:62;;70215:69;;;69981:311;;;;;:::o;44873:450::-;44953:14;45121:16;45114:5;45110:28;45101:37;;45298:5;45284:11;45259:23;45255:41;45252:52;45245:5;45242:63;45232:73;;44873:450;;;;:::o;56237:158::-;;;;;:::o;12535:317::-;12650:6;12625:21;:31;;12617:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12704:12;12722:9;:14;;12744:6;12722:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12703:52;;;12774:7;12766:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;12606:246;12535:317;;:::o;29923:191::-;29997:16;30016:6;;;;;;;;;;;29997:25;;30042:8;30033:6;;:17;;;;;;;;;;;;;;;;;;30097:8;30066:40;;30087:8;30066:40;;;;;;;;;;;;29986:128;29923:191;:::o;64504:112::-;64581:27;64591:2;64595:8;64581:27;;;;;;;;;;;;:9;:27::i;:::-;64504:112;;:::o;56835:716::-;56998:4;57044:2;57019:45;;;57065:19;:17;:19::i;:::-;57086:4;57092:7;57101:5;57019:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57015:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57319:1;57302:6;:13;:18;57298:235;;;57348:40;;;;;;;;;;;;;;57298:235;57491:6;57485:13;57476:6;57472:2;57468:15;57461:38;57015:529;57188:54;;;57178:64;;;:6;:64;;;;57171:71;;;56835:716;;;;;;:::o;74736:108::-;74796:13;74829:7;74822:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74736:108;:::o;70879:1745::-;70944:17;71378:4;71371;71365:11;71361:22;71470:1;71464:4;71457:15;71545:4;71542:1;71538:12;71531:19;;71627:1;71622:3;71615:14;71731:3;71970:5;71952:428;71978:1;71952:428;;;72018:1;72013:3;72009:11;72002:18;;72189:2;72183:4;72179:13;72175:2;72171:22;72166:3;72158:36;72283:2;72277:4;72273:13;72265:21;;72350:4;72340:25;;72358:5;;72340:25;71952:428;;;71956:21;72419:3;72414;72410:13;72534:4;72529:3;72525:14;72518:21;;72599:6;72594:3;72587:19;70983:1634;;;70879:1745;;;:::o;19838:190::-;19963:4;20016;19987:25;20000:5;20007:4;19987:12;:25::i;:::-;:33;19980:40;;19838:190;;;;;:::o;715:98::-;768:7;795:10;788:17;;715:98;:::o;69682:147::-;69819:6;69682:147;;;;;:::o;63731:689::-;63862:19;63868:2;63872:8;63862:5;:19::i;:::-;63941:1;63923:2;:14;;;:19;63919:483;;63963:11;63977:13;;63963:27;;64009:13;64031:8;64025:3;:14;64009:30;;64058:233;64089:62;64128:1;64132:2;64136:7;;;;;;64145:5;64089:30;:62::i;:::-;64084:167;;64187:40;;;;;;;;;;;;;;64084:167;64286:3;64278:5;:11;64058:233;;64373:3;64356:13;;:20;64352:34;;64378:8;;;64352:34;63944:458;;63919:483;63731:689;;;:::o;20705:296::-;20788:7;20808:20;20831:4;20808:27;;20851:9;20846:118;20870:5;:12;20866:1;:16;20846:118;;;20919:33;20929:12;20943:5;20949:1;20943:8;;;;;;;;:::i;:::-;;;;;;;;20919:9;:33::i;:::-;20904:48;;20884:3;;;;;:::i;:::-;;;;20846:118;;;;20981:12;20974:19;;;20705:296;;;;:::o;58013:2966::-;58086:20;58109:13;;58086:36;;58149:1;58137:8;:13;58133:44;;;58159:18;;;;;;;;;;;;;;58133:44;58190:61;58220:1;58224:2;58228:12;58242:8;58190:21;:61::i;:::-;58734:1;31734:2;58704:1;:26;;58703:32;58691:8;:45;58665:18;:22;58684:2;58665:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;59013:139;59050:2;59104:33;59127:1;59131:2;59135:1;59104:14;:33::i;:::-;59071:30;59092:8;59071:20;:30::i;:::-;:66;59013:18;:139::i;:::-;58979:17;:31;58997:12;58979:31;;;;;;;;;;;:173;;;;59169:16;59200:11;59229:8;59214:12;:23;59200:37;;59750:16;59746:2;59742:25;59730:37;;60122:12;60082:8;60041:1;59979:25;59920:1;59859;59832:335;60493:1;60479:12;60475:20;60433:346;60534:3;60525:7;60522:16;60433:346;;60752:7;60742:8;60739:1;60712:25;60709:1;60706;60701:59;60587:1;60578:7;60574:15;60563:26;;60433:346;;;60437:77;60824:1;60812:8;:13;60808:45;;;60834:19;;;;;;;;;;;;;;60808:45;60886:3;60870:13;:19;;;;58439:2462;;60911:60;60940:1;60944:2;60948:12;60962:8;60911:20;:60::i;:::-;58075:2904;58013:2966;;:::o;26912:149::-;26975:7;27006:1;27002;:5;:51;;27033:20;27048:1;27051;27033:14;:20::i;:::-;27002:51;;;27010:20;27025:1;27028;27010:14;:20::i;:::-;27002:51;26995:58;;26912:149;;;;:::o;45425:324::-;45495:14;45728:1;45718:8;45715:15;45689:24;45685:46;45675:56;;45425:324;;;:::o;27069:268::-;27137:13;27244:1;27238:4;27231:15;27273:1;27267:4;27260:15;27314:4;27308;27298:21;27289:30;;27069:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1176:::-;1249:8;1259:6;1309:3;1302:4;1294:6;1290:17;1286:27;1276:122;;1317:79;;:::i;:::-;1276:122;1430:6;1417:20;1407:30;;1460:18;1452:6;1449:30;1446:117;;;1482:79;;:::i;:::-;1446:117;1596:4;1588:6;1584:17;1572:29;;1650:3;1642:4;1634:6;1630:17;1620:8;1616:32;1613:41;1610:128;;;1657:79;;:::i;:::-;1610:128;1176:568;;;;;:::o;1767:::-;1840:8;1850:6;1900:3;1893:4;1885:6;1881:17;1877:27;1867:122;;1908:79;;:::i;:::-;1867:122;2021:6;2008:20;1998:30;;2051:18;2043:6;2040:30;2037:117;;;2073:79;;:::i;:::-;2037:117;2187:4;2179:6;2175:17;2163:29;;2241:3;2233:4;2225:6;2221:17;2211:8;2207:32;2204:41;2201:128;;;2248:79;;:::i;:::-;2201:128;1767:568;;;;;:::o;2341:133::-;2384:5;2422:6;2409:20;2400:29;;2438:30;2462:5;2438:30;:::i;:::-;2341:133;;;;:::o;2480:139::-;2526:5;2564:6;2551:20;2542:29;;2580:33;2607:5;2580:33;:::i;:::-;2480:139;;;;:::o;2625:137::-;2670:5;2708:6;2695:20;2686:29;;2724:32;2750:5;2724:32;:::i;:::-;2625:137;;;;:::o;2768:141::-;2824:5;2855:6;2849:13;2840:22;;2871:32;2897:5;2871:32;:::i;:::-;2768:141;;;;:::o;2928:338::-;2983:5;3032:3;3025:4;3017:6;3013:17;3009:27;2999:122;;3040:79;;:::i;:::-;2999:122;3157:6;3144:20;3182:78;3256:3;3248:6;3241:4;3233:6;3229:17;3182:78;:::i;:::-;3173:87;;2989:277;2928:338;;;;:::o;3286:553::-;3344:8;3354:6;3404:3;3397:4;3389:6;3385:17;3381:27;3371:122;;3412:79;;:::i;:::-;3371:122;3525:6;3512:20;3502:30;;3555:18;3547:6;3544:30;3541:117;;;3577:79;;:::i;:::-;3541:117;3691:4;3683:6;3679:17;3667:29;;3745:3;3737:4;3729:6;3725:17;3715:8;3711:32;3708:41;3705:128;;;3752:79;;:::i;:::-;3705:128;3286:553;;;;;:::o;3845:139::-;3891:5;3929:6;3916:20;3907:29;;3945:33;3972:5;3945:33;:::i;:::-;3845:139;;;;:::o;3990:329::-;4049:6;4098:2;4086:9;4077:7;4073:23;4069:32;4066:119;;;4104:79;;:::i;:::-;4066:119;4224:1;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4195:117;3990:329;;;;:::o;4325:474::-;4393:6;4401;4450:2;4438:9;4429:7;4425:23;4421:32;4418:119;;;4456:79;;:::i;:::-;4418:119;4576:1;4601:53;4646:7;4637:6;4626:9;4622:22;4601:53;:::i;:::-;4591:63;;4547:117;4703:2;4729:53;4774:7;4765:6;4754:9;4750:22;4729:53;:::i;:::-;4719:63;;4674:118;4325:474;;;;;:::o;4805:619::-;4882:6;4890;4898;4947:2;4935:9;4926:7;4922:23;4918:32;4915:119;;;4953:79;;:::i;:::-;4915:119;5073:1;5098:53;5143:7;5134:6;5123:9;5119:22;5098:53;:::i;:::-;5088:63;;5044:117;5200:2;5226:53;5271:7;5262:6;5251:9;5247:22;5226:53;:::i;:::-;5216:63;;5171:118;5328:2;5354:53;5399:7;5390:6;5379:9;5375:22;5354:53;:::i;:::-;5344:63;;5299:118;4805:619;;;;;:::o;5430:943::-;5525:6;5533;5541;5549;5598:3;5586:9;5577:7;5573:23;5569:33;5566:120;;;5605:79;;:::i;:::-;5566:120;5725:1;5750:53;5795:7;5786:6;5775:9;5771:22;5750:53;:::i;:::-;5740:63;;5696:117;5852:2;5878:53;5923:7;5914:6;5903:9;5899:22;5878:53;:::i;:::-;5868:63;;5823:118;5980:2;6006:53;6051:7;6042:6;6031:9;6027:22;6006:53;:::i;:::-;5996:63;;5951:118;6136:2;6125:9;6121:18;6108:32;6167:18;6159:6;6156:30;6153:117;;;6189:79;;:::i;:::-;6153:117;6294:62;6348:7;6339:6;6328:9;6324:22;6294:62;:::i;:::-;6284:72;;6079:287;5430:943;;;;;;;:::o;6379:468::-;6444:6;6452;6501:2;6489:9;6480:7;6476:23;6472:32;6469:119;;;6507:79;;:::i;:::-;6469:119;6627:1;6652:53;6697:7;6688:6;6677:9;6673:22;6652:53;:::i;:::-;6642:63;;6598:117;6754:2;6780:50;6822:7;6813:6;6802:9;6798:22;6780:50;:::i;:::-;6770:60;;6725:115;6379:468;;;;;:::o;6853:474::-;6921:6;6929;6978:2;6966:9;6957:7;6953:23;6949:32;6946:119;;;6984:79;;:::i;:::-;6946:119;7104:1;7129:53;7174:7;7165:6;7154:9;7150:22;7129:53;:::i;:::-;7119:63;;7075:117;7231:2;7257:53;7302:7;7293:6;7282:9;7278:22;7257:53;:::i;:::-;7247:63;;7202:118;6853:474;;;;;:::o;7333:934::-;7455:6;7463;7471;7479;7528:2;7516:9;7507:7;7503:23;7499:32;7496:119;;;7534:79;;:::i;:::-;7496:119;7682:1;7671:9;7667:17;7654:31;7712:18;7704:6;7701:30;7698:117;;;7734:79;;:::i;:::-;7698:117;7847:80;7919:7;7910:6;7899:9;7895:22;7847:80;:::i;:::-;7829:98;;;;7625:312;8004:2;7993:9;7989:18;7976:32;8035:18;8027:6;8024:30;8021:117;;;8057:79;;:::i;:::-;8021:117;8170:80;8242:7;8233:6;8222:9;8218:22;8170:80;:::i;:::-;8152:98;;;;7947:313;7333:934;;;;;;;:::o;8273:323::-;8329:6;8378:2;8366:9;8357:7;8353:23;8349:32;8346:119;;;8384:79;;:::i;:::-;8346:119;8504:1;8529:50;8571:7;8562:6;8551:9;8547:22;8529:50;:::i;:::-;8519:60;;8475:114;8273:323;;;;:::o;8602:329::-;8661:6;8710:2;8698:9;8689:7;8685:23;8681:32;8678:119;;;8716:79;;:::i;:::-;8678:119;8836:1;8861:53;8906:7;8897:6;8886:9;8882:22;8861:53;:::i;:::-;8851:63;;8807:117;8602:329;;;;:::o;8937:327::-;8995:6;9044:2;9032:9;9023:7;9019:23;9015:32;9012:119;;;9050:79;;:::i;:::-;9012:119;9170:1;9195:52;9239:7;9230:6;9219:9;9215:22;9195:52;:::i;:::-;9185:62;;9141:116;8937:327;;;;:::o;9270:349::-;9339:6;9388:2;9376:9;9367:7;9363:23;9359:32;9356:119;;;9394:79;;:::i;:::-;9356:119;9514:1;9539:63;9594:7;9585:6;9574:9;9570:22;9539:63;:::i;:::-;9529:73;;9485:127;9270:349;;;;:::o;9625:529::-;9696:6;9704;9753:2;9741:9;9732:7;9728:23;9724:32;9721:119;;;9759:79;;:::i;:::-;9721:119;9907:1;9896:9;9892:17;9879:31;9937:18;9929:6;9926:30;9923:117;;;9959:79;;:::i;:::-;9923:117;10072:65;10129:7;10120:6;10109:9;10105:22;10072:65;:::i;:::-;10054:83;;;;9850:297;9625:529;;;;;:::o;10160:329::-;10219:6;10268:2;10256:9;10247:7;10243:23;10239:32;10236:119;;;10274:79;;:::i;:::-;10236:119;10394:1;10419:53;10464:7;10455:6;10444:9;10440:22;10419:53;:::i;:::-;10409:63;;10365:117;10160:329;;;;:::o;10495:704::-;10590:6;10598;10606;10655:2;10643:9;10634:7;10630:23;10626:32;10623:119;;;10661:79;;:::i;:::-;10623:119;10781:1;10806:53;10851:7;10842:6;10831:9;10827:22;10806:53;:::i;:::-;10796:63;;10752:117;10936:2;10925:9;10921:18;10908:32;10967:18;10959:6;10956:30;10953:117;;;10989:79;;:::i;:::-;10953:117;11102:80;11174:7;11165:6;11154:9;11150:22;11102:80;:::i;:::-;11084:98;;;;10879:313;10495:704;;;;;:::o;11205:118::-;11292:24;11310:5;11292:24;:::i;:::-;11287:3;11280:37;11205:118;;:::o;11329:157::-;11434:45;11454:24;11472:5;11454:24;:::i;:::-;11434:45;:::i;:::-;11429:3;11422:58;11329:157;;:::o;11492:109::-;11573:21;11588:5;11573:21;:::i;:::-;11568:3;11561:34;11492:109;;:::o;11607:118::-;11694:24;11712:5;11694:24;:::i;:::-;11689:3;11682:37;11607:118;;:::o;11731:360::-;11817:3;11845:38;11877:5;11845:38;:::i;:::-;11899:70;11962:6;11957:3;11899:70;:::i;:::-;11892:77;;11978:52;12023:6;12018:3;12011:4;12004:5;12000:16;11978:52;:::i;:::-;12055:29;12077:6;12055:29;:::i;:::-;12050:3;12046:39;12039:46;;11821:270;11731:360;;;;:::o;12097:364::-;12185:3;12213:39;12246:5;12213:39;:::i;:::-;12268:71;12332:6;12327:3;12268:71;:::i;:::-;12261:78;;12348:52;12393:6;12388:3;12381:4;12374:5;12370:16;12348:52;:::i;:::-;12425:29;12447:6;12425:29;:::i;:::-;12420:3;12416:39;12409:46;;12189:272;12097:364;;;;:::o;12467:377::-;12573:3;12601:39;12634:5;12601:39;:::i;:::-;12656:89;12738:6;12733:3;12656:89;:::i;:::-;12649:96;;12754:52;12799:6;12794:3;12787:4;12780:5;12776:16;12754:52;:::i;:::-;12831:6;12826:3;12822:16;12815:23;;12577:267;12467:377;;;;:::o;12874:845::-;12977:3;13014:5;13008:12;13043:36;13069:9;13043:36;:::i;:::-;13095:89;13177:6;13172:3;13095:89;:::i;:::-;13088:96;;13215:1;13204:9;13200:17;13231:1;13226:137;;;;13377:1;13372:341;;;;13193:520;;13226:137;13310:4;13306:9;13295;13291:25;13286:3;13279:38;13346:6;13341:3;13337:16;13330:23;;13226:137;;13372:341;13439:38;13471:5;13439:38;:::i;:::-;13499:1;13513:154;13527:6;13524:1;13521:13;13513:154;;;13601:7;13595:14;13591:1;13586:3;13582:11;13575:35;13651:1;13642:7;13638:15;13627:26;;13549:4;13546:1;13542:12;13537:17;;13513:154;;;13696:6;13691:3;13687:16;13680:23;;13379:334;;13193:520;;12981:738;;12874:845;;;;:::o;13725:366::-;13867:3;13888:67;13952:2;13947:3;13888:67;:::i;:::-;13881:74;;13964:93;14053:3;13964:93;:::i;:::-;14082:2;14077:3;14073:12;14066:19;;13725:366;;;:::o;14097:::-;14239:3;14260:67;14324:2;14319:3;14260:67;:::i;:::-;14253:74;;14336:93;14425:3;14336:93;:::i;:::-;14454:2;14449:3;14445:12;14438:19;;14097:366;;;:::o;14469:::-;14611:3;14632:67;14696:2;14691:3;14632:67;:::i;:::-;14625:74;;14708:93;14797:3;14708:93;:::i;:::-;14826:2;14821:3;14817:12;14810:19;;14469:366;;;:::o;14841:::-;14983:3;15004:67;15068:2;15063:3;15004:67;:::i;:::-;14997:74;;15080:93;15169:3;15080:93;:::i;:::-;15198:2;15193:3;15189:12;15182:19;;14841:366;;;:::o;15213:::-;15355:3;15376:67;15440:2;15435:3;15376:67;:::i;:::-;15369:74;;15452:93;15541:3;15452:93;:::i;:::-;15570:2;15565:3;15561:12;15554:19;;15213:366;;;:::o;15585:::-;15727:3;15748:67;15812:2;15807:3;15748:67;:::i;:::-;15741:74;;15824:93;15913:3;15824:93;:::i;:::-;15942:2;15937:3;15933:12;15926:19;;15585:366;;;:::o;15957:::-;16099:3;16120:67;16184:2;16179:3;16120:67;:::i;:::-;16113:74;;16196:93;16285:3;16196:93;:::i;:::-;16314:2;16309:3;16305:12;16298:19;;15957:366;;;:::o;16329:::-;16471:3;16492:67;16556:2;16551:3;16492:67;:::i;:::-;16485:74;;16568:93;16657:3;16568:93;:::i;:::-;16686:2;16681:3;16677:12;16670:19;;16329:366;;;:::o;16701:::-;16843:3;16864:67;16928:2;16923:3;16864:67;:::i;:::-;16857:74;;16940:93;17029:3;16940:93;:::i;:::-;17058:2;17053:3;17049:12;17042:19;;16701:366;;;:::o;17073:365::-;17215:3;17236:66;17300:1;17295:3;17236:66;:::i;:::-;17229:73;;17311:93;17400:3;17311:93;:::i;:::-;17429:2;17424:3;17420:12;17413:19;;17073:365;;;:::o;17444:398::-;17603:3;17624:83;17705:1;17700:3;17624:83;:::i;:::-;17617:90;;17716:93;17805:3;17716:93;:::i;:::-;17834:1;17829:3;17825:11;17818:18;;17444:398;;;:::o;17848:366::-;17990:3;18011:67;18075:2;18070:3;18011:67;:::i;:::-;18004:74;;18087:93;18176:3;18087:93;:::i;:::-;18205:2;18200:3;18196:12;18189:19;;17848:366;;;:::o;18220:::-;18362:3;18383:67;18447:2;18442:3;18383:67;:::i;:::-;18376:74;;18459:93;18548:3;18459:93;:::i;:::-;18577:2;18572:3;18568:12;18561:19;;18220:366;;;:::o;18592:::-;18734:3;18755:67;18819:2;18814:3;18755:67;:::i;:::-;18748:74;;18831:93;18920:3;18831:93;:::i;:::-;18949:2;18944:3;18940:12;18933:19;;18592:366;;;:::o;18964:::-;19106:3;19127:67;19191:2;19186:3;19127:67;:::i;:::-;19120:74;;19203:93;19292:3;19203:93;:::i;:::-;19321:2;19316:3;19312:12;19305:19;;18964:366;;;:::o;19336:118::-;19423:24;19441:5;19423:24;:::i;:::-;19418:3;19411:37;19336:118;;:::o;19460:256::-;19572:3;19587:75;19658:3;19649:6;19587:75;:::i;:::-;19687:2;19682:3;19678:12;19671:19;;19707:3;19700:10;;19460:256;;;;:::o;19722:589::-;19947:3;19969:95;20060:3;20051:6;19969:95;:::i;:::-;19962:102;;20081:95;20172:3;20163:6;20081:95;:::i;:::-;20074:102;;20193:92;20281:3;20272:6;20193:92;:::i;:::-;20186:99;;20302:3;20295:10;;19722:589;;;;;;:::o;20317:379::-;20501:3;20523:147;20666:3;20523:147;:::i;:::-;20516:154;;20687:3;20680:10;;20317:379;;;:::o;20702:222::-;20795:4;20833:2;20822:9;20818:18;20810:26;;20846:71;20914:1;20903:9;20899:17;20890:6;20846:71;:::i;:::-;20702:222;;;;:::o;20930:640::-;21125:4;21163:3;21152:9;21148:19;21140:27;;21177:71;21245:1;21234:9;21230:17;21221:6;21177:71;:::i;:::-;21258:72;21326:2;21315:9;21311:18;21302:6;21258:72;:::i;:::-;21340;21408:2;21397:9;21393:18;21384:6;21340:72;:::i;:::-;21459:9;21453:4;21449:20;21444:2;21433:9;21429:18;21422:48;21487:76;21558:4;21549:6;21487:76;:::i;:::-;21479:84;;20930:640;;;;;;;:::o;21576:210::-;21663:4;21701:2;21690:9;21686:18;21678:26;;21714:65;21776:1;21765:9;21761:17;21752:6;21714:65;:::i;:::-;21576:210;;;;:::o;21792:222::-;21885:4;21923:2;21912:9;21908:18;21900:26;;21936:71;22004:1;21993:9;21989:17;21980:6;21936:71;:::i;:::-;21792:222;;;;:::o;22020:313::-;22133:4;22171:2;22160:9;22156:18;22148:26;;22220:9;22214:4;22210:20;22206:1;22195:9;22191:17;22184:47;22248:78;22321:4;22312:6;22248:78;:::i;:::-;22240:86;;22020:313;;;;:::o;22339:419::-;22505:4;22543:2;22532:9;22528:18;22520:26;;22592:9;22586:4;22582:20;22578:1;22567:9;22563:17;22556:47;22620:131;22746:4;22620:131;:::i;:::-;22612:139;;22339:419;;;:::o;22764:::-;22930:4;22968:2;22957:9;22953:18;22945:26;;23017:9;23011:4;23007:20;23003:1;22992:9;22988:17;22981:47;23045:131;23171:4;23045:131;:::i;:::-;23037:139;;22764:419;;;:::o;23189:::-;23355:4;23393:2;23382:9;23378:18;23370:26;;23442:9;23436:4;23432:20;23428:1;23417:9;23413:17;23406:47;23470:131;23596:4;23470:131;:::i;:::-;23462:139;;23189:419;;;:::o;23614:::-;23780:4;23818:2;23807:9;23803:18;23795:26;;23867:9;23861:4;23857:20;23853:1;23842:9;23838:17;23831:47;23895:131;24021:4;23895:131;:::i;:::-;23887:139;;23614:419;;;:::o;24039:::-;24205:4;24243:2;24232:9;24228:18;24220:26;;24292:9;24286:4;24282:20;24278:1;24267:9;24263:17;24256:47;24320:131;24446:4;24320:131;:::i;:::-;24312:139;;24039:419;;;:::o;24464:::-;24630:4;24668:2;24657:9;24653:18;24645:26;;24717:9;24711:4;24707:20;24703:1;24692:9;24688:17;24681:47;24745:131;24871:4;24745:131;:::i;:::-;24737:139;;24464:419;;;:::o;24889:::-;25055:4;25093:2;25082:9;25078:18;25070:26;;25142:9;25136:4;25132:20;25128:1;25117:9;25113:17;25106:47;25170:131;25296:4;25170:131;:::i;:::-;25162:139;;24889:419;;;:::o;25314:::-;25480:4;25518:2;25507:9;25503:18;25495:26;;25567:9;25561:4;25557:20;25553:1;25542:9;25538:17;25531:47;25595:131;25721:4;25595:131;:::i;:::-;25587:139;;25314:419;;;:::o;25739:::-;25905:4;25943:2;25932:9;25928:18;25920:26;;25992:9;25986:4;25982:20;25978:1;25967:9;25963:17;25956:47;26020:131;26146:4;26020:131;:::i;:::-;26012:139;;25739:419;;;:::o;26164:::-;26330:4;26368:2;26357:9;26353:18;26345:26;;26417:9;26411:4;26407:20;26403:1;26392:9;26388:17;26381:47;26445:131;26571:4;26445:131;:::i;:::-;26437:139;;26164:419;;;:::o;26589:::-;26755:4;26793:2;26782:9;26778:18;26770:26;;26842:9;26836:4;26832:20;26828:1;26817:9;26813:17;26806:47;26870:131;26996:4;26870:131;:::i;:::-;26862:139;;26589:419;;;:::o;27014:::-;27180:4;27218:2;27207:9;27203:18;27195:26;;27267:9;27261:4;27257:20;27253:1;27242:9;27238:17;27231:47;27295:131;27421:4;27295:131;:::i;:::-;27287:139;;27014:419;;;:::o;27439:::-;27605:4;27643:2;27632:9;27628:18;27620:26;;27692:9;27686:4;27682:20;27678:1;27667:9;27663:17;27656:47;27720:131;27846:4;27720:131;:::i;:::-;27712:139;;27439:419;;;:::o;27864:::-;28030:4;28068:2;28057:9;28053:18;28045:26;;28117:9;28111:4;28107:20;28103:1;28092:9;28088:17;28081:47;28145:131;28271:4;28145:131;:::i;:::-;28137:139;;27864:419;;;:::o;28289:222::-;28382:4;28420:2;28409:9;28405:18;28397:26;;28433:71;28501:1;28490:9;28486:17;28477:6;28433:71;:::i;:::-;28289:222;;;;:::o;28517:129::-;28551:6;28578:20;;:::i;:::-;28568:30;;28607:33;28635:4;28627:6;28607:33;:::i;:::-;28517:129;;;:::o;28652:75::-;28685:6;28718:2;28712:9;28702:19;;28652:75;:::o;28733:307::-;28794:4;28884:18;28876:6;28873:30;28870:56;;;28906:18;;:::i;:::-;28870:56;28944:29;28966:6;28944:29;:::i;:::-;28936:37;;29028:4;29022;29018:15;29010:23;;28733:307;;;:::o;29046:141::-;29095:4;29118:3;29110:11;;29141:3;29138:1;29131:14;29175:4;29172:1;29162:18;29154:26;;29046:141;;;:::o;29193:98::-;29244:6;29278:5;29272:12;29262:22;;29193:98;;;:::o;29297:99::-;29349:6;29383:5;29377:12;29367:22;;29297:99;;;:::o;29402:168::-;29485:11;29519:6;29514:3;29507:19;29559:4;29554:3;29550:14;29535:29;;29402:168;;;;:::o;29576:147::-;29677:11;29714:3;29699:18;;29576:147;;;;:::o;29729:169::-;29813:11;29847:6;29842:3;29835:19;29887:4;29882:3;29878:14;29863:29;;29729:169;;;;:::o;29904:148::-;30006:11;30043:3;30028:18;;29904:148;;;;:::o;30058:305::-;30098:3;30117:20;30135:1;30117:20;:::i;:::-;30112:25;;30151:20;30169:1;30151:20;:::i;:::-;30146:25;;30305:1;30237:66;30233:74;30230:1;30227:81;30224:107;;;30311:18;;:::i;:::-;30224:107;30355:1;30352;30348:9;30341:16;;30058:305;;;;:::o;30369:348::-;30409:7;30432:20;30450:1;30432:20;:::i;:::-;30427:25;;30466:20;30484:1;30466:20;:::i;:::-;30461:25;;30654:1;30586:66;30582:74;30579:1;30576:81;30571:1;30564:9;30557:17;30553:105;30550:131;;;30661:18;;:::i;:::-;30550:131;30709:1;30706;30702:9;30691:20;;30369:348;;;;:::o;30723:96::-;30760:7;30789:24;30807:5;30789:24;:::i;:::-;30778:35;;30723:96;;;:::o;30825:90::-;30859:7;30902:5;30895:13;30888:21;30877:32;;30825:90;;;:::o;30921:77::-;30958:7;30987:5;30976:16;;30921:77;;;:::o;31004:149::-;31040:7;31080:66;31073:5;31069:78;31058:89;;31004:149;;;:::o;31159:126::-;31196:7;31236:42;31229:5;31225:54;31214:65;;31159:126;;;:::o;31291:77::-;31328:7;31357:5;31346:16;;31291:77;;;:::o;31374:154::-;31458:6;31453:3;31448;31435:30;31520:1;31511:6;31506:3;31502:16;31495:27;31374:154;;;:::o;31534:307::-;31602:1;31612:113;31626:6;31623:1;31620:13;31612:113;;;31711:1;31706:3;31702:11;31696:18;31692:1;31687:3;31683:11;31676:39;31648:2;31645:1;31641:10;31636:15;;31612:113;;;31743:6;31740:1;31737:13;31734:101;;;31823:1;31814:6;31809:3;31805:16;31798:27;31734:101;31583:258;31534:307;;;:::o;31847:320::-;31891:6;31928:1;31922:4;31918:12;31908:22;;31975:1;31969:4;31965:12;31996:18;31986:81;;32052:4;32044:6;32040:17;32030:27;;31986:81;32114:2;32106:6;32103:14;32083:18;32080:38;32077:84;;;32133:18;;:::i;:::-;32077:84;31898:269;31847:320;;;:::o;32173:281::-;32256:27;32278:4;32256:27;:::i;:::-;32248:6;32244:40;32386:6;32374:10;32371:22;32350:18;32338:10;32335:34;32332:62;32329:88;;;32397:18;;:::i;:::-;32329:88;32437:10;32433:2;32426:22;32216:238;32173:281;;:::o;32460:233::-;32499:3;32522:24;32540:5;32522:24;:::i;:::-;32513:33;;32568:66;32561:5;32558:77;32555:103;;;32638:18;;:::i;:::-;32555:103;32685:1;32678:5;32674:13;32667:20;;32460:233;;;:::o;32699:100::-;32738:7;32767:26;32787:5;32767:26;:::i;:::-;32756:37;;32699:100;;;:::o;32805:94::-;32844:7;32873:20;32887:5;32873:20;:::i;:::-;32862:31;;32805:94;;;:::o;32905:180::-;32953:77;32950:1;32943:88;33050:4;33047:1;33040:15;33074:4;33071:1;33064:15;33091:180;33139:77;33136:1;33129:88;33236:4;33233:1;33226:15;33260:4;33257:1;33250:15;33277:180;33325:77;33322:1;33315:88;33422:4;33419:1;33412:15;33446:4;33443:1;33436:15;33463:180;33511:77;33508:1;33501:88;33608:4;33605:1;33598:15;33632:4;33629:1;33622:15;33649:117;33758:1;33755;33748:12;33772:117;33881:1;33878;33871:12;33895:117;34004:1;34001;33994:12;34018:117;34127:1;34124;34117:12;34141:117;34250:1;34247;34240:12;34264:117;34373:1;34370;34363:12;34387:102;34428:6;34479:2;34475:7;34470:2;34463:5;34459:14;34455:28;34445:38;;34387:102;;;:::o;34495:94::-;34528:8;34576:5;34572:2;34568:14;34547:35;;34495:94;;;:::o;34595:225::-;34735:34;34731:1;34723:6;34719:14;34712:58;34804:8;34799:2;34791:6;34787:15;34780:33;34595:225;:::o;34826:169::-;34966:21;34962:1;34954:6;34950:14;34943:45;34826:169;:::o;35001:165::-;35141:17;35137:1;35129:6;35125:14;35118:41;35001:165;:::o;35172:168::-;35312:20;35308:1;35300:6;35296:14;35289:44;35172:168;:::o;35346:233::-;35486:34;35482:1;35474:6;35470:14;35463:58;35555:16;35550:2;35542:6;35538:15;35531:41;35346:233;:::o;35585:245::-;35725:34;35721:1;35713:6;35709:14;35702:58;35794:28;35789:2;35781:6;35777:15;35770:53;35585:245;:::o;35836:179::-;35976:31;35972:1;35964:6;35960:14;35953:55;35836:179;:::o;36021:170::-;36161:22;36157:1;36149:6;36145:14;36138:46;36021:170;:::o;36197:182::-;36337:34;36333:1;36325:6;36321:14;36314:58;36197:182;:::o;36385:158::-;36525:10;36521:1;36513:6;36509:14;36502:34;36385:158;:::o;36549:114::-;;:::o;36669:168::-;36809:20;36805:1;36797:6;36793:14;36786:44;36669:168;:::o;36843:165::-;36983:17;36979:1;36971:6;36967:14;36960:41;36843:165;:::o;37014:231::-;37154:34;37150:1;37142:6;37138:14;37131:58;37223:14;37218:2;37210:6;37206:15;37199:39;37014:231;:::o;37251:175::-;37391:27;37387:1;37379:6;37375:14;37368:51;37251:175;:::o;37432:122::-;37505:24;37523:5;37505:24;:::i;:::-;37498:5;37495:35;37485:63;;37544:1;37541;37534:12;37485:63;37432:122;:::o;37560:116::-;37630:21;37645:5;37630:21;:::i;:::-;37623:5;37620:32;37610:60;;37666:1;37663;37656:12;37610:60;37560:116;:::o;37682:122::-;37755:24;37773:5;37755:24;:::i;:::-;37748:5;37745:35;37735:63;;37794:1;37791;37784:12;37735:63;37682:122;:::o;37810:120::-;37882:23;37899:5;37882:23;:::i;:::-;37875:5;37872:34;37862:62;;37920:1;37917;37910:12;37862:62;37810:120;:::o;37936:122::-;38009:24;38027:5;38009:24;:::i;:::-;38002:5;37999:35;37989:63;;38048:1;38045;38038:12;37989:63;37936:122;:::o
Swarm Source
ipfs://08b4eb37b8513207fd97839494be5ed5e183153864aa83ea695525355f052643
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.