ERC-721
Overview
Max Total Supply
1,132 ben10000
Holders
124
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
22 ben10000Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Ben10000
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-24 */ // _ _ ___ ___ ___ ___ //| |__ ___ _ __ / |/ _ \ / _ \ / _ \ / _ \ //| '_ \ / _ \ '_ \| | | | | | | | | | | | | | //| |_) | __/ | | | | |_| | |_| | |_| | |_| | //|_.__/ \___|_| |_|_|\___/ \___/ \___/ \___/ // 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 Ben10000 is ERC721A, Ownable, DefaultOperatorFilterer, ReentrancyGuard { using Strings for uint256; string private baseURI; bool public mintEnabled = false; uint256 public price = 0.001 ether; uint256 public maxPerTx = 20; uint256 public maxFreePerWallet = 2; uint256 public totalFree = 10000; uint256 public maxSupply = 10000; mapping(address => uint256) private _mintedFreeAmount; constructor() ERC721A("ben10000", "ben10000") { _safeMint(msg.sender, 10); setBaseURI("ipfs://bafybeidt3r6j24s32edncpoutytpv3glapmgbz6u4gumllhxltmq3it5ba/"); } 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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseURI, tokenId.toString(), "")); } 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."); } //Opensea Royalty Enforcement Methods 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":"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":[{"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":[{"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":"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
60806040526000600b60006101000a81548160ff02191690831515021790555066038d7ea4c68000600c556014600d556002600e55612710600f556127106010553480156200004d57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f62656e31303030300000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f62656e31303030300000000000000000000000000000000000000000000000008152508160029080519060200190620000e9929190620009de565b50806003908051906020019062000102929190620009de565b50620001136200037d60201b60201c565b60008190555050506200013b6200012f6200038260201b60201c565b6200038a60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000330578015620001f6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001bc92919062000ad3565b600060405180830381600087803b158015620001d757600080fd5b505af1158015620001ec573d6000803e3d6000fd5b505050506200032f565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002b0576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200027692919062000ad3565b600060405180830381600087803b1580156200029157600080fd5b505af1158015620002a6573d6000803e3d6000fd5b505050506200032e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002f9919062000b00565b600060405180830381600087803b1580156200031457600080fd5b505af115801562000329573d6000803e3d6000fd5b505050505b5b5b505060016009819055506200034d33600a6200045060201b60201c565b62000377604051806080016040528060438152602001620042d4604391396200047660201b60201c565b62000dab565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000472828260405180602001604052806000815250620004a260201b60201c565b5050565b620004866200055360201b60201c565b80600a90805190602001906200049e929190620009de565b5050565b620004b48383620005e460201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200054e57600080549050600083820390505b620004fd6000868380600101945086620007cb60201b60201c565b62000534576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620004e25781600054146200054b57600080fd5b50505b505050565b620005636200038260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005896200092c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d99062000b7e565b60405180910390fd5b565b6000805490506000820362000625576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200063a60008483856200095660201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620006c983620006ab60008660006200095c60201b60201c565b620006bc856200098c60201b60201c565b176200099c60201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200076c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506200072f565b5060008203620007a8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620007c66000848385620009c760201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007f9620009cd60201b60201c565b8786866040518563ffffffff1660e01b81526004016200081d949392919062000c5f565b6020604051808303816000875af19250505080156200085c57506040513d601f19601f8201168201806040525081019062000859919062000d15565b60015b620008d9573d80600081146200088f576040519150601f19603f3d011682016040523d82523d6000602084013e62000894565b606091505b506000815103620008d1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b50505050565b60008060e883901c905060e86200097b868684620009d560201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620009ec9062000d76565b90600052602060002090601f01602090048101928262000a10576000855562000a5c565b82601f1062000a2b57805160ff191683800117855562000a5c565b8280016001018555821562000a5c579182015b8281111562000a5b57825182559160200191906001019062000a3e565b5b50905062000a6b919062000a6f565b5090565b5b8082111562000a8a57600081600090555060010162000a70565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000abb8262000a8e565b9050919050565b62000acd8162000aae565b82525050565b600060408201905062000aea600083018562000ac2565b62000af9602083018462000ac2565b9392505050565b600060208201905062000b17600083018462000ac2565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000b6660208362000b1d565b915062000b738262000b2e565b602082019050919050565b6000602082019050818103600083015262000b998162000b57565b9050919050565b6000819050919050565b62000bb58162000ba0565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000bf757808201518184015260208101905062000bda565b8381111562000c07576000848401525b50505050565b6000601f19601f8301169050919050565b600062000c2b8262000bbb565b62000c37818562000bc6565b935062000c4981856020860162000bd7565b62000c548162000c0d565b840191505092915050565b600060808201905062000c76600083018762000ac2565b62000c85602083018662000ac2565b62000c94604083018562000baa565b818103606083015262000ca8818462000c1e565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000cef8162000cb8565b811462000cfb57600080fd5b50565b60008151905062000d0f8162000ce4565b92915050565b60006020828403121562000d2e5762000d2d62000cb3565b5b600062000d3e8482850162000cfe565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d8f57607f821691505b60208210810362000da55762000da462000d47565b5b50919050565b6135198062000dbb6000396000f3fe6080604052600436106101d85760003560e01c80637ba5e62111610102578063a702735711610095578063d5abeb0111610064578063d5abeb011461062f578063e985e9c51461065a578063f2fde38b14610697578063f968adbe146106c0576101d8565b8063a702735714610580578063b88d4fde146105ab578063c87b56dd146105c7578063d123973014610604576101d8565b806395d89b41116100d157806395d89b41146104e5578063a035b1fe14610510578063a0712d681461053b578063a22cb46514610557576101d8565b80637ba5e621146104515780638da5cb5b1461046857806391b7f5ed1461049357806392910eec146104bc576101d8565b80633ccfd60b1161017a5780636352211e116101495780636352211e146103975780636d7c4a4b146103d457806370a08231146103fd578063715018a61461043a576101d8565b80633ccfd60b1461031057806341f434341461032757806342842e0e1461035257806355f804b31461036e576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd1461029e57806323b872dd146102c9578063333e44e6146102e5576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061254b565b6106eb565b6040516102119190612593565b60405180910390f35b34801561022657600080fd5b5061022f61077d565b60405161023c9190612647565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061269f565b61080f565b604051610279919061270d565b60405180910390f35b61029c60048036038101906102979190612754565b61088e565b005b3480156102aa57600080fd5b506102b3610998565b6040516102c091906127a3565b60405180910390f35b6102e360048036038101906102de91906127be565b6109af565b005b3480156102f157600080fd5b506102fa610aff565b60405161030791906127a3565b60405180910390f35b34801561031c57600080fd5b50610325610b05565b005b34801561033357600080fd5b5061033c610bbc565b6040516103499190612870565b60405180910390f35b61036c600480360381019061036791906127be565b610bce565b005b34801561037a57600080fd5b50610395600480360381019061039091906129c0565b610d1e565b005b3480156103a357600080fd5b506103be60048036038101906103b9919061269f565b610d40565b6040516103cb919061270d565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f6919061269f565b610d52565b005b34801561040957600080fd5b50610424600480360381019061041f9190612a09565b610d64565b60405161043191906127a3565b60405180910390f35b34801561044657600080fd5b5061044f610e1c565b005b34801561045d57600080fd5b50610466610e30565b005b34801561047457600080fd5b5061047d610e64565b60405161048a919061270d565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b5919061269f565b610e8e565b005b3480156104c857600080fd5b506104e360048036038101906104de919061269f565b610ea0565b005b3480156104f157600080fd5b506104fa610eb2565b6040516105079190612647565b60405180910390f35b34801561051c57600080fd5b50610525610f44565b60405161053291906127a3565b60405180910390f35b6105556004803603810190610550919061269f565b610f4a565b005b34801561056357600080fd5b5061057e60048036038101906105799190612a62565b611196565b005b34801561058c57600080fd5b506105956112a0565b6040516105a291906127a3565b60405180910390f35b6105c560048036038101906105c09190612b43565b6112a6565b005b3480156105d357600080fd5b506105ee60048036038101906105e9919061269f565b6113f9565b6040516105fb9190612647565b60405180910390f35b34801561061057600080fd5b50610619611475565b6040516106269190612593565b60405180910390f35b34801561063b57600080fd5b50610644611488565b60405161065191906127a3565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190612bc6565b61148e565b60405161068e9190612593565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190612a09565b611522565b005b3480156106cc57600080fd5b506106d56115a5565b6040516106e291906127a3565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107765750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078c90612c35565b80601f01602080910402602001604051908101604052809291908181526020018280546107b890612c35565b80156108055780601f106107da57610100808354040283529160200191610805565b820191906000526020600020905b8154815290600101906020018083116107e857829003601f168201915b5050505050905090565b600061081a826115ab565b610850576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610989576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610906929190612c66565b602060405180830381865afa158015610923573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109479190612ca4565b61098857806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161097f919061270d565b60405180910390fd5b5b610993838361160a565b505050565b60006109a261174e565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610aed573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a2157610a1c848484611753565b610af9565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a6a929190612c66565b602060405180830381865afa158015610a87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aab9190612ca4565b610aec57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ae3919061270d565b60405180910390fd5b5b610af8848484611753565b5b50505050565b600f5481565b610b0d611a75565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610b3390612d02565b60006040518083038185875af1925050503d8060008114610b70576040519150601f19603f3d011682016040523d82523d6000602084013e610b75565b606091505b5050905080610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090612d63565b60405180910390fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d0c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c4057610c3b848484611af3565b610d18565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c89929190612c66565b602060405180830381865afa158015610ca6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cca9190612ca4565b610d0b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d02919061270d565b60405180910390fd5b5b610d17848484611af3565b5b50505050565b610d26611a75565b80600a9080519060200190610d3c92919061243c565b5050565b6000610d4b82611b13565b9050919050565b610d5a611a75565b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dcb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e24611a75565b610e2e6000611bdf565b565b610e38611a75565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e96611a75565b80600c8190555050565b610ea8611a75565b80600f8190555050565b606060038054610ec190612c35565b80601f0160208091040260200160405190810160405280929190818152602001828054610eed90612c35565b8015610f3a5780601f10610f0f57610100808354040283529160200191610f3a565b820191906000526020600020905b815481529060010190602001808311610f1d57829003601f168201915b5050505050905090565b600c5481565b6000600c54905060006001600f54610f629190612db2565b83610f6b610998565b610f759190612db2565b108015610fce5750600e5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fcb9190612db2565b11155b90508015610fdb57600091505b8183610fe79190612e08565b341015611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090612eae565b60405180910390fd5b60016010546110389190612db2565b83611041610998565b61104b9190612db2565b1061108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290612f1a565b60405180910390fd5b600b60009054906101000a900460ff166110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190612f86565b60405180910390fd5b6001600d546110e99190612db2565b831061112a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112190612ff2565b60405180910390fd5b80156111875782601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461117f9190612db2565b925050819055505b6111913384611ca5565b505050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611291576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161120e929190612c66565b602060405180830381865afa15801561122b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124f9190612ca4565b61129057806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611287919061270d565b60405180910390fd5b5b61129b8383611cc3565b505050565b600e5481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113e5573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113195761131485858585611dce565b6113f2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611362929190612c66565b602060405180830381865afa15801561137f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a39190612ca4565b6113e457336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113db919061270d565b60405180910390fd5b5b6113f185858585611dce565b5b5050505050565b6060611404826115ab565b611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90613084565b60405180910390fd5b600a61144e83611e41565b60405160200161145f929190613197565b6040516020818303038152906040529050919050565b600b60009054906101000a900460ff1681565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61152a611a75565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613238565b60405180910390fd5b6115a281611bdf565b50565b600d5481565b6000816115b661174e565b111580156115c5575060005482105b8015611603575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061161582610d40565b90508073ffffffffffffffffffffffffffffffffffffffff16611636611fa1565b73ffffffffffffffffffffffffffffffffffffffff1614611699576116628161165d611fa1565b61148e565b611698576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061175e82611b13565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117c5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117d184611fa9565b915091506117e781876117e2611fa1565b611fd0565b611833576117fc866117f7611fa1565b61148e565b611832576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611899576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118a68686866001612014565b80156118b157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061197f8561195b88888761201a565b7c020000000000000000000000000000000000000000000000000000000017612042565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a055760006001850190506000600460008381526020019081526020016000205403611a03576000548114611a02578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a6d868686600161206d565b505050505050565b611a7d612073565b73ffffffffffffffffffffffffffffffffffffffff16611a9b610e64565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae8906132a4565b60405180910390fd5b565b611b0e838383604051806020016040528060008152506112a6565b505050565b60008082905080611b2261174e565b11611ba857600054811015611ba75760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ba5575b60008103611b9b576004600083600190039350838152602001908152602001600020549050611b71565b8092505050611bda565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cbf82826040518060200160405280600081525061207b565b5050565b8060076000611cd0611fa1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d7d611fa1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dc29190612593565b60405180910390a35050565b611dd98484846109af565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e3b57611e0484848484612118565b611e3a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060008203611e88576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f9c565b600082905060005b60008214611eba578080611ea3906132c4565b915050600a82611eb3919061333b565b9150611e90565b60008167ffffffffffffffff811115611ed657611ed5612895565b5b6040519080825280601f01601f191660200182016040528015611f085781602001600182028036833780820191505090505b5090505b60008514611f9557600182611f21919061336c565b9150600a85611f3091906133a0565b6030611f3c9190612db2565b60f81b818381518110611f5257611f516133d1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f8e919061333b565b9450611f0c565b8093505050505b919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612031868684612268565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6120858383612271565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461211357600080549050600083820390505b6120c56000868380600101945086612118565b6120fb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120b257816000541461211057600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261213e611fa1565b8786866040518563ffffffff1660e01b81526004016121609493929190613455565b6020604051808303816000875af192505050801561219c57506040513d601f19601f8201168201806040525081019061219991906134b6565b60015b612215573d80600081146121cc576040519150601f19603f3d011682016040523d82523d6000602084013e6121d1565b606091505b50600081510361220d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036122b1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122be6000848385612014565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061233583612326600086600061201a565b61232f8561242c565b17612042565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123d657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061239b565b5060008203612411576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612427600084838561206d565b505050565b60006001821460e11b9050919050565b82805461244890612c35565b90600052602060002090601f01602090048101928261246a57600085556124b1565b82601f1061248357805160ff19168380011785556124b1565b828001600101855582156124b1579182015b828111156124b0578251825591602001919060010190612495565b5b5090506124be91906124c2565b5090565b5b808211156124db5760008160009055506001016124c3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612528816124f3565b811461253357600080fd5b50565b6000813590506125458161251f565b92915050565b600060208284031215612561576125606124e9565b5b600061256f84828501612536565b91505092915050565b60008115159050919050565b61258d81612578565b82525050565b60006020820190506125a86000830184612584565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125e85780820151818401526020810190506125cd565b838111156125f7576000848401525b50505050565b6000601f19601f8301169050919050565b6000612619826125ae565b61262381856125b9565b93506126338185602086016125ca565b61263c816125fd565b840191505092915050565b60006020820190508181036000830152612661818461260e565b905092915050565b6000819050919050565b61267c81612669565b811461268757600080fd5b50565b60008135905061269981612673565b92915050565b6000602082840312156126b5576126b46124e9565b5b60006126c38482850161268a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126f7826126cc565b9050919050565b612707816126ec565b82525050565b600060208201905061272260008301846126fe565b92915050565b612731816126ec565b811461273c57600080fd5b50565b60008135905061274e81612728565b92915050565b6000806040838503121561276b5761276a6124e9565b5b60006127798582860161273f565b925050602061278a8582860161268a565b9150509250929050565b61279d81612669565b82525050565b60006020820190506127b86000830184612794565b92915050565b6000806000606084860312156127d7576127d66124e9565b5b60006127e58682870161273f565b93505060206127f68682870161273f565b92505060406128078682870161268a565b9150509250925092565b6000819050919050565b600061283661283161282c846126cc565b612811565b6126cc565b9050919050565b60006128488261281b565b9050919050565b600061285a8261283d565b9050919050565b61286a8161284f565b82525050565b60006020820190506128856000830184612861565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128cd826125fd565b810181811067ffffffffffffffff821117156128ec576128eb612895565b5b80604052505050565b60006128ff6124df565b905061290b82826128c4565b919050565b600067ffffffffffffffff82111561292b5761292a612895565b5b612934826125fd565b9050602081019050919050565b82818337600083830152505050565b600061296361295e84612910565b6128f5565b90508281526020810184848401111561297f5761297e612890565b5b61298a848285612941565b509392505050565b600082601f8301126129a7576129a661288b565b5b81356129b7848260208601612950565b91505092915050565b6000602082840312156129d6576129d56124e9565b5b600082013567ffffffffffffffff8111156129f4576129f36124ee565b5b612a0084828501612992565b91505092915050565b600060208284031215612a1f57612a1e6124e9565b5b6000612a2d8482850161273f565b91505092915050565b612a3f81612578565b8114612a4a57600080fd5b50565b600081359050612a5c81612a36565b92915050565b60008060408385031215612a7957612a786124e9565b5b6000612a878582860161273f565b9250506020612a9885828601612a4d565b9150509250929050565b600067ffffffffffffffff821115612abd57612abc612895565b5b612ac6826125fd565b9050602081019050919050565b6000612ae6612ae184612aa2565b6128f5565b905082815260208101848484011115612b0257612b01612890565b5b612b0d848285612941565b509392505050565b600082601f830112612b2a57612b2961288b565b5b8135612b3a848260208601612ad3565b91505092915050565b60008060008060808587031215612b5d57612b5c6124e9565b5b6000612b6b8782880161273f565b9450506020612b7c8782880161273f565b9350506040612b8d8782880161268a565b925050606085013567ffffffffffffffff811115612bae57612bad6124ee565b5b612bba87828801612b15565b91505092959194509250565b60008060408385031215612bdd57612bdc6124e9565b5b6000612beb8582860161273f565b9250506020612bfc8582860161273f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c4d57607f821691505b602082108103612c6057612c5f612c06565b5b50919050565b6000604082019050612c7b60008301856126fe565b612c8860208301846126fe565b9392505050565b600081519050612c9e81612a36565b92915050565b600060208284031215612cba57612cb96124e9565b5b6000612cc884828501612c8f565b91505092915050565b600081905092915050565b50565b6000612cec600083612cd1565b9150612cf782612cdc565b600082019050919050565b6000612d0d82612cdf565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612d4d6010836125b9565b9150612d5882612d17565b602082019050919050565b60006020820190508181036000830152612d7c81612d40565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dbd82612669565b9150612dc883612669565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dfd57612dfc612d83565b5b828201905092915050565b6000612e1382612669565b9150612e1e83612669565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e5757612e56612d83565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612e98601d836125b9565b9150612ea382612e62565b602082019050919050565b60006020820190508181036000830152612ec781612e8b565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000612f046007836125b9565b9150612f0f82612ece565b602082019050919050565b60006020820190508181036000830152612f3381612ef7565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b6000612f706017836125b9565b9150612f7b82612f3a565b602082019050919050565b60006020820190508181036000830152612f9f81612f63565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612fdc6013836125b9565b9150612fe782612fa6565b602082019050919050565b6000602082019050818103600083015261300b81612fcf565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061306e602f836125b9565b915061307982613012565b604082019050919050565b6000602082019050818103600083015261309d81613061565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546130d181612c35565b6130db81866130a4565b945060018216600081146130f657600181146131075761313a565b60ff1983168652818601935061313a565b613110856130af565b60005b8381101561313257815481890152600182019150602081019050613113565b838801955050505b50505092915050565b600061314e826125ae565b61315881856130a4565b93506131688185602086016125ca565b80840191505092915050565b60006131816000836130a4565b915061318c82612cdc565b600082019050919050565b60006131a382856130c4565b91506131af8284613143565b91506131ba82613174565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132226026836125b9565b915061322d826131c6565b604082019050919050565b6000602082019050818103600083015261325181613215565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061328e6020836125b9565b915061329982613258565b602082019050919050565b600060208201905081810360008301526132bd81613281565b9050919050565b60006132cf82612669565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361330157613300612d83565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061334682612669565b915061335183612669565b9250826133615761336061330c565b5b828204905092915050565b600061337782612669565b915061338283612669565b92508282101561339557613394612d83565b5b828203905092915050565b60006133ab82612669565b91506133b683612669565b9250826133c6576133c561330c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061342782613400565b613431818561340b565b93506134418185602086016125ca565b61344a816125fd565b840191505092915050565b600060808201905061346a60008301876126fe565b61347760208301866126fe565b6134846040830185612794565b8181036060830152613496818461341c565b905095945050505050565b6000815190506134b08161251f565b92915050565b6000602082840312156134cc576134cb6124e9565b5b60006134da848285016134a1565b9150509291505056fea2646970667358221220d528f4c79411dfa2b56f2062960f19e3cf5c8a02fa337345ed20925cfcf049e864736f6c634300080d0033697066733a2f2f6261667962656964743372366a323473333265646e63706f75747974707633676c61706d67627a36753467756d6c6c68786c746d713369743562612f
Deployed Bytecode
0x6080604052600436106101d85760003560e01c80637ba5e62111610102578063a702735711610095578063d5abeb0111610064578063d5abeb011461062f578063e985e9c51461065a578063f2fde38b14610697578063f968adbe146106c0576101d8565b8063a702735714610580578063b88d4fde146105ab578063c87b56dd146105c7578063d123973014610604576101d8565b806395d89b41116100d157806395d89b41146104e5578063a035b1fe14610510578063a0712d681461053b578063a22cb46514610557576101d8565b80637ba5e621146104515780638da5cb5b1461046857806391b7f5ed1461049357806392910eec146104bc576101d8565b80633ccfd60b1161017a5780636352211e116101495780636352211e146103975780636d7c4a4b146103d457806370a08231146103fd578063715018a61461043a576101d8565b80633ccfd60b1461031057806341f434341461032757806342842e0e1461035257806355f804b31461036e576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd1461029e57806323b872dd146102c9578063333e44e6146102e5576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061254b565b6106eb565b6040516102119190612593565b60405180910390f35b34801561022657600080fd5b5061022f61077d565b60405161023c9190612647565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061269f565b61080f565b604051610279919061270d565b60405180910390f35b61029c60048036038101906102979190612754565b61088e565b005b3480156102aa57600080fd5b506102b3610998565b6040516102c091906127a3565b60405180910390f35b6102e360048036038101906102de91906127be565b6109af565b005b3480156102f157600080fd5b506102fa610aff565b60405161030791906127a3565b60405180910390f35b34801561031c57600080fd5b50610325610b05565b005b34801561033357600080fd5b5061033c610bbc565b6040516103499190612870565b60405180910390f35b61036c600480360381019061036791906127be565b610bce565b005b34801561037a57600080fd5b50610395600480360381019061039091906129c0565b610d1e565b005b3480156103a357600080fd5b506103be60048036038101906103b9919061269f565b610d40565b6040516103cb919061270d565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f6919061269f565b610d52565b005b34801561040957600080fd5b50610424600480360381019061041f9190612a09565b610d64565b60405161043191906127a3565b60405180910390f35b34801561044657600080fd5b5061044f610e1c565b005b34801561045d57600080fd5b50610466610e30565b005b34801561047457600080fd5b5061047d610e64565b60405161048a919061270d565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b5919061269f565b610e8e565b005b3480156104c857600080fd5b506104e360048036038101906104de919061269f565b610ea0565b005b3480156104f157600080fd5b506104fa610eb2565b6040516105079190612647565b60405180910390f35b34801561051c57600080fd5b50610525610f44565b60405161053291906127a3565b60405180910390f35b6105556004803603810190610550919061269f565b610f4a565b005b34801561056357600080fd5b5061057e60048036038101906105799190612a62565b611196565b005b34801561058c57600080fd5b506105956112a0565b6040516105a291906127a3565b60405180910390f35b6105c560048036038101906105c09190612b43565b6112a6565b005b3480156105d357600080fd5b506105ee60048036038101906105e9919061269f565b6113f9565b6040516105fb9190612647565b60405180910390f35b34801561061057600080fd5b50610619611475565b6040516106269190612593565b60405180910390f35b34801561063b57600080fd5b50610644611488565b60405161065191906127a3565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190612bc6565b61148e565b60405161068e9190612593565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190612a09565b611522565b005b3480156106cc57600080fd5b506106d56115a5565b6040516106e291906127a3565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107765750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078c90612c35565b80601f01602080910402602001604051908101604052809291908181526020018280546107b890612c35565b80156108055780601f106107da57610100808354040283529160200191610805565b820191906000526020600020905b8154815290600101906020018083116107e857829003601f168201915b5050505050905090565b600061081a826115ab565b610850576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610989576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610906929190612c66565b602060405180830381865afa158015610923573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109479190612ca4565b61098857806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161097f919061270d565b60405180910390fd5b5b610993838361160a565b505050565b60006109a261174e565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610aed573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a2157610a1c848484611753565b610af9565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a6a929190612c66565b602060405180830381865afa158015610a87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aab9190612ca4565b610aec57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ae3919061270d565b60405180910390fd5b5b610af8848484611753565b5b50505050565b600f5481565b610b0d611a75565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610b3390612d02565b60006040518083038185875af1925050503d8060008114610b70576040519150601f19603f3d011682016040523d82523d6000602084013e610b75565b606091505b5050905080610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090612d63565b60405180910390fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d0c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c4057610c3b848484611af3565b610d18565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c89929190612c66565b602060405180830381865afa158015610ca6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cca9190612ca4565b610d0b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d02919061270d565b60405180910390fd5b5b610d17848484611af3565b5b50505050565b610d26611a75565b80600a9080519060200190610d3c92919061243c565b5050565b6000610d4b82611b13565b9050919050565b610d5a611a75565b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dcb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e24611a75565b610e2e6000611bdf565b565b610e38611a75565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e96611a75565b80600c8190555050565b610ea8611a75565b80600f8190555050565b606060038054610ec190612c35565b80601f0160208091040260200160405190810160405280929190818152602001828054610eed90612c35565b8015610f3a5780601f10610f0f57610100808354040283529160200191610f3a565b820191906000526020600020905b815481529060010190602001808311610f1d57829003601f168201915b5050505050905090565b600c5481565b6000600c54905060006001600f54610f629190612db2565b83610f6b610998565b610f759190612db2565b108015610fce5750600e5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fcb9190612db2565b11155b90508015610fdb57600091505b8183610fe79190612e08565b341015611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090612eae565b60405180910390fd5b60016010546110389190612db2565b83611041610998565b61104b9190612db2565b1061108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290612f1a565b60405180910390fd5b600b60009054906101000a900460ff166110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190612f86565b60405180910390fd5b6001600d546110e99190612db2565b831061112a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112190612ff2565b60405180910390fd5b80156111875782601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461117f9190612db2565b925050819055505b6111913384611ca5565b505050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611291576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161120e929190612c66565b602060405180830381865afa15801561122b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124f9190612ca4565b61129057806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611287919061270d565b60405180910390fd5b5b61129b8383611cc3565b505050565b600e5481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113e5573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113195761131485858585611dce565b6113f2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611362929190612c66565b602060405180830381865afa15801561137f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a39190612ca4565b6113e457336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113db919061270d565b60405180910390fd5b5b6113f185858585611dce565b5b5050505050565b6060611404826115ab565b611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90613084565b60405180910390fd5b600a61144e83611e41565b60405160200161145f929190613197565b6040516020818303038152906040529050919050565b600b60009054906101000a900460ff1681565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61152a611a75565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613238565b60405180910390fd5b6115a281611bdf565b50565b600d5481565b6000816115b661174e565b111580156115c5575060005482105b8015611603575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061161582610d40565b90508073ffffffffffffffffffffffffffffffffffffffff16611636611fa1565b73ffffffffffffffffffffffffffffffffffffffff1614611699576116628161165d611fa1565b61148e565b611698576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061175e82611b13565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117c5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117d184611fa9565b915091506117e781876117e2611fa1565b611fd0565b611833576117fc866117f7611fa1565b61148e565b611832576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611899576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118a68686866001612014565b80156118b157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061197f8561195b88888761201a565b7c020000000000000000000000000000000000000000000000000000000017612042565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a055760006001850190506000600460008381526020019081526020016000205403611a03576000548114611a02578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a6d868686600161206d565b505050505050565b611a7d612073565b73ffffffffffffffffffffffffffffffffffffffff16611a9b610e64565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae8906132a4565b60405180910390fd5b565b611b0e838383604051806020016040528060008152506112a6565b505050565b60008082905080611b2261174e565b11611ba857600054811015611ba75760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ba5575b60008103611b9b576004600083600190039350838152602001908152602001600020549050611b71565b8092505050611bda565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cbf82826040518060200160405280600081525061207b565b5050565b8060076000611cd0611fa1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d7d611fa1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dc29190612593565b60405180910390a35050565b611dd98484846109af565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e3b57611e0484848484612118565b611e3a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060008203611e88576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f9c565b600082905060005b60008214611eba578080611ea3906132c4565b915050600a82611eb3919061333b565b9150611e90565b60008167ffffffffffffffff811115611ed657611ed5612895565b5b6040519080825280601f01601f191660200182016040528015611f085781602001600182028036833780820191505090505b5090505b60008514611f9557600182611f21919061336c565b9150600a85611f3091906133a0565b6030611f3c9190612db2565b60f81b818381518110611f5257611f516133d1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f8e919061333b565b9450611f0c565b8093505050505b919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612031868684612268565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6120858383612271565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461211357600080549050600083820390505b6120c56000868380600101945086612118565b6120fb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120b257816000541461211057600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261213e611fa1565b8786866040518563ffffffff1660e01b81526004016121609493929190613455565b6020604051808303816000875af192505050801561219c57506040513d601f19601f8201168201806040525081019061219991906134b6565b60015b612215573d80600081146121cc576040519150601f19603f3d011682016040523d82523d6000602084013e6121d1565b606091505b50600081510361220d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036122b1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122be6000848385612014565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061233583612326600086600061201a565b61232f8561242c565b17612042565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123d657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061239b565b5060008203612411576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612427600084838561206d565b505050565b60006001821460e11b9050919050565b82805461244890612c35565b90600052602060002090601f01602090048101928261246a57600085556124b1565b82601f1061248357805160ff19168380011785556124b1565b828001600101855582156124b1579182015b828111156124b0578251825591602001919060010190612495565b5b5090506124be91906124c2565b5090565b5b808211156124db5760008160009055506001016124c3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612528816124f3565b811461253357600080fd5b50565b6000813590506125458161251f565b92915050565b600060208284031215612561576125606124e9565b5b600061256f84828501612536565b91505092915050565b60008115159050919050565b61258d81612578565b82525050565b60006020820190506125a86000830184612584565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125e85780820151818401526020810190506125cd565b838111156125f7576000848401525b50505050565b6000601f19601f8301169050919050565b6000612619826125ae565b61262381856125b9565b93506126338185602086016125ca565b61263c816125fd565b840191505092915050565b60006020820190508181036000830152612661818461260e565b905092915050565b6000819050919050565b61267c81612669565b811461268757600080fd5b50565b60008135905061269981612673565b92915050565b6000602082840312156126b5576126b46124e9565b5b60006126c38482850161268a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126f7826126cc565b9050919050565b612707816126ec565b82525050565b600060208201905061272260008301846126fe565b92915050565b612731816126ec565b811461273c57600080fd5b50565b60008135905061274e81612728565b92915050565b6000806040838503121561276b5761276a6124e9565b5b60006127798582860161273f565b925050602061278a8582860161268a565b9150509250929050565b61279d81612669565b82525050565b60006020820190506127b86000830184612794565b92915050565b6000806000606084860312156127d7576127d66124e9565b5b60006127e58682870161273f565b93505060206127f68682870161273f565b92505060406128078682870161268a565b9150509250925092565b6000819050919050565b600061283661283161282c846126cc565b612811565b6126cc565b9050919050565b60006128488261281b565b9050919050565b600061285a8261283d565b9050919050565b61286a8161284f565b82525050565b60006020820190506128856000830184612861565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128cd826125fd565b810181811067ffffffffffffffff821117156128ec576128eb612895565b5b80604052505050565b60006128ff6124df565b905061290b82826128c4565b919050565b600067ffffffffffffffff82111561292b5761292a612895565b5b612934826125fd565b9050602081019050919050565b82818337600083830152505050565b600061296361295e84612910565b6128f5565b90508281526020810184848401111561297f5761297e612890565b5b61298a848285612941565b509392505050565b600082601f8301126129a7576129a661288b565b5b81356129b7848260208601612950565b91505092915050565b6000602082840312156129d6576129d56124e9565b5b600082013567ffffffffffffffff8111156129f4576129f36124ee565b5b612a0084828501612992565b91505092915050565b600060208284031215612a1f57612a1e6124e9565b5b6000612a2d8482850161273f565b91505092915050565b612a3f81612578565b8114612a4a57600080fd5b50565b600081359050612a5c81612a36565b92915050565b60008060408385031215612a7957612a786124e9565b5b6000612a878582860161273f565b9250506020612a9885828601612a4d565b9150509250929050565b600067ffffffffffffffff821115612abd57612abc612895565b5b612ac6826125fd565b9050602081019050919050565b6000612ae6612ae184612aa2565b6128f5565b905082815260208101848484011115612b0257612b01612890565b5b612b0d848285612941565b509392505050565b600082601f830112612b2a57612b2961288b565b5b8135612b3a848260208601612ad3565b91505092915050565b60008060008060808587031215612b5d57612b5c6124e9565b5b6000612b6b8782880161273f565b9450506020612b7c8782880161273f565b9350506040612b8d8782880161268a565b925050606085013567ffffffffffffffff811115612bae57612bad6124ee565b5b612bba87828801612b15565b91505092959194509250565b60008060408385031215612bdd57612bdc6124e9565b5b6000612beb8582860161273f565b9250506020612bfc8582860161273f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c4d57607f821691505b602082108103612c6057612c5f612c06565b5b50919050565b6000604082019050612c7b60008301856126fe565b612c8860208301846126fe565b9392505050565b600081519050612c9e81612a36565b92915050565b600060208284031215612cba57612cb96124e9565b5b6000612cc884828501612c8f565b91505092915050565b600081905092915050565b50565b6000612cec600083612cd1565b9150612cf782612cdc565b600082019050919050565b6000612d0d82612cdf565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612d4d6010836125b9565b9150612d5882612d17565b602082019050919050565b60006020820190508181036000830152612d7c81612d40565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dbd82612669565b9150612dc883612669565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dfd57612dfc612d83565b5b828201905092915050565b6000612e1382612669565b9150612e1e83612669565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e5757612e56612d83565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612e98601d836125b9565b9150612ea382612e62565b602082019050919050565b60006020820190508181036000830152612ec781612e8b565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000612f046007836125b9565b9150612f0f82612ece565b602082019050919050565b60006020820190508181036000830152612f3381612ef7565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b6000612f706017836125b9565b9150612f7b82612f3a565b602082019050919050565b60006020820190508181036000830152612f9f81612f63565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612fdc6013836125b9565b9150612fe782612fa6565b602082019050919050565b6000602082019050818103600083015261300b81612fcf565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061306e602f836125b9565b915061307982613012565b604082019050919050565b6000602082019050818103600083015261309d81613061565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546130d181612c35565b6130db81866130a4565b945060018216600081146130f657600181146131075761313a565b60ff1983168652818601935061313a565b613110856130af565b60005b8381101561313257815481890152600182019150602081019050613113565b838801955050505b50505092915050565b600061314e826125ae565b61315881856130a4565b93506131688185602086016125ca565b80840191505092915050565b60006131816000836130a4565b915061318c82612cdc565b600082019050919050565b60006131a382856130c4565b91506131af8284613143565b91506131ba82613174565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132226026836125b9565b915061322d826131c6565b604082019050919050565b6000602082019050818103600083015261325181613215565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061328e6020836125b9565b915061329982613258565b602082019050919050565b600060208201905081810360008301526132bd81613281565b9050919050565b60006132cf82612669565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361330157613300612d83565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061334682612669565b915061335183612669565b9250826133615761336061330c565b5b828204905092915050565b600061337782612669565b915061338283612669565b92508282101561339557613394612d83565b5b828203905092915050565b60006133ab82612669565b91506133b683612669565b9250826133c6576133c561330c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061342782613400565b613431818561340b565b93506134418185602086016125ca565b61344a816125fd565b840191505092915050565b600060808201905061346a60008301876126fe565b61347760208301866126fe565b6134846040830185612794565b8181036060830152613496818461341c565b905095945050505050565b6000815190506134b08161251f565b92915050565b6000602082840312156134cc576134cb6124e9565b5b60006134da848285016134a1565b9150509291505056fea2646970667358221220d528f4c79411dfa2b56f2062960f19e3cf5c8a02fa337345ed20925cfcf049e864736f6c634300080d0033
Deployed Bytecode Sourcemap
66306:3539:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18784:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19686:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26177:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69058:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15437:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69231:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66616:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68617:206;;;;;;;;;;;;;:::i;:::-;;63615:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69410:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68110:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21079:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68206:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16621:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59963:103;;;;;;;;;;;;;:::i;:::-;;68525:84;;;;;;;;;;;;;:::i;:::-;;59315:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68425:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68322:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19862:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66496:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66948:685;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68874:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66574:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69597:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67757:345;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66456:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66655:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27126:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60221:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66539:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18784:639;18869:4;19208:10;19193:25;;:11;:25;;;;:102;;;;19285:10;19270:25;;:11;:25;;;;19193:102;:179;;;;19362:10;19347:25;;:11;:25;;;;19193:179;19173:199;;18784:639;;;:::o;19686:100::-;19740:13;19773:5;19766:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19686:100;:::o;26177:218::-;26253:7;26278:16;26286:7;26278;:16::i;:::-;26273:64;;26303:34;;;;;;;;;;;;;;26273:64;26357:15;:24;26373:7;26357:24;;;;;;;;;;;:30;;;;;;;;;;;;26350:37;;26177:218;;;:::o;69058:165::-;69162:8;65657:1;63715:42;65609:45;;;:49;65605:225;;;63715:42;65680;;;65731:4;65738:8;65680:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65675:144;;65794:8;65775:28;;;;;;;;;;;:::i;:::-;;;;;;;;65675:144;65605:225;69183:32:::1;69197:8;69207:7;69183:13;:32::i;:::-;69058:165:::0;;;:::o;15437:323::-;15498:7;15726:15;:13;:15::i;:::-;15711:12;;15695:13;;:28;:46;15688:53;;15437:323;:::o;69231:171::-;69340:4;64911:1;63715:42;64863:45;;;:49;64859:539;;;65152:10;65144:18;;:4;:18;;;65140:85;;69357:37:::1;69376:4;69382:2;69386:7;69357:18;:37::i;:::-;65203:7:::0;;65140:85;63715:42;65244;;;65295:4;65302:10;65244:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65239:148;;65360:10;65341:30;;;;;;;;;;;:::i;:::-;;;;;;;;65239:148;64859:539;69357:37:::1;69376:4;69382:2;69386:7;69357:18;:37::i;:::-;69231:171:::0;;;;;:::o;66616:32::-;;;;:::o;68617:206::-;59201:13;:11;:13::i;:::-;68668:12:::1;68694:10;68686:24;;68732:21;68686:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68667:101;;;68787:7;68779:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;68656:167;68617:206::o:0;63615:143::-;63715:42;63615:143;:::o;69410:179::-;69523:4;64911:1;63715:42;64863:45;;;:49;64859:539;;;65152:10;65144:18;;:4;:18;;;65140:85;;69540:41:::1;69563:4;69569:2;69573:7;69540:22;:41::i;:::-;65203:7:::0;;65140:85;63715:42;65244;;;65295:4;65302:10;65244:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65239:148;;65360:10;65341:30;;;;;;;;;;;:::i;:::-;;;;;;;;65239:148;64859:539;69540:41:::1;69563:4;69569:2;69573:7;69540:22;:41::i;:::-;69410:179:::0;;;;;:::o;68110:88::-;59201:13;:11;:13::i;:::-;68187:3:::1;68177:7;:13;;;;;;;;;;;;:::i;:::-;;68110:88:::0;:::o;21079:152::-;21151:7;21194:27;21213:7;21194:18;:27::i;:::-;21171:52;;21079:152;;;:::o;68206:108::-;59201:13;:11;:13::i;:::-;68300:6:::1;68281:16;:25;;;;68206:108:::0;:::o;16621:233::-;16693:7;16734:1;16717:19;;:5;:19;;;16713:60;;16745:28;;;;;;;;;;;;;;16713:60;10780:13;16791:18;:25;16810:5;16791:25;;;;;;;;;;;;;;;;:55;16784:62;;16621:233;;;:::o;59963:103::-;59201:13;:11;:13::i;:::-;60028:30:::1;60055:1;60028:18;:30::i;:::-;59963:103::o:0;68525:84::-;59201:13;:11;:13::i;:::-;68590:11:::1;;;;;;;;;;;68589:12;68575:11;;:26;;;;;;;;;;;;;;;;;;68525:84::o:0;59315:87::-;59361:7;59388:6;;;;;;;;;;;59381:13;;59315:87;:::o;68425:92::-;59201:13;:11;:13::i;:::-;68500:9:::1;68492:5;:17;;;;68425:92:::0;:::o;68322:95::-;59201:13;:11;:13::i;:::-;68403:6:::1;68391:9;:18;;;;68322:95:::0;:::o;19862:104::-;19918:13;19951:7;19944:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19862:104;:::o;66496:34::-;;;;:::o;66948:685::-;67005:12;67020:5;;67005:20;;67036:11;67088:1;67076:9;;:13;;;;:::i;:::-;67068:5;67052:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;67051:115;;;;;67149:16;;67140:5;67108:17;:29;67126:10;67108:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;67051:115;67036:131;;67184:6;67180:47;;;67214:1;67207:8;;67180:47;67268:4;67260:5;:12;;;;:::i;:::-;67247:9;:25;;67239:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;67361:1;67349:9;;:13;;;;:::i;:::-;67341:5;67325:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;67317:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;67393:11;;;;;;;;;;;67385:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;67470:1;67459:8;;:12;;;;:::i;:::-;67451:5;:20;67443:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;67512:6;67508:77;;;67568:5;67535:17;:29;67553:10;67535:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;67508:77;67597:28;67607:10;67619:5;67597:9;:28::i;:::-;66994:639;;66948:685;:::o;68874:176::-;68978:8;65657:1;63715:42;65609:45;;;:49;65605:225;;;63715:42;65680;;;65731:4;65738:8;65680:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65675:144;;65794:8;65775:28;;;;;;;;;;;:::i;:::-;;;;;;;;65675:144;65605:225;68999:43:::1;69023:8;69033;68999:23;:43::i;:::-;68874:176:::0;;;:::o;66574:35::-;;;;:::o;69597:245::-;69765:4;64911:1;63715:42;64863:45;;;:49;64859:539;;;65152:10;65144:18;;:4;:18;;;65140:85;;69787:47:::1;69810:4;69816:2;69820:7;69829:4;69787:22;:47::i;:::-;65203:7:::0;;65140:85;63715:42;65244;;;65295:4;65302:10;65244:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65239:148;;65360:10;65341:30;;;;;;;;;;;:::i;:::-;;;;;;;;65239:148;64859:539;69787:47:::1;69810:4;69816:2;69820:7;69829:4;69787:22;:47::i;:::-;69597:245:::0;;;;;;:::o;67757:345::-;67875:13;67928:16;67936:7;67928;:16::i;:::-;67906:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;68061:7;68070:18;:7;:16;:18::i;:::-;68044:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68030:64;;67757:345;;;:::o;66456:31::-;;;;;;;;;;;;;:::o;66655:32::-;;;;:::o;27126:164::-;27223:4;27247:18;:25;27266:5;27247:25;;;;;;;;;;;;;;;:35;27273:8;27247:35;;;;;;;;;;;;;;;;;;;;;;;;;27240:42;;27126:164;;;;:::o;60221:201::-;59201:13;:11;:13::i;:::-;60330:1:::1;60310:22;;:8;:22;;::::0;60302:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;60386:28;60405:8;60386:18;:28::i;:::-;60221:201:::0;:::o;66539:28::-;;;;:::o;27548:282::-;27613:4;27669:7;27650:15;:13;:15::i;:::-;:26;;:66;;;;;27703:13;;27693:7;:23;27650:66;:153;;;;;27802:1;11556:8;27754:17;:26;27772:7;27754:26;;;;;;;;;;;;:44;:49;27650:153;27630:173;;27548:282;;;:::o;25610:408::-;25699:13;25715:16;25723:7;25715;:16::i;:::-;25699:32;;25771:5;25748:28;;:19;:17;:19::i;:::-;:28;;;25744:175;;25796:44;25813:5;25820:19;:17;:19::i;:::-;25796:16;:44::i;:::-;25791:128;;25868:35;;;;;;;;;;;;;;25791:128;25744:175;25964:2;25931:15;:24;25947:7;25931:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26002:7;25998:2;25982:28;;25991:5;25982:28;;;;;;;;;;;;25688:330;25610:408;;:::o;14953:92::-;15009:7;14953:92;:::o;29816:2825::-;29958:27;29988;30007:7;29988:18;:27::i;:::-;29958:57;;30073:4;30032:45;;30048:19;30032:45;;;30028:86;;30086:28;;;;;;;;;;;;;;30028:86;30128:27;30157:23;30184:35;30211:7;30184:26;:35::i;:::-;30127:92;;;;30319:68;30344:15;30361:4;30367:19;:17;:19::i;:::-;30319:24;:68::i;:::-;30314:180;;30407:43;30424:4;30430:19;:17;:19::i;:::-;30407:16;:43::i;:::-;30402:92;;30459:35;;;;;;;;;;;;;;30402:92;30314:180;30525:1;30511:16;;:2;:16;;;30507:52;;30536:23;;;;;;;;;;;;;;30507:52;30572:43;30594:4;30600:2;30604:7;30613:1;30572:21;:43::i;:::-;30708:15;30705:160;;;30848:1;30827:19;30820:30;30705:160;31245:18;:24;31264:4;31245:24;;;;;;;;;;;;;;;;31243:26;;;;;;;;;;;;31314:18;:22;31333:2;31314:22;;;;;;;;;;;;;;;;31312:24;;;;;;;;;;;31636:146;31673:2;31722:45;31737:4;31743:2;31747:19;31722:14;:45::i;:::-;11836:8;31694:73;31636:18;:146::i;:::-;31607:17;:26;31625:7;31607:26;;;;;;;;;;;:175;;;;31953:1;11836:8;31902:19;:47;:52;31898:627;;31975:19;32007:1;31997:7;:11;31975:33;;32164:1;32130:17;:30;32148:11;32130:30;;;;;;;;;;;;:35;32126:384;;32268:13;;32253:11;:28;32249:242;;32448:19;32415:17;:30;32433:11;32415:30;;;;;;;;;;;:52;;;;32249:242;32126:384;31956:569;31898:627;32572:7;32568:2;32553:27;;32562:4;32553:27;;;;;;;;;;;;32591:42;32612:4;32618:2;32622:7;32631:1;32591:20;:42::i;:::-;29947:2694;;;29816:2825;;;:::o;59480:132::-;59555:12;:10;:12::i;:::-;59544:23;;:7;:5;:7::i;:::-;:23;;;59536:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59480:132::o;32737:193::-;32883:39;32900:4;32906:2;32910:7;32883:39;;;;;;;;;;;;:16;:39::i;:::-;32737:193;;;:::o;22234:1275::-;22301:7;22321:12;22336:7;22321:22;;22404:4;22385:15;:13;:15::i;:::-;:23;22381:1061;;22438:13;;22431:4;:20;22427:1015;;;22476:14;22493:17;:23;22511:4;22493:23;;;;;;;;;;;;22476:40;;22610:1;11556:8;22582:6;:24;:29;22578:845;;23247:113;23264:1;23254:6;:11;23247:113;;23307:17;:25;23325:6;;;;;;;23307:25;;;;;;;;;;;;23298:34;;23247:113;;;23393:6;23386:13;;;;;;22578:845;22453:989;22427:1015;22381:1061;23470:31;;;;;;;;;;;;;;22234:1275;;;;:::o;60582:191::-;60656:16;60675:6;;;;;;;;;;;60656:25;;60701:8;60692:6;;:17;;;;;;;;;;;;;;;;;;60756:8;60725:40;;60746:8;60725:40;;;;;;;;;;;;60645:128;60582:191;:::o;43688:112::-;43765:27;43775:2;43779:8;43765:27;;;;;;;;;;;;:9;:27::i;:::-;43688:112;;:::o;26735:234::-;26882:8;26830:18;:39;26849:19;:17;:19::i;:::-;26830:39;;;;;;;;;;;;;;;:49;26870:8;26830:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26942:8;26906:55;;26921:19;:17;:19::i;:::-;26906:55;;;26952:8;26906:55;;;;;;:::i;:::-;;;;;;;;26735:234;;:::o;33528:407::-;33703:31;33716:4;33722:2;33726:7;33703:12;:31::i;:::-;33767:1;33749:2;:14;;;:19;33745:183;;33788:56;33819:4;33825:2;33829:7;33838:5;33788:30;:56::i;:::-;33783:145;;33872:40;;;;;;;;;;;;;;33783:145;33745:183;33528:407;;;;:::o;55120:723::-;55176:13;55406:1;55397:5;:10;55393:53;;55424:10;;;;;;;;;;;;;;;;;;;;;55393:53;55456:12;55471:5;55456:20;;55487:14;55512:78;55527:1;55519:4;:9;55512:78;;55545:8;;;;;:::i;:::-;;;;55576:2;55568:10;;;;;:::i;:::-;;;55512:78;;;55600:19;55632:6;55622:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55600:39;;55650:154;55666:1;55657:5;:10;55650:154;;55694:1;55684:11;;;;;:::i;:::-;;;55761:2;55753:5;:10;;;;:::i;:::-;55740:2;:24;;;;:::i;:::-;55727:39;;55710:6;55717;55710:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;55790:2;55781:11;;;;;:::i;:::-;;;55650:154;;;55828:6;55814:21;;;;;55120:723;;;;:::o;49856:105::-;49916:7;49943:10;49936:17;;49856:105;:::o;28711:485::-;28813:27;28842:23;28883:38;28924:15;:24;28940:7;28924:24;;;;;;;;;;;28883:65;;29101:18;29078:41;;29158:19;29152:26;29133:45;;29063:126;28711:485;;;:::o;27939:659::-;28088:11;28253:16;28246:5;28242:28;28233:37;;28413:16;28402:9;28398:32;28385:45;;28563:15;28552:9;28549:30;28541:5;28530:9;28527:20;28524:56;28514:66;;27939:659;;;;;:::o;34597:159::-;;;;;:::o;49165:311::-;49300:7;49320:16;11960:3;49346:19;:41;;49320:68;;11960:3;49414:31;49425:4;49431:2;49435:9;49414:10;:31::i;:::-;49406:40;;:62;;49399:69;;;49165:311;;;;;:::o;24057:450::-;24137:14;24305:16;24298:5;24294:28;24285:37;;24482:5;24468:11;24443:23;24439:41;24436:52;24429:5;24426:63;24416:73;;24057:450;;;;:::o;35421:158::-;;;;;:::o;57866:98::-;57919:7;57946:10;57939:17;;57866:98;:::o;42915:689::-;43046:19;43052:2;43056:8;43046:5;:19::i;:::-;43125:1;43107:2;:14;;;:19;43103:483;;43147:11;43161:13;;43147:27;;43193:13;43215:8;43209:3;:14;43193:30;;43242:233;43273:62;43312:1;43316:2;43320:7;;;;;;43329:5;43273:30;:62::i;:::-;43268:167;;43371:40;;;;;;;;;;;;;;43268:167;43470:3;43462:5;:11;43242:233;;43557:3;43540:13;;:20;43536:34;;43562:8;;;43536:34;43128:458;;43103:483;42915:689;;;:::o;36019:716::-;36182:4;36228:2;36203:45;;;36249:19;:17;:19::i;:::-;36270:4;36276:7;36285:5;36203:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36199:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36503:1;36486:6;:13;:18;36482:235;;36532:40;;;;;;;;;;;;;;36482:235;36675:6;36669:13;36660:6;36656:2;36652:15;36645:38;36199:529;36372:54;;;36362:64;;;:6;:64;;;;36355:71;;;36019:716;;;;;;:::o;48866:147::-;49003:6;48866:147;;;;;:::o;37197:2966::-;37270:20;37293:13;;37270:36;;37333:1;37321:8;:13;37317:44;;37343:18;;;;;;;;;;;;;;37317:44;37374:61;37404:1;37408:2;37412:12;37426:8;37374:21;:61::i;:::-;37918:1;10918:2;37888:1;:26;;37887:32;37875:8;:45;37849:18;:22;37868:2;37849:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38197:139;38234:2;38288:33;38311:1;38315:2;38319:1;38288:14;:33::i;:::-;38255:30;38276:8;38255:20;:30::i;:::-;:66;38197:18;:139::i;:::-;38163:17;:31;38181:12;38163:31;;;;;;;;;;;:173;;;;38353:16;38384:11;38413:8;38398:12;:23;38384:37;;38934:16;38930:2;38926:25;38914:37;;39306:12;39266:8;39225:1;39163:25;39104:1;39043;39016:335;39677:1;39663:12;39659:20;39617:346;39718:3;39709:7;39706:16;39617:346;;39936:7;39926:8;39923:1;39896:25;39893:1;39890;39885:59;39771:1;39762:7;39758:15;39747:26;;39617:346;;;39621:77;40008:1;39996:8;:13;39992:45;;40018:19;;;;;;;;;;;;;;39992:45;40070:3;40054:13;:19;;;;37623:2462;;40095:60;40124:1;40128:2;40132:12;40146:8;40095:20;:60::i;:::-;37259:2904;37197:2966;;:::o;24609:324::-;24679:14;24912:1;24902:8;24899:15;24873:24;24869:46;24859:56;;24609: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://d528f4c79411dfa2b56f2062960f19e3cf5c8a02fa337345ed20925cfcf049e8
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.