Feature Tip: Add private address tag to any address under My Name Tag !
NFT
Overview
TokenID
919
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MirsOfSpace
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-24 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // 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) } } } // File: contracts/Merkle.sol pragma solidity 0.8.9; contract Merkle is Ownable{ bytes32 internal doubleWhiteListMerkleRoot = ""; bytes32 internal whiteListMerkleRoot = ""; bytes32 internal allowListMerkleRoot = ""; function setWhitelistMerkleRoot( bytes32 merkleRoot_ ) external onlyOwner{ whiteListMerkleRoot = merkleRoot_; } function setDoubleWhiteListMerkleRoot( bytes32 merkleRoot_ ) external onlyOwner{ doubleWhiteListMerkleRoot = merkleRoot_; } function setAllowlistMerkleRoot( bytes32 merkleRoot_ ) external onlyOwner{ allowListMerkleRoot = merkleRoot_; } function _isValidWhitelistProof(bytes32 leaf, bytes32[] memory proof) internal view returns( bool ){ return MerkleProof.processProof( proof, leaf ) == whiteListMerkleRoot; } function _isValidDoubleWhitelistProof(bytes32 leaf, bytes32[] memory proof) internal view returns( bool ){ return MerkleProof.processProof( proof, leaf ) == doubleWhiteListMerkleRoot; } function _isValidAllowlistProof(bytes32 leaf, bytes32[] memory proof) internal view returns( bool ){ return MerkleProof.processProof( proof, leaf ) == allowListMerkleRoot; } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/utils/Address.sol // 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); } } } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/token/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File: contracts/Mirs.sol pragma solidity 0.8.9; contract MirsOfSpace is ERC721A, ERC2981, Merkle { using Address for address; enum SaleState{ NONE, FIRST_PHASE, SECOND_PHASE } struct MintConfig{ uint64 price; uint16 maxMint; uint16 maxSupply; } SaleState saleState = SaleState.NONE; address[12] private _payees = [ 0x2a43e7b799d9d34818755A92ba14a09995050CF0, 0x7b84B8470e555d4aF9543c0C0447758162500Acd, 0x1C35818761506A9DA9c4604dE9C43A1be309B45B, 0x7f5656295b60B45e2f27e3832C68f36fedD56069, 0xdBd47F66aA2F00B3dB03397F260ce9728298c495, 0x5CCE584a540584e4a36281d37B33F526358021Bc, 0x699Da8E607EA1A6768253Ab8e3ac52FB727f75db, 0xFc05Bfe5030cA5D55791d41f1357aAefA0240f66, 0x38D21F2fD269C85594A70c19C0508b550dCbA9B4, 0xCf556e8a847a262D9C56D079662602443a64eE27, 0x0C3bDd90939d4ADdFF0d3Cc194E4fC5BB468b82A, 0x9EF4F4791F55bc0b7d0f8776f9E130e165f1bFF0 ]; uint256[12] private _shares= [250, 300, 250, 350, 50, 200, 1420, 2840, 1420, 1420,450,1050]; mapping(address => uint256) sharesMap; MintConfig public allowlistConfig = MintConfig( 0.059 ether, //ethPrice 1, //maxMintPerWallet 6969 //maxSupply ); MintConfig public whitelistConfig = MintConfig( 0.049 ether, //ethPrice 1, //maxMintPerWallet 6969 //maxSupply ); MintConfig public doubleWhitelistconfig = MintConfig( 0.049 ether, //ethPrice 2, //maxMintPerWallet 6969 //maxSupply ); string public preUnlockURI = "https://mirsofspace.mypinata.cloud/ipfs/Qmbwo12oWSW5fHizU5DsVHjddWh61Kk3SqzVShTGzU9u7n"; string public afterRevealURI = ""; string public baseExtension = ".json"; bool public beforeReveal = true; string private _contractURI = "https://mirsofspace.mypinata.cloud/ipfs/QmRSF7aVAN1zEJBx4urAaYr2j2iKKrKpcjtY9WjFBdNN3c"; constructor() ERC721A("Mirs Of Space", "MIRS" ){ setDefaultRoyalty( address(this), 750 ); sharesMap[_payees[0]] = _shares[0]; sharesMap[_payees[1]] = _shares[1]; sharesMap[_payees[2]] = _shares[2]; sharesMap[_payees[3]] = _shares[3]; sharesMap[_payees[4]] = _shares[4]; sharesMap[_payees[5]] = _shares[5]; sharesMap[_payees[6]] = _shares[6]; sharesMap[_payees[7]] = _shares[7]; sharesMap[_payees[8]] = _shares[8]; sharesMap[_payees[9]] = _shares[9]; sharesMap[_payees[10]] = _shares[10]; sharesMap[_payees[11]] = _shares[11]; } receive() external payable {} function mintSingleFirstPhase(bytes32[] calldata proof) external payable { MintConfig memory conf = whitelistConfig; require( _numberMinted( msg.sender ) < conf.maxMint, "Only 1 per wallet" ); require( totalSupply() < conf.maxSupply, "Mint/Order exceeds supply" ); require( msg.value == conf.price, "Ether sent is not correct" ); require(saleState != SaleState.NONE, "Sale did not start yet!"); require( _isValidWhitelistProof( keccak256( abi.encodePacked( msg.sender ) ), proof ), "You are not on the white list" ); _mint( msg.sender, 1 ); } function mintSingleSecondPhase(bytes32[] calldata proof) external payable { MintConfig memory conf = allowlistConfig; require( _numberMinted( msg.sender ) < conf.maxMint, "Only 1 per wallet" ); require( totalSupply() < conf.maxSupply, "Mint/Order exceeds supply" ); require( msg.value == conf.price, "Ether sent is not correct" ); require( _isValidAllowlistProof( keccak256( abi.encodePacked( msg.sender ) ), proof ) || _isValidWhitelistProof( keccak256( abi.encodePacked( msg.sender ) ), proof ) , "This wallet is not on the allowlist or whitelist" ); require( saleState == SaleState.SECOND_PHASE, "sale is not active" ); _mint( msg.sender, 1 ); } function mintDoubleWhitelist(uint16 quantity, bytes32[] calldata proof) external payable { MintConfig memory conf = doubleWhitelistconfig; require( _numberMinted( msg.sender ) + quantity <= conf.maxMint, "Only 2 per wallet" ); require( totalSupply() + quantity <= conf.maxSupply, "Exceeds supply" ); require( msg.value == quantity * conf.price, "Ether sent is not correct" ); require( _isValidDoubleWhitelistProof( keccak256( abi.encodePacked( msg.sender ) ), proof ), "You are not on the double white list" ); require( saleState != SaleState.NONE, "sale is not active" ); _mint( msg.sender, quantity ); } function airdrop(uint16[] calldata quantity, address[] calldata recipient) external onlyOwner{ require(quantity.length == recipient.length, "must provide equal quantities and recipients" ); uint256 totalQuantity = 0; for(uint256 i = 0; i < quantity.length; ++i){ totalQuantity += quantity[i]; } uint256 tokenId = totalSupply(); require( tokenId + totalQuantity <= whitelistConfig.maxSupply, "mint/order exceeds supply" ); for(uint256 i = 0; i < recipient.length; ++i){ _mint( recipient[i], quantity[i] ); } } function setSaleState(SaleState _saleState) external onlyOwner{ require( uint8(_saleState) < 3, "invalid sale state" ); saleState = _saleState; } function setContractURI(string memory newContractURI) external onlyOwner { _contractURI = newContractURI; } function setPreUnlockURI(string memory newBeforeReveal) external onlyOwner { preUnlockURI = newBeforeReveal; } function revealNfts(string memory baseURI) external onlyOwner { beforeReveal = false; afterRevealURI=baseURI; } function contractURI() public view returns (string memory) { return _contractURI; } function supportsInterface( bytes4 interfaceId ) public view override( ERC721A, ERC2981 ) returns( bool ){ return ERC721A.supportsInterface( interfaceId ) || ERC2981.supportsInterface( interfaceId ); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (beforeReveal) { return preUnlockURI; } else { string memory currentBaseURI = afterRevealURI; return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, _toString(tokenId), baseExtension ) ) : ""; } } function setDefaultRoyalty( address receiver, uint96 feeNumerator ) public onlyOwner { _setDefaultRoyalty( receiver, feeNumerator ); } function getBalance() public view returns(uint) { return address(this).balance; } function _widthdraw(address _address, uint256 _amount) private { payable(_address).transfer(_amount); } function widthdraw(address _address, uint256 _amount) public onlyOwner { payable(_address).transfer(_amount); } function widthdrawPayee(address _address) public onlyOwner{ uint256 balance = address(this).balance; require(balance > 0); _widthdraw(_address, (balance * sharesMap[_address]) / 1000); } function withdrawAll() external onlyOwner { uint256 balance = address(this).balance; require(balance > 0); _widthdraw(_payees[0], (balance * _shares[0]) / 1000); _widthdraw(_payees[1], (balance * _shares[1]) / 1000); _widthdraw(_payees[2], (balance * _shares[2]) / 1000); _widthdraw(_payees[3], (balance * _shares[3]) / 1000); _widthdraw(_payees[4], (balance * _shares[4]) / 1000); _widthdraw(_payees[5], (balance * _shares[5]) / 1000); _widthdraw(_payees[6], (balance * _shares[6]) / 1000); _widthdraw(_payees[7], (balance * _shares[7]) / 1000); _widthdraw(_payees[8], (balance * _shares[8]) / 1000); _widthdraw(_payees[9], (balance * _shares[9]) / 1000); _widthdraw(_payees[10], (balance * _shares[10]) / 1000); _widthdraw(_payees[11], (balance * _shares[11]) / 1000); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"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":[],"name":"afterRevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16[]","name":"quantity","type":"uint16[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowlistConfig","outputs":[{"internalType":"uint64","name":"price","type":"uint64"},{"internalType":"uint16","name":"maxMint","type":"uint16"},{"internalType":"uint16","name":"maxSupply","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"doubleWhitelistconfig","outputs":[{"internalType":"uint64","name":"price","type":"uint64"},{"internalType":"uint16","name":"maxMint","type":"uint16"},{"internalType":"uint16","name":"maxSupply","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"quantity","type":"uint16"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintDoubleWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintSingleFirstPhase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintSingleSecondPhase","outputs":[],"stateMutability":"payable","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":"preUnlockURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"revealNfts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setAllowlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setDoubleWhiteListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBeforeReveal","type":"string"}],"name":"setPreUnlockURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum MirsOfSpace.SaleState","name":"_saleState","type":"uint8"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistConfig","outputs":[{"internalType":"uint64","name":"price","type":"uint64"},{"internalType":"uint16","name":"maxMint","type":"uint16"},{"internalType":"uint16","name":"maxSupply","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"widthdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"widthdrawPayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526000600b556000600c556000600d556000600e60006101000a81548160ff021916908360028111156200003c576200003b62001439565b5b0217905550604051806101800160405280732a43e7b799d9d34818755a92ba14a09995050cf073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001737b84b8470e555d4af9543c0c0447758162500acd73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001731c35818761506a9da9c4604de9c43a1be309b45b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001737f5656295b60b45e2f27e3832c68f36fedd5606973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173dbd47f66aa2f00b3db03397f260ce9728298c49573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001735cce584a540584e4a36281d37b33f526358021bc73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173699da8e607ea1a6768253ab8e3ac52fb727f75db73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173fc05bfe5030ca5d55791d41f1357aaefa0240f6673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017338d21f2fd269c85594a70c19c0508b550dcba9b473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173cf556e8a847a262d9c56d079662602443a64ee2773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001730c3bdd90939d4addff0d3cc194e4fc5bb468b82a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001739ef4f4791f55bc0b7d0f8776f9e130e165f1bff073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250600f90600c620003a5929190620012bc565b5060405180610180016040528060fa61ffff16815260200161012c61ffff16815260200160fa61ffff16815260200161015e61ffff168152602001603261ffff16815260200160c861ffff16815260200161058c61ffff168152602001610b1861ffff16815260200161058c61ffff16815260200161058c61ffff1681526020016101c261ffff16815260200161041a61ffff16815250601b90600c6200044e9291906200133e565b50604051806060016040528066d19c2ff9bf800067ffffffffffffffff168152602001600161ffff168152602001611b3961ffff16815250602860008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060208201518160000160086101000a81548161ffff021916908361ffff160217905550604082015181600001600a6101000a81548161ffff021916908361ffff1602179055505050604051806060016040528066ae153d89fe800067ffffffffffffffff168152602001600161ffff168152602001611b3961ffff16815250602960008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060208201518160000160086101000a81548161ffff021916908361ffff160217905550604082015181600001600a6101000a81548161ffff021916908361ffff1602179055505050604051806060016040528066ae153d89fe800067ffffffffffffffff168152602001600261ffff168152602001611b3961ffff16815250602a60008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060208201518160000160086101000a81548161ffff021916908361ffff160217905550604082015181600001600a6101000a81548161ffff021916908361ffff16021790555050506040518060800160405280605681526020016200682260569139602b90805190602001906200069092919062001389565b5060405180602001604052806000815250602c9080519060200190620006b892919062001389565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250602d90805190602001906200070692919062001389565b506001602e60006101000a81548160ff0219169083151502179055506040518060800160405280605681526020016200687860569139602f90805190602001906200075392919062001389565b503480156200076157600080fd5b506040518060400160405280600d81526020017f4d697273204f66205370616365000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d495253000000000000000000000000000000000000000000000000000000008152508160029080519060200190620007e692919062001389565b508060039080519060200190620007ff92919062001389565b506200081062000f5a60201b60201c565b6000819055505050620008386200082c62000f5f60201b60201c565b62000f6760201b60201c565b6200084c306102ee6200102d60201b60201c565b601b6000600c811062000864576200086362001468565b5b015460276000600f6000600c811062000882576200088162001468565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601b6001600c8110620008fa57620008f962001468565b5b015460276000600f6001600c811062000918576200091762001468565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601b6002600c811062000990576200098f62001468565b5b015460276000600f6002600c8110620009ae57620009ad62001468565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601b6003600c811062000a265762000a2562001468565b5b015460276000600f6003600c811062000a445762000a4362001468565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601b6004600c811062000abc5762000abb62001468565b5b015460276000600f6004600c811062000ada5762000ad962001468565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601b6005600c811062000b525762000b5162001468565b5b015460276000600f6005600c811062000b705762000b6f62001468565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601b6006600c811062000be85762000be762001468565b5b015460276000600f6006600c811062000c065762000c0562001468565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601b6007600c811062000c7e5762000c7d62001468565b5b015460276000600f6007600c811062000c9c5762000c9b62001468565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601b6008600c811062000d145762000d1362001468565b5b015460276000600f6008600c811062000d325762000d3162001468565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601b6009600c811062000daa5762000da962001468565b5b015460276000600f6009600c811062000dc85762000dc762001468565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601b600a600c811062000e405762000e3f62001468565b5b015460276000600f600a600c811062000e5e5762000e5d62001468565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601b600b600c811062000ed65762000ed562001468565b5b015460276000600f600b600c811062000ef45762000ef362001468565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555062001689565b600090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200103d6200105360201b60201c565b6200104f8282620010e460201b60201c565b5050565b6200106362000f5f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620010896200128860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620010e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010d990620014f8565b60405180910390fd5b565b620010f4620012b260201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562001155576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200114c9062001590565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620011c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620011bf9062001602565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000612710905090565b82600c81019282156200132b579160200282015b828111156200132a5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190620012d0565b5b5090506200133a91906200141a565b5090565b82600c810192821562001376579160200282015b8281111562001375578251829061ffff1690559160200191906001019062001352565b5b5090506200138591906200141a565b5090565b828054620013979062001653565b90600052602060002090601f016020900481019282620013bb576000855562001407565b82601f10620013d657805160ff191683800117855562001407565b8280016001018555821562001407579182015b8281111562001406578251825591602001919060010190620013e9565b5b5090506200141691906200141a565b5090565b5b80821115620014355760008160009055506001016200141b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620014e060208362001497565b9150620014ed82620014a8565b602082019050919050565b600060208201905081810360008301526200151381620014d1565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062001578602a8362001497565b915062001585826200151a565b604082019050919050565b60006020820190508181036000830152620015ab8162001569565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000620015ea60198362001497565b9150620015f782620015b2565b602082019050919050565b600060208201905081810360008301526200161d81620015db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200166c57607f821691505b6020821081141562001683576200168262001624565b5b50919050565b61518980620016996000396000f3fe6080604052600436106102555760003560e01c80638da5cb5b11610139578063bf64b2f7116100b6578063cb66266c1161007a578063cb66266c1461087e578063e8a3d4851461089a578063e985e9c5146108c5578063f2fde38b14610902578063f95df4141461092b578063f9e88ef8146109545761025c565b8063bf64b2f714610793578063c6682862146107c0578063c73f9ae7146107eb578063c74b197c14610818578063c87b56dd146108415761025c565b8063a22cb465116100fd578063a22cb465146106d1578063abcd9c83146106fa578063b88d4fde14610725578063b9b6fce81461074e578063bd32fb661461076a5761025c565b80638da5cb5b146105fc5780638e8a44fb14610627578063938e3d7b146106525780639491730b1461067b57806395d89b41146106a65761025c565b8063318e26e0116101d25780636352211e116101965780636352211e1461050f57806370a082311461054c578063715018a614610589578063785617b3146105a0578063853828b6146105bc578063899fe6bc146105d35761025c565b8063318e26e01461043e57806342842e0e146104675780634c47363f146104905780634c575826146104bd5780635a67de07146104e65761025c565b806312065fe01161021957806312065fe01461035857806318160ddd1461038357806323b872dd146103ae5780632421d49a146103d75780632a55205a146104005761025c565b806301ffc9a71461026157806304634d8d1461029e57806306fdde03146102c7578063081812fc146102f2578063095ea7b31461032f5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b506102886004803603810190610283919061391a565b61097d565b6040516102959190613962565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190613a1f565b61099f565b005b3480156102d357600080fd5b506102dc6109b5565b6040516102e99190613af8565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190613b50565b610a47565b6040516103269190613b8c565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613ba7565b610ac6565b005b34801561036457600080fd5b5061036d610c0a565b60405161037a9190613bf6565b60405180910390f35b34801561038f57600080fd5b50610398610c12565b6040516103a59190613bf6565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190613c11565b610c29565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190613c9a565b610f4e565b005b34801561040c57600080fd5b5061042760048036038101906104229190613cc7565b610f60565b604051610435929190613d07565b60405180910390f35b34801561044a57600080fd5b5061046560048036038101906104609190613deb565b61114b565b005b34801561047357600080fd5b5061048e60048036038101906104899190613c11565b6112ea565b005b34801561049c57600080fd5b506104a561130a565b6040516104b493929190613eac565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df9190614013565b611352565b005b3480156104f257600080fd5b5061050d60048036038101906105089190614081565b611374565b005b34801561051b57600080fd5b5061053660048036038101906105319190613b50565b611401565b6040516105439190613b8c565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e91906140ae565b611413565b6040516105809190613bf6565b60405180910390f35b34801561059557600080fd5b5061059e6114cc565b005b6105ba60048036038101906105b5919061415d565b6114e0565b005b3480156105c857600080fd5b506105d16117c0565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190614013565b611d05565b005b34801561060857600080fd5b50610611611d42565b60405161061e9190613b8c565b60405180910390f35b34801561063357600080fd5b5061063c611d6c565b6040516106499190613962565b60405180910390f35b34801561065e57600080fd5b5061067960048036038101906106749190614013565b611d7f565b005b34801561068757600080fd5b50610690611da1565b60405161069d9190613af8565b60405180910390f35b3480156106b257600080fd5b506106bb611e2f565b6040516106c89190613af8565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f391906141e9565b611ec1565b005b34801561070657600080fd5b5061070f612039565b60405161071c9190613af8565b60405180910390f35b34801561073157600080fd5b5061074c600480360381019061074791906142ca565b6120c7565b005b6107686004803603810190610763919061434d565b61213a565b005b34801561077657600080fd5b50610791600480360381019061078c9190613c9a565b6123e7565b005b34801561079f57600080fd5b506107a86123f9565b6040516107b793929190613eac565b60405180910390f35b3480156107cc57600080fd5b506107d5612441565b6040516107e29190613af8565b60405180910390f35b3480156107f757600080fd5b506108006124cf565b60405161080f93929190613eac565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a9190613ba7565b612517565b005b34801561084d57600080fd5b5061086860048036038101906108639190613b50565b61256a565b6040516108759190613af8565b60405180910390f35b6108986004803603810190610893919061434d565b61273f565b005b3480156108a657600080fd5b506108af612a62565b6040516108bc9190613af8565b60405180910390f35b3480156108d157600080fd5b506108ec60048036038101906108e7919061439a565b612af4565b6040516108f99190613962565b60405180910390f35b34801561090e57600080fd5b50610929600480360381019061092491906140ae565b612b88565b005b34801561093757600080fd5b50610952600480360381019061094d9190613c9a565b612c0c565b005b34801561096057600080fd5b5061097b600480360381019061097691906140ae565b612c1e565b005b600061098882612c9d565b80610998575061099782612d2f565b5b9050919050565b6109a7612da9565b6109b18282612e27565b5050565b6060600280546109c490614409565b80601f01602080910402602001604051908101604052809291908181526020018280546109f090614409565b8015610a3d5780601f10610a1257610100808354040283529160200191610a3d565b820191906000526020600020905b815481529060010190602001808311610a2057829003601f168201915b5050505050905090565b6000610a5282612fbd565b610a88576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad182611401565b90508073ffffffffffffffffffffffffffffffffffffffff16610af261301c565b73ffffffffffffffffffffffffffffffffffffffff1614610b5557610b1e81610b1961301c565b612af4565b610b54576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600047905090565b6000610c1c613024565b6001546000540303905090565b6000610c3482613029565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c9b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ca7846130f7565b91509150610cbd8187610cb861301c565b61311e565b610d0957610cd286610ccd61301c565b612af4565b610d08576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d70576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d7d8686866001613162565b8015610d8857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5685610e32888887613168565b7c020000000000000000000000000000000000000000000000000000000017613190565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ede576000600185019050600060046000838152602001908152602001600020541415610edc576000548114610edb578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f4686868660016131bb565b505050505050565b610f56612da9565b80600b8190555050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156110f65760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006111006131c1565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661112c919061446a565b61113691906144f3565b90508160000151819350935050509250929050565b611153612da9565b81819050848490501461119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290614596565b60405180910390fd5b6000805b858590508110156111f4578585828181106111bd576111bc6145b6565b5b90506020020160208101906111d291906145e5565b61ffff16826111e19190614612565b9150806111ed90614668565b905061119f565b5060006111ff610c12565b90506029600001600a9054906101000a900461ffff1661ffff1682826112259190614612565b1115611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d906146fd565b60405180910390fd5b60005b848490508110156112e1576112d085858381811061128a576112896145b6565b5b905060200201602081019061129f91906140ae565b8888848181106112b2576112b16145b6565b5b90506020020160208101906112c791906145e5565b61ffff166131cb565b806112da90614668565b9050611269565b50505050505050565b611305838383604051806020016040528060008152506120c7565b505050565b60288060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900461ffff169080600001600a9054906101000a900461ffff16905083565b61135a612da9565b80602b908051906020019061137092919061380b565b5050565b61137c612da9565b60038160028111156113915761139061471d565b5b60ff16106113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb90614798565b60405180910390fd5b80600e60006101000a81548160ff021916908360028111156113f9576113f861471d565b5b021790555050565b600061140c82613029565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561147b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114d4612da9565b6114de6000613388565b565b6000602a6040518060600160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900461ffff1661ffff1661ffff16815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815250509050806020015161ffff168461ffff1661157a3361344e565b6115849190614612565b11156115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90614804565b60405180910390fd5b806040015161ffff168461ffff166115db610c12565b6115e59190614612565b1115611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90614870565b60405180910390fd5b80600001518461ffff1661163a9190614890565b67ffffffffffffffff163414611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c9061491e565b60405180910390fd5b6116f6336040516020016116999190614986565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506134a5565b611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90614a13565b60405180910390fd5b600060028111156117495761174861471d565b5b600e60009054906101000a900460ff16600281111561176b5761176a61471d565b5b14156117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a390614a7f565b60405180910390fd5b6117ba338561ffff166131cb565b50505050565b6117c8612da9565b6000479050600081116117da57600080fd5b611848600f6000600c81106117f2576117f16145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6000600c811061182c5761182b6145b6565b5b015484611839919061446a565b61184391906144f3565b6134bd565b6118b6600f6001600c81106118605761185f6145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6001600c811061189a576118996145b6565b5b0154846118a7919061446a565b6118b191906144f3565b6134bd565b611924600f6002600c81106118ce576118cd6145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6002600c8110611908576119076145b6565b5b015484611915919061446a565b61191f91906144f3565b6134bd565b611992600f6003600c811061193c5761193b6145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6003600c8110611976576119756145b6565b5b015484611983919061446a565b61198d91906144f3565b6134bd565b611a00600f6004600c81106119aa576119a96145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6004600c81106119e4576119e36145b6565b5b0154846119f1919061446a565b6119fb91906144f3565b6134bd565b611a6e600f6005600c8110611a1857611a176145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6005600c8110611a5257611a516145b6565b5b015484611a5f919061446a565b611a6991906144f3565b6134bd565b611adc600f6006600c8110611a8657611a856145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6006600c8110611ac057611abf6145b6565b5b015484611acd919061446a565b611ad791906144f3565b6134bd565b611b4a600f6007600c8110611af457611af36145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6007600c8110611b2e57611b2d6145b6565b5b015484611b3b919061446a565b611b4591906144f3565b6134bd565b611bb8600f6008600c8110611b6257611b616145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6008600c8110611b9c57611b9b6145b6565b5b015484611ba9919061446a565b611bb391906144f3565b6134bd565b611c26600f6009600c8110611bd057611bcf6145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6009600c8110611c0a57611c096145b6565b5b015484611c17919061446a565b611c2191906144f3565b6134bd565b611c94600f600a600c8110611c3e57611c3d6145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b600a600c8110611c7857611c776145b6565b5b015484611c85919061446a565b611c8f91906144f3565b6134bd565b611d02600f600b600c8110611cac57611cab6145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b600b600c8110611ce657611ce56145b6565b5b015484611cf3919061446a565b611cfd91906144f3565b6134bd565b50565b611d0d612da9565b6000602e60006101000a81548160ff02191690831515021790555080602c9080519060200190611d3e92919061380b565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b602e60009054906101000a900460ff1681565b611d87612da9565b80602f9080519060200190611d9d92919061380b565b5050565b602c8054611dae90614409565b80601f0160208091040260200160405190810160405280929190818152602001828054611dda90614409565b8015611e275780601f10611dfc57610100808354040283529160200191611e27565b820191906000526020600020905b815481529060010190602001808311611e0a57829003601f168201915b505050505081565b606060038054611e3e90614409565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6a90614409565b8015611eb75780601f10611e8c57610100808354040283529160200191611eb7565b820191906000526020600020905b815481529060010190602001808311611e9a57829003601f168201915b5050505050905090565b611ec961301c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f2e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611f3b61301c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fe861301c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161202d9190613962565b60405180910390a35050565b602b805461204690614409565b80601f016020809104026020016040519081016040528092919081815260200182805461207290614409565b80156120bf5780601f10612094576101008083540402835291602001916120bf565b820191906000526020600020905b8154815290600101906020018083116120a257829003601f168201915b505050505081565b6120d2848484610c29565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612134576120fd84848484613508565b612133576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600060296040518060600160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900461ffff1661ffff1661ffff16815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815250509050806020015161ffff166121cf3361344e565b1061220f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220690614aeb565b60405180910390fd5b806040015161ffff16612220610c12565b10612260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225790614b57565b60405180910390fd5b806000015167ffffffffffffffff1634146122b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a79061491e565b60405180910390fd5b600060028111156122c4576122c361471d565b5b600e60009054906101000a900460ff1660028111156122e6576122e561471d565b5b1415612327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231e90614bc3565b60405180910390fd5b6123983360405160200161233b9190614986565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050613668565b6123d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ce90614c2f565b60405180910390fd5b6123e23360016131cb565b505050565b6123ef612da9565b80600c8190555050565b602a8060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900461ffff169080600001600a9054906101000a900461ffff16905083565b602d805461244e90614409565b80601f016020809104026020016040519081016040528092919081815260200182805461247a90614409565b80156124c75780601f1061249c576101008083540402835291602001916124c7565b820191906000526020600020905b8154815290600101906020018083116124aa57829003601f168201915b505050505081565b60298060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900461ffff169080600001600a9054906101000a900461ffff16905083565b61251f612da9565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612565573d6000803e3d6000fd5b505050565b606061257582612fbd565b6125b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ab90614cc1565b60405180910390fd5b602e60009054906101000a900460ff161561265b57602b80546125d690614409565b80601f016020809104026020016040519081016040528092919081815260200182805461260290614409565b801561264f5780601f106126245761010080835404028352916020019161264f565b820191906000526020600020905b81548152906001019060200180831161263257829003601f168201915b5050505050905061273a565b6000602c805461266a90614409565b80601f016020809104026020016040519081016040528092919081815260200182805461269690614409565b80156126e35780601f106126b8576101008083540402835291602001916126e3565b820191906000526020600020905b8154815290600101906020018083116126c657829003601f168201915b5050505050905060008151116127085760405180602001604052806000815250612736565b8061271284613680565b602d60405160200161272693929190614db1565b6040516020818303038152906040525b9150505b919050565b600060286040518060600160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900461ffff1661ffff1661ffff16815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815250509050806020015161ffff166127d43361344e565b10612814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280b90614aeb565b60405180910390fd5b806040015161ffff16612825610c12565b10612865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285c90614b57565b60405180910390fd5b806000015167ffffffffffffffff1634146128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac9061491e565b60405180910390fd5b612926336040516020016128c99190614986565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506136d0565b8061299e575061299d336040516020016129409190614986565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050613668565b5b6129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d490614e54565b60405180910390fd5b6002808111156129f0576129ef61471d565b5b600e60009054906101000a900460ff166002811115612a1257612a1161471d565b5b14612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4990614a7f565b60405180910390fd5b612a5d3360016131cb565b505050565b6060602f8054612a7190614409565b80601f0160208091040260200160405190810160405280929190818152602001828054612a9d90614409565b8015612aea5780601f10612abf57610100808354040283529160200191612aea565b820191906000526020600020905b815481529060010190602001808311612acd57829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b90612da9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf790614ee6565b60405180910390fd5b612c0981613388565b50565b612c14612da9565b80600d8190555050565b612c26612da9565b600047905060008111612c3857600080fd5b612c99826103e8602760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484612c8a919061446a565b612c9491906144f3565b6134bd565b5050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612cf857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d285750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612da25750612da1826136e8565b5b9050919050565b612db1613752565b73ffffffffffffffffffffffffffffffffffffffff16612dcf611d42565b73ffffffffffffffffffffffffffffffffffffffff1614612e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1c90614f52565b60405180910390fd5b565b612e2f6131c1565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8490614fe4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef490615050565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081612fc8613024565b11158015612fd7575060005482105b8015613015575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080613038613024565b116130c0576000548110156130bf5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156130bd575b60008114156130b3576004600083600190039350838152602001908152602001600020549050613088565b80925050506130f2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861317f86868461375a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612710905090565b600080549050600082141561320c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132196000848385613162565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613290836132816000866000613168565b61328a85613763565b17613190565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461333157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506132f6565b50600082141561336d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061338360008483856131bb565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600b546134b48385613773565b14905092915050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613503573d6000803e3d6000fd5b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261352e61301c565b8786866040518563ffffffff1660e01b815260040161355094939291906150c5565b602060405180830381600087803b15801561356a57600080fd5b505af192505050801561359b57506040513d601f19601f820116820180604052508101906135989190615126565b60015b613615573d80600081146135cb576040519150601f19603f3d011682016040523d82523d6000602084013e6135d0565b606091505b5060008151141561360d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000600c546136778385613773565b14905092915050565b606060806040510190508060405280825b6001156136bc57600183039250600a81066030018353600a81049050806136b7576136bc565b613691565b508181036020830392508083525050919050565b6000600d546136df8385613773565b14905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b60008082905060005b84518110156137be576137a98286838151811061379c5761379b6145b6565b5b60200260200101516137c9565b915080806137b690614668565b91505061377c565b508091505092915050565b60008183106137e1576137dc82846137f4565b6137ec565b6137eb83836137f4565b5b905092915050565b600082600052816020526040600020905092915050565b82805461381790614409565b90600052602060002090601f0160209004810192826138395760008555613880565b82601f1061385257805160ff1916838001178555613880565b82800160010185558215613880579182015b8281111561387f578251825591602001919060010190613864565b5b50905061388d9190613891565b5090565b5b808211156138aa576000816000905550600101613892565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6138f7816138c2565b811461390257600080fd5b50565b600081359050613914816138ee565b92915050565b6000602082840312156139305761392f6138b8565b5b600061393e84828501613905565b91505092915050565b60008115159050919050565b61395c81613947565b82525050565b60006020820190506139776000830184613953565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139a88261397d565b9050919050565b6139b88161399d565b81146139c357600080fd5b50565b6000813590506139d5816139af565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6139fc816139db565b8114613a0757600080fd5b50565b600081359050613a19816139f3565b92915050565b60008060408385031215613a3657613a356138b8565b5b6000613a44858286016139c6565b9250506020613a5585828601613a0a565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a99578082015181840152602081019050613a7e565b83811115613aa8576000848401525b50505050565b6000601f19601f8301169050919050565b6000613aca82613a5f565b613ad48185613a6a565b9350613ae4818560208601613a7b565b613aed81613aae565b840191505092915050565b60006020820190508181036000830152613b128184613abf565b905092915050565b6000819050919050565b613b2d81613b1a565b8114613b3857600080fd5b50565b600081359050613b4a81613b24565b92915050565b600060208284031215613b6657613b656138b8565b5b6000613b7484828501613b3b565b91505092915050565b613b868161399d565b82525050565b6000602082019050613ba16000830184613b7d565b92915050565b60008060408385031215613bbe57613bbd6138b8565b5b6000613bcc858286016139c6565b9250506020613bdd85828601613b3b565b9150509250929050565b613bf081613b1a565b82525050565b6000602082019050613c0b6000830184613be7565b92915050565b600080600060608486031215613c2a57613c296138b8565b5b6000613c38868287016139c6565b9350506020613c49868287016139c6565b9250506040613c5a86828701613b3b565b9150509250925092565b6000819050919050565b613c7781613c64565b8114613c8257600080fd5b50565b600081359050613c9481613c6e565b92915050565b600060208284031215613cb057613caf6138b8565b5b6000613cbe84828501613c85565b91505092915050565b60008060408385031215613cde57613cdd6138b8565b5b6000613cec85828601613b3b565b9250506020613cfd85828601613b3b565b9150509250929050565b6000604082019050613d1c6000830185613b7d565b613d296020830184613be7565b9392505050565b600080fd5b600080fd5b600080fd5b60008083601f840112613d5557613d54613d30565b5b8235905067ffffffffffffffff811115613d7257613d71613d35565b5b602083019150836020820283011115613d8e57613d8d613d3a565b5b9250929050565b60008083601f840112613dab57613daa613d30565b5b8235905067ffffffffffffffff811115613dc857613dc7613d35565b5b602083019150836020820283011115613de457613de3613d3a565b5b9250929050565b60008060008060408587031215613e0557613e046138b8565b5b600085013567ffffffffffffffff811115613e2357613e226138bd565b5b613e2f87828801613d3f565b9450945050602085013567ffffffffffffffff811115613e5257613e516138bd565b5b613e5e87828801613d95565b925092505092959194509250565b600067ffffffffffffffff82169050919050565b613e8981613e6c565b82525050565b600061ffff82169050919050565b613ea681613e8f565b82525050565b6000606082019050613ec16000830186613e80565b613ece6020830185613e9d565b613edb6040830184613e9d565b949350505050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f2082613aae565b810181811067ffffffffffffffff82111715613f3f57613f3e613ee8565b5b80604052505050565b6000613f526138ae565b9050613f5e8282613f17565b919050565b600067ffffffffffffffff821115613f7e57613f7d613ee8565b5b613f8782613aae565b9050602081019050919050565b82818337600083830152505050565b6000613fb6613fb184613f63565b613f48565b905082815260208101848484011115613fd257613fd1613ee3565b5b613fdd848285613f94565b509392505050565b600082601f830112613ffa57613ff9613d30565b5b813561400a848260208601613fa3565b91505092915050565b600060208284031215614029576140286138b8565b5b600082013567ffffffffffffffff811115614047576140466138bd565b5b61405384828501613fe5565b91505092915050565b6003811061406957600080fd5b50565b60008135905061407b8161405c565b92915050565b600060208284031215614097576140966138b8565b5b60006140a58482850161406c565b91505092915050565b6000602082840312156140c4576140c36138b8565b5b60006140d2848285016139c6565b91505092915050565b6140e481613e8f565b81146140ef57600080fd5b50565b600081359050614101816140db565b92915050565b60008083601f84011261411d5761411c613d30565b5b8235905067ffffffffffffffff81111561413a57614139613d35565b5b60208301915083602082028301111561415657614155613d3a565b5b9250929050565b600080600060408486031215614176576141756138b8565b5b6000614184868287016140f2565b935050602084013567ffffffffffffffff8111156141a5576141a46138bd565b5b6141b186828701614107565b92509250509250925092565b6141c681613947565b81146141d157600080fd5b50565b6000813590506141e3816141bd565b92915050565b60008060408385031215614200576141ff6138b8565b5b600061420e858286016139c6565b925050602061421f858286016141d4565b9150509250929050565b600067ffffffffffffffff82111561424457614243613ee8565b5b61424d82613aae565b9050602081019050919050565b600061426d61426884614229565b613f48565b90508281526020810184848401111561428957614288613ee3565b5b614294848285613f94565b509392505050565b600082601f8301126142b1576142b0613d30565b5b81356142c184826020860161425a565b91505092915050565b600080600080608085870312156142e4576142e36138b8565b5b60006142f2878288016139c6565b9450506020614303878288016139c6565b935050604061431487828801613b3b565b925050606085013567ffffffffffffffff811115614335576143346138bd565b5b6143418782880161429c565b91505092959194509250565b60008060208385031215614364576143636138b8565b5b600083013567ffffffffffffffff811115614382576143816138bd565b5b61438e85828601614107565b92509250509250929050565b600080604083850312156143b1576143b06138b8565b5b60006143bf858286016139c6565b92505060206143d0858286016139c6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061442157607f821691505b60208210811415614435576144346143da565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061447582613b1a565b915061448083613b1a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144b9576144b861443b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006144fe82613b1a565b915061450983613b1a565b925082614519576145186144c4565b5b828204905092915050565b7f6d7573742070726f7669646520657175616c207175616e74697469657320616e60008201527f6420726563697069656e74730000000000000000000000000000000000000000602082015250565b6000614580602c83613a6a565b915061458b82614524565b604082019050919050565b600060208201905081810360008301526145af81614573565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156145fb576145fa6138b8565b5b6000614609848285016140f2565b91505092915050565b600061461d82613b1a565b915061462883613b1a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561465d5761465c61443b565b5b828201905092915050565b600061467382613b1a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146a6576146a561443b565b5b600182019050919050565b7f6d696e742f6f72646572206578636565647320737570706c7900000000000000600082015250565b60006146e7601983613a6a565b91506146f2826146b1565b602082019050919050565b60006020820190508181036000830152614716816146da565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f696e76616c69642073616c652073746174650000000000000000000000000000600082015250565b6000614782601283613a6a565b915061478d8261474c565b602082019050919050565b600060208201905081810360008301526147b181614775565b9050919050565b7f4f6e6c792032207065722077616c6c6574000000000000000000000000000000600082015250565b60006147ee601183613a6a565b91506147f9826147b8565b602082019050919050565b6000602082019050818103600083015261481d816147e1565b9050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b600061485a600e83613a6a565b915061486582614824565b602082019050919050565b600060208201905081810360008301526148898161484d565b9050919050565b600061489b82613e6c565b91506148a683613e6c565b92508167ffffffffffffffff04831182151516156148c7576148c661443b565b5b828202905092915050565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b6000614908601983613a6a565b9150614913826148d2565b602082019050919050565b60006020820190508181036000830152614937816148fb565b9050919050565b60008160601b9050919050565b60006149568261493e565b9050919050565b60006149688261494b565b9050919050565b61498061497b8261399d565b61495d565b82525050565b6000614992828461496f565b60148201915081905092915050565b7f596f7520617265206e6f74206f6e2074686520646f75626c652077686974652060008201527f6c69737400000000000000000000000000000000000000000000000000000000602082015250565b60006149fd602483613a6a565b9150614a08826149a1565b604082019050919050565b60006020820190508181036000830152614a2c816149f0565b9050919050565b7f73616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000614a69601283613a6a565b9150614a7482614a33565b602082019050919050565b60006020820190508181036000830152614a9881614a5c565b9050919050565b7f4f6e6c792031207065722077616c6c6574000000000000000000000000000000600082015250565b6000614ad5601183613a6a565b9150614ae082614a9f565b602082019050919050565b60006020820190508181036000830152614b0481614ac8565b9050919050565b7f4d696e742f4f72646572206578636565647320737570706c7900000000000000600082015250565b6000614b41601983613a6a565b9150614b4c82614b0b565b602082019050919050565b60006020820190508181036000830152614b7081614b34565b9050919050565b7f53616c6520646964206e6f742073746172742079657421000000000000000000600082015250565b6000614bad601783613a6a565b9150614bb882614b77565b602082019050919050565b60006020820190508181036000830152614bdc81614ba0565b9050919050565b7f596f7520617265206e6f74206f6e20746865207768697465206c697374000000600082015250565b6000614c19601d83613a6a565b9150614c2482614be3565b602082019050919050565b60006020820190508181036000830152614c4881614c0c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614cab602f83613a6a565b9150614cb682614c4f565b604082019050919050565b60006020820190508181036000830152614cda81614c9e565b9050919050565b600081905092915050565b6000614cf782613a5f565b614d018185614ce1565b9350614d11818560208601613a7b565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614d3f81614409565b614d498186614ce1565b94506001821660008114614d645760018114614d7557614da8565b60ff19831686528186019350614da8565b614d7e85614d1d565b60005b83811015614da057815481890152600182019150602081019050614d81565b838801955050505b50505092915050565b6000614dbd8286614cec565b9150614dc98285614cec565b9150614dd58284614d32565b9150819050949350505050565b7f546869732077616c6c6574206973206e6f74206f6e2074686520616c6c6f776c60008201527f697374206f722077686974656c69737400000000000000000000000000000000602082015250565b6000614e3e603083613a6a565b9150614e4982614de2565b604082019050919050565b60006020820190508181036000830152614e6d81614e31565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ed0602683613a6a565b9150614edb82614e74565b604082019050919050565b60006020820190508181036000830152614eff81614ec3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614f3c602083613a6a565b9150614f4782614f06565b602082019050919050565b60006020820190508181036000830152614f6b81614f2f565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614fce602a83613a6a565b9150614fd982614f72565b604082019050919050565b60006020820190508181036000830152614ffd81614fc1565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061503a601983613a6a565b915061504582615004565b602082019050919050565b600060208201905081810360008301526150698161502d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061509782615070565b6150a1818561507b565b93506150b1818560208601613a7b565b6150ba81613aae565b840191505092915050565b60006080820190506150da6000830187613b7d565b6150e76020830186613b7d565b6150f46040830185613be7565b8181036060830152615106818461508c565b905095945050505050565b600081519050615120816138ee565b92915050565b60006020828403121561513c5761513b6138b8565b5b600061514a84828501615111565b9150509291505056fea2646970667358221220e77a5b186ae1c8f14215a52c13d4399dcd56ca0ec6065a1d6632313b1f870d8a64736f6c6343000809003368747470733a2f2f6d6972736f6673706163652e6d7970696e6174612e636c6f75642f697066732f516d62776f31326f575357356648697a5535447356486a6464576836314b6b3353717a56536854477a553975376e68747470733a2f2f6d6972736f6673706163652e6d7970696e6174612e636c6f75642f697066732f516d525346376156414e317a454a427834757241615972326a32694b4b724b70636a745939576a4642644e4e3363
Deployed Bytecode
0x6080604052600436106102555760003560e01c80638da5cb5b11610139578063bf64b2f7116100b6578063cb66266c1161007a578063cb66266c1461087e578063e8a3d4851461089a578063e985e9c5146108c5578063f2fde38b14610902578063f95df4141461092b578063f9e88ef8146109545761025c565b8063bf64b2f714610793578063c6682862146107c0578063c73f9ae7146107eb578063c74b197c14610818578063c87b56dd146108415761025c565b8063a22cb465116100fd578063a22cb465146106d1578063abcd9c83146106fa578063b88d4fde14610725578063b9b6fce81461074e578063bd32fb661461076a5761025c565b80638da5cb5b146105fc5780638e8a44fb14610627578063938e3d7b146106525780639491730b1461067b57806395d89b41146106a65761025c565b8063318e26e0116101d25780636352211e116101965780636352211e1461050f57806370a082311461054c578063715018a614610589578063785617b3146105a0578063853828b6146105bc578063899fe6bc146105d35761025c565b8063318e26e01461043e57806342842e0e146104675780634c47363f146104905780634c575826146104bd5780635a67de07146104e65761025c565b806312065fe01161021957806312065fe01461035857806318160ddd1461038357806323b872dd146103ae5780632421d49a146103d75780632a55205a146104005761025c565b806301ffc9a71461026157806304634d8d1461029e57806306fdde03146102c7578063081812fc146102f2578063095ea7b31461032f5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b506102886004803603810190610283919061391a565b61097d565b6040516102959190613962565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190613a1f565b61099f565b005b3480156102d357600080fd5b506102dc6109b5565b6040516102e99190613af8565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190613b50565b610a47565b6040516103269190613b8c565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613ba7565b610ac6565b005b34801561036457600080fd5b5061036d610c0a565b60405161037a9190613bf6565b60405180910390f35b34801561038f57600080fd5b50610398610c12565b6040516103a59190613bf6565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190613c11565b610c29565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190613c9a565b610f4e565b005b34801561040c57600080fd5b5061042760048036038101906104229190613cc7565b610f60565b604051610435929190613d07565b60405180910390f35b34801561044a57600080fd5b5061046560048036038101906104609190613deb565b61114b565b005b34801561047357600080fd5b5061048e60048036038101906104899190613c11565b6112ea565b005b34801561049c57600080fd5b506104a561130a565b6040516104b493929190613eac565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df9190614013565b611352565b005b3480156104f257600080fd5b5061050d60048036038101906105089190614081565b611374565b005b34801561051b57600080fd5b5061053660048036038101906105319190613b50565b611401565b6040516105439190613b8c565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e91906140ae565b611413565b6040516105809190613bf6565b60405180910390f35b34801561059557600080fd5b5061059e6114cc565b005b6105ba60048036038101906105b5919061415d565b6114e0565b005b3480156105c857600080fd5b506105d16117c0565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190614013565b611d05565b005b34801561060857600080fd5b50610611611d42565b60405161061e9190613b8c565b60405180910390f35b34801561063357600080fd5b5061063c611d6c565b6040516106499190613962565b60405180910390f35b34801561065e57600080fd5b5061067960048036038101906106749190614013565b611d7f565b005b34801561068757600080fd5b50610690611da1565b60405161069d9190613af8565b60405180910390f35b3480156106b257600080fd5b506106bb611e2f565b6040516106c89190613af8565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f391906141e9565b611ec1565b005b34801561070657600080fd5b5061070f612039565b60405161071c9190613af8565b60405180910390f35b34801561073157600080fd5b5061074c600480360381019061074791906142ca565b6120c7565b005b6107686004803603810190610763919061434d565b61213a565b005b34801561077657600080fd5b50610791600480360381019061078c9190613c9a565b6123e7565b005b34801561079f57600080fd5b506107a86123f9565b6040516107b793929190613eac565b60405180910390f35b3480156107cc57600080fd5b506107d5612441565b6040516107e29190613af8565b60405180910390f35b3480156107f757600080fd5b506108006124cf565b60405161080f93929190613eac565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a9190613ba7565b612517565b005b34801561084d57600080fd5b5061086860048036038101906108639190613b50565b61256a565b6040516108759190613af8565b60405180910390f35b6108986004803603810190610893919061434d565b61273f565b005b3480156108a657600080fd5b506108af612a62565b6040516108bc9190613af8565b60405180910390f35b3480156108d157600080fd5b506108ec60048036038101906108e7919061439a565b612af4565b6040516108f99190613962565b60405180910390f35b34801561090e57600080fd5b50610929600480360381019061092491906140ae565b612b88565b005b34801561093757600080fd5b50610952600480360381019061094d9190613c9a565b612c0c565b005b34801561096057600080fd5b5061097b600480360381019061097691906140ae565b612c1e565b005b600061098882612c9d565b80610998575061099782612d2f565b5b9050919050565b6109a7612da9565b6109b18282612e27565b5050565b6060600280546109c490614409565b80601f01602080910402602001604051908101604052809291908181526020018280546109f090614409565b8015610a3d5780601f10610a1257610100808354040283529160200191610a3d565b820191906000526020600020905b815481529060010190602001808311610a2057829003601f168201915b5050505050905090565b6000610a5282612fbd565b610a88576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad182611401565b90508073ffffffffffffffffffffffffffffffffffffffff16610af261301c565b73ffffffffffffffffffffffffffffffffffffffff1614610b5557610b1e81610b1961301c565b612af4565b610b54576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600047905090565b6000610c1c613024565b6001546000540303905090565b6000610c3482613029565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c9b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ca7846130f7565b91509150610cbd8187610cb861301c565b61311e565b610d0957610cd286610ccd61301c565b612af4565b610d08576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d70576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d7d8686866001613162565b8015610d8857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5685610e32888887613168565b7c020000000000000000000000000000000000000000000000000000000017613190565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ede576000600185019050600060046000838152602001908152602001600020541415610edc576000548114610edb578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f4686868660016131bb565b505050505050565b610f56612da9565b80600b8190555050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156110f65760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006111006131c1565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661112c919061446a565b61113691906144f3565b90508160000151819350935050509250929050565b611153612da9565b81819050848490501461119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290614596565b60405180910390fd5b6000805b858590508110156111f4578585828181106111bd576111bc6145b6565b5b90506020020160208101906111d291906145e5565b61ffff16826111e19190614612565b9150806111ed90614668565b905061119f565b5060006111ff610c12565b90506029600001600a9054906101000a900461ffff1661ffff1682826112259190614612565b1115611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d906146fd565b60405180910390fd5b60005b848490508110156112e1576112d085858381811061128a576112896145b6565b5b905060200201602081019061129f91906140ae565b8888848181106112b2576112b16145b6565b5b90506020020160208101906112c791906145e5565b61ffff166131cb565b806112da90614668565b9050611269565b50505050505050565b611305838383604051806020016040528060008152506120c7565b505050565b60288060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900461ffff169080600001600a9054906101000a900461ffff16905083565b61135a612da9565b80602b908051906020019061137092919061380b565b5050565b61137c612da9565b60038160028111156113915761139061471d565b5b60ff16106113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb90614798565b60405180910390fd5b80600e60006101000a81548160ff021916908360028111156113f9576113f861471d565b5b021790555050565b600061140c82613029565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561147b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114d4612da9565b6114de6000613388565b565b6000602a6040518060600160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900461ffff1661ffff1661ffff16815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815250509050806020015161ffff168461ffff1661157a3361344e565b6115849190614612565b11156115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90614804565b60405180910390fd5b806040015161ffff168461ffff166115db610c12565b6115e59190614612565b1115611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90614870565b60405180910390fd5b80600001518461ffff1661163a9190614890565b67ffffffffffffffff163414611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c9061491e565b60405180910390fd5b6116f6336040516020016116999190614986565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506134a5565b611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90614a13565b60405180910390fd5b600060028111156117495761174861471d565b5b600e60009054906101000a900460ff16600281111561176b5761176a61471d565b5b14156117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a390614a7f565b60405180910390fd5b6117ba338561ffff166131cb565b50505050565b6117c8612da9565b6000479050600081116117da57600080fd5b611848600f6000600c81106117f2576117f16145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6000600c811061182c5761182b6145b6565b5b015484611839919061446a565b61184391906144f3565b6134bd565b6118b6600f6001600c81106118605761185f6145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6001600c811061189a576118996145b6565b5b0154846118a7919061446a565b6118b191906144f3565b6134bd565b611924600f6002600c81106118ce576118cd6145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6002600c8110611908576119076145b6565b5b015484611915919061446a565b61191f91906144f3565b6134bd565b611992600f6003600c811061193c5761193b6145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6003600c8110611976576119756145b6565b5b015484611983919061446a565b61198d91906144f3565b6134bd565b611a00600f6004600c81106119aa576119a96145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6004600c81106119e4576119e36145b6565b5b0154846119f1919061446a565b6119fb91906144f3565b6134bd565b611a6e600f6005600c8110611a1857611a176145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6005600c8110611a5257611a516145b6565b5b015484611a5f919061446a565b611a6991906144f3565b6134bd565b611adc600f6006600c8110611a8657611a856145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6006600c8110611ac057611abf6145b6565b5b015484611acd919061446a565b611ad791906144f3565b6134bd565b611b4a600f6007600c8110611af457611af36145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6007600c8110611b2e57611b2d6145b6565b5b015484611b3b919061446a565b611b4591906144f3565b6134bd565b611bb8600f6008600c8110611b6257611b616145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6008600c8110611b9c57611b9b6145b6565b5b015484611ba9919061446a565b611bb391906144f3565b6134bd565b611c26600f6009600c8110611bd057611bcf6145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b6009600c8110611c0a57611c096145b6565b5b015484611c17919061446a565b611c2191906144f3565b6134bd565b611c94600f600a600c8110611c3e57611c3d6145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b600a600c8110611c7857611c776145b6565b5b015484611c85919061446a565b611c8f91906144f3565b6134bd565b611d02600f600b600c8110611cac57611cab6145b6565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8601b600b600c8110611ce657611ce56145b6565b5b015484611cf3919061446a565b611cfd91906144f3565b6134bd565b50565b611d0d612da9565b6000602e60006101000a81548160ff02191690831515021790555080602c9080519060200190611d3e92919061380b565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b602e60009054906101000a900460ff1681565b611d87612da9565b80602f9080519060200190611d9d92919061380b565b5050565b602c8054611dae90614409565b80601f0160208091040260200160405190810160405280929190818152602001828054611dda90614409565b8015611e275780601f10611dfc57610100808354040283529160200191611e27565b820191906000526020600020905b815481529060010190602001808311611e0a57829003601f168201915b505050505081565b606060038054611e3e90614409565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6a90614409565b8015611eb75780601f10611e8c57610100808354040283529160200191611eb7565b820191906000526020600020905b815481529060010190602001808311611e9a57829003601f168201915b5050505050905090565b611ec961301c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f2e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611f3b61301c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fe861301c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161202d9190613962565b60405180910390a35050565b602b805461204690614409565b80601f016020809104026020016040519081016040528092919081815260200182805461207290614409565b80156120bf5780601f10612094576101008083540402835291602001916120bf565b820191906000526020600020905b8154815290600101906020018083116120a257829003601f168201915b505050505081565b6120d2848484610c29565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612134576120fd84848484613508565b612133576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600060296040518060600160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900461ffff1661ffff1661ffff16815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815250509050806020015161ffff166121cf3361344e565b1061220f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220690614aeb565b60405180910390fd5b806040015161ffff16612220610c12565b10612260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225790614b57565b60405180910390fd5b806000015167ffffffffffffffff1634146122b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a79061491e565b60405180910390fd5b600060028111156122c4576122c361471d565b5b600e60009054906101000a900460ff1660028111156122e6576122e561471d565b5b1415612327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231e90614bc3565b60405180910390fd5b6123983360405160200161233b9190614986565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050613668565b6123d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ce90614c2f565b60405180910390fd5b6123e23360016131cb565b505050565b6123ef612da9565b80600c8190555050565b602a8060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900461ffff169080600001600a9054906101000a900461ffff16905083565b602d805461244e90614409565b80601f016020809104026020016040519081016040528092919081815260200182805461247a90614409565b80156124c75780601f1061249c576101008083540402835291602001916124c7565b820191906000526020600020905b8154815290600101906020018083116124aa57829003601f168201915b505050505081565b60298060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900461ffff169080600001600a9054906101000a900461ffff16905083565b61251f612da9565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612565573d6000803e3d6000fd5b505050565b606061257582612fbd565b6125b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ab90614cc1565b60405180910390fd5b602e60009054906101000a900460ff161561265b57602b80546125d690614409565b80601f016020809104026020016040519081016040528092919081815260200182805461260290614409565b801561264f5780601f106126245761010080835404028352916020019161264f565b820191906000526020600020905b81548152906001019060200180831161263257829003601f168201915b5050505050905061273a565b6000602c805461266a90614409565b80601f016020809104026020016040519081016040528092919081815260200182805461269690614409565b80156126e35780601f106126b8576101008083540402835291602001916126e3565b820191906000526020600020905b8154815290600101906020018083116126c657829003601f168201915b5050505050905060008151116127085760405180602001604052806000815250612736565b8061271284613680565b602d60405160200161272693929190614db1565b6040516020818303038152906040525b9150505b919050565b600060286040518060600160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900461ffff1661ffff1661ffff16815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815250509050806020015161ffff166127d43361344e565b10612814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280b90614aeb565b60405180910390fd5b806040015161ffff16612825610c12565b10612865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285c90614b57565b60405180910390fd5b806000015167ffffffffffffffff1634146128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac9061491e565b60405180910390fd5b612926336040516020016128c99190614986565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506136d0565b8061299e575061299d336040516020016129409190614986565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050613668565b5b6129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d490614e54565b60405180910390fd5b6002808111156129f0576129ef61471d565b5b600e60009054906101000a900460ff166002811115612a1257612a1161471d565b5b14612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4990614a7f565b60405180910390fd5b612a5d3360016131cb565b505050565b6060602f8054612a7190614409565b80601f0160208091040260200160405190810160405280929190818152602001828054612a9d90614409565b8015612aea5780601f10612abf57610100808354040283529160200191612aea565b820191906000526020600020905b815481529060010190602001808311612acd57829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b90612da9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf790614ee6565b60405180910390fd5b612c0981613388565b50565b612c14612da9565b80600d8190555050565b612c26612da9565b600047905060008111612c3857600080fd5b612c99826103e8602760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484612c8a919061446a565b612c9491906144f3565b6134bd565b5050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612cf857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d285750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612da25750612da1826136e8565b5b9050919050565b612db1613752565b73ffffffffffffffffffffffffffffffffffffffff16612dcf611d42565b73ffffffffffffffffffffffffffffffffffffffff1614612e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1c90614f52565b60405180910390fd5b565b612e2f6131c1565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8490614fe4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef490615050565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081612fc8613024565b11158015612fd7575060005482105b8015613015575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080613038613024565b116130c0576000548110156130bf5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156130bd575b60008114156130b3576004600083600190039350838152602001908152602001600020549050613088565b80925050506130f2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861317f86868461375a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612710905090565b600080549050600082141561320c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132196000848385613162565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613290836132816000866000613168565b61328a85613763565b17613190565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461333157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506132f6565b50600082141561336d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061338360008483856131bb565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600b546134b48385613773565b14905092915050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613503573d6000803e3d6000fd5b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261352e61301c565b8786866040518563ffffffff1660e01b815260040161355094939291906150c5565b602060405180830381600087803b15801561356a57600080fd5b505af192505050801561359b57506040513d601f19601f820116820180604052508101906135989190615126565b60015b613615573d80600081146135cb576040519150601f19603f3d011682016040523d82523d6000602084013e6135d0565b606091505b5060008151141561360d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000600c546136778385613773565b14905092915050565b606060806040510190508060405280825b6001156136bc57600183039250600a81066030018353600a81049050806136b7576136bc565b613691565b508181036020830392508083525050919050565b6000600d546136df8385613773565b14905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b60008082905060005b84518110156137be576137a98286838151811061379c5761379b6145b6565b5b60200260200101516137c9565b915080806137b690614668565b91505061377c565b508091505092915050565b60008183106137e1576137dc82846137f4565b6137ec565b6137eb83836137f4565b5b905092915050565b600082600052816020526040600020905092915050565b82805461381790614409565b90600052602060002090601f0160209004810192826138395760008555613880565b82601f1061385257805160ff1916838001178555613880565b82800160010185558215613880579182015b8281111561387f578251825591602001919060010190613864565b5b50905061388d9190613891565b5090565b5b808211156138aa576000816000905550600101613892565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6138f7816138c2565b811461390257600080fd5b50565b600081359050613914816138ee565b92915050565b6000602082840312156139305761392f6138b8565b5b600061393e84828501613905565b91505092915050565b60008115159050919050565b61395c81613947565b82525050565b60006020820190506139776000830184613953565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139a88261397d565b9050919050565b6139b88161399d565b81146139c357600080fd5b50565b6000813590506139d5816139af565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6139fc816139db565b8114613a0757600080fd5b50565b600081359050613a19816139f3565b92915050565b60008060408385031215613a3657613a356138b8565b5b6000613a44858286016139c6565b9250506020613a5585828601613a0a565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a99578082015181840152602081019050613a7e565b83811115613aa8576000848401525b50505050565b6000601f19601f8301169050919050565b6000613aca82613a5f565b613ad48185613a6a565b9350613ae4818560208601613a7b565b613aed81613aae565b840191505092915050565b60006020820190508181036000830152613b128184613abf565b905092915050565b6000819050919050565b613b2d81613b1a565b8114613b3857600080fd5b50565b600081359050613b4a81613b24565b92915050565b600060208284031215613b6657613b656138b8565b5b6000613b7484828501613b3b565b91505092915050565b613b868161399d565b82525050565b6000602082019050613ba16000830184613b7d565b92915050565b60008060408385031215613bbe57613bbd6138b8565b5b6000613bcc858286016139c6565b9250506020613bdd85828601613b3b565b9150509250929050565b613bf081613b1a565b82525050565b6000602082019050613c0b6000830184613be7565b92915050565b600080600060608486031215613c2a57613c296138b8565b5b6000613c38868287016139c6565b9350506020613c49868287016139c6565b9250506040613c5a86828701613b3b565b9150509250925092565b6000819050919050565b613c7781613c64565b8114613c8257600080fd5b50565b600081359050613c9481613c6e565b92915050565b600060208284031215613cb057613caf6138b8565b5b6000613cbe84828501613c85565b91505092915050565b60008060408385031215613cde57613cdd6138b8565b5b6000613cec85828601613b3b565b9250506020613cfd85828601613b3b565b9150509250929050565b6000604082019050613d1c6000830185613b7d565b613d296020830184613be7565b9392505050565b600080fd5b600080fd5b600080fd5b60008083601f840112613d5557613d54613d30565b5b8235905067ffffffffffffffff811115613d7257613d71613d35565b5b602083019150836020820283011115613d8e57613d8d613d3a565b5b9250929050565b60008083601f840112613dab57613daa613d30565b5b8235905067ffffffffffffffff811115613dc857613dc7613d35565b5b602083019150836020820283011115613de457613de3613d3a565b5b9250929050565b60008060008060408587031215613e0557613e046138b8565b5b600085013567ffffffffffffffff811115613e2357613e226138bd565b5b613e2f87828801613d3f565b9450945050602085013567ffffffffffffffff811115613e5257613e516138bd565b5b613e5e87828801613d95565b925092505092959194509250565b600067ffffffffffffffff82169050919050565b613e8981613e6c565b82525050565b600061ffff82169050919050565b613ea681613e8f565b82525050565b6000606082019050613ec16000830186613e80565b613ece6020830185613e9d565b613edb6040830184613e9d565b949350505050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f2082613aae565b810181811067ffffffffffffffff82111715613f3f57613f3e613ee8565b5b80604052505050565b6000613f526138ae565b9050613f5e8282613f17565b919050565b600067ffffffffffffffff821115613f7e57613f7d613ee8565b5b613f8782613aae565b9050602081019050919050565b82818337600083830152505050565b6000613fb6613fb184613f63565b613f48565b905082815260208101848484011115613fd257613fd1613ee3565b5b613fdd848285613f94565b509392505050565b600082601f830112613ffa57613ff9613d30565b5b813561400a848260208601613fa3565b91505092915050565b600060208284031215614029576140286138b8565b5b600082013567ffffffffffffffff811115614047576140466138bd565b5b61405384828501613fe5565b91505092915050565b6003811061406957600080fd5b50565b60008135905061407b8161405c565b92915050565b600060208284031215614097576140966138b8565b5b60006140a58482850161406c565b91505092915050565b6000602082840312156140c4576140c36138b8565b5b60006140d2848285016139c6565b91505092915050565b6140e481613e8f565b81146140ef57600080fd5b50565b600081359050614101816140db565b92915050565b60008083601f84011261411d5761411c613d30565b5b8235905067ffffffffffffffff81111561413a57614139613d35565b5b60208301915083602082028301111561415657614155613d3a565b5b9250929050565b600080600060408486031215614176576141756138b8565b5b6000614184868287016140f2565b935050602084013567ffffffffffffffff8111156141a5576141a46138bd565b5b6141b186828701614107565b92509250509250925092565b6141c681613947565b81146141d157600080fd5b50565b6000813590506141e3816141bd565b92915050565b60008060408385031215614200576141ff6138b8565b5b600061420e858286016139c6565b925050602061421f858286016141d4565b9150509250929050565b600067ffffffffffffffff82111561424457614243613ee8565b5b61424d82613aae565b9050602081019050919050565b600061426d61426884614229565b613f48565b90508281526020810184848401111561428957614288613ee3565b5b614294848285613f94565b509392505050565b600082601f8301126142b1576142b0613d30565b5b81356142c184826020860161425a565b91505092915050565b600080600080608085870312156142e4576142e36138b8565b5b60006142f2878288016139c6565b9450506020614303878288016139c6565b935050604061431487828801613b3b565b925050606085013567ffffffffffffffff811115614335576143346138bd565b5b6143418782880161429c565b91505092959194509250565b60008060208385031215614364576143636138b8565b5b600083013567ffffffffffffffff811115614382576143816138bd565b5b61438e85828601614107565b92509250509250929050565b600080604083850312156143b1576143b06138b8565b5b60006143bf858286016139c6565b92505060206143d0858286016139c6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061442157607f821691505b60208210811415614435576144346143da565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061447582613b1a565b915061448083613b1a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144b9576144b861443b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006144fe82613b1a565b915061450983613b1a565b925082614519576145186144c4565b5b828204905092915050565b7f6d7573742070726f7669646520657175616c207175616e74697469657320616e60008201527f6420726563697069656e74730000000000000000000000000000000000000000602082015250565b6000614580602c83613a6a565b915061458b82614524565b604082019050919050565b600060208201905081810360008301526145af81614573565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156145fb576145fa6138b8565b5b6000614609848285016140f2565b91505092915050565b600061461d82613b1a565b915061462883613b1a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561465d5761465c61443b565b5b828201905092915050565b600061467382613b1a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146a6576146a561443b565b5b600182019050919050565b7f6d696e742f6f72646572206578636565647320737570706c7900000000000000600082015250565b60006146e7601983613a6a565b91506146f2826146b1565b602082019050919050565b60006020820190508181036000830152614716816146da565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f696e76616c69642073616c652073746174650000000000000000000000000000600082015250565b6000614782601283613a6a565b915061478d8261474c565b602082019050919050565b600060208201905081810360008301526147b181614775565b9050919050565b7f4f6e6c792032207065722077616c6c6574000000000000000000000000000000600082015250565b60006147ee601183613a6a565b91506147f9826147b8565b602082019050919050565b6000602082019050818103600083015261481d816147e1565b9050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b600061485a600e83613a6a565b915061486582614824565b602082019050919050565b600060208201905081810360008301526148898161484d565b9050919050565b600061489b82613e6c565b91506148a683613e6c565b92508167ffffffffffffffff04831182151516156148c7576148c661443b565b5b828202905092915050565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b6000614908601983613a6a565b9150614913826148d2565b602082019050919050565b60006020820190508181036000830152614937816148fb565b9050919050565b60008160601b9050919050565b60006149568261493e565b9050919050565b60006149688261494b565b9050919050565b61498061497b8261399d565b61495d565b82525050565b6000614992828461496f565b60148201915081905092915050565b7f596f7520617265206e6f74206f6e2074686520646f75626c652077686974652060008201527f6c69737400000000000000000000000000000000000000000000000000000000602082015250565b60006149fd602483613a6a565b9150614a08826149a1565b604082019050919050565b60006020820190508181036000830152614a2c816149f0565b9050919050565b7f73616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000614a69601283613a6a565b9150614a7482614a33565b602082019050919050565b60006020820190508181036000830152614a9881614a5c565b9050919050565b7f4f6e6c792031207065722077616c6c6574000000000000000000000000000000600082015250565b6000614ad5601183613a6a565b9150614ae082614a9f565b602082019050919050565b60006020820190508181036000830152614b0481614ac8565b9050919050565b7f4d696e742f4f72646572206578636565647320737570706c7900000000000000600082015250565b6000614b41601983613a6a565b9150614b4c82614b0b565b602082019050919050565b60006020820190508181036000830152614b7081614b34565b9050919050565b7f53616c6520646964206e6f742073746172742079657421000000000000000000600082015250565b6000614bad601783613a6a565b9150614bb882614b77565b602082019050919050565b60006020820190508181036000830152614bdc81614ba0565b9050919050565b7f596f7520617265206e6f74206f6e20746865207768697465206c697374000000600082015250565b6000614c19601d83613a6a565b9150614c2482614be3565b602082019050919050565b60006020820190508181036000830152614c4881614c0c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614cab602f83613a6a565b9150614cb682614c4f565b604082019050919050565b60006020820190508181036000830152614cda81614c9e565b9050919050565b600081905092915050565b6000614cf782613a5f565b614d018185614ce1565b9350614d11818560208601613a7b565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614d3f81614409565b614d498186614ce1565b94506001821660008114614d645760018114614d7557614da8565b60ff19831686528186019350614da8565b614d7e85614d1d565b60005b83811015614da057815481890152600182019150602081019050614d81565b838801955050505b50505092915050565b6000614dbd8286614cec565b9150614dc98285614cec565b9150614dd58284614d32565b9150819050949350505050565b7f546869732077616c6c6574206973206e6f74206f6e2074686520616c6c6f776c60008201527f697374206f722077686974656c69737400000000000000000000000000000000602082015250565b6000614e3e603083613a6a565b9150614e4982614de2565b604082019050919050565b60006020820190508181036000830152614e6d81614e31565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ed0602683613a6a565b9150614edb82614e74565b604082019050919050565b60006020820190508181036000830152614eff81614ec3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614f3c602083613a6a565b9150614f4782614f06565b602082019050919050565b60006020820190508181036000830152614f6b81614f2f565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614fce602a83613a6a565b9150614fd982614f72565b604082019050919050565b60006020820190508181036000830152614ffd81614fc1565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061503a601983613a6a565b915061504582615004565b602082019050919050565b600060208201905081810360008301526150698161502d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061509782615070565b6150a1818561507b565b93506150b1818560208601613a7b565b6150ba81613aae565b840191505092915050565b60006080820190506150da6000830187613b7d565b6150e76020830186613b7d565b6150f46040830185613be7565b8181036060830152615106818461508c565b905095945050505050565b600081519050615120816138ee565b92915050565b60006020828403121561513c5761513b6138b8565b5b600061514a84828501615111565b9150509291505056fea2646970667358221220e77a5b186ae1c8f14215a52c13d4399dcd56ca0ec6065a1d6632313b1f870d8a64736f6c63430008090033
Deployed Bytecode Sourcemap
79967:8409:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85728:209;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86735:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32861:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39344:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38785:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86889:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28612:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43051:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12685:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77403:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;84497:569;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45964:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81081:147;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;85357:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85072:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34254:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29796:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;83846:643;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87464:909;;;;;;;;;;;;;:::i;:::-;;85483:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81757:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85236:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81675:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33037:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39902:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81553:117;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46747:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82565:580;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12560:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81391:153;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;81713:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81236:147;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;87112:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85947:780;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83151:687;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85625:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40367:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12822:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87242:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85728:209;85827:4;85847:40;85874:11;85847:25;:40::i;:::-;:84;;;;85891:40;85918:11;85891:25;:40::i;:::-;85847:84;85840:91;;85728:209;;;:::o;86735:142::-;2014:13;:11;:13::i;:::-;86827:44:::1;86847:8;86857:12;86827:18;:44::i;:::-;86735:142:::0;;:::o;32861:100::-;32915:13;32948:5;32941:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32861:100;:::o;39344:218::-;39420:7;39445:16;39453:7;39445;:16::i;:::-;39440:64;;39470:34;;;;;;;;;;;;;;39440:64;39524:15;:24;39540:7;39524:24;;;;;;;;;;;:30;;;;;;;;;;;;39517:37;;39344:218;;;:::o;38785:400::-;38866:13;38882:16;38890:7;38882;:16::i;:::-;38866:32;;38938:5;38915:28;;:19;:17;:19::i;:::-;:28;;;38911:175;;38963:44;38980:5;38987:19;:17;:19::i;:::-;38963:16;:44::i;:::-;38958:128;;39035:35;;;;;;;;;;;;;;38958:128;38911:175;39131:2;39098:15;:24;39114:7;39098:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39169:7;39165:2;39149:28;;39158:5;39149:28;;;;;;;;;;;;38855:330;38785:400;;:::o;86889:93::-;86931:4;86955:21;86948:28;;86889:93;:::o;28612:323::-;28673:7;28901:15;:13;:15::i;:::-;28886:12;;28870:13;;:28;:46;28863:53;;28612:323;:::o;43051:2817::-;43185:27;43215;43234:7;43215:18;:27::i;:::-;43185:57;;43300:4;43259:45;;43275:19;43259:45;;;43255:86;;43313:28;;;;;;;;;;;;;;43255:86;43355:27;43384:23;43411:35;43438:7;43411:26;:35::i;:::-;43354:92;;;;43546:68;43571:15;43588:4;43594:19;:17;:19::i;:::-;43546:24;:68::i;:::-;43541:180;;43634:43;43651:4;43657:19;:17;:19::i;:::-;43634:16;:43::i;:::-;43629:92;;43686:35;;;;;;;;;;;;;;43629:92;43541:180;43752:1;43738:16;;:2;:16;;;43734:52;;;43763:23;;;;;;;;;;;;;;43734:52;43799:43;43821:4;43827:2;43831:7;43840:1;43799:21;:43::i;:::-;43935:15;43932:160;;;44075:1;44054:19;44047:30;43932:160;44472:18;:24;44491:4;44472:24;;;;;;;;;;;;;;;;44470:26;;;;;;;;;;;;44541:18;:22;44560:2;44541:22;;;;;;;;;;;;;;;;44539:24;;;;;;;;;;;44863:146;44900:2;44949:45;44964:4;44970:2;44974:19;44949:14;:45::i;:::-;25011:8;44921:73;44863:18;:146::i;:::-;44834:17;:26;44852:7;44834:26;;;;;;;;;;;:175;;;;45180:1;25011:8;45129:19;:47;:52;45125:627;;;45202:19;45234:1;45224:7;:11;45202:33;;45391:1;45357:17;:30;45375:11;45357:30;;;;;;;;;;;;:35;45353:384;;;45495:13;;45480:11;:28;45476:242;;45675:19;45642:17;:30;45660:11;45642:30;;;;;;;;;;;:52;;;;45476:242;45353:384;45183:569;45125:627;45799:7;45795:2;45780:27;;45789:4;45780:27;;;;;;;;;;;;45818:42;45839:4;45845:2;45849:7;45858:1;45818:20;:42::i;:::-;43174:2694;;;43051:2817;;;:::o;12685:131::-;2014:13;:11;:13::i;:::-;12799:11:::1;12771:25;:39;;;;12685:131:::0;:::o;77403:442::-;77500:7;77509;77529:26;77558:17;:27;77576:8;77558:27;;;;;;;;;;;77529:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77630:1;77602:30;;:7;:16;;;:30;;;77598:92;;;77659:19;77649:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77598:92;77702:21;77767:17;:15;:17::i;:::-;77726:58;;77740:7;:23;;;77727:36;;:10;:36;;;;:::i;:::-;77726:58;;;;:::i;:::-;77702:82;;77805:7;:16;;;77823:13;77797:40;;;;;;77403:442;;;;;:::o;84497:569::-;2014:13;:11;:13::i;:::-;84624:9:::1;;:16;;84605:8;;:15;;:35;84597:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;84699:21;84735:9:::0;84731:89:::1;84754:8;;:15;;84750:1;:19;84731:89;;;84801:8;;84810:1;84801:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;84784:28;;;;;;;:::i;:::-;;;84771:3;;;;:::i;:::-;;;84731:89;;;;84826:15;84844:13;:11;:13::i;:::-;84826:31;;84900:15;:25;;;;;;;;;;;;84873:52;;84883:13;84873:7;:23;;;;:::i;:::-;:52;;84864:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;84969:9;84965:96;84988:9;;:16;;84984:1;:20;84965:96;;;85019:34;85026:9;;85036:1;85026:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;85040:8;;85049:1;85040:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;85019:34;;:5;:34::i;:::-;85006:3;;;;:::i;:::-;;;84965:96;;;;84590:476;;84497:569:::0;;;;:::o;45964:185::-;46102:39;46119:4;46125:2;46129:7;46102:39;;;;;;;;;;;;:16;:39::i;:::-;45964:185;;;:::o;81081:147::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;85357:118::-;2014:13;:11;:13::i;:::-;85454:15:::1;85439:12;:30;;;;;;;;;;;;:::i;:::-;;85357:118:::0;:::o;85072:158::-;2014:13;:11;:13::i;:::-;85170:1:::1;85156:10;85150:17;;;;;;;;:::i;:::-;;:21;;;85141:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;85214:10;85202:9;;:22;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;85072:158:::0;:::o;34254:152::-;34326:7;34369:27;34388:7;34369:18;:27::i;:::-;34346:52;;34254:152;;;:::o;29796:233::-;29868:7;29909:1;29892:19;;:5;:19;;;29888:60;;;29920:28;;;;;;;;;;;;;;29888:60;23955:13;29966:18;:25;29985:5;29966:25;;;;;;;;;;;;;;;;:55;29959:62;;29796:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;83846:643::-;83942:22;83967:21;83942:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84046:4;:12;;;84004:54;;84034:8;84004:38;;:27;84019:10;84004:13;:27::i;:::-;:38;;;;:::i;:::-;:54;;83995:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;84125:4;:14;;;84097:42;;84113:8;84097:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;84088:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;84199:4;:10;;;84188:8;:21;;;;;;:::i;:::-;84175:34;;:9;:34;84166:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;84256:82;84315:10;84297:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;84286:43;;;;;;84331:5;;84256:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:28;:82::i;:::-;84247:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;84409:14;84396:27;;;;;;;;:::i;:::-;;:9;;;;;;;;;;;:27;;;;;;;;:::i;:::-;;;;84387:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;84454:29;84461:10;84473:8;84454:29;;:5;:29::i;:::-;83935:554;83846:643;;;:::o;87464:909::-;2014:13;:11;:13::i;:::-;87517:15:::1;87535:21;87517:39;;87585:1;87575:7;:11;87567:20;;;::::0;::::1;;87598:53;87609:7;87617:1;87609:10;;;;;;;:::i;:::-;;;;;;;;;;;;;87646:4;87632:7;87640:1;87632:10;;;;;;;:::i;:::-;;;;87622:7;:20;;;;:::i;:::-;87621:29;;;;:::i;:::-;87598:10;:53::i;:::-;87662;87673:7;87681:1;87673:10;;;;;;;:::i;:::-;;;;;;;;;;;;;87710:4;87696:7;87704:1;87696:10;;;;;;;:::i;:::-;;;;87686:7;:20;;;;:::i;:::-;87685:29;;;;:::i;:::-;87662:10;:53::i;:::-;87726;87737:7;87745:1;87737:10;;;;;;;:::i;:::-;;;;;;;;;;;;;87774:4;87760:7;87768:1;87760:10;;;;;;;:::i;:::-;;;;87750:7;:20;;;;:::i;:::-;87749:29;;;;:::i;:::-;87726:10;:53::i;:::-;87790;87801:7;87809:1;87801:10;;;;;;;:::i;:::-;;;;;;;;;;;;;87838:4;87824:7;87832:1;87824:10;;;;;;;:::i;:::-;;;;87814:7;:20;;;;:::i;:::-;87813:29;;;;:::i;:::-;87790:10;:53::i;:::-;87854;87865:7;87873:1;87865:10;;;;;;;:::i;:::-;;;;;;;;;;;;;87902:4;87888:7;87896:1;87888:10;;;;;;;:::i;:::-;;;;87878:7;:20;;;;:::i;:::-;87877:29;;;;:::i;:::-;87854:10;:53::i;:::-;87918;87929:7;87937:1;87929:10;;;;;;;:::i;:::-;;;;;;;;;;;;;87966:4;87952:7;87960:1;87952:10;;;;;;;:::i;:::-;;;;87942:7;:20;;;;:::i;:::-;87941:29;;;;:::i;:::-;87918:10;:53::i;:::-;87982;87993:7;88001:1;87993:10;;;;;;;:::i;:::-;;;;;;;;;;;;;88030:4;88016:7;88024:1;88016:10;;;;;;;:::i;:::-;;;;88006:7;:20;;;;:::i;:::-;88005:29;;;;:::i;:::-;87982:10;:53::i;:::-;88046;88057:7;88065:1;88057:10;;;;;;;:::i;:::-;;;;;;;;;;;;;88094:4;88080:7;88088:1;88080:10;;;;;;;:::i;:::-;;;;88070:7;:20;;;;:::i;:::-;88069:29;;;;:::i;:::-;88046:10;:53::i;:::-;88110;88121:7;88129:1;88121:10;;;;;;;:::i;:::-;;;;;;;;;;;;;88158:4;88144:7;88152:1;88144:10;;;;;;;:::i;:::-;;;;88134:7;:20;;;;:::i;:::-;88133:29;;;;:::i;:::-;88110:10;:53::i;:::-;88174;88185:7;88193:1;88185:10;;;;;;;:::i;:::-;;;;;;;;;;;;;88222:4;88208:7;88216:1;88208:10;;;;;;;:::i;:::-;;;;88198:7;:20;;;;:::i;:::-;88197:29;;;;:::i;:::-;88174:10;:53::i;:::-;88238:55;88249:7;88257:2;88249:11;;;;;;;:::i;:::-;;;;;;;;;;;;;88288:4;88273:7;88281:2;88273:11;;;;;;;:::i;:::-;;;;88263:7;:21;;;;:::i;:::-;88262:30;;;;:::i;:::-;88238:10;:55::i;:::-;88304;88315:7;88323:2;88315:11;;;;;;;:::i;:::-;;;;;;;;;;;;;88354:4;88339:7;88347:2;88339:11;;;;;;;:::i;:::-;;;;88329:7;:21;;;;:::i;:::-;88328:30;;;;:::i;:::-;88304:10;:55::i;:::-;87506:867;87464:909::o:0;85483:134::-;2014:13;:11;:13::i;:::-;85571:5:::1;85556:12;;:20;;;;;;;;;;;;;;;;;;85602:7;85587:14;:22;;;;;;;;;;;;:::i;:::-;;85483:134:::0;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;81757:31::-;;;;;;;;;;;;;:::o;85236:115::-;2014:13;:11;:13::i;:::-;85331:14:::1;85316:12;:29;;;;;;;;;;;;:::i;:::-;;85236:115:::0;:::o;81675:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33037:104::-;33093:13;33126:7;33119:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33037:104;:::o;39902:308::-;40013:19;:17;:19::i;:::-;40001:31;;:8;:31;;;39997:61;;;40041:17;;;;;;;;;;;;;;39997:61;40123:8;40071:18;:39;40090:19;:17;:19::i;:::-;40071:39;;;;;;;;;;;;;;;:49;40111:8;40071:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;40183:8;40147:55;;40162:19;:17;:19::i;:::-;40147:55;;;40193:8;40147:55;;;;;;:::i;:::-;;;;;;;;39902:308;;:::o;81553:117::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46747:399::-;46914:31;46927:4;46933:2;46937:7;46914:12;:31::i;:::-;46978:1;46960:2;:14;;;:19;46956:183;;46999:56;47030:4;47036:2;47040:7;47049:5;46999:30;:56::i;:::-;46994:145;;47083:40;;;;;;;;;;;;;;46994:145;46956:183;46747:399;;;;:::o;82565:580::-;82645:22;82670:15;82645:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82731:4;:12;;;82701:42;;:27;82716:10;82701:13;:27::i;:::-;:42;82692:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;82798:4;:14;;;82782:30;;:13;:11;:13::i;:::-;:30;82773:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;82872:4;:10;;;82859:23;;:9;:23;82850:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;82941:14;82928:27;;;;;;;;:::i;:::-;;:9;;;;;;;;;;;:27;;;;;;;;:::i;:::-;;;;82920:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;82999:76;83052:10;83034:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;83023:43;;;;;;83068:5;;82999:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:22;:76::i;:::-;82990:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;83117:22;83124:10;83136:1;83117:5;:22::i;:::-;82638:507;82565:580;;:::o;12560:119::-;2014:13;:11;:13::i;:::-;12662:11:::1;12640:19;:33;;;;12560:119:::0;:::o;81391:153::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;81713:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;81236:147::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;87112:124::-;2014:13;:11;:13::i;:::-;87203:8:::1;87195:26;;:35;87222:7;87195:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;87112:124:::0;;:::o;85947:780::-;86065:13;86118:16;86126:7;86118;:16::i;:::-;86096:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;86224:12;;;;;;;;;;;86220:500;;;86260:12;86253:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86220:500;86305:28;86336:14;86305:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86420:1;86395:14;86389:28;:32;:319;;;;;;;;;;;;;;;;;86525:14;86570:18;86580:7;86570:9;:18::i;:::-;86619:13;86478:181;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;86389:319;86365:343;;;85947:780;;;;:::o;83151:687::-;83232:22;83257:15;83232:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83318:4;:12;;;83288:42;;:27;83303:10;83288:13;:27::i;:::-;:42;83279:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;83385:4;:14;;;83369:30;;:13;:11;:13::i;:::-;:30;83360:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;83459:4;:10;;;83446:23;;:9;:23;83437:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;83516:76;83569:10;83551:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;83540:43;;;;;;83585:5;;83516:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:22;:76::i;:::-;:156;;;;83596:76;83649:10;83631:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;83620:43;;;;;;83665:5;;83596:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:22;:76::i;:::-;83516:156;83507:221;;;;;;;;;;;;:::i;:::-;;;;;;;;;83757:22;83744:35;;;;;;;;:::i;:::-;;:9;;;;;;;;;;;:35;;;;;;;;:::i;:::-;;;83735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;83810:22;83817:10;83829:1;83810:5;:22::i;:::-;83225:613;83151:687;;:::o;85625:97::-;85669:13;85702:12;85695:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85625:97;:::o;40367:164::-;40464:4;40488:18;:25;40507:5;40488:25;;;;;;;;;;;;;;;:35;40514:8;40488:35;;;;;;;;;;;;;;;;;;;;;;;;;40481:42;;40367:164;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;12822:119::-;2014:13;:11;:13::i;:::-;12924:11:::1;12902:19;:33;;;;12822:119:::0;:::o;87242:216::-;2014:13;:11;:13::i;:::-;87311:15:::1;87329:21;87311:39;;87379:1;87369:7;:11;87361:20;;;::::0;::::1;;87392:60;87403:8;87447:4;87424:9;:19;87434:8;87424:19;;;;;;;;;;;;;;;;87414:7;:29;;;;:::i;:::-;87413:38;;;;:::i;:::-;87392:10;:60::i;:::-;87300:158;87242:216:::0;:::o;31959:639::-;32044:4;32383:10;32368:25;;:11;:25;;;;:102;;;;32460:10;32445:25;;:11;:25;;;;32368:102;:179;;;;32537:10;32522:25;;:11;:25;;;;32368:179;32348:199;;31959:639;;;:::o;77133:215::-;77235:4;77274:26;77259:41;;;:11;:41;;;;:81;;;;77304:36;77328:11;77304:23;:36::i;:::-;77259:81;77252:88;;77133:215;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;78495:332::-;78614:17;:15;:17::i;:::-;78598:33;;:12;:33;;;;78590:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;78717:1;78697:22;;:8;:22;;;;78689:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;78784:35;;;;;;;;78796:8;78784:35;;;;;;78806:12;78784:35;;;;;78762:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78495:332;;:::o;40789:282::-;40854:4;40910:7;40891:15;:13;:15::i;:::-;:26;;:66;;;;;40944:13;;40934:7;:23;40891:66;:153;;;;;41043:1;24731:8;40995:17;:26;41013:7;40995:26;;;;;;;;;;;;:44;:49;40891:153;40871:173;;40789:282;;;:::o;62555:105::-;62615:7;62642:10;62635:17;;62555:105;:::o;28128:92::-;28184:7;28128:92;:::o;35409:1275::-;35476:7;35496:12;35511:7;35496:22;;35579:4;35560:15;:13;:15::i;:::-;:23;35556:1061;;35613:13;;35606:4;:20;35602:1015;;;35651:14;35668:17;:23;35686:4;35668:23;;;;;;;;;;;;35651:40;;35785:1;24731:8;35757:6;:24;:29;35753:845;;;36422:113;36439:1;36429:6;:11;36422:113;;;36482:17;:25;36500:6;;;;;;;36482:25;;;;;;;;;;;;36473:34;;36422:113;;;36568:6;36561:13;;;;;;35753:845;35628:989;35602:1015;35556:1061;36645:31;;;;;;;;;;;;;;35409:1275;;;;:::o;41952:479::-;42054:27;42083:23;42124:38;42165:15;:24;42181:7;42165:24;;;;;;;;;;;42124:65;;42336:18;42313:41;;42393:19;42387:26;42368:45;;42298:126;41952:479;;;:::o;41180:659::-;41329:11;41494:16;41487:5;41483:28;41474:37;;41654:16;41643:9;41639:32;41626:45;;41804:15;41793:9;41790:30;41782:5;41771:9;41768:20;41765:56;41755:66;;41180:659;;;;;:::o;47808:159::-;;;;;:::o;61864:311::-;61999:7;62019:16;25135:3;62045:19;:41;;62019:68;;25135:3;62113:31;62124:4;62130:2;62134:9;62113:10;:31::i;:::-;62105:40;;:62;;62098:69;;;61864:311;;;;;:::o;37232:450::-;37312:14;37480:16;37473:5;37469:28;37460:37;;37657:5;37643:11;37618:23;37614:41;37611:52;37604:5;37601:63;37591:73;;37232:450;;;;:::o;48632:158::-;;;;;:::o;78127:97::-;78185:6;78211:5;78204:12;;78127:97;:::o;50408:2454::-;50481:20;50504:13;;50481:36;;50544:1;50532:8;:13;50528:44;;;50554:18;;;;;;;;;;;;;;50528:44;50585:61;50615:1;50619:2;50623:12;50637:8;50585:21;:61::i;:::-;51129:1;24093:2;51099:1;:26;;51098:32;51086:8;:45;51060:18;:22;51079:2;51060:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;51408:139;51445:2;51499:33;51522:1;51526:2;51530:1;51499:14;:33::i;:::-;51466:30;51487:8;51466:20;:30::i;:::-;:66;51408:18;:139::i;:::-;51374:17;:31;51392:12;51374:31;;;;;;;;;;;:173;;;;51564:16;51595:11;51624:8;51609:12;:23;51595:37;;51879:16;51875:2;51871:25;51859:37;;52251:12;52211:8;52170:1;52108:25;52049:1;51988;51961:335;52376:1;52362:12;52358:20;52316:346;52417:3;52408:7;52405:16;52316:346;;52635:7;52625:8;52622:1;52595:25;52592:1;52589;52584:59;52470:1;52461:7;52457:15;52446:26;;52316:346;;;52320:77;52707:1;52695:8;:13;52691:45;;;52717:19;;;;;;;;;;;;;;52691:45;52769:3;52753:13;:19;;;;50834:1950;;52794:60;52823:1;52827:2;52831:12;52845:8;52794:20;:60::i;:::-;50470:2392;50408:2454;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;30111:178::-;30172:7;23955:13;24093:2;30200:18;:25;30219:5;30200:25;;;;;;;;;;;;;;;;:50;;30199:82;30192:89;;30111:178;;;:::o;13139:193::-;13238:4;13301:25;;13258:39;13284:5;13291:4;13258:24;:39::i;:::-;:68;13251:75;;13139:193;;;;:::o;86992:116::-;87075:8;87067:26;;:35;87094:7;87067:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86992:116;;:::o;49230:716::-;49393:4;49439:2;49414:45;;;49460:19;:17;:19::i;:::-;49481:4;49487:7;49496:5;49414:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49410:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49714:1;49697:6;:13;:18;49693:235;;;49743:40;;;;;;;;;;;;;;49693:235;49886:6;49880:13;49871:6;49867:2;49863:15;49856:38;49410:529;49583:54;;;49573:64;;;:6;:64;;;;49566:71;;;49230:716;;;;;;:::o;12951:181::-;13044:4;13107:19;;13064:39;13090:5;13097:4;13064:24;:39::i;:::-;:62;13057:69;;12951:181;;;;:::o;62762:1581::-;62827:17;63252:4;63245;63239:11;63235:22;63228:29;;63344:3;63338:4;63331:17;63450:3;63689:5;63671:428;63697:1;63671:428;;;63737:1;63732:3;63728:11;63721:18;;63908:2;63902:4;63898:13;63894:2;63890:22;63885:3;63877:36;64002:2;63996:4;63992:13;63984:21;;64069:4;64059:25;;64077:5;;64059:25;63671:428;;;63675:21;64138:3;64133;64129:13;64253:4;64248:3;64244:14;64237:21;;64318:6;64313:3;64306:19;62866:1470;;62762:1581;;;:::o;13338:181::-;13431:4;13494:19;;13451:39;13477:5;13484:4;13451:24;:39::i;:::-;:62;13444:69;;13338:181;;;;:::o;74685:157::-;74770:4;74809:25;74794:40;;;:11;:40;;;;74787:47;;74685:157;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;61565:147::-;61702:6;61565:147;;;;;:::o;37784:324::-;37854:14;38087:1;38077:8;38074:15;38048:24;38044:46;38034:56;;37784:324;;;:::o;5679:296::-;5762:7;5782:20;5805:4;5782:27;;5825:9;5820:118;5844:5;:12;5840:1;:16;5820:118;;;5893:33;5903:12;5917:5;5923:1;5917:8;;;;;;;;:::i;:::-;;;;;;;;5893:9;:33::i;:::-;5878:48;;5858:3;;;;;:::i;:::-;;;;5820:118;;;;5955:12;5948:19;;;5679:296;;;;:::o;11886:149::-;11949:7;11980:1;11976;:5;:51;;12007:20;12022:1;12025;12007:14;:20::i;:::-;11976:51;;;11984:20;11999:1;12002;11984:14;:20::i;:::-;11976:51;11969:58;;11886:149;;;;:::o;12043:268::-;12111:13;12218:1;12212:4;12205:15;12247:1;12241:4;12234:15;12288:4;12282;12272:21;12263:30;;12043:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:307::-;3235:1;3245:113;3259:6;3256:1;3253:13;3245:113;;;3344:1;3339:3;3335:11;3329:18;3325:1;3320:3;3316:11;3309:39;3281:2;3278:1;3274:10;3269:15;;3245:113;;;3376:6;3373:1;3370:13;3367:101;;;3456:1;3447:6;3442:3;3438:16;3431:27;3367:101;3216:258;3167:307;;;:::o;3480:102::-;3521:6;3572:2;3568:7;3563:2;3556:5;3552:14;3548:28;3538:38;;3480:102;;;:::o;3588:364::-;3676:3;3704:39;3737:5;3704:39;:::i;:::-;3759:71;3823:6;3818:3;3759:71;:::i;:::-;3752:78;;3839:52;3884:6;3879:3;3872:4;3865:5;3861:16;3839:52;:::i;:::-;3916:29;3938:6;3916:29;:::i;:::-;3911:3;3907:39;3900:46;;3680:272;3588:364;;;;:::o;3958:313::-;4071:4;4109:2;4098:9;4094:18;4086:26;;4158:9;4152:4;4148:20;4144:1;4133:9;4129:17;4122:47;4186:78;4259:4;4250:6;4186:78;:::i;:::-;4178:86;;3958:313;;;;:::o;4277:77::-;4314:7;4343:5;4332:16;;4277:77;;;:::o;4360:122::-;4433:24;4451:5;4433:24;:::i;:::-;4426:5;4423:35;4413:63;;4472:1;4469;4462:12;4413:63;4360:122;:::o;4488:139::-;4534:5;4572:6;4559:20;4550:29;;4588:33;4615:5;4588:33;:::i;:::-;4488:139;;;;:::o;4633:329::-;4692:6;4741:2;4729:9;4720:7;4716:23;4712:32;4709:119;;;4747:79;;:::i;:::-;4709:119;4867:1;4892:53;4937:7;4928:6;4917:9;4913:22;4892:53;:::i;:::-;4882:63;;4838:117;4633:329;;;;:::o;4968:118::-;5055:24;5073:5;5055:24;:::i;:::-;5050:3;5043:37;4968:118;;:::o;5092:222::-;5185:4;5223:2;5212:9;5208:18;5200:26;;5236:71;5304:1;5293:9;5289:17;5280:6;5236:71;:::i;:::-;5092:222;;;;:::o;5320:474::-;5388:6;5396;5445:2;5433:9;5424:7;5420:23;5416:32;5413:119;;;5451:79;;:::i;:::-;5413:119;5571:1;5596:53;5641:7;5632:6;5621:9;5617:22;5596:53;:::i;:::-;5586:63;;5542:117;5698:2;5724:53;5769:7;5760:6;5749:9;5745:22;5724:53;:::i;:::-;5714:63;;5669:118;5320:474;;;;;:::o;5800:118::-;5887:24;5905:5;5887:24;:::i;:::-;5882:3;5875:37;5800:118;;:::o;5924:222::-;6017:4;6055:2;6044:9;6040:18;6032:26;;6068:71;6136:1;6125:9;6121:17;6112:6;6068:71;:::i;:::-;5924:222;;;;:::o;6152:619::-;6229:6;6237;6245;6294:2;6282:9;6273:7;6269:23;6265:32;6262:119;;;6300:79;;:::i;:::-;6262:119;6420:1;6445:53;6490:7;6481:6;6470:9;6466:22;6445:53;:::i;:::-;6435:63;;6391:117;6547:2;6573:53;6618:7;6609:6;6598:9;6594:22;6573:53;:::i;:::-;6563:63;;6518:118;6675:2;6701:53;6746:7;6737:6;6726:9;6722:22;6701:53;:::i;:::-;6691:63;;6646:118;6152:619;;;;;:::o;6777:77::-;6814:7;6843:5;6832:16;;6777:77;;;:::o;6860:122::-;6933:24;6951:5;6933:24;:::i;:::-;6926:5;6923:35;6913:63;;6972:1;6969;6962:12;6913:63;6860:122;:::o;6988:139::-;7034:5;7072:6;7059:20;7050:29;;7088:33;7115:5;7088:33;:::i;:::-;6988:139;;;;:::o;7133:329::-;7192:6;7241:2;7229:9;7220:7;7216:23;7212:32;7209:119;;;7247:79;;:::i;:::-;7209:119;7367:1;7392:53;7437:7;7428:6;7417:9;7413:22;7392:53;:::i;:::-;7382:63;;7338:117;7133:329;;;;:::o;7468:474::-;7536:6;7544;7593:2;7581:9;7572:7;7568:23;7564:32;7561:119;;;7599:79;;:::i;:::-;7561:119;7719:1;7744:53;7789:7;7780:6;7769:9;7765:22;7744:53;:::i;:::-;7734:63;;7690:117;7846:2;7872:53;7917:7;7908:6;7897:9;7893:22;7872:53;:::i;:::-;7862:63;;7817:118;7468:474;;;;;:::o;7948:332::-;8069:4;8107:2;8096:9;8092:18;8084:26;;8120:71;8188:1;8177:9;8173:17;8164:6;8120:71;:::i;:::-;8201:72;8269:2;8258:9;8254:18;8245:6;8201:72;:::i;:::-;7948:332;;;;;:::o;8286:117::-;8395:1;8392;8385:12;8409:117;8518:1;8515;8508:12;8532:117;8641:1;8638;8631:12;8671:567;8743:8;8753:6;8803:3;8796:4;8788:6;8784:17;8780:27;8770:122;;8811:79;;:::i;:::-;8770:122;8924:6;8911:20;8901:30;;8954:18;8946:6;8943:30;8940:117;;;8976:79;;:::i;:::-;8940:117;9090:4;9082:6;9078:17;9066:29;;9144:3;9136:4;9128:6;9124:17;9114:8;9110:32;9107:41;9104:128;;;9151:79;;:::i;:::-;9104:128;8671:567;;;;;:::o;9261:568::-;9334:8;9344:6;9394:3;9387:4;9379:6;9375:17;9371:27;9361:122;;9402:79;;:::i;:::-;9361:122;9515:6;9502:20;9492:30;;9545:18;9537:6;9534:30;9531:117;;;9567:79;;:::i;:::-;9531:117;9681:4;9673:6;9669:17;9657:29;;9735:3;9727:4;9719:6;9715:17;9705:8;9701:32;9698:41;9695:128;;;9742:79;;:::i;:::-;9695:128;9261:568;;;;;:::o;9835:932::-;9956:6;9964;9972;9980;10029:2;10017:9;10008:7;10004:23;10000:32;9997:119;;;10035:79;;:::i;:::-;9997:119;10183:1;10172:9;10168:17;10155:31;10213:18;10205:6;10202:30;10199:117;;;10235:79;;:::i;:::-;10199:117;10348:79;10419:7;10410:6;10399:9;10395:22;10348:79;:::i;:::-;10330:97;;;;10126:311;10504:2;10493:9;10489:18;10476:32;10535:18;10527:6;10524:30;10521:117;;;10557:79;;:::i;:::-;10521:117;10670:80;10742:7;10733:6;10722:9;10718:22;10670:80;:::i;:::-;10652:98;;;;10447:313;9835:932;;;;;;;:::o;10773:101::-;10809:7;10849:18;10842:5;10838:30;10827:41;;10773:101;;;:::o;10880:115::-;10965:23;10982:5;10965:23;:::i;:::-;10960:3;10953:36;10880:115;;:::o;11001:89::-;11037:7;11077:6;11070:5;11066:18;11055:29;;11001:89;;;:::o;11096:115::-;11181:23;11198:5;11181:23;:::i;:::-;11176:3;11169:36;11096:115;;:::o;11217:430::-;11360:4;11398:2;11387:9;11383:18;11375:26;;11411:69;11477:1;11466:9;11462:17;11453:6;11411:69;:::i;:::-;11490:70;11556:2;11545:9;11541:18;11532:6;11490:70;:::i;:::-;11570;11636:2;11625:9;11621:18;11612:6;11570:70;:::i;:::-;11217:430;;;;;;:::o;11653:117::-;11762:1;11759;11752:12;11776:180;11824:77;11821:1;11814:88;11921:4;11918:1;11911:15;11945:4;11942:1;11935:15;11962:281;12045:27;12067:4;12045:27;:::i;:::-;12037:6;12033:40;12175:6;12163:10;12160:22;12139:18;12127:10;12124:34;12121:62;12118:88;;;12186:18;;:::i;:::-;12118:88;12226:10;12222:2;12215:22;12005:238;11962:281;;:::o;12249:129::-;12283:6;12310:20;;:::i;:::-;12300:30;;12339:33;12367:4;12359:6;12339:33;:::i;:::-;12249:129;;;:::o;12384:308::-;12446:4;12536:18;12528:6;12525:30;12522:56;;;12558:18;;:::i;:::-;12522:56;12596:29;12618:6;12596:29;:::i;:::-;12588:37;;12680:4;12674;12670:15;12662:23;;12384:308;;;:::o;12698:154::-;12782:6;12777:3;12772;12759:30;12844:1;12835:6;12830:3;12826:16;12819:27;12698:154;;;:::o;12858:412::-;12936:5;12961:66;12977:49;13019:6;12977:49;:::i;:::-;12961:66;:::i;:::-;12952:75;;13050:6;13043:5;13036:21;13088:4;13081:5;13077:16;13126:3;13117:6;13112:3;13108:16;13105:25;13102:112;;;13133:79;;:::i;:::-;13102:112;13223:41;13257:6;13252:3;13247;13223:41;:::i;:::-;12942:328;12858:412;;;;;:::o;13290:340::-;13346:5;13395:3;13388:4;13380:6;13376:17;13372:27;13362:122;;13403:79;;:::i;:::-;13362:122;13520:6;13507:20;13545:79;13620:3;13612:6;13605:4;13597:6;13593:17;13545:79;:::i;:::-;13536:88;;13352:278;13290:340;;;;:::o;13636:509::-;13705:6;13754:2;13742:9;13733:7;13729:23;13725:32;13722:119;;;13760:79;;:::i;:::-;13722:119;13908:1;13897:9;13893:17;13880:31;13938:18;13930:6;13927:30;13924:117;;;13960:79;;:::i;:::-;13924:117;14065:63;14120:7;14111:6;14100:9;14096:22;14065:63;:::i;:::-;14055:73;;13851:287;13636:509;;;;:::o;14151:113::-;14238:1;14231:5;14228:12;14218:40;;14254:1;14251;14244:12;14218:40;14151:113;:::o;14270:167::-;14330:5;14368:6;14355:20;14346:29;;14384:47;14425:5;14384:47;:::i;:::-;14270:167;;;;:::o;14443:357::-;14516:6;14565:2;14553:9;14544:7;14540:23;14536:32;14533:119;;;14571:79;;:::i;:::-;14533:119;14691:1;14716:67;14775:7;14766:6;14755:9;14751:22;14716:67;:::i;:::-;14706:77;;14662:131;14443:357;;;;:::o;14806:329::-;14865:6;14914:2;14902:9;14893:7;14889:23;14885:32;14882:119;;;14920:79;;:::i;:::-;14882:119;15040:1;15065:53;15110:7;15101:6;15090:9;15086:22;15065:53;:::i;:::-;15055:63;;15011:117;14806:329;;;;:::o;15141:120::-;15213:23;15230:5;15213:23;:::i;:::-;15206:5;15203:34;15193:62;;15251:1;15248;15241:12;15193:62;15141:120;:::o;15267:137::-;15312:5;15350:6;15337:20;15328:29;;15366:32;15392:5;15366:32;:::i;:::-;15267:137;;;;:::o;15427:568::-;15500:8;15510:6;15560:3;15553:4;15545:6;15541:17;15537:27;15527:122;;15568:79;;:::i;:::-;15527:122;15681:6;15668:20;15658:30;;15711:18;15703:6;15700:30;15697:117;;;15733:79;;:::i;:::-;15697:117;15847:4;15839:6;15835:17;15823:29;;15901:3;15893:4;15885:6;15881:17;15871:8;15867:32;15864:41;15861:128;;;15908:79;;:::i;:::-;15861:128;15427:568;;;;;:::o;16001:702::-;16095:6;16103;16111;16160:2;16148:9;16139:7;16135:23;16131:32;16128:119;;;16166:79;;:::i;:::-;16128:119;16286:1;16311:52;16355:7;16346:6;16335:9;16331:22;16311:52;:::i;:::-;16301:62;;16257:116;16440:2;16429:9;16425:18;16412:32;16471:18;16463:6;16460:30;16457:117;;;16493:79;;:::i;:::-;16457:117;16606:80;16678:7;16669:6;16658:9;16654:22;16606:80;:::i;:::-;16588:98;;;;16383:313;16001:702;;;;;:::o;16709:116::-;16779:21;16794:5;16779:21;:::i;:::-;16772:5;16769:32;16759:60;;16815:1;16812;16805:12;16759:60;16709:116;:::o;16831:133::-;16874:5;16912:6;16899:20;16890:29;;16928:30;16952:5;16928:30;:::i;:::-;16831:133;;;;:::o;16970:468::-;17035:6;17043;17092:2;17080:9;17071:7;17067:23;17063:32;17060:119;;;17098:79;;:::i;:::-;17060:119;17218:1;17243:53;17288:7;17279:6;17268:9;17264:22;17243:53;:::i;:::-;17233:63;;17189:117;17345:2;17371:50;17413:7;17404:6;17393:9;17389:22;17371:50;:::i;:::-;17361:60;;17316:115;16970:468;;;;;:::o;17444:307::-;17505:4;17595:18;17587:6;17584:30;17581:56;;;17617:18;;:::i;:::-;17581:56;17655:29;17677:6;17655:29;:::i;:::-;17647:37;;17739:4;17733;17729:15;17721:23;;17444:307;;;:::o;17757:410::-;17834:5;17859:65;17875:48;17916:6;17875:48;:::i;:::-;17859:65;:::i;:::-;17850:74;;17947:6;17940:5;17933:21;17985:4;17978:5;17974:16;18023:3;18014:6;18009:3;18005:16;18002:25;17999:112;;;18030:79;;:::i;:::-;17999:112;18120:41;18154:6;18149:3;18144;18120:41;:::i;:::-;17840:327;17757:410;;;;;:::o;18186:338::-;18241:5;18290:3;18283:4;18275:6;18271:17;18267:27;18257:122;;18298:79;;:::i;:::-;18257:122;18415:6;18402:20;18440:78;18514:3;18506:6;18499:4;18491:6;18487:17;18440:78;:::i;:::-;18431:87;;18247:277;18186:338;;;;:::o;18530:943::-;18625:6;18633;18641;18649;18698:3;18686:9;18677:7;18673:23;18669:33;18666:120;;;18705:79;;:::i;:::-;18666:120;18825:1;18850:53;18895:7;18886:6;18875:9;18871:22;18850:53;:::i;:::-;18840:63;;18796:117;18952:2;18978:53;19023:7;19014:6;19003:9;18999:22;18978:53;:::i;:::-;18968:63;;18923:118;19080:2;19106:53;19151:7;19142:6;19131:9;19127:22;19106:53;:::i;:::-;19096:63;;19051:118;19236:2;19225:9;19221:18;19208:32;19267:18;19259:6;19256:30;19253:117;;;19289:79;;:::i;:::-;19253:117;19394:62;19448:7;19439:6;19428:9;19424:22;19394:62;:::i;:::-;19384:72;;19179:287;18530:943;;;;;;;:::o;19479:559::-;19565:6;19573;19622:2;19610:9;19601:7;19597:23;19593:32;19590:119;;;19628:79;;:::i;:::-;19590:119;19776:1;19765:9;19761:17;19748:31;19806:18;19798:6;19795:30;19792:117;;;19828:79;;:::i;:::-;19792:117;19941:80;20013:7;20004:6;19993:9;19989:22;19941:80;:::i;:::-;19923:98;;;;19719:312;19479:559;;;;;:::o;20044:474::-;20112:6;20120;20169:2;20157:9;20148:7;20144:23;20140:32;20137:119;;;20175:79;;:::i;:::-;20137:119;20295:1;20320:53;20365:7;20356:6;20345:9;20341:22;20320:53;:::i;:::-;20310:63;;20266:117;20422:2;20448:53;20493:7;20484:6;20473:9;20469:22;20448:53;:::i;:::-;20438:63;;20393:118;20044:474;;;;;:::o;20524:180::-;20572:77;20569:1;20562:88;20669:4;20666:1;20659:15;20693:4;20690:1;20683:15;20710:320;20754:6;20791:1;20785:4;20781:12;20771:22;;20838:1;20832:4;20828:12;20859:18;20849:81;;20915:4;20907:6;20903:17;20893:27;;20849:81;20977:2;20969:6;20966:14;20946:18;20943:38;20940:84;;;20996:18;;:::i;:::-;20940:84;20761:269;20710:320;;;:::o;21036:180::-;21084:77;21081:1;21074:88;21181:4;21178:1;21171:15;21205:4;21202:1;21195:15;21222:348;21262:7;21285:20;21303:1;21285:20;:::i;:::-;21280:25;;21319:20;21337:1;21319:20;:::i;:::-;21314:25;;21507:1;21439:66;21435:74;21432:1;21429:81;21424:1;21417:9;21410:17;21406:105;21403:131;;;21514:18;;:::i;:::-;21403:131;21562:1;21559;21555:9;21544:20;;21222:348;;;;:::o;21576:180::-;21624:77;21621:1;21614:88;21721:4;21718:1;21711:15;21745:4;21742:1;21735:15;21762:185;21802:1;21819:20;21837:1;21819:20;:::i;:::-;21814:25;;21853:20;21871:1;21853:20;:::i;:::-;21848:25;;21892:1;21882:35;;21897:18;;:::i;:::-;21882:35;21939:1;21936;21932:9;21927:14;;21762:185;;;;:::o;21953:231::-;22093:34;22089:1;22081:6;22077:14;22070:58;22162:14;22157:2;22149:6;22145:15;22138:39;21953:231;:::o;22190:366::-;22332:3;22353:67;22417:2;22412:3;22353:67;:::i;:::-;22346:74;;22429:93;22518:3;22429:93;:::i;:::-;22547:2;22542:3;22538:12;22531:19;;22190:366;;;:::o;22562:419::-;22728:4;22766:2;22755:9;22751:18;22743:26;;22815:9;22809:4;22805:20;22801:1;22790:9;22786:17;22779:47;22843:131;22969:4;22843:131;:::i;:::-;22835:139;;22562:419;;;:::o;22987:180::-;23035:77;23032:1;23025:88;23132:4;23129:1;23122:15;23156:4;23153:1;23146:15;23173:327;23231:6;23280:2;23268:9;23259:7;23255:23;23251:32;23248:119;;;23286:79;;:::i;:::-;23248:119;23406:1;23431:52;23475:7;23466:6;23455:9;23451:22;23431:52;:::i;:::-;23421:62;;23377:116;23173:327;;;;:::o;23506:305::-;23546:3;23565:20;23583:1;23565:20;:::i;:::-;23560:25;;23599:20;23617:1;23599:20;:::i;:::-;23594:25;;23753:1;23685:66;23681:74;23678:1;23675:81;23672:107;;;23759:18;;:::i;:::-;23672:107;23803:1;23800;23796:9;23789:16;;23506:305;;;;:::o;23817:233::-;23856:3;23879:24;23897:5;23879:24;:::i;:::-;23870:33;;23925:66;23918:5;23915:77;23912:103;;;23995:18;;:::i;:::-;23912:103;24042:1;24035:5;24031:13;24024:20;;23817:233;;;:::o;24056:175::-;24196:27;24192:1;24184:6;24180:14;24173:51;24056:175;:::o;24237:366::-;24379:3;24400:67;24464:2;24459:3;24400:67;:::i;:::-;24393:74;;24476:93;24565:3;24476:93;:::i;:::-;24594:2;24589:3;24585:12;24578:19;;24237:366;;;:::o;24609:419::-;24775:4;24813:2;24802:9;24798:18;24790:26;;24862:9;24856:4;24852:20;24848:1;24837:9;24833:17;24826:47;24890:131;25016:4;24890:131;:::i;:::-;24882:139;;24609:419;;;:::o;25034:180::-;25082:77;25079:1;25072:88;25179:4;25176:1;25169:15;25203:4;25200:1;25193:15;25220:168;25360:20;25356:1;25348:6;25344:14;25337:44;25220:168;:::o;25394:366::-;25536:3;25557:67;25621:2;25616:3;25557:67;:::i;:::-;25550:74;;25633:93;25722:3;25633:93;:::i;:::-;25751:2;25746:3;25742:12;25735:19;;25394:366;;;:::o;25766:419::-;25932:4;25970:2;25959:9;25955:18;25947:26;;26019:9;26013:4;26009:20;26005:1;25994:9;25990:17;25983:47;26047:131;26173:4;26047:131;:::i;:::-;26039:139;;25766:419;;;:::o;26191:167::-;26331:19;26327:1;26319:6;26315:14;26308:43;26191:167;:::o;26364:366::-;26506:3;26527:67;26591:2;26586:3;26527:67;:::i;:::-;26520:74;;26603:93;26692:3;26603:93;:::i;:::-;26721:2;26716:3;26712:12;26705:19;;26364:366;;;:::o;26736:419::-;26902:4;26940:2;26929:9;26925:18;26917:26;;26989:9;26983:4;26979:20;26975:1;26964:9;26960:17;26953:47;27017:131;27143:4;27017:131;:::i;:::-;27009:139;;26736:419;;;:::o;27161:164::-;27301:16;27297:1;27289:6;27285:14;27278:40;27161:164;:::o;27331:366::-;27473:3;27494:67;27558:2;27553:3;27494:67;:::i;:::-;27487:74;;27570:93;27659:3;27570:93;:::i;:::-;27688:2;27683:3;27679:12;27672:19;;27331:366;;;:::o;27703:419::-;27869:4;27907:2;27896:9;27892:18;27884:26;;27956:9;27950:4;27946:20;27942:1;27931:9;27927:17;27920:47;27984:131;28110:4;27984:131;:::i;:::-;27976:139;;27703:419;;;:::o;28128:297::-;28167:7;28190:19;28207:1;28190:19;:::i;:::-;28185:24;;28223:19;28240:1;28223:19;:::i;:::-;28218:24;;28362:1;28342:18;28338:26;28335:1;28332:33;28327:1;28320:9;28313:17;28309:57;28306:83;;;28369:18;;:::i;:::-;28306:83;28417:1;28414;28410:9;28399:20;;28128:297;;;;:::o;28431:175::-;28571:27;28567:1;28559:6;28555:14;28548:51;28431:175;:::o;28612:366::-;28754:3;28775:67;28839:2;28834:3;28775:67;:::i;:::-;28768:74;;28851:93;28940:3;28851:93;:::i;:::-;28969:2;28964:3;28960:12;28953:19;;28612:366;;;:::o;28984:419::-;29150:4;29188:2;29177:9;29173:18;29165:26;;29237:9;29231:4;29227:20;29223:1;29212:9;29208:17;29201:47;29265:131;29391:4;29265:131;:::i;:::-;29257:139;;28984:419;;;:::o;29409:94::-;29442:8;29490:5;29486:2;29482:14;29461:35;;29409:94;;;:::o;29509:::-;29548:7;29577:20;29591:5;29577:20;:::i;:::-;29566:31;;29509:94;;;:::o;29609:100::-;29648:7;29677:26;29697:5;29677:26;:::i;:::-;29666:37;;29609:100;;;:::o;29715:157::-;29820:45;29840:24;29858:5;29840:24;:::i;:::-;29820:45;:::i;:::-;29815:3;29808:58;29715:157;;:::o;29878:256::-;29990:3;30005:75;30076:3;30067:6;30005:75;:::i;:::-;30105:2;30100:3;30096:12;30089:19;;30125:3;30118:10;;29878:256;;;;:::o;30140:223::-;30280:34;30276:1;30268:6;30264:14;30257:58;30349:6;30344:2;30336:6;30332:15;30325:31;30140:223;:::o;30369:366::-;30511:3;30532:67;30596:2;30591:3;30532:67;:::i;:::-;30525:74;;30608:93;30697:3;30608:93;:::i;:::-;30726:2;30721:3;30717:12;30710:19;;30369:366;;;:::o;30741:419::-;30907:4;30945:2;30934:9;30930:18;30922:26;;30994:9;30988:4;30984:20;30980:1;30969:9;30965:17;30958:47;31022:131;31148:4;31022:131;:::i;:::-;31014:139;;30741:419;;;:::o;31166:168::-;31306:20;31302:1;31294:6;31290:14;31283:44;31166:168;:::o;31340:366::-;31482:3;31503:67;31567:2;31562:3;31503:67;:::i;:::-;31496:74;;31579:93;31668:3;31579:93;:::i;:::-;31697:2;31692:3;31688:12;31681:19;;31340:366;;;:::o;31712:419::-;31878:4;31916:2;31905:9;31901:18;31893:26;;31965:9;31959:4;31955:20;31951:1;31940:9;31936:17;31929:47;31993:131;32119:4;31993:131;:::i;:::-;31985:139;;31712:419;;;:::o;32137:167::-;32277:19;32273:1;32265:6;32261:14;32254:43;32137:167;:::o;32310:366::-;32452:3;32473:67;32537:2;32532:3;32473:67;:::i;:::-;32466:74;;32549:93;32638:3;32549:93;:::i;:::-;32667:2;32662:3;32658:12;32651:19;;32310:366;;;:::o;32682:419::-;32848:4;32886:2;32875:9;32871:18;32863:26;;32935:9;32929:4;32925:20;32921:1;32910:9;32906:17;32899:47;32963:131;33089:4;32963:131;:::i;:::-;32955:139;;32682:419;;;:::o;33107:175::-;33247:27;33243:1;33235:6;33231:14;33224:51;33107:175;:::o;33288:366::-;33430:3;33451:67;33515:2;33510:3;33451:67;:::i;:::-;33444:74;;33527:93;33616:3;33527:93;:::i;:::-;33645:2;33640:3;33636:12;33629:19;;33288:366;;;:::o;33660:419::-;33826:4;33864:2;33853:9;33849:18;33841:26;;33913:9;33907:4;33903:20;33899:1;33888:9;33884:17;33877:47;33941:131;34067:4;33941:131;:::i;:::-;33933:139;;33660:419;;;:::o;34085:173::-;34225:25;34221:1;34213:6;34209:14;34202:49;34085:173;:::o;34264:366::-;34406:3;34427:67;34491:2;34486:3;34427:67;:::i;:::-;34420:74;;34503:93;34592:3;34503:93;:::i;:::-;34621:2;34616:3;34612:12;34605:19;;34264:366;;;:::o;34636:419::-;34802:4;34840:2;34829:9;34825:18;34817:26;;34889:9;34883:4;34879:20;34875:1;34864:9;34860:17;34853:47;34917:131;35043:4;34917:131;:::i;:::-;34909:139;;34636:419;;;:::o;35061:179::-;35201:31;35197:1;35189:6;35185:14;35178:55;35061:179;:::o;35246:366::-;35388:3;35409:67;35473:2;35468:3;35409:67;:::i;:::-;35402:74;;35485:93;35574:3;35485:93;:::i;:::-;35603:2;35598:3;35594:12;35587:19;;35246:366;;;:::o;35618:419::-;35784:4;35822:2;35811:9;35807:18;35799:26;;35871:9;35865:4;35861:20;35857:1;35846:9;35842:17;35835:47;35899:131;36025:4;35899:131;:::i;:::-;35891:139;;35618:419;;;:::o;36043:234::-;36183:34;36179:1;36171:6;36167:14;36160:58;36252:17;36247:2;36239:6;36235:15;36228:42;36043:234;:::o;36283:366::-;36425:3;36446:67;36510:2;36505:3;36446:67;:::i;:::-;36439:74;;36522:93;36611:3;36522:93;:::i;:::-;36640:2;36635:3;36631:12;36624:19;;36283:366;;;:::o;36655:419::-;36821:4;36859:2;36848:9;36844:18;36836:26;;36908:9;36902:4;36898:20;36894:1;36883:9;36879:17;36872:47;36936:131;37062:4;36936:131;:::i;:::-;36928:139;;36655:419;;;:::o;37080:148::-;37182:11;37219:3;37204:18;;37080:148;;;;:::o;37234:377::-;37340:3;37368:39;37401:5;37368:39;:::i;:::-;37423:89;37505:6;37500:3;37423:89;:::i;:::-;37416:96;;37521:52;37566:6;37561:3;37554:4;37547:5;37543:16;37521:52;:::i;:::-;37598:6;37593:3;37589:16;37582:23;;37344:267;37234:377;;;;:::o;37617:141::-;37666:4;37689:3;37681:11;;37712:3;37709:1;37702:14;37746:4;37743:1;37733:18;37725:26;;37617:141;;;:::o;37788:845::-;37891:3;37928:5;37922:12;37957:36;37983:9;37957:36;:::i;:::-;38009:89;38091:6;38086:3;38009:89;:::i;:::-;38002:96;;38129:1;38118:9;38114:17;38145:1;38140:137;;;;38291:1;38286:341;;;;38107:520;;38140:137;38224:4;38220:9;38209;38205:25;38200:3;38193:38;38260:6;38255:3;38251:16;38244:23;;38140:137;;38286:341;38353:38;38385:5;38353:38;:::i;:::-;38413:1;38427:154;38441:6;38438:1;38435:13;38427:154;;;38515:7;38509:14;38505:1;38500:3;38496:11;38489:35;38565:1;38556:7;38552:15;38541:26;;38463:4;38460:1;38456:12;38451:17;;38427:154;;;38610:6;38605:3;38601:16;38594:23;;38293:334;;38107:520;;37895:738;;37788:845;;;;:::o;38639:589::-;38864:3;38886:95;38977:3;38968:6;38886:95;:::i;:::-;38879:102;;38998:95;39089:3;39080:6;38998:95;:::i;:::-;38991:102;;39110:92;39198:3;39189:6;39110:92;:::i;:::-;39103:99;;39219:3;39212:10;;38639:589;;;;;;:::o;39234:235::-;39374:34;39370:1;39362:6;39358:14;39351:58;39443:18;39438:2;39430:6;39426:15;39419:43;39234:235;:::o;39475:366::-;39617:3;39638:67;39702:2;39697:3;39638:67;:::i;:::-;39631:74;;39714:93;39803:3;39714:93;:::i;:::-;39832:2;39827:3;39823:12;39816:19;;39475:366;;;:::o;39847:419::-;40013:4;40051:2;40040:9;40036:18;40028:26;;40100:9;40094:4;40090:20;40086:1;40075:9;40071:17;40064:47;40128:131;40254:4;40128:131;:::i;:::-;40120:139;;39847:419;;;:::o;40272:225::-;40412:34;40408:1;40400:6;40396:14;40389:58;40481:8;40476:2;40468:6;40464:15;40457:33;40272:225;:::o;40503:366::-;40645:3;40666:67;40730:2;40725:3;40666:67;:::i;:::-;40659:74;;40742:93;40831:3;40742:93;:::i;:::-;40860:2;40855:3;40851:12;40844:19;;40503:366;;;:::o;40875:419::-;41041:4;41079:2;41068:9;41064:18;41056:26;;41128:9;41122:4;41118:20;41114:1;41103:9;41099:17;41092:47;41156:131;41282:4;41156:131;:::i;:::-;41148:139;;40875:419;;;:::o;41300:182::-;41440:34;41436:1;41428:6;41424:14;41417:58;41300:182;:::o;41488:366::-;41630:3;41651:67;41715:2;41710:3;41651:67;:::i;:::-;41644:74;;41727:93;41816:3;41727:93;:::i;:::-;41845:2;41840:3;41836:12;41829:19;;41488:366;;;:::o;41860:419::-;42026:4;42064:2;42053:9;42049:18;42041:26;;42113:9;42107:4;42103:20;42099:1;42088:9;42084:17;42077:47;42141:131;42267:4;42141:131;:::i;:::-;42133:139;;41860:419;;;:::o;42285:229::-;42425:34;42421:1;42413:6;42409:14;42402:58;42494:12;42489:2;42481:6;42477:15;42470:37;42285:229;:::o;42520:366::-;42662:3;42683:67;42747:2;42742:3;42683:67;:::i;:::-;42676:74;;42759:93;42848:3;42759:93;:::i;:::-;42877:2;42872:3;42868:12;42861:19;;42520:366;;;:::o;42892:419::-;43058:4;43096:2;43085:9;43081:18;43073:26;;43145:9;43139:4;43135:20;43131:1;43120:9;43116:17;43109:47;43173:131;43299:4;43173:131;:::i;:::-;43165:139;;42892:419;;;:::o;43317:175::-;43457:27;43453:1;43445:6;43441:14;43434:51;43317:175;:::o;43498:366::-;43640:3;43661:67;43725:2;43720:3;43661:67;:::i;:::-;43654:74;;43737:93;43826:3;43737:93;:::i;:::-;43855:2;43850:3;43846:12;43839:19;;43498:366;;;:::o;43870:419::-;44036:4;44074:2;44063:9;44059:18;44051:26;;44123:9;44117:4;44113:20;44109:1;44098:9;44094:17;44087:47;44151:131;44277:4;44151:131;:::i;:::-;44143:139;;43870:419;;;:::o;44295:98::-;44346:6;44380:5;44374:12;44364:22;;44295:98;;;:::o;44399:168::-;44482:11;44516:6;44511:3;44504:19;44556:4;44551:3;44547:14;44532:29;;44399:168;;;;:::o;44573:360::-;44659:3;44687:38;44719:5;44687:38;:::i;:::-;44741:70;44804:6;44799:3;44741:70;:::i;:::-;44734:77;;44820:52;44865:6;44860:3;44853:4;44846:5;44842:16;44820:52;:::i;:::-;44897:29;44919:6;44897:29;:::i;:::-;44892:3;44888:39;44881:46;;44663:270;44573:360;;;;:::o;44939:640::-;45134:4;45172:3;45161:9;45157:19;45149:27;;45186:71;45254:1;45243:9;45239:17;45230:6;45186:71;:::i;:::-;45267:72;45335:2;45324:9;45320:18;45311:6;45267:72;:::i;:::-;45349;45417:2;45406:9;45402:18;45393:6;45349:72;:::i;:::-;45468:9;45462:4;45458:20;45453:2;45442:9;45438:18;45431:48;45496:76;45567:4;45558:6;45496:76;:::i;:::-;45488:84;;44939:640;;;;;;;:::o;45585:141::-;45641:5;45672:6;45666:13;45657:22;;45688:32;45714:5;45688:32;:::i;:::-;45585:141;;;;:::o;45732:349::-;45801:6;45850:2;45838:9;45829:7;45825:23;45821:32;45818:119;;;45856:79;;:::i;:::-;45818:119;45976:1;46001:63;46056:7;46047:6;46036:9;46032:22;46001:63;:::i;:::-;45991:73;;45947:127;45732:349;;;;:::o
Swarm Source
ipfs://e77a5b186ae1c8f14215a52c13d4399dcd56ca0ec6065a1d6632313b1f870d8a
Loading...
Loading
Loading...
Loading
[ 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.