ERC-721
Overview
Max Total Supply
371 opepenQR
Holders
154
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 opepenQRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OpepenQR
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-20 */ //#@@@@@@@@@@@@@@@@@@@( %@@@@@ @@@@@@ &@@ @@@@@@@@@@@@@@@@@@@@ //#@@ .@@( @@@@@@@@@ ,@@. @@@ %@@ //#@@ %%%%%%%%% .@@/ (%% %%%,,,@@@@@@ ,@@&%% @@@ %%%%%%%%/ %@@ //#@@ @@@@@@@@@ .@@( %@@ @@@ @@@@@@ ,@@@@@ @@@ @@@@@@@@( %@@ //#@@ @@@@@@@@@ .@@( %@@@@@ @@@ ,@@. @@@ @@@@@@@@( %@@ //#@@ @@@@@@@@@ .@@( %@@@@@ @@@ ,@@. @@@ @@@@@@@@( %@@ //#@@ .@@/ @@@ @@@ @@% @@@ %@@ //#@@@@@@@@@@@@@@@@@@@( %@@ @@@ @@@ @@% &@@ @@@@@@@@@@@@@@@@@@@@ // @@@ @@@@@@@@@@@@@@@@@ //#@@@@@@@@@@@ @@& %@@ @@% @@@ @@@@@@@@# @@@ ///########### ##( /##*** *** @@&*****@@@ ***@@@#####/ @@@ // @@@ @@@ @@@@@@@@@@@ @@@@@@ @@@ //#@@ @@@@@@ @@@@@@@@ @@@ @@@@@@@@@@@ // @@@@@@ @@@ .@@, @@@@@@ ,@@. @@@@@@@@@ @@@@@# @@@ //#@@@@@ @@@@@@@@, @@@ @@@@@. @@@@@@@@@@@@@@@ *@@@@@ // @@@@@@ @@@@@@ %@@ @@@@@@@@@ &@@@@@ @@@ @@@ *@@ // @@@ @@@ @@& %@@@@@@@@ @@@ @@@@@@@@@ *@@@@@ //#@@ @@@@@@@@@ @@@@@@@@@ @@@ &@@@@@ *@@@@@ //#@@ @@@@@@@@@ @@@@@@@@@ @@@ &@@@@@ *@@@@@ // @@@ @@@ @@@@@@@@@@@ @@@ @@@ &@@@@@@@@@@@@@@ *@@ // %@@@@@ @@@@@% &@@ @@@@@@@@# //#@@@@@@@@@@@@@@@@@@@( @@@ @@@@@@@@@@@ @@@ @@@ @@@@@@@@ //#@@ .@@/ @@@@@@ @@@@@@@@@@@@@@ @@@ *@@@@@ //#@@ @@@@@@@@@ .@@( @@@ @@@ @@% &@@@@@@@@@@@@@@ @@# @@@ //#@@ @@@@@@@@@ .@@( %@@ @@@ @@% &@@@@@@@@ @@@ *@@@@@ //#@@ @@@@@@@@@ .@@( %@@ ,,,%%% %%%,,*%%,,,,,,@@@ ,,,%%%%%&@@,,, //#@@ @@@@@@@@@ .@@/ %@@ @@@ @@@ ,@@. @@@ @@@@@@@@ //#@@ .@@( %@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@ @@@@@@@@ //#@@@@@@@@@@@@@@@@@@@( %@@ @@@ ,@@@@@ @@@@@@@@ // ERC721A Contracts v3.3.0 // Creator: Chiru Labs // SPDX-License-Identifier: MIT pragma solidity ^0.8.13; // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // 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); } } //Opensea Royalty Enforcement Libraries pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } } pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } pragma solidity ^0.8.13; contract OpepenQR is ERC721A, Ownable, DefaultOperatorFilterer, ReentrancyGuard { using Strings for uint256; string private baseURI; bool public mintEnabled = false; string public hiddenMetadataUri; bool public revealed = false; uint256 public price = 0.001 ether; uint256 public totalFree = 4444; uint256 public maxSupply = 4444; uint256 public maxPerTx = 20; uint256 public maxFreePerWallet = 2; mapping(address => uint256) private _mintedFreeAmount; constructor() ERC721A("opepenQR", "opepenQR") { _safeMint(msg.sender, 10); setHiddenMetadataUri("ipfs://bafkreida3hjucyolmx2nlphhvq4r2xy3sitz76ihb7qemzlzpevjihdlve"); } function mint(uint256 count) external payable { uint256 cost = price; bool isFree = ((totalSupply() + count < totalFree + 1) && (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet)); if (isFree) { cost = 0; } require(msg.value >= count * cost, "Please send the exact amount."); require(totalSupply() + count < maxSupply + 1, "No more"); require(mintEnabled, "Minting is not live yet"); require(count < maxPerTx + 1, "Max per TX reached."); if (isFree) { _mintedFreeAmount[msg.sender] += count; } _safeMint(msg.sender, count); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (revealed == false) { return hiddenMetadataUri; } require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseURI, tokenId.toString(), "")); } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function flipRevealed() public onlyOwner { revealed = !revealed; } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function setMaxFreePerWallet(uint256 amount) external onlyOwner { maxFreePerWallet = amount; } function setFreeAmount(uint256 amount) external onlyOwner { totalFree = amount; } function setPrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } function flipSale() external onlyOwner { mintEnabled = !mintEnabled; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success, "Transfer failed."); } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600b60006101000a81548160ff0219169083151502179055506000600d60006101000a81548160ff02191690831515021790555066038d7ea4c68000600e5561115c600f5561115c601055601460115560026012553480156200006857600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f6f706570656e51520000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f6f706570656e5152000000000000000000000000000000000000000000000000815250816002908051906020019062000104929190620009f9565b5080600390805190602001906200011d929190620009f9565b506200012e6200039860201b60201c565b6000819055505050620001566200014a6200039d60201b60201c565b620003a560201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200034b57801562000211576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001d792919062000aee565b600060405180830381600087803b158015620001f257600080fd5b505af115801562000207573d6000803e3d6000fd5b505050506200034a565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002cb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200029192919062000aee565b600060405180830381600087803b158015620002ac57600080fd5b505af1158015620002c1573d6000803e3d6000fd5b5050505062000349565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000314919062000b1b565b600060405180830381600087803b1580156200032f57600080fd5b505af115801562000344573d6000803e3d6000fd5b505050505b5b5b505060016009819055506200036833600a6200046b60201b60201c565b6200039260405180608001604052806042815260200162004556604291396200049160201b60201c565b62000dc6565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200048d828260405180602001604052806000815250620004bd60201b60201c565b5050565b620004a16200056e60201b60201c565b80600c9080519060200190620004b9929190620009f9565b5050565b620004cf8383620005ff60201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200056957600080549050600083820390505b620005186000868380600101945086620007e660201b60201c565b6200054f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620004fd5781600054146200056657600080fd5b50505b505050565b6200057e6200039d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005a46200094760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005f49062000b99565b60405180910390fd5b565b6000805490506000820362000640576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200065560008483856200097160201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620006e483620006c660008660006200097760201b60201c565b620006d785620009a760201b60201c565b17620009b760201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200078757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506200074a565b5060008203620007c3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620007e16000848385620009e260201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000814620009e860201b60201c565b8786866040518563ffffffff1660e01b815260040162000838949392919062000c7a565b6020604051808303816000875af19250505080156200087757506040513d601f19601f8201168201806040525081019062000874919062000d30565b60015b620008f4573d8060008114620008aa576040519150601f19603f3d011682016040523d82523d6000602084013e620008af565b606091505b506000815103620008ec576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b50505050565b60008060e883901c905060e862000996868684620009f060201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b82805462000a079062000d91565b90600052602060002090601f01602090048101928262000a2b576000855562000a77565b82601f1062000a4657805160ff191683800117855562000a77565b8280016001018555821562000a77579182015b8281111562000a7657825182559160200191906001019062000a59565b5b50905062000a86919062000a8a565b5090565b5b8082111562000aa557600081600090555060010162000a8b565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ad68262000aa9565b9050919050565b62000ae88162000ac9565b82525050565b600060408201905062000b05600083018562000add565b62000b14602083018462000add565b9392505050565b600060208201905062000b32600083018462000add565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000b8160208362000b38565b915062000b8e8262000b49565b602082019050919050565b6000602082019050818103600083015262000bb48162000b72565b9050919050565b6000819050919050565b62000bd08162000bbb565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000c1257808201518184015260208101905062000bf5565b8381111562000c22576000848401525b50505050565b6000601f19601f8301169050919050565b600062000c468262000bd6565b62000c52818562000be1565b935062000c6481856020860162000bf2565b62000c6f8162000c28565b840191505092915050565b600060808201905062000c91600083018762000add565b62000ca0602083018662000add565b62000caf604083018562000bc5565b818103606083015262000cc3818462000c39565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000d0a8162000cd3565b811462000d1657600080fd5b50565b60008151905062000d2a8162000cff565b92915050565b60006020828403121562000d495762000d4862000cce565b5b600062000d598482850162000d19565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000daa57607f821691505b60208210810362000dc05762000dbf62000d62565b5b50919050565b6137808062000dd66000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a45ba8e7116100a0578063d12397301161006f578063d1239730146106c6578063d5abeb01146106f1578063e985e9c51461071c578063f2fde38b14610759578063f968adbe1461078257610204565b8063a45ba8e714610617578063a702735714610642578063b88d4fde1461066d578063c87b56dd1461068957610204565b806392910eec116100e757806392910eec1461055357806395d89b411461057c578063a035b1fe146105a7578063a0712d68146105d2578063a22cb465146105ee57610204565b8063715018a6146104d15780637ba5e621146104e85780638da5cb5b146104ff57806391b7f5ed1461052a57610204565b80633ccfd60b1161019b578063518302271161016a57806351830227146103da57806355f804b3146104055780636352211e1461042e5780636d7c4a4b1461046b57806370a082311461049457610204565b80633ccfd60b1461035357806341f434341461036a57806342842e0e146103955780634fdd43cb146103b157610204565b806318160ddd116101d757806318160ddd146102ca57806323b872dd146102f5578063333e44e6146103115780633b2c3fb61461033c57610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906127b2565b6107ad565b60405161023d91906127fa565b60405180910390f35b34801561025257600080fd5b5061025b61083f565b60405161026891906128ae565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612906565b6108d1565b6040516102a59190612974565b60405180910390f35b6102c860048036038101906102c391906129bb565b610950565b005b3480156102d657600080fd5b506102df610a5a565b6040516102ec9190612a0a565b60405180910390f35b61030f600480360381019061030a9190612a25565b610a71565b005b34801561031d57600080fd5b50610326610bc1565b6040516103339190612a0a565b60405180910390f35b34801561034857600080fd5b50610351610bc7565b005b34801561035f57600080fd5b50610368610bfb565b005b34801561037657600080fd5b5061037f610cb2565b60405161038c9190612ad7565b60405180910390f35b6103af60048036038101906103aa9190612a25565b610cc4565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612c27565b610e14565b005b3480156103e657600080fd5b506103ef610e36565b6040516103fc91906127fa565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190612c27565b610e49565b005b34801561043a57600080fd5b5061045560048036038101906104509190612906565b610e6b565b6040516104629190612974565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d9190612906565b610e7d565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190612c70565b610e8f565b6040516104c89190612a0a565b60405180910390f35b3480156104dd57600080fd5b506104e6610f47565b005b3480156104f457600080fd5b506104fd610f5b565b005b34801561050b57600080fd5b50610514610f8f565b6040516105219190612974565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c9190612906565b610fb9565b005b34801561055f57600080fd5b5061057a60048036038101906105759190612906565b610fcb565b005b34801561058857600080fd5b50610591610fdd565b60405161059e91906128ae565b60405180910390f35b3480156105b357600080fd5b506105bc61106f565b6040516105c99190612a0a565b60405180910390f35b6105ec60048036038101906105e79190612906565b611075565b005b3480156105fa57600080fd5b5061061560048036038101906106109190612cc9565b6112c1565b005b34801561062357600080fd5b5061062c6113cb565b60405161063991906128ae565b60405180910390f35b34801561064e57600080fd5b50610657611459565b6040516106649190612a0a565b60405180910390f35b61068760048036038101906106829190612daa565b61145f565b005b34801561069557600080fd5b506106b060048036038101906106ab9190612906565b6115b2565b6040516106bd91906128ae565b60405180910390f35b3480156106d257600080fd5b506106db6116dc565b6040516106e891906127fa565b60405180910390f35b3480156106fd57600080fd5b506107066116ef565b6040516107139190612a0a565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612e2d565b6116f5565b60405161075091906127fa565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190612c70565b611789565b005b34801561078e57600080fd5b5061079761180c565b6040516107a49190612a0a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108385750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461084e90612e9c565b80601f016020809104026020016040519081016040528092919081815260200182805461087a90612e9c565b80156108c75780601f1061089c576101008083540402835291602001916108c7565b820191906000526020600020905b8154815290600101906020018083116108aa57829003601f168201915b5050505050905090565b60006108dc82611812565b610912576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a4b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016109c8929190612ecd565b602060405180830381865afa1580156109e5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a099190612f0b565b610a4a57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a419190612974565b60405180910390fd5b5b610a558383611871565b505050565b6000610a646119b5565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610baf573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae357610ade8484846119ba565b610bbb565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b2c929190612ecd565b602060405180830381865afa158015610b49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6d9190612f0b565b610bae57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ba59190612974565b60405180910390fd5b5b610bba8484846119ba565b5b50505050565b600f5481565b610bcf611cdc565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610c03611cdc565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c2990612f69565b60006040518083038185875af1925050503d8060008114610c66576040519150601f19603f3d011682016040523d82523d6000602084013e610c6b565b606091505b5050905080610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690612fca565b60405180910390fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e02573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3657610d31848484611d5a565b610e0e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d7f929190612ecd565b602060405180830381865afa158015610d9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc09190612f0b565b610e0157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610df89190612974565b60405180910390fd5b5b610e0d848484611d5a565b5b50505050565b610e1c611cdc565b80600c9080519060200190610e329291906126a3565b5050565b600d60009054906101000a900460ff1681565b610e51611cdc565b80600a9080519060200190610e679291906126a3565b5050565b6000610e7682611d7a565b9050919050565b610e85611cdc565b8060128190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f4f611cdc565b610f596000611e46565b565b610f63611cdc565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fc1611cdc565b80600e8190555050565b610fd3611cdc565b80600f8190555050565b606060038054610fec90612e9c565b80601f016020809104026020016040519081016040528092919081815260200182805461101890612e9c565b80156110655780601f1061103a57610100808354040283529160200191611065565b820191906000526020600020905b81548152906001019060200180831161104857829003601f168201915b5050505050905090565b600e5481565b6000600e54905060006001600f5461108d9190613019565b83611096610a5a565b6110a09190613019565b1080156110f9575060125483601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f69190613019565b11155b9050801561110657600091505b8183611112919061306f565b341015611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90613115565b60405180910390fd5b60016010546111639190613019565b8361116c610a5a565b6111769190613019565b106111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90613181565b60405180910390fd5b600b60009054906101000a900460ff16611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc906131ed565b60405180910390fd5b60016011546112149190613019565b8310611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90613259565b60405180910390fd5b80156112b25782601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112aa9190613019565b925050819055505b6112bc3384611f0c565b505050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113bc576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611339929190612ecd565b602060405180830381865afa158015611356573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137a9190612f0b565b6113bb57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113b29190612974565b60405180910390fd5b5b6113c68383611f2a565b505050565b600c80546113d890612e9c565b80601f016020809104026020016040519081016040528092919081815260200182805461140490612e9c565b80156114515780601f1061142657610100808354040283529160200191611451565b820191906000526020600020905b81548152906001019060200180831161143457829003601f168201915b505050505081565b60125481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561159e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114d2576114cd85858585612035565b6115ab565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161151b929190612ecd565b602060405180830381865afa158015611538573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155c9190612f0b565b61159d57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016115949190612974565b60405180910390fd5b5b6115aa85858585612035565b5b5050505050565b606060001515600d60009054906101000a900460ff1615150361166157600c80546115dc90612e9c565b80601f016020809104026020016040519081016040528092919081815260200182805461160890612e9c565b80156116555780601f1061162a57610100808354040283529160200191611655565b820191906000526020600020905b81548152906001019060200180831161163857829003601f168201915b505050505090506116d7565b61166a82611812565b6116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a0906132eb565b60405180910390fd5b600a6116b4836120a8565b6040516020016116c59291906133fe565b60405160208183030381529060405290505b919050565b600b60009054906101000a900460ff1681565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611791611cdc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f79061349f565b60405180910390fd5b61180981611e46565b50565b60115481565b60008161181d6119b5565b1115801561182c575060005482105b801561186a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061187c82610e6b565b90508073ffffffffffffffffffffffffffffffffffffffff1661189d612208565b73ffffffffffffffffffffffffffffffffffffffff1614611900576118c9816118c4612208565b6116f5565b6118ff576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006119c582611d7a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a2c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611a3884612210565b91509150611a4e8187611a49612208565b612237565b611a9a57611a6386611a5e612208565b6116f5565b611a99576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611b00576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b0d868686600161227b565b8015611b1857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611be685611bc2888887612281565b7c0200000000000000000000000000000000000000000000000000000000176122a9565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611c6c5760006001850190506000600460008381526020019081526020016000205403611c6a576000548114611c69578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cd486868660016122d4565b505050505050565b611ce46122da565b73ffffffffffffffffffffffffffffffffffffffff16611d02610f8f565b73ffffffffffffffffffffffffffffffffffffffff1614611d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4f9061350b565b60405180910390fd5b565b611d758383836040518060200160405280600081525061145f565b505050565b60008082905080611d896119b5565b11611e0f57600054811015611e0e5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e0c575b60008103611e02576004600083600190039350838152602001908152602001600020549050611dd8565b8092505050611e41565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f268282604051806020016040528060008152506122e2565b5050565b8060076000611f37612208565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fe4612208565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161202991906127fa565b60405180910390a35050565b612040848484610a71565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120a25761206b8484848461237f565b6120a1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600082036120ef576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612203565b600082905060005b6000821461212157808061210a9061352b565b915050600a8261211a91906135a2565b91506120f7565b60008167ffffffffffffffff81111561213d5761213c612afc565b5b6040519080825280601f01601f19166020018201604052801561216f5781602001600182028036833780820191505090505b5090505b600085146121fc5760018261218891906135d3565b9150600a856121979190613607565b60306121a39190613019565b60f81b8183815181106121b9576121b8613638565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121f591906135a2565b9450612173565b8093505050505b919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86122988686846124cf565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6122ec83836124d8565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461237a57600080549050600083820390505b61232c600086838060010194508661237f565b612362576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061231957816000541461237757600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123a5612208565b8786866040518563ffffffff1660e01b81526004016123c794939291906136bc565b6020604051808303816000875af192505050801561240357506040513d601f19601f82011682018060405250810190612400919061371d565b60015b61247c573d8060008114612433576040519150601f19603f3d011682016040523d82523d6000602084013e612438565b606091505b506000815103612474576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612518576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612525600084838561227b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061259c8361258d6000866000612281565b61259685612693565b176122a9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461263d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612602565b5060008203612678576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061268e60008483856122d4565b505050565b60006001821460e11b9050919050565b8280546126af90612e9c565b90600052602060002090601f0160209004810192826126d15760008555612718565b82601f106126ea57805160ff1916838001178555612718565b82800160010185558215612718579182015b828111156127175782518255916020019190600101906126fc565b5b5090506127259190612729565b5090565b5b8082111561274257600081600090555060010161272a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61278f8161275a565b811461279a57600080fd5b50565b6000813590506127ac81612786565b92915050565b6000602082840312156127c8576127c7612750565b5b60006127d68482850161279d565b91505092915050565b60008115159050919050565b6127f4816127df565b82525050565b600060208201905061280f60008301846127eb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561284f578082015181840152602081019050612834565b8381111561285e576000848401525b50505050565b6000601f19601f8301169050919050565b600061288082612815565b61288a8185612820565b935061289a818560208601612831565b6128a381612864565b840191505092915050565b600060208201905081810360008301526128c88184612875565b905092915050565b6000819050919050565b6128e3816128d0565b81146128ee57600080fd5b50565b600081359050612900816128da565b92915050565b60006020828403121561291c5761291b612750565b5b600061292a848285016128f1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061295e82612933565b9050919050565b61296e81612953565b82525050565b60006020820190506129896000830184612965565b92915050565b61299881612953565b81146129a357600080fd5b50565b6000813590506129b58161298f565b92915050565b600080604083850312156129d2576129d1612750565b5b60006129e0858286016129a6565b92505060206129f1858286016128f1565b9150509250929050565b612a04816128d0565b82525050565b6000602082019050612a1f60008301846129fb565b92915050565b600080600060608486031215612a3e57612a3d612750565b5b6000612a4c868287016129a6565b9350506020612a5d868287016129a6565b9250506040612a6e868287016128f1565b9150509250925092565b6000819050919050565b6000612a9d612a98612a9384612933565b612a78565b612933565b9050919050565b6000612aaf82612a82565b9050919050565b6000612ac182612aa4565b9050919050565b612ad181612ab6565b82525050565b6000602082019050612aec6000830184612ac8565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b3482612864565b810181811067ffffffffffffffff82111715612b5357612b52612afc565b5b80604052505050565b6000612b66612746565b9050612b728282612b2b565b919050565b600067ffffffffffffffff821115612b9257612b91612afc565b5b612b9b82612864565b9050602081019050919050565b82818337600083830152505050565b6000612bca612bc584612b77565b612b5c565b905082815260208101848484011115612be657612be5612af7565b5b612bf1848285612ba8565b509392505050565b600082601f830112612c0e57612c0d612af2565b5b8135612c1e848260208601612bb7565b91505092915050565b600060208284031215612c3d57612c3c612750565b5b600082013567ffffffffffffffff811115612c5b57612c5a612755565b5b612c6784828501612bf9565b91505092915050565b600060208284031215612c8657612c85612750565b5b6000612c94848285016129a6565b91505092915050565b612ca6816127df565b8114612cb157600080fd5b50565b600081359050612cc381612c9d565b92915050565b60008060408385031215612ce057612cdf612750565b5b6000612cee858286016129a6565b9250506020612cff85828601612cb4565b9150509250929050565b600067ffffffffffffffff821115612d2457612d23612afc565b5b612d2d82612864565b9050602081019050919050565b6000612d4d612d4884612d09565b612b5c565b905082815260208101848484011115612d6957612d68612af7565b5b612d74848285612ba8565b509392505050565b600082601f830112612d9157612d90612af2565b5b8135612da1848260208601612d3a565b91505092915050565b60008060008060808587031215612dc457612dc3612750565b5b6000612dd2878288016129a6565b9450506020612de3878288016129a6565b9350506040612df4878288016128f1565b925050606085013567ffffffffffffffff811115612e1557612e14612755565b5b612e2187828801612d7c565b91505092959194509250565b60008060408385031215612e4457612e43612750565b5b6000612e52858286016129a6565b9250506020612e63858286016129a6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eb457607f821691505b602082108103612ec757612ec6612e6d565b5b50919050565b6000604082019050612ee26000830185612965565b612eef6020830184612965565b9392505050565b600081519050612f0581612c9d565b92915050565b600060208284031215612f2157612f20612750565b5b6000612f2f84828501612ef6565b91505092915050565b600081905092915050565b50565b6000612f53600083612f38565b9150612f5e82612f43565b600082019050919050565b6000612f7482612f46565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612fb4601083612820565b9150612fbf82612f7e565b602082019050919050565b60006020820190508181036000830152612fe381612fa7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613024826128d0565b915061302f836128d0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561306457613063612fea565b5b828201905092915050565b600061307a826128d0565b9150613085836128d0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130be576130bd612fea565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b60006130ff601d83612820565b915061310a826130c9565b602082019050919050565b6000602082019050818103600083015261312e816130f2565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b600061316b600783612820565b915061317682613135565b602082019050919050565b6000602082019050818103600083015261319a8161315e565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b60006131d7601783612820565b91506131e2826131a1565b602082019050919050565b60006020820190508181036000830152613206816131ca565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000613243601383612820565b915061324e8261320d565b602082019050919050565b6000602082019050818103600083015261327281613236565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006132d5602f83612820565b91506132e082613279565b604082019050919050565b60006020820190508181036000830152613304816132c8565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461333881612e9c565b613342818661330b565b9450600182166000811461335d576001811461336e576133a1565b60ff198316865281860193506133a1565b61337785613316565b60005b838110156133995781548189015260018201915060208101905061337a565b838801955050505b50505092915050565b60006133b582612815565b6133bf818561330b565b93506133cf818560208601612831565b80840191505092915050565b60006133e860008361330b565b91506133f382612f43565b600082019050919050565b600061340a828561332b565b915061341682846133aa565b9150613421826133db565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613489602683612820565b91506134948261342d565b604082019050919050565b600060208201905081810360008301526134b88161347c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134f5602083612820565b9150613500826134bf565b602082019050919050565b60006020820190508181036000830152613524816134e8565b9050919050565b6000613536826128d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361356857613567612fea565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135ad826128d0565b91506135b8836128d0565b9250826135c8576135c7613573565b5b828204905092915050565b60006135de826128d0565b91506135e9836128d0565b9250828210156135fc576135fb612fea565b5b828203905092915050565b6000613612826128d0565b915061361d836128d0565b92508261362d5761362c613573565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061368e82613667565b6136988185613672565b93506136a8818560208601612831565b6136b181612864565b840191505092915050565b60006080820190506136d16000830187612965565b6136de6020830186612965565b6136eb60408301856129fb565b81810360608301526136fd8184613683565b905095945050505050565b60008151905061371781612786565b92915050565b60006020828403121561373357613732612750565b5b600061374184828501613708565b9150509291505056fea264697066735822122095c17c0447e92b8b9ec3e935242efd9b5cbe42d5669416066b009de7de37b30864736f6c634300080d0033697066733a2f2f6261666b726569646133686a7563796f6c6d78326e6c70686876713472327879337369747a37366968623771656d7a6c7a7065766a6968646c7665
Deployed Bytecode
0x6080604052600436106102045760003560e01c8063715018a611610118578063a45ba8e7116100a0578063d12397301161006f578063d1239730146106c6578063d5abeb01146106f1578063e985e9c51461071c578063f2fde38b14610759578063f968adbe1461078257610204565b8063a45ba8e714610617578063a702735714610642578063b88d4fde1461066d578063c87b56dd1461068957610204565b806392910eec116100e757806392910eec1461055357806395d89b411461057c578063a035b1fe146105a7578063a0712d68146105d2578063a22cb465146105ee57610204565b8063715018a6146104d15780637ba5e621146104e85780638da5cb5b146104ff57806391b7f5ed1461052a57610204565b80633ccfd60b1161019b578063518302271161016a57806351830227146103da57806355f804b3146104055780636352211e1461042e5780636d7c4a4b1461046b57806370a082311461049457610204565b80633ccfd60b1461035357806341f434341461036a57806342842e0e146103955780634fdd43cb146103b157610204565b806318160ddd116101d757806318160ddd146102ca57806323b872dd146102f5578063333e44e6146103115780633b2c3fb61461033c57610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906127b2565b6107ad565b60405161023d91906127fa565b60405180910390f35b34801561025257600080fd5b5061025b61083f565b60405161026891906128ae565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612906565b6108d1565b6040516102a59190612974565b60405180910390f35b6102c860048036038101906102c391906129bb565b610950565b005b3480156102d657600080fd5b506102df610a5a565b6040516102ec9190612a0a565b60405180910390f35b61030f600480360381019061030a9190612a25565b610a71565b005b34801561031d57600080fd5b50610326610bc1565b6040516103339190612a0a565b60405180910390f35b34801561034857600080fd5b50610351610bc7565b005b34801561035f57600080fd5b50610368610bfb565b005b34801561037657600080fd5b5061037f610cb2565b60405161038c9190612ad7565b60405180910390f35b6103af60048036038101906103aa9190612a25565b610cc4565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612c27565b610e14565b005b3480156103e657600080fd5b506103ef610e36565b6040516103fc91906127fa565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190612c27565b610e49565b005b34801561043a57600080fd5b5061045560048036038101906104509190612906565b610e6b565b6040516104629190612974565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d9190612906565b610e7d565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190612c70565b610e8f565b6040516104c89190612a0a565b60405180910390f35b3480156104dd57600080fd5b506104e6610f47565b005b3480156104f457600080fd5b506104fd610f5b565b005b34801561050b57600080fd5b50610514610f8f565b6040516105219190612974565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c9190612906565b610fb9565b005b34801561055f57600080fd5b5061057a60048036038101906105759190612906565b610fcb565b005b34801561058857600080fd5b50610591610fdd565b60405161059e91906128ae565b60405180910390f35b3480156105b357600080fd5b506105bc61106f565b6040516105c99190612a0a565b60405180910390f35b6105ec60048036038101906105e79190612906565b611075565b005b3480156105fa57600080fd5b5061061560048036038101906106109190612cc9565b6112c1565b005b34801561062357600080fd5b5061062c6113cb565b60405161063991906128ae565b60405180910390f35b34801561064e57600080fd5b50610657611459565b6040516106649190612a0a565b60405180910390f35b61068760048036038101906106829190612daa565b61145f565b005b34801561069557600080fd5b506106b060048036038101906106ab9190612906565b6115b2565b6040516106bd91906128ae565b60405180910390f35b3480156106d257600080fd5b506106db6116dc565b6040516106e891906127fa565b60405180910390f35b3480156106fd57600080fd5b506107066116ef565b6040516107139190612a0a565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612e2d565b6116f5565b60405161075091906127fa565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190612c70565b611789565b005b34801561078e57600080fd5b5061079761180c565b6040516107a49190612a0a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108385750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461084e90612e9c565b80601f016020809104026020016040519081016040528092919081815260200182805461087a90612e9c565b80156108c75780601f1061089c576101008083540402835291602001916108c7565b820191906000526020600020905b8154815290600101906020018083116108aa57829003601f168201915b5050505050905090565b60006108dc82611812565b610912576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a4b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016109c8929190612ecd565b602060405180830381865afa1580156109e5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a099190612f0b565b610a4a57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a419190612974565b60405180910390fd5b5b610a558383611871565b505050565b6000610a646119b5565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610baf573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae357610ade8484846119ba565b610bbb565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b2c929190612ecd565b602060405180830381865afa158015610b49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6d9190612f0b565b610bae57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ba59190612974565b60405180910390fd5b5b610bba8484846119ba565b5b50505050565b600f5481565b610bcf611cdc565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610c03611cdc565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c2990612f69565b60006040518083038185875af1925050503d8060008114610c66576040519150601f19603f3d011682016040523d82523d6000602084013e610c6b565b606091505b5050905080610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690612fca565b60405180910390fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e02573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3657610d31848484611d5a565b610e0e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d7f929190612ecd565b602060405180830381865afa158015610d9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc09190612f0b565b610e0157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610df89190612974565b60405180910390fd5b5b610e0d848484611d5a565b5b50505050565b610e1c611cdc565b80600c9080519060200190610e329291906126a3565b5050565b600d60009054906101000a900460ff1681565b610e51611cdc565b80600a9080519060200190610e679291906126a3565b5050565b6000610e7682611d7a565b9050919050565b610e85611cdc565b8060128190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f4f611cdc565b610f596000611e46565b565b610f63611cdc565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fc1611cdc565b80600e8190555050565b610fd3611cdc565b80600f8190555050565b606060038054610fec90612e9c565b80601f016020809104026020016040519081016040528092919081815260200182805461101890612e9c565b80156110655780601f1061103a57610100808354040283529160200191611065565b820191906000526020600020905b81548152906001019060200180831161104857829003601f168201915b5050505050905090565b600e5481565b6000600e54905060006001600f5461108d9190613019565b83611096610a5a565b6110a09190613019565b1080156110f9575060125483601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f69190613019565b11155b9050801561110657600091505b8183611112919061306f565b341015611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90613115565b60405180910390fd5b60016010546111639190613019565b8361116c610a5a565b6111769190613019565b106111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90613181565b60405180910390fd5b600b60009054906101000a900460ff16611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc906131ed565b60405180910390fd5b60016011546112149190613019565b8310611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90613259565b60405180910390fd5b80156112b25782601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112aa9190613019565b925050819055505b6112bc3384611f0c565b505050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113bc576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611339929190612ecd565b602060405180830381865afa158015611356573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137a9190612f0b565b6113bb57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113b29190612974565b60405180910390fd5b5b6113c68383611f2a565b505050565b600c80546113d890612e9c565b80601f016020809104026020016040519081016040528092919081815260200182805461140490612e9c565b80156114515780601f1061142657610100808354040283529160200191611451565b820191906000526020600020905b81548152906001019060200180831161143457829003601f168201915b505050505081565b60125481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561159e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114d2576114cd85858585612035565b6115ab565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161151b929190612ecd565b602060405180830381865afa158015611538573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155c9190612f0b565b61159d57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016115949190612974565b60405180910390fd5b5b6115aa85858585612035565b5b5050505050565b606060001515600d60009054906101000a900460ff1615150361166157600c80546115dc90612e9c565b80601f016020809104026020016040519081016040528092919081815260200182805461160890612e9c565b80156116555780601f1061162a57610100808354040283529160200191611655565b820191906000526020600020905b81548152906001019060200180831161163857829003601f168201915b505050505090506116d7565b61166a82611812565b6116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a0906132eb565b60405180910390fd5b600a6116b4836120a8565b6040516020016116c59291906133fe565b60405160208183030381529060405290505b919050565b600b60009054906101000a900460ff1681565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611791611cdc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f79061349f565b60405180910390fd5b61180981611e46565b50565b60115481565b60008161181d6119b5565b1115801561182c575060005482105b801561186a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061187c82610e6b565b90508073ffffffffffffffffffffffffffffffffffffffff1661189d612208565b73ffffffffffffffffffffffffffffffffffffffff1614611900576118c9816118c4612208565b6116f5565b6118ff576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006119c582611d7a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a2c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611a3884612210565b91509150611a4e8187611a49612208565b612237565b611a9a57611a6386611a5e612208565b6116f5565b611a99576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611b00576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b0d868686600161227b565b8015611b1857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611be685611bc2888887612281565b7c0200000000000000000000000000000000000000000000000000000000176122a9565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611c6c5760006001850190506000600460008381526020019081526020016000205403611c6a576000548114611c69578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cd486868660016122d4565b505050505050565b611ce46122da565b73ffffffffffffffffffffffffffffffffffffffff16611d02610f8f565b73ffffffffffffffffffffffffffffffffffffffff1614611d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4f9061350b565b60405180910390fd5b565b611d758383836040518060200160405280600081525061145f565b505050565b60008082905080611d896119b5565b11611e0f57600054811015611e0e5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e0c575b60008103611e02576004600083600190039350838152602001908152602001600020549050611dd8565b8092505050611e41565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f268282604051806020016040528060008152506122e2565b5050565b8060076000611f37612208565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fe4612208565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161202991906127fa565b60405180910390a35050565b612040848484610a71565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120a25761206b8484848461237f565b6120a1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600082036120ef576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612203565b600082905060005b6000821461212157808061210a9061352b565b915050600a8261211a91906135a2565b91506120f7565b60008167ffffffffffffffff81111561213d5761213c612afc565b5b6040519080825280601f01601f19166020018201604052801561216f5781602001600182028036833780820191505090505b5090505b600085146121fc5760018261218891906135d3565b9150600a856121979190613607565b60306121a39190613019565b60f81b8183815181106121b9576121b8613638565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121f591906135a2565b9450612173565b8093505050505b919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86122988686846124cf565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6122ec83836124d8565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461237a57600080549050600083820390505b61232c600086838060010194508661237f565b612362576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061231957816000541461237757600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123a5612208565b8786866040518563ffffffff1660e01b81526004016123c794939291906136bc565b6020604051808303816000875af192505050801561240357506040513d601f19601f82011682018060405250810190612400919061371d565b60015b61247c573d8060008114612433576040519150601f19603f3d011682016040523d82523d6000602084013e612438565b606091505b506000815103612474576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612518576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612525600084838561227b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061259c8361258d6000866000612281565b61259685612693565b176122a9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461263d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612602565b5060008203612678576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061268e60008483856122d4565b505050565b60006001821460e11b9050919050565b8280546126af90612e9c565b90600052602060002090601f0160209004810192826126d15760008555612718565b82601f106126ea57805160ff1916838001178555612718565b82800160010185558215612718579182015b828111156127175782518255916020019190600101906126fc565b5b5090506127259190612729565b5090565b5b8082111561274257600081600090555060010161272a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61278f8161275a565b811461279a57600080fd5b50565b6000813590506127ac81612786565b92915050565b6000602082840312156127c8576127c7612750565b5b60006127d68482850161279d565b91505092915050565b60008115159050919050565b6127f4816127df565b82525050565b600060208201905061280f60008301846127eb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561284f578082015181840152602081019050612834565b8381111561285e576000848401525b50505050565b6000601f19601f8301169050919050565b600061288082612815565b61288a8185612820565b935061289a818560208601612831565b6128a381612864565b840191505092915050565b600060208201905081810360008301526128c88184612875565b905092915050565b6000819050919050565b6128e3816128d0565b81146128ee57600080fd5b50565b600081359050612900816128da565b92915050565b60006020828403121561291c5761291b612750565b5b600061292a848285016128f1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061295e82612933565b9050919050565b61296e81612953565b82525050565b60006020820190506129896000830184612965565b92915050565b61299881612953565b81146129a357600080fd5b50565b6000813590506129b58161298f565b92915050565b600080604083850312156129d2576129d1612750565b5b60006129e0858286016129a6565b92505060206129f1858286016128f1565b9150509250929050565b612a04816128d0565b82525050565b6000602082019050612a1f60008301846129fb565b92915050565b600080600060608486031215612a3e57612a3d612750565b5b6000612a4c868287016129a6565b9350506020612a5d868287016129a6565b9250506040612a6e868287016128f1565b9150509250925092565b6000819050919050565b6000612a9d612a98612a9384612933565b612a78565b612933565b9050919050565b6000612aaf82612a82565b9050919050565b6000612ac182612aa4565b9050919050565b612ad181612ab6565b82525050565b6000602082019050612aec6000830184612ac8565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b3482612864565b810181811067ffffffffffffffff82111715612b5357612b52612afc565b5b80604052505050565b6000612b66612746565b9050612b728282612b2b565b919050565b600067ffffffffffffffff821115612b9257612b91612afc565b5b612b9b82612864565b9050602081019050919050565b82818337600083830152505050565b6000612bca612bc584612b77565b612b5c565b905082815260208101848484011115612be657612be5612af7565b5b612bf1848285612ba8565b509392505050565b600082601f830112612c0e57612c0d612af2565b5b8135612c1e848260208601612bb7565b91505092915050565b600060208284031215612c3d57612c3c612750565b5b600082013567ffffffffffffffff811115612c5b57612c5a612755565b5b612c6784828501612bf9565b91505092915050565b600060208284031215612c8657612c85612750565b5b6000612c94848285016129a6565b91505092915050565b612ca6816127df565b8114612cb157600080fd5b50565b600081359050612cc381612c9d565b92915050565b60008060408385031215612ce057612cdf612750565b5b6000612cee858286016129a6565b9250506020612cff85828601612cb4565b9150509250929050565b600067ffffffffffffffff821115612d2457612d23612afc565b5b612d2d82612864565b9050602081019050919050565b6000612d4d612d4884612d09565b612b5c565b905082815260208101848484011115612d6957612d68612af7565b5b612d74848285612ba8565b509392505050565b600082601f830112612d9157612d90612af2565b5b8135612da1848260208601612d3a565b91505092915050565b60008060008060808587031215612dc457612dc3612750565b5b6000612dd2878288016129a6565b9450506020612de3878288016129a6565b9350506040612df4878288016128f1565b925050606085013567ffffffffffffffff811115612e1557612e14612755565b5b612e2187828801612d7c565b91505092959194509250565b60008060408385031215612e4457612e43612750565b5b6000612e52858286016129a6565b9250506020612e63858286016129a6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eb457607f821691505b602082108103612ec757612ec6612e6d565b5b50919050565b6000604082019050612ee26000830185612965565b612eef6020830184612965565b9392505050565b600081519050612f0581612c9d565b92915050565b600060208284031215612f2157612f20612750565b5b6000612f2f84828501612ef6565b91505092915050565b600081905092915050565b50565b6000612f53600083612f38565b9150612f5e82612f43565b600082019050919050565b6000612f7482612f46565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612fb4601083612820565b9150612fbf82612f7e565b602082019050919050565b60006020820190508181036000830152612fe381612fa7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613024826128d0565b915061302f836128d0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561306457613063612fea565b5b828201905092915050565b600061307a826128d0565b9150613085836128d0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130be576130bd612fea565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b60006130ff601d83612820565b915061310a826130c9565b602082019050919050565b6000602082019050818103600083015261312e816130f2565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b600061316b600783612820565b915061317682613135565b602082019050919050565b6000602082019050818103600083015261319a8161315e565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b60006131d7601783612820565b91506131e2826131a1565b602082019050919050565b60006020820190508181036000830152613206816131ca565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000613243601383612820565b915061324e8261320d565b602082019050919050565b6000602082019050818103600083015261327281613236565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006132d5602f83612820565b91506132e082613279565b604082019050919050565b60006020820190508181036000830152613304816132c8565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461333881612e9c565b613342818661330b565b9450600182166000811461335d576001811461336e576133a1565b60ff198316865281860193506133a1565b61337785613316565b60005b838110156133995781548189015260018201915060208101905061337a565b838801955050505b50505092915050565b60006133b582612815565b6133bf818561330b565b93506133cf818560208601612831565b80840191505092915050565b60006133e860008361330b565b91506133f382612f43565b600082019050919050565b600061340a828561332b565b915061341682846133aa565b9150613421826133db565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613489602683612820565b91506134948261342d565b604082019050919050565b600060208201905081810360008301526134b88161347c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134f5602083612820565b9150613500826134bf565b602082019050919050565b60006020820190508181036000830152613524816134e8565b9050919050565b6000613536826128d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361356857613567612fea565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135ad826128d0565b91506135b8836128d0565b9250826135c8576135c7613573565b5b828204905092915050565b60006135de826128d0565b91506135e9836128d0565b9250828210156135fc576135fb612fea565b5b828203905092915050565b6000613612826128d0565b915061361d836128d0565b92508261362d5761362c613573565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061368e82613667565b6136988185613672565b93506136a8818560208601612831565b6136b181612864565b840191505092915050565b60006080820190506136d16000830187612965565b6136de6020830186612965565b6136eb60408301856129fb565b81810360608301526136fd8184613683565b905095945050505050565b60008151905061371781612786565b92915050565b60006020828403121561373357613732612750565b5b600061374184828501613708565b9150509291505056fea264697066735822122095c17c0447e92b8b9ec3e935242efd9b5cbe42d5669416066b009de7de37b30864736f6c634300080d0033
Deployed Bytecode Sourcemap
68409:3901:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20887:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21789:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28280:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71523:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17540:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71696:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68713:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70530:80;;;;;;;;;;;;;:::i;:::-;;71125:206;;;;;;;;;;;;;:::i;:::-;;65718:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71875:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70379:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68635:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70618:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23182:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70714:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18724:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62066:103;;;;;;;;;;;;;:::i;:::-;;71033:84;;;;;;;;;;;;;:::i;:::-;;61418:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70933:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70830:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21965:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68672:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69129:685;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71339:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68597:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68824:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72062:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69938:433;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68559:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68751;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29229:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62324:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68789:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20887:639;20972:4;21311:10;21296:25;;:11;:25;;;;:102;;;;21388:10;21373:25;;:11;:25;;;;21296:102;:179;;;;21465:10;21450:25;;:11;:25;;;;21296:179;21276:199;;20887:639;;;:::o;21789:100::-;21843:13;21876:5;21869:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21789:100;:::o;28280:218::-;28356:7;28381:16;28389:7;28381;:16::i;:::-;28376:64;;28406:34;;;;;;;;;;;;;;28376:64;28460:15;:24;28476:7;28460:24;;;;;;;;;;;:30;;;;;;;;;;;;28453:37;;28280:218;;;:::o;71523:165::-;71627:8;67760:1;65818:42;67712:45;;;:49;67708:225;;;65818:42;67783;;;67834:4;67841:8;67783:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67778:144;;67897:8;67878:28;;;;;;;;;;;:::i;:::-;;;;;;;;67778:144;67708:225;71648:32:::1;71662:8;71672:7;71648:13;:32::i;:::-;71523:165:::0;;;:::o;17540:323::-;17601:7;17829:15;:13;:15::i;:::-;17814:12;;17798:13;;:28;:46;17791:53;;17540:323;:::o;71696:171::-;71805:4;67014:1;65818:42;66966:45;;;:49;66962:539;;;67255:10;67247:18;;:4;:18;;;67243:85;;71822:37:::1;71841:4;71847:2;71851:7;71822:18;:37::i;:::-;67306:7:::0;;67243:85;65818:42;67347;;;67398:4;67405:10;67347:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67342:148;;67463:10;67444:30;;;;;;;;;;;:::i;:::-;;;;;;;;67342:148;66962:539;71822:37:::1;71841:4;71847:2;71851:7;71822:18;:37::i;:::-;71696:171:::0;;;;;:::o;68713:31::-;;;;:::o;70530:80::-;61304:13;:11;:13::i;:::-;70594:8:::1;;;;;;;;;;;70593:9;70582:8;;:20;;;;;;;;;;;;;;;;;;70530:80::o:0;71125:206::-;61304:13;:11;:13::i;:::-;71176:12:::1;71202:10;71194:24;;71240:21;71194:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71175:101;;;71295:7;71287:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;71164:167;71125:206::o:0;65718:143::-;65818:42;65718:143;:::o;71875:179::-;71988:4;67014:1;65818:42;66966:45;;;:49;66962:539;;;67255:10;67247:18;;:4;:18;;;67243:85;;72005:41:::1;72028:4;72034:2;72038:7;72005:22;:41::i;:::-;67306:7:::0;;67243:85;65818:42;67347;;;67398:4;67405:10;67347:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67342:148;;67463:10;67444:30;;;;;;;;;;;:::i;:::-;;;;;;;;67342:148;66962:539;72005:41:::1;72028:4;72034:2;72038:7;72005:22;:41::i;:::-;71875:179:::0;;;;;:::o;70379:143::-;61304:13;:11;:13::i;:::-;70496:18:::1;70476:17;:38;;;;;;;;;;;;:::i;:::-;;70379:143:::0;:::o;68635:28::-;;;;;;;;;;;;;:::o;70618:88::-;61304:13;:11;:13::i;:::-;70695:3:::1;70685:7;:13;;;;;;;;;;;;:::i;:::-;;70618:88:::0;:::o;23182:152::-;23254:7;23297:27;23316:7;23297:18;:27::i;:::-;23274:52;;23182:152;;;:::o;70714:108::-;61304:13;:11;:13::i;:::-;70808:6:::1;70789:16;:25;;;;70714:108:::0;:::o;18724:233::-;18796:7;18837:1;18820:19;;:5;:19;;;18816:60;;18848:28;;;;;;;;;;;;;;18816:60;12883:13;18894:18;:25;18913:5;18894:25;;;;;;;;;;;;;;;;:55;18887:62;;18724:233;;;:::o;62066:103::-;61304:13;:11;:13::i;:::-;62131:30:::1;62158:1;62131:18;:30::i;:::-;62066:103::o:0;71033:84::-;61304:13;:11;:13::i;:::-;71098:11:::1;;;;;;;;;;;71097:12;71083:11;;:26;;;;;;;;;;;;;;;;;;71033:84::o:0;61418:87::-;61464:7;61491:6;;;;;;;;;;;61484:13;;61418:87;:::o;70933:92::-;61304:13;:11;:13::i;:::-;71008:9:::1;71000:5;:17;;;;70933:92:::0;:::o;70830:95::-;61304:13;:11;:13::i;:::-;70911:6:::1;70899:9;:18;;;;70830:95:::0;:::o;21965:104::-;22021:13;22054:7;22047:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21965:104;:::o;68672:34::-;;;;:::o;69129:685::-;69186:12;69201:5;;69186:20;;69217:11;69269:1;69257:9;;:13;;;;:::i;:::-;69249:5;69233:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;69232:115;;;;;69330:16;;69321:5;69289:17;:29;69307:10;69289:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;69232:115;69217:131;;69365:6;69361:47;;;69395:1;69388:8;;69361:47;69449:4;69441:5;:12;;;;:::i;:::-;69428:9;:25;;69420:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;69542:1;69530:9;;:13;;;;:::i;:::-;69522:5;69506:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;69498:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69574:11;;;;;;;;;;;69566:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;69651:1;69640:8;;:12;;;;:::i;:::-;69632:5;:20;69624:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;69693:6;69689:77;;;69749:5;69716:17;:29;69734:10;69716:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;69689:77;69778:28;69788:10;69800:5;69778:9;:28::i;:::-;69175:639;;69129:685;:::o;71339:176::-;71443:8;67760:1;65818:42;67712:45;;;:49;67708:225;;;65818:42;67783;;;67834:4;67841:8;67783:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67778:144;;67897:8;67878:28;;;;;;;;;;;:::i;:::-;;;;;;;;67778:144;67708:225;71464:43:::1;71488:8;71498;71464:23;:43::i;:::-;71339:176:::0;;;:::o;68597:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68824:35::-;;;;:::o;72062:245::-;72230:4;67014:1;65818:42;66966:45;;;:49;66962:539;;;67255:10;67247:18;;:4;:18;;;67243:85;;72252:47:::1;72275:4;72281:2;72285:7;72294:4;72252:22;:47::i;:::-;67306:7:::0;;67243:85;65818:42;67347;;;67398:4;67405:10;67347:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67342:148;;67463:10;67444:30;;;;;;;;;;;:::i;:::-;;;;;;;;67342:148;66962:539;72252:47:::1;72275:4;72281:2;72285:7;72294:4;72252:22;:47::i;:::-;72062:245:::0;;;;;;:::o;69938:433::-;70056:13;70105:5;70093:17;;:8;;;;;;;;;;;:17;;;70089:74;;70134:17;70127:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70089:74;70197:16;70205:7;70197;:16::i;:::-;70175:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;70330:7;70339:18;:7;:16;:18::i;:::-;70313:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70299:64;;69938:433;;;;:::o;68559:31::-;;;;;;;;;;;;;:::o;68751:::-;;;;:::o;29229:164::-;29326:4;29350:18;:25;29369:5;29350:25;;;;;;;;;;;;;;;:35;29376:8;29350:35;;;;;;;;;;;;;;;;;;;;;;;;;29343:42;;29229:164;;;;:::o;62324:201::-;61304:13;:11;:13::i;:::-;62433:1:::1;62413:22;;:8;:22;;::::0;62405:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;62489:28;62508:8;62489:18;:28::i;:::-;62324:201:::0;:::o;68789:28::-;;;;:::o;29651:282::-;29716:4;29772:7;29753:15;:13;:15::i;:::-;:26;;:66;;;;;29806:13;;29796:7;:23;29753:66;:153;;;;;29905:1;13659:8;29857:17;:26;29875:7;29857:26;;;;;;;;;;;;:44;:49;29753:153;29733:173;;29651:282;;;:::o;27713:408::-;27802:13;27818:16;27826:7;27818;:16::i;:::-;27802:32;;27874:5;27851:28;;:19;:17;:19::i;:::-;:28;;;27847:175;;27899:44;27916:5;27923:19;:17;:19::i;:::-;27899:16;:44::i;:::-;27894:128;;27971:35;;;;;;;;;;;;;;27894:128;27847:175;28067:2;28034:15;:24;28050:7;28034:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28105:7;28101:2;28085:28;;28094:5;28085:28;;;;;;;;;;;;27791:330;27713:408;;:::o;17056:92::-;17112:7;17056:92;:::o;31919:2825::-;32061:27;32091;32110:7;32091:18;:27::i;:::-;32061:57;;32176:4;32135:45;;32151:19;32135:45;;;32131:86;;32189:28;;;;;;;;;;;;;;32131:86;32231:27;32260:23;32287:35;32314:7;32287:26;:35::i;:::-;32230:92;;;;32422:68;32447:15;32464:4;32470:19;:17;:19::i;:::-;32422:24;:68::i;:::-;32417:180;;32510:43;32527:4;32533:19;:17;:19::i;:::-;32510:16;:43::i;:::-;32505:92;;32562:35;;;;;;;;;;;;;;32505:92;32417:180;32628:1;32614:16;;:2;:16;;;32610:52;;32639:23;;;;;;;;;;;;;;32610:52;32675:43;32697:4;32703:2;32707:7;32716:1;32675:21;:43::i;:::-;32811:15;32808:160;;;32951:1;32930:19;32923:30;32808:160;33348:18;:24;33367:4;33348:24;;;;;;;;;;;;;;;;33346:26;;;;;;;;;;;;33417:18;:22;33436:2;33417:22;;;;;;;;;;;;;;;;33415:24;;;;;;;;;;;33739:146;33776:2;33825:45;33840:4;33846:2;33850:19;33825:14;:45::i;:::-;13939:8;33797:73;33739:18;:146::i;:::-;33710:17;:26;33728:7;33710:26;;;;;;;;;;;:175;;;;34056:1;13939:8;34005:19;:47;:52;34001:627;;34078:19;34110:1;34100:7;:11;34078:33;;34267:1;34233:17;:30;34251:11;34233:30;;;;;;;;;;;;:35;34229:384;;34371:13;;34356:11;:28;34352:242;;34551:19;34518:17;:30;34536:11;34518:30;;;;;;;;;;;:52;;;;34352:242;34229:384;34059:569;34001:627;34675:7;34671:2;34656:27;;34665:4;34656:27;;;;;;;;;;;;34694:42;34715:4;34721:2;34725:7;34734:1;34694:20;:42::i;:::-;32050:2694;;;31919:2825;;;:::o;61583:132::-;61658:12;:10;:12::i;:::-;61647:23;;:7;:5;:7::i;:::-;:23;;;61639:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61583:132::o;34840:193::-;34986:39;35003:4;35009:2;35013:7;34986:39;;;;;;;;;;;;:16;:39::i;:::-;34840:193;;;:::o;24337:1275::-;24404:7;24424:12;24439:7;24424:22;;24507:4;24488:15;:13;:15::i;:::-;:23;24484:1061;;24541:13;;24534:4;:20;24530:1015;;;24579:14;24596:17;:23;24614:4;24596:23;;;;;;;;;;;;24579:40;;24713:1;13659:8;24685:6;:24;:29;24681:845;;25350:113;25367:1;25357:6;:11;25350:113;;25410:17;:25;25428:6;;;;;;;25410:25;;;;;;;;;;;;25401:34;;25350:113;;;25496:6;25489:13;;;;;;24681:845;24556:989;24530:1015;24484:1061;25573:31;;;;;;;;;;;;;;24337:1275;;;;:::o;62685:191::-;62759:16;62778:6;;;;;;;;;;;62759:25;;62804:8;62795:6;;:17;;;;;;;;;;;;;;;;;;62859:8;62828:40;;62849:8;62828:40;;;;;;;;;;;;62748:128;62685:191;:::o;45791:112::-;45868:27;45878:2;45882:8;45868:27;;;;;;;;;;;;:9;:27::i;:::-;45791:112;;:::o;28838:234::-;28985:8;28933:18;:39;28952:19;:17;:19::i;:::-;28933:39;;;;;;;;;;;;;;;:49;28973:8;28933:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29045:8;29009:55;;29024:19;:17;:19::i;:::-;29009:55;;;29055:8;29009:55;;;;;;:::i;:::-;;;;;;;;28838:234;;:::o;35631:407::-;35806:31;35819:4;35825:2;35829:7;35806:12;:31::i;:::-;35870:1;35852:2;:14;;;:19;35848:183;;35891:56;35922:4;35928:2;35932:7;35941:5;35891:30;:56::i;:::-;35886:145;;35975:40;;;;;;;;;;;;;;35886:145;35848:183;35631:407;;;;:::o;57223:723::-;57279:13;57509:1;57500:5;:10;57496:53;;57527:10;;;;;;;;;;;;;;;;;;;;;57496:53;57559:12;57574:5;57559:20;;57590:14;57615:78;57630:1;57622:4;:9;57615:78;;57648:8;;;;;:::i;:::-;;;;57679:2;57671:10;;;;;:::i;:::-;;;57615:78;;;57703:19;57735:6;57725:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57703:39;;57753:154;57769:1;57760:5;:10;57753:154;;57797:1;57787:11;;;;;:::i;:::-;;;57864:2;57856:5;:10;;;;:::i;:::-;57843:2;:24;;;;:::i;:::-;57830:39;;57813:6;57820;57813:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;57893:2;57884:11;;;;;:::i;:::-;;;57753:154;;;57931:6;57917:21;;;;;57223:723;;;;:::o;51959:105::-;52019:7;52046:10;52039:17;;51959:105;:::o;30814:485::-;30916:27;30945:23;30986:38;31027:15;:24;31043:7;31027:24;;;;;;;;;;;30986:65;;31204:18;31181:41;;31261:19;31255:26;31236:45;;31166:126;30814:485;;;:::o;30042:659::-;30191:11;30356:16;30349:5;30345:28;30336:37;;30516:16;30505:9;30501:32;30488:45;;30666:15;30655:9;30652:30;30644:5;30633:9;30630:20;30627:56;30617:66;;30042:659;;;;;:::o;36700:159::-;;;;;:::o;51268:311::-;51403:7;51423:16;14063:3;51449:19;:41;;51423:68;;14063:3;51517:31;51528:4;51534:2;51538:9;51517:10;:31::i;:::-;51509:40;;:62;;51502:69;;;51268:311;;;;;:::o;26160:450::-;26240:14;26408:16;26401:5;26397:28;26388:37;;26585:5;26571:11;26546:23;26542:41;26539:52;26532:5;26529:63;26519:73;;26160:450;;;;:::o;37524:158::-;;;;;:::o;59969:98::-;60022:7;60049:10;60042:17;;59969:98;:::o;45018:689::-;45149:19;45155:2;45159:8;45149:5;:19::i;:::-;45228:1;45210:2;:14;;;:19;45206:483;;45250:11;45264:13;;45250:27;;45296:13;45318:8;45312:3;:14;45296:30;;45345:233;45376:62;45415:1;45419:2;45423:7;;;;;;45432:5;45376:30;:62::i;:::-;45371:167;;45474:40;;;;;;;;;;;;;;45371:167;45573:3;45565:5;:11;45345:233;;45660:3;45643:13;;:20;45639:34;;45665:8;;;45639:34;45231:458;;45206:483;45018:689;;;:::o;38122:716::-;38285:4;38331:2;38306:45;;;38352:19;:17;:19::i;:::-;38373:4;38379:7;38388:5;38306:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38302:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38606:1;38589:6;:13;:18;38585:235;;38635:40;;;;;;;;;;;;;;38585:235;38778:6;38772:13;38763:6;38759:2;38755:15;38748:38;38302:529;38475:54;;;38465:64;;;:6;:64;;;;38458:71;;;38122:716;;;;;;:::o;50969:147::-;51106:6;50969:147;;;;;:::o;39300:2966::-;39373:20;39396:13;;39373:36;;39436:1;39424:8;:13;39420:44;;39446:18;;;;;;;;;;;;;;39420:44;39477:61;39507:1;39511:2;39515:12;39529:8;39477:21;:61::i;:::-;40021:1;13021:2;39991:1;:26;;39990:32;39978:8;:45;39952:18;:22;39971:2;39952:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;40300:139;40337:2;40391:33;40414:1;40418:2;40422:1;40391:14;:33::i;:::-;40358:30;40379:8;40358:20;:30::i;:::-;:66;40300:18;:139::i;:::-;40266:17;:31;40284:12;40266:31;;;;;;;;;;;:173;;;;40456:16;40487:11;40516:8;40501:12;:23;40487:37;;41037:16;41033:2;41029:25;41017:37;;41409:12;41369:8;41328:1;41266:25;41207:1;41146;41119:335;41780:1;41766:12;41762:20;41720:346;41821:3;41812:7;41809:16;41720:346;;42039:7;42029:8;42026:1;41999:25;41996:1;41993;41988:59;41874:1;41865:7;41861:15;41850:26;;41720:346;;;41724:77;42111:1;42099:8;:13;42095:45;;42121:19;;;;;;;;;;;;;;42095:45;42173:3;42157:13;:19;;;;39726:2462;;42198:60;42227:1;42231:2;42235:12;42249:8;42198:20;:60::i;:::-;39362:2904;39300:2966;;:::o;26712:324::-;26782:14;27015:1;27005:8;27002:15;26976:24;26972:46;26962:56;;26712:324;;;:::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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:60::-;5943:3;5964:5;5957:12;;5915:60;;;:::o;5981:142::-;6031:9;6064:53;6082:34;6091:24;6109:5;6091:24;:::i;:::-;6082:34;:::i;:::-;6064:53;:::i;:::-;6051:66;;5981:142;;;:::o;6129:126::-;6179:9;6212:37;6243:5;6212:37;:::i;:::-;6199:50;;6129:126;;;:::o;6261:158::-;6343:9;6376:37;6407:5;6376:37;:::i;:::-;6363:50;;6261:158;;;:::o;6425:195::-;6544:69;6607:5;6544:69;:::i;:::-;6539:3;6532:82;6425:195;;:::o;6626:286::-;6751:4;6789:2;6778:9;6774:18;6766:26;;6802:103;6902:1;6891:9;6887:17;6878:6;6802:103;:::i;:::-;6626:286;;;;:::o;6918:117::-;7027:1;7024;7017:12;7041:117;7150:1;7147;7140:12;7164:180;7212:77;7209:1;7202:88;7309:4;7306:1;7299:15;7333:4;7330:1;7323:15;7350:281;7433:27;7455:4;7433:27;:::i;:::-;7425:6;7421:40;7563:6;7551:10;7548:22;7527:18;7515:10;7512:34;7509:62;7506:88;;;7574:18;;:::i;:::-;7506:88;7614:10;7610:2;7603:22;7393:238;7350:281;;:::o;7637:129::-;7671:6;7698:20;;:::i;:::-;7688:30;;7727:33;7755:4;7747:6;7727:33;:::i;:::-;7637:129;;;:::o;7772:308::-;7834:4;7924:18;7916:6;7913:30;7910:56;;;7946:18;;:::i;:::-;7910:56;7984:29;8006:6;7984:29;:::i;:::-;7976:37;;8068:4;8062;8058:15;8050:23;;7772:308;;;:::o;8086:154::-;8170:6;8165:3;8160;8147:30;8232:1;8223:6;8218:3;8214:16;8207:27;8086:154;;;:::o;8246:412::-;8324:5;8349:66;8365:49;8407:6;8365:49;:::i;:::-;8349:66;:::i;:::-;8340:75;;8438:6;8431:5;8424:21;8476:4;8469:5;8465:16;8514:3;8505:6;8500:3;8496:16;8493:25;8490:112;;;8521:79;;:::i;:::-;8490:112;8611:41;8645:6;8640:3;8635;8611:41;:::i;:::-;8330:328;8246:412;;;;;:::o;8678:340::-;8734:5;8783:3;8776:4;8768:6;8764:17;8760:27;8750:122;;8791:79;;:::i;:::-;8750:122;8908:6;8895:20;8933:79;9008:3;9000:6;8993:4;8985:6;8981:17;8933:79;:::i;:::-;8924:88;;8740:278;8678:340;;;;:::o;9024:509::-;9093:6;9142:2;9130:9;9121:7;9117:23;9113:32;9110:119;;;9148:79;;:::i;:::-;9110:119;9296:1;9285:9;9281:17;9268:31;9326:18;9318:6;9315:30;9312:117;;;9348:79;;:::i;:::-;9312:117;9453:63;9508:7;9499:6;9488:9;9484:22;9453:63;:::i;:::-;9443:73;;9239:287;9024:509;;;;:::o;9539:329::-;9598:6;9647:2;9635:9;9626:7;9622:23;9618:32;9615:119;;;9653:79;;:::i;:::-;9615:119;9773:1;9798:53;9843:7;9834:6;9823:9;9819:22;9798:53;:::i;:::-;9788:63;;9744:117;9539:329;;;;:::o;9874:116::-;9944:21;9959:5;9944:21;:::i;:::-;9937:5;9934:32;9924:60;;9980:1;9977;9970:12;9924:60;9874:116;:::o;9996:133::-;10039:5;10077:6;10064:20;10055:29;;10093:30;10117:5;10093:30;:::i;:::-;9996:133;;;;:::o;10135:468::-;10200:6;10208;10257:2;10245:9;10236:7;10232:23;10228:32;10225:119;;;10263:79;;:::i;:::-;10225:119;10383:1;10408:53;10453:7;10444:6;10433:9;10429:22;10408:53;:::i;:::-;10398:63;;10354:117;10510:2;10536:50;10578:7;10569:6;10558:9;10554:22;10536:50;:::i;:::-;10526:60;;10481:115;10135:468;;;;;:::o;10609:307::-;10670:4;10760:18;10752:6;10749:30;10746:56;;;10782:18;;:::i;:::-;10746:56;10820:29;10842:6;10820:29;:::i;:::-;10812:37;;10904:4;10898;10894:15;10886:23;;10609:307;;;:::o;10922:410::-;10999:5;11024:65;11040:48;11081:6;11040:48;:::i;:::-;11024:65;:::i;:::-;11015:74;;11112:6;11105:5;11098:21;11150:4;11143:5;11139:16;11188:3;11179:6;11174:3;11170:16;11167:25;11164:112;;;11195:79;;:::i;:::-;11164:112;11285:41;11319:6;11314:3;11309;11285:41;:::i;:::-;11005:327;10922:410;;;;;:::o;11351:338::-;11406:5;11455:3;11448:4;11440:6;11436:17;11432:27;11422:122;;11463:79;;:::i;:::-;11422:122;11580:6;11567:20;11605:78;11679:3;11671:6;11664:4;11656:6;11652:17;11605:78;:::i;:::-;11596:87;;11412:277;11351:338;;;;:::o;11695:943::-;11790:6;11798;11806;11814;11863:3;11851:9;11842:7;11838:23;11834:33;11831:120;;;11870:79;;:::i;:::-;11831:120;11990:1;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11961:117;12117:2;12143:53;12188:7;12179:6;12168:9;12164:22;12143:53;:::i;:::-;12133:63;;12088:118;12245:2;12271:53;12316:7;12307:6;12296:9;12292:22;12271:53;:::i;:::-;12261:63;;12216:118;12401:2;12390:9;12386:18;12373:32;12432:18;12424:6;12421:30;12418:117;;;12454:79;;:::i;:::-;12418:117;12559:62;12613:7;12604:6;12593:9;12589:22;12559:62;:::i;:::-;12549:72;;12344:287;11695:943;;;;;;;:::o;12644:474::-;12712:6;12720;12769:2;12757:9;12748:7;12744:23;12740:32;12737:119;;;12775:79;;:::i;:::-;12737:119;12895:1;12920:53;12965:7;12956:6;12945:9;12941:22;12920:53;:::i;:::-;12910:63;;12866:117;13022:2;13048:53;13093:7;13084:6;13073:9;13069:22;13048:53;:::i;:::-;13038:63;;12993:118;12644:474;;;;;:::o;13124:180::-;13172:77;13169:1;13162:88;13269:4;13266:1;13259:15;13293:4;13290:1;13283:15;13310:320;13354:6;13391:1;13385:4;13381:12;13371:22;;13438:1;13432:4;13428:12;13459:18;13449:81;;13515:4;13507:6;13503:17;13493:27;;13449:81;13577:2;13569:6;13566:14;13546:18;13543:38;13540:84;;13596:18;;:::i;:::-;13540:84;13361:269;13310:320;;;:::o;13636:332::-;13757:4;13795:2;13784:9;13780:18;13772:26;;13808:71;13876:1;13865:9;13861:17;13852:6;13808:71;:::i;:::-;13889:72;13957:2;13946:9;13942:18;13933:6;13889:72;:::i;:::-;13636:332;;;;;:::o;13974:137::-;14028:5;14059:6;14053:13;14044:22;;14075:30;14099:5;14075:30;:::i;:::-;13974:137;;;;:::o;14117:345::-;14184:6;14233:2;14221:9;14212:7;14208:23;14204:32;14201:119;;;14239:79;;:::i;:::-;14201:119;14359:1;14384:61;14437:7;14428:6;14417:9;14413:22;14384:61;:::i;:::-;14374:71;;14330:125;14117:345;;;;:::o;14468:147::-;14569:11;14606:3;14591:18;;14468:147;;;;:::o;14621:114::-;;:::o;14741:398::-;14900:3;14921:83;15002:1;14997:3;14921:83;:::i;:::-;14914:90;;15013:93;15102:3;15013:93;:::i;:::-;15131:1;15126:3;15122:11;15115:18;;14741:398;;;:::o;15145:379::-;15329:3;15351:147;15494:3;15351:147;:::i;:::-;15344:154;;15515:3;15508:10;;15145:379;;;:::o;15530:166::-;15670:18;15666:1;15658:6;15654:14;15647:42;15530:166;:::o;15702:366::-;15844:3;15865:67;15929:2;15924:3;15865:67;:::i;:::-;15858:74;;15941:93;16030:3;15941:93;:::i;:::-;16059:2;16054:3;16050:12;16043:19;;15702:366;;;:::o;16074:419::-;16240:4;16278:2;16267:9;16263:18;16255:26;;16327:9;16321:4;16317:20;16313:1;16302:9;16298:17;16291:47;16355:131;16481:4;16355:131;:::i;:::-;16347:139;;16074:419;;;:::o;16499:180::-;16547:77;16544:1;16537:88;16644:4;16641:1;16634:15;16668:4;16665:1;16658:15;16685:305;16725:3;16744:20;16762:1;16744:20;:::i;:::-;16739:25;;16778:20;16796:1;16778:20;:::i;:::-;16773:25;;16932:1;16864:66;16860:74;16857:1;16854:81;16851:107;;;16938:18;;:::i;:::-;16851:107;16982:1;16979;16975:9;16968:16;;16685:305;;;;:::o;16996:348::-;17036:7;17059:20;17077:1;17059:20;:::i;:::-;17054:25;;17093:20;17111:1;17093:20;:::i;:::-;17088:25;;17281:1;17213:66;17209:74;17206:1;17203:81;17198:1;17191:9;17184:17;17180:105;17177:131;;;17288:18;;:::i;:::-;17177:131;17336:1;17333;17329:9;17318:20;;16996:348;;;;:::o;17350:179::-;17490:31;17486:1;17478:6;17474:14;17467:55;17350:179;:::o;17535:366::-;17677:3;17698:67;17762:2;17757:3;17698:67;:::i;:::-;17691:74;;17774:93;17863:3;17774:93;:::i;:::-;17892:2;17887:3;17883:12;17876:19;;17535:366;;;:::o;17907:419::-;18073:4;18111:2;18100:9;18096:18;18088:26;;18160:9;18154:4;18150:20;18146:1;18135:9;18131:17;18124:47;18188:131;18314:4;18188:131;:::i;:::-;18180:139;;17907:419;;;:::o;18332:157::-;18472:9;18468:1;18460:6;18456:14;18449:33;18332:157;:::o;18495:365::-;18637:3;18658:66;18722:1;18717:3;18658:66;:::i;:::-;18651:73;;18733:93;18822:3;18733:93;:::i;:::-;18851:2;18846:3;18842:12;18835:19;;18495:365;;;:::o;18866:419::-;19032:4;19070:2;19059:9;19055:18;19047:26;;19119:9;19113:4;19109:20;19105:1;19094:9;19090:17;19083:47;19147:131;19273:4;19147:131;:::i;:::-;19139:139;;18866:419;;;:::o;19291:173::-;19431:25;19427:1;19419:6;19415:14;19408:49;19291:173;:::o;19470:366::-;19612:3;19633:67;19697:2;19692:3;19633:67;:::i;:::-;19626:74;;19709:93;19798:3;19709:93;:::i;:::-;19827:2;19822:3;19818:12;19811:19;;19470:366;;;:::o;19842:419::-;20008:4;20046:2;20035:9;20031:18;20023:26;;20095:9;20089:4;20085:20;20081:1;20070:9;20066:17;20059:47;20123:131;20249:4;20123:131;:::i;:::-;20115:139;;19842:419;;;:::o;20267:169::-;20407:21;20403:1;20395:6;20391:14;20384:45;20267:169;:::o;20442:366::-;20584:3;20605:67;20669:2;20664:3;20605:67;:::i;:::-;20598:74;;20681:93;20770:3;20681:93;:::i;:::-;20799:2;20794:3;20790:12;20783:19;;20442:366;;;:::o;20814:419::-;20980:4;21018:2;21007:9;21003:18;20995:26;;21067:9;21061:4;21057:20;21053:1;21042:9;21038:17;21031:47;21095:131;21221:4;21095:131;:::i;:::-;21087:139;;20814:419;;;:::o;21239:234::-;21379:34;21375:1;21367:6;21363:14;21356:58;21448:17;21443:2;21435:6;21431:15;21424:42;21239:234;:::o;21479:366::-;21621:3;21642:67;21706:2;21701:3;21642:67;:::i;:::-;21635:74;;21718:93;21807:3;21718:93;:::i;:::-;21836:2;21831:3;21827:12;21820:19;;21479:366;;;:::o;21851:419::-;22017:4;22055:2;22044:9;22040:18;22032:26;;22104:9;22098:4;22094:20;22090:1;22079:9;22075:17;22068:47;22132:131;22258:4;22132:131;:::i;:::-;22124:139;;21851:419;;;:::o;22276:148::-;22378:11;22415:3;22400:18;;22276:148;;;;:::o;22430:141::-;22479:4;22502:3;22494:11;;22525:3;22522:1;22515:14;22559:4;22556:1;22546:18;22538:26;;22430:141;;;:::o;22601:845::-;22704:3;22741:5;22735:12;22770:36;22796:9;22770:36;:::i;:::-;22822:89;22904:6;22899:3;22822:89;:::i;:::-;22815:96;;22942:1;22931:9;22927:17;22958:1;22953:137;;;;23104:1;23099:341;;;;22920:520;;22953:137;23037:4;23033:9;23022;23018:25;23013:3;23006:38;23073:6;23068:3;23064:16;23057:23;;22953:137;;23099:341;23166:38;23198:5;23166:38;:::i;:::-;23226:1;23240:154;23254:6;23251:1;23248:13;23240:154;;;23328:7;23322:14;23318:1;23313:3;23309:11;23302:35;23378:1;23369:7;23365:15;23354:26;;23276:4;23273:1;23269:12;23264:17;;23240:154;;;23423:6;23418:3;23414:16;23407:23;;23106:334;;22920:520;;22708:738;;22601:845;;;;:::o;23452:377::-;23558:3;23586:39;23619:5;23586:39;:::i;:::-;23641:89;23723:6;23718:3;23641:89;:::i;:::-;23634:96;;23739:52;23784:6;23779:3;23772:4;23765:5;23761:16;23739:52;:::i;:::-;23816:6;23811:3;23807:16;23800:23;;23562:267;23452:377;;;;:::o;23835:400::-;23995:3;24016:84;24098:1;24093:3;24016:84;:::i;:::-;24009:91;;24109:93;24198:3;24109:93;:::i;:::-;24227:1;24222:3;24218:11;24211:18;;23835:400;;;:::o;24241:695::-;24519:3;24541:92;24629:3;24620:6;24541:92;:::i;:::-;24534:99;;24650:95;24741:3;24732:6;24650:95;:::i;:::-;24643:102;;24762:148;24906:3;24762:148;:::i;:::-;24755:155;;24927:3;24920:10;;24241:695;;;;;:::o;24942:225::-;25082:34;25078:1;25070:6;25066:14;25059:58;25151:8;25146:2;25138:6;25134:15;25127:33;24942:225;:::o;25173:366::-;25315:3;25336:67;25400:2;25395:3;25336:67;:::i;:::-;25329:74;;25412:93;25501:3;25412:93;:::i;:::-;25530:2;25525:3;25521:12;25514:19;;25173:366;;;:::o;25545:419::-;25711:4;25749:2;25738:9;25734:18;25726:26;;25798:9;25792:4;25788:20;25784:1;25773:9;25769:17;25762:47;25826:131;25952:4;25826:131;:::i;:::-;25818:139;;25545:419;;;:::o;25970:182::-;26110:34;26106:1;26098:6;26094:14;26087:58;25970:182;:::o;26158:366::-;26300:3;26321:67;26385:2;26380:3;26321:67;:::i;:::-;26314:74;;26397:93;26486:3;26397:93;:::i;:::-;26515:2;26510:3;26506:12;26499:19;;26158:366;;;:::o;26530:419::-;26696:4;26734:2;26723:9;26719:18;26711:26;;26783:9;26777:4;26773:20;26769:1;26758:9;26754:17;26747:47;26811:131;26937:4;26811:131;:::i;:::-;26803:139;;26530:419;;;:::o;26955:233::-;26994:3;27017:24;27035:5;27017:24;:::i;:::-;27008:33;;27063:66;27056:5;27053:77;27050:103;;27133:18;;:::i;:::-;27050:103;27180:1;27173:5;27169:13;27162:20;;26955:233;;;:::o;27194:180::-;27242:77;27239:1;27232:88;27339:4;27336:1;27329:15;27363:4;27360:1;27353:15;27380:185;27420:1;27437:20;27455:1;27437:20;:::i;:::-;27432:25;;27471:20;27489:1;27471:20;:::i;:::-;27466:25;;27510:1;27500:35;;27515:18;;:::i;:::-;27500:35;27557:1;27554;27550:9;27545:14;;27380:185;;;;:::o;27571:191::-;27611:4;27631:20;27649:1;27631:20;:::i;:::-;27626:25;;27665:20;27683:1;27665:20;:::i;:::-;27660:25;;27704:1;27701;27698:8;27695:34;;;27709:18;;:::i;:::-;27695:34;27754:1;27751;27747:9;27739:17;;27571:191;;;;:::o;27768:176::-;27800:1;27817:20;27835:1;27817:20;:::i;:::-;27812:25;;27851:20;27869:1;27851:20;:::i;:::-;27846:25;;27890:1;27880:35;;27895:18;;:::i;:::-;27880:35;27936:1;27933;27929:9;27924:14;;27768:176;;;;:::o;27950:180::-;27998:77;27995:1;27988:88;28095:4;28092:1;28085:15;28119:4;28116:1;28109:15;28136:98;28187:6;28221:5;28215:12;28205:22;;28136:98;;;:::o;28240:168::-;28323:11;28357:6;28352:3;28345:19;28397:4;28392:3;28388:14;28373:29;;28240:168;;;;:::o;28414:360::-;28500:3;28528:38;28560:5;28528:38;:::i;:::-;28582:70;28645:6;28640:3;28582:70;:::i;:::-;28575:77;;28661:52;28706:6;28701:3;28694:4;28687:5;28683:16;28661:52;:::i;:::-;28738:29;28760:6;28738:29;:::i;:::-;28733:3;28729:39;28722:46;;28504:270;28414:360;;;;:::o;28780:640::-;28975:4;29013:3;29002:9;28998:19;28990:27;;29027:71;29095:1;29084:9;29080:17;29071:6;29027:71;:::i;:::-;29108:72;29176:2;29165:9;29161:18;29152:6;29108:72;:::i;:::-;29190;29258:2;29247:9;29243:18;29234:6;29190:72;:::i;:::-;29309:9;29303:4;29299:20;29294:2;29283:9;29279:18;29272:48;29337:76;29408:4;29399:6;29337:76;:::i;:::-;29329:84;;28780:640;;;;;;;:::o;29426:141::-;29482:5;29513:6;29507:13;29498:22;;29529:32;29555:5;29529:32;:::i;:::-;29426:141;;;;:::o;29573:349::-;29642:6;29691:2;29679:9;29670:7;29666:23;29662:32;29659:119;;;29697:79;;:::i;:::-;29659:119;29817:1;29842:63;29897:7;29888:6;29877:9;29873:22;29842:63;:::i;:::-;29832:73;;29788:127;29573:349;;;;:::o
Swarm Source
ipfs://95c17c0447e92b8b9ec3e935242efd9b5cbe42d5669416066b009de7de37b308
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.