Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,019 VDZ
Holders
91
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 VDZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
VoodooZ
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: Unlicensed import './ReentrancyGuard.sol'; import './Ownable.sol'; import './Arrays.sol'; import './Strings.sol'; import './ERC721AQueryable.sol'; import './ERC721A.sol'; pragma solidity >=0.8.13 <0.9.0; contract VoodooZ is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public uri; string public uriSuffix = ".json"; uint256 public supplyLimit = 6666; uint256 public maxLimitPerWallet = 10; string public hiddenMetadata; bool public revealed = false; bool public saleIsActive = false; constructor( ) ERC721A("VoodooZ", "VDZ") { } function Mint(uint256 _mintAmount) public payable { require(saleIsActive,'Mint is not live!'); uint256 supply = totalSupply(); require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!'); require(supply + _mintAmount <= supplyLimit, 'Max supply exceeded!'); _safeMint(_msgSender(), _mintAmount); } function TeamMint(uint256 _mintAmount) public onlyOwner { uint256 supply = totalSupply(); require(supply + _mintAmount <= supplyLimit, 'Max supply exceeded!'); _safeMint(_msgSender(), _mintAmount); } function setUri(string memory _uri) public onlyOwner { uri = _uri; } function tokensOfOwner(address owner) external view returns (uint256[] memory) { unchecked { uint256[] memory a = new uint256[](balanceOf(owner)); uint256 end = _nextTokenId(); uint256 tokenIdsIdx; address currOwnershipAddr; for (uint256 i; i < end; i++) { TokenOwnership memory ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { a[tokenIdsIdx++] = i; } } return a; } } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); if (revealed == false) { return hiddenMetadata; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ''; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setSaleActive(bool _state) public onlyOwner { saleIsActive = _state; } function setHiddenMetadata(string memory _hiddenmetadata) public onlyOwner { hiddenMetadata = _hiddenmetadata; } function _baseURI() internal view virtual override returns (string memory) { return uri; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Arrays.sol) pragma solidity ^0.8.0; import "./Math.sol"; /** * @dev Collection of functions related to array types. */ library Arrays { /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { if (array.length == 0) { return 0; } uint256 low = 0; uint256 high = array.length; while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds down (it does integer division with truncation). if (array[mid] > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && array[low - 1] == element) { return low - 1; } else { return low; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 { 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; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @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 See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ 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 ''; } /** * @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)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev 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 (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, 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 { _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 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); 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 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _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 { 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 Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool 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)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { 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 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; } /** * @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 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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721AQueryable.sol'; import './ERC721A.sol'; /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * - `extraData` = `0` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * - `extraData` = `<Extra data when token was burned>` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` * - `extraData` = `<Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of 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 through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // 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`. * * 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 calldata data ) external; /** * @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 ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of an ERC721AQueryable compliant contract. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a / b + (a % b == 0 ? 0 : 1); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"TeamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_hiddenmetadata","type":"string"}],"name":"setHiddenMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200004a9190620004c1565b50611a0a600c55600a600d556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055503480156200009957600080fd5b506040518060400160405280600781526020017f566f6f646f6f5a000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f56445a00000000000000000000000000000000000000000000000000000000008152508160029081620001179190620004c1565b508060039081620001299190620004c1565b506200013a6200017060201b60201c565b600081905550505062000162620001566200017960201b60201c565b6200018160201b60201c565b6001600981905550620005a8565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002c957607f821691505b602082108103620002df57620002de62000281565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003497fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200030a565b6200035586836200030a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003a26200039c62000396846200036d565b62000377565b6200036d565b9050919050565b6000819050919050565b620003be8362000381565b620003d6620003cd82620003a9565b84845462000317565b825550505050565b600090565b620003ed620003de565b620003fa818484620003b3565b505050565b5b81811015620004225762000416600082620003e3565b60018101905062000400565b5050565b601f82111562000471576200043b81620002e5565b6200044684620002fa565b8101602085101562000456578190505b6200046e6200046585620002fa565b830182620003ff565b50505b505050565b600082821c905092915050565b6000620004966000198460080262000476565b1980831691505092915050565b6000620004b1838362000483565b9150826002028217905092915050565b620004cc8262000247565b67ffffffffffffffff811115620004e857620004e762000252565b5b620004f48254620002b0565b6200050182828562000426565b600060209050601f83116001811462000539576000841562000524578287015190505b620005308582620004a3565b865550620005a0565b601f1984166200054986620002e5565b60005b8281101562000573578489015182556001820191506020850194506020810190506200054c565b868310156200059357848901516200058f601f89168262000483565b8355505b6001600288020188555050505b505050505050565b6136dc80620005b86000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c51461069b578063eac989f8146106d8578063eb8d244414610703578063f2fde38b1461072e576101d8565b8063b88d4fde146105e3578063c87b56dd1461060c578063d75b467214610649578063e0a8085314610672576101d8565b80638da5cb5b116100d15780638da5cb5b1461053b57806395d89b41146105665780639b642de114610591578063a22cb465146105ba576101d8565b8063715018a6146104955780637e0c7fc5146104ac578063841718a6146104d55780638462151c146104fe576101d8565b806319d1997a1161017a5780635503a0e8116101495780635503a0e8146103c55780635a0b8b23146103f05780636352211e1461041b57806370a0823114610458576101d8565b806319d1997a1461031d57806323b872dd1461034857806342842e0e14610371578063518302271461039a576101d8565b8063081812fc116101b6578063081812fc14610261578063095ea7b31461029e5780630a09d0a9146102c757806318160ddd146102f2576101d8565b806301ffc9a7146101dd57806306fdde031461021a5780630788370314610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061263d565b610757565b6040516102119190612685565b60405180910390f35b34801561022657600080fd5b5061022f6107e9565b60405161023c9190612730565b60405180910390f35b61025f600480360381019061025a9190612788565b61087b565b005b34801561026d57600080fd5b5061028860048036038101906102839190612788565b610993565b60405161029591906127f6565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c0919061283d565b610a0f565b005b3480156102d357600080fd5b506102dc610b50565b6040516102e99190612730565b60405180910390f35b3480156102fe57600080fd5b50610307610bde565b604051610314919061288c565b60405180910390f35b34801561032957600080fd5b50610332610bf5565b60405161033f919061288c565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a91906128a7565b610bfb565b005b34801561037d57600080fd5b50610398600480360381019061039391906128a7565b610f1d565b005b3480156103a657600080fd5b506103af610f3d565b6040516103bc9190612685565b60405180910390f35b3480156103d157600080fd5b506103da610f50565b6040516103e79190612730565b60405180910390f35b3480156103fc57600080fd5b50610405610fde565b604051610412919061288c565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612788565b610fe4565b60405161044f91906127f6565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a91906128fa565b610ff6565b60405161048c919061288c565b60405180910390f35b3480156104a157600080fd5b506104aa6110ae565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190612788565b611136565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612953565b611223565b005b34801561050a57600080fd5b50610525600480360381019061052091906128fa565b6112bc565b6040516105329190612a3e565b60405180910390f35b34801561054757600080fd5b50610550611400565b60405161055d91906127f6565b60405180910390f35b34801561057257600080fd5b5061057b61142a565b6040516105889190612730565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190612b95565b6114bc565b005b3480156105c657600080fd5b506105e160048036038101906105dc9190612bde565b61154b565b005b3480156105ef57600080fd5b5061060a60048036038101906106059190612cbf565b6116c2565b005b34801561061857600080fd5b50610633600480360381019061062e9190612788565b611735565b6040516106409190612730565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190612b95565b61188d565b005b34801561067e57600080fd5b5061069960048036038101906106949190612953565b61191c565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190612d42565b6119b5565b6040516106cf9190612685565b60405180910390f35b3480156106e457600080fd5b506106ed611a49565b6040516106fa9190612730565b60405180910390f35b34801561070f57600080fd5b50610718611ad7565b6040516107259190612685565b60405180910390f35b34801561073a57600080fd5b50610755600480360381019061075091906128fa565b611aea565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107f890612db1565b80601f016020809104026020016040519081016040528092919081815260200182805461082490612db1565b80156108715780601f1061084657610100808354040283529160200191610871565b820191906000526020600020905b81548152906001019060200180831161085457829003601f168201915b5050505050905090565b600f60019054906101000a900460ff166108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c190612e2e565b60405180910390fd5b60006108d4610bde565b9050600d54826108e333610ff6565b6108ed9190612e7d565b111561092e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092590612efd565b60405180910390fd5b600c54828261093d9190612e7d565b111561097e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097590612f69565b60405180910390fd5b61098f610989611be1565b83611be9565b5050565b600061099e82611c07565b6109d4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1a82610fe4565b90508073ffffffffffffffffffffffffffffffffffffffff16610a3b611c66565b73ffffffffffffffffffffffffffffffffffffffff1614610a9e57610a6781610a62611c66565b6119b5565b610a9d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e8054610b5d90612db1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8990612db1565b8015610bd65780601f10610bab57610100808354040283529160200191610bd6565b820191906000526020600020905b815481529060010190602001808311610bb957829003601f168201915b505050505081565b6000610be8611c6e565b6001546000540303905090565b600c5481565b6000610c0682611c77565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c6d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c7984611d43565b91509150610c8f8187610c8a611c66565b611d65565b610cdb57610ca486610c9f611c66565b6119b5565b610cda576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d41576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d4e8686866001611da9565b8015610d5957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e2785610e03888887611daf565b7c020000000000000000000000000000000000000000000000000000000017611dd7565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ead5760006001850190506000600460008381526020019081526020016000205403610eab576000548114610eaa578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f158686866001611e02565b505050505050565b610f38838383604051806020016040528060008152506116c2565b505050565b600f60009054906101000a900460ff1681565b600b8054610f5d90612db1565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8990612db1565b8015610fd65780601f10610fab57610100808354040283529160200191610fd6565b820191906000526020600020905b815481529060010190602001808311610fb957829003601f168201915b505050505081565b600d5481565b6000610fef82611c77565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361105d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110b6611be1565b73ffffffffffffffffffffffffffffffffffffffff166110d4611400565b73ffffffffffffffffffffffffffffffffffffffff161461112a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112190612fd5565b60405180910390fd5b6111346000611e08565b565b61113e611be1565b73ffffffffffffffffffffffffffffffffffffffff1661115c611400565b73ffffffffffffffffffffffffffffffffffffffff16146111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a990612fd5565b60405180910390fd5b60006111bc610bde565b9050600c5482826111cd9190612e7d565b111561120e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120590612f69565b60405180910390fd5b61121f611219611be1565b83611be9565b5050565b61122b611be1565b73ffffffffffffffffffffffffffffffffffffffff16611249611400565b73ffffffffffffffffffffffffffffffffffffffff161461129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690612fd5565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b606060006112c983610ff6565b67ffffffffffffffff8111156112e2576112e1612a6a565b5b6040519080825280602002602001820160405280156113105781602001602082028036833780820191505090505b509050600061131d611ece565b905060008060005b838110156113f357600061133882611ed7565b905080604001511561134a57506113e6565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461138a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113e457818685806001019650815181106113d7576113d6612ff5565b5b6020026020010181815250505b505b8080600101915050611325565b5083945050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461143990612db1565b80601f016020809104026020016040519081016040528092919081815260200182805461146590612db1565b80156114b25780601f10611487576101008083540402835291602001916114b2565b820191906000526020600020905b81548152906001019060200180831161149557829003601f168201915b5050505050905090565b6114c4611be1565b73ffffffffffffffffffffffffffffffffffffffff166114e2611400565b73ffffffffffffffffffffffffffffffffffffffff1614611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f90612fd5565b60405180910390fd5b80600a908161154791906131d0565b5050565b611553611c66565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115b7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115c4611c66565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611671611c66565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b69190612685565b60405180910390a35050565b6116cd848484610bfb565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461172f576116f884848484611f02565b61172e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061174082611c07565b61177f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177690613314565b60405180910390fd5b60001515600f60009054906101000a900460ff1615150361182c57600e80546117a790612db1565b80601f01602080910402602001604051908101604052809291908181526020018280546117d390612db1565b80156118205780601f106117f557610100808354040283529160200191611820565b820191906000526020600020905b81548152906001019060200180831161180357829003601f168201915b50505050509050611888565b6000611836612052565b905060008151116118565760405180602001604052806000815250611884565b80611860846120e4565b600b604051602001611874939291906133f3565b6040516020818303038152906040525b9150505b919050565b611895611be1565b73ffffffffffffffffffffffffffffffffffffffff166118b3611400565b73ffffffffffffffffffffffffffffffffffffffff1614611909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190090612fd5565b60405180910390fd5b80600e908161191891906131d0565b5050565b611924611be1565b73ffffffffffffffffffffffffffffffffffffffff16611942611400565b73ffffffffffffffffffffffffffffffffffffffff1614611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f90612fd5565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a8054611a5690612db1565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8290612db1565b8015611acf5780601f10611aa457610100808354040283529160200191611acf565b820191906000526020600020905b815481529060010190602001808311611ab257829003601f168201915b505050505081565b600f60019054906101000a900460ff1681565b611af2611be1565b73ffffffffffffffffffffffffffffffffffffffff16611b10611400565b73ffffffffffffffffffffffffffffffffffffffff1614611b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5d90612fd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90613496565b60405180910390fd5b611bde81611e08565b50565b600033905090565b611c03828260405180602001604052806000815250612244565b5050565b600081611c12611c6e565b11158015611c21575060005482105b8015611c5f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611c86611c6e565b11611d0c57600054811015611d0b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d09575b60008103611cff576004600083600190039350838152602001908152602001600020549050611cd5565b8092505050611d3e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611dc68686846122e1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b611edf612582565b611efb60046000848152602001908152602001600020546122ea565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f28611c66565b8786866040518563ffffffff1660e01b8152600401611f4a949392919061350b565b6020604051808303816000875af1925050508015611f8657506040513d601f19601f82011682018060405250810190611f83919061356c565b60015b611fff573d8060008114611fb6576040519150601f19603f3d011682016040523d82523d6000602084013e611fbb565b606091505b506000815103611ff7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461206190612db1565b80601f016020809104026020016040519081016040528092919081815260200182805461208d90612db1565b80156120da5780601f106120af576101008083540402835291602001916120da565b820191906000526020600020905b8154815290600101906020018083116120bd57829003601f168201915b5050505050905090565b60606000820361212b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061223f565b600082905060005b6000821461215d57808061214690613599565b915050600a826121569190613610565b9150612133565b60008167ffffffffffffffff81111561217957612178612a6a565b5b6040519080825280601f01601f1916602001820160405280156121ab5781602001600182028036833780820191505090505b5090505b60008514612238576001826121c49190613641565b9150600a856121d39190613675565b60306121df9190612e7d565b60f81b8183815181106121f5576121f4612ff5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122319190613610565b94506121af565b8093505050505b919050565b61224e83836123a0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122dc57600080549050600083820390505b61228e6000868380600101945086611f02565b6122c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061227b5781600054146122d957600080fd5b50505b505050565b60009392505050565b6122f2612582565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361240c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612446576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124536000848385611da9565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124ca836124bb6000866000611daf565b6124c485612572565b17611dd7565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106124ee5780600081905550505061256d6000848385611e02565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61261a816125e5565b811461262557600080fd5b50565b60008135905061263781612611565b92915050565b600060208284031215612653576126526125db565b5b600061266184828501612628565b91505092915050565b60008115159050919050565b61267f8161266a565b82525050565b600060208201905061269a6000830184612676565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126da5780820151818401526020810190506126bf565b60008484015250505050565b6000601f19601f8301169050919050565b6000612702826126a0565b61270c81856126ab565b935061271c8185602086016126bc565b612725816126e6565b840191505092915050565b6000602082019050818103600083015261274a81846126f7565b905092915050565b6000819050919050565b61276581612752565b811461277057600080fd5b50565b6000813590506127828161275c565b92915050565b60006020828403121561279e5761279d6125db565b5b60006127ac84828501612773565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127e0826127b5565b9050919050565b6127f0816127d5565b82525050565b600060208201905061280b60008301846127e7565b92915050565b61281a816127d5565b811461282557600080fd5b50565b60008135905061283781612811565b92915050565b60008060408385031215612854576128536125db565b5b600061286285828601612828565b925050602061287385828601612773565b9150509250929050565b61288681612752565b82525050565b60006020820190506128a1600083018461287d565b92915050565b6000806000606084860312156128c0576128bf6125db565b5b60006128ce86828701612828565b93505060206128df86828701612828565b92505060406128f086828701612773565b9150509250925092565b6000602082840312156129105761290f6125db565b5b600061291e84828501612828565b91505092915050565b6129308161266a565b811461293b57600080fd5b50565b60008135905061294d81612927565b92915050565b600060208284031215612969576129686125db565b5b60006129778482850161293e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6129b581612752565b82525050565b60006129c783836129ac565b60208301905092915050565b6000602082019050919050565b60006129eb82612980565b6129f5818561298b565b9350612a008361299c565b8060005b83811015612a31578151612a1888826129bb565b9750612a23836129d3565b925050600181019050612a04565b5085935050505092915050565b60006020820190508181036000830152612a5881846129e0565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612aa2826126e6565b810181811067ffffffffffffffff82111715612ac157612ac0612a6a565b5b80604052505050565b6000612ad46125d1565b9050612ae08282612a99565b919050565b600067ffffffffffffffff821115612b0057612aff612a6a565b5b612b09826126e6565b9050602081019050919050565b82818337600083830152505050565b6000612b38612b3384612ae5565b612aca565b905082815260208101848484011115612b5457612b53612a65565b5b612b5f848285612b16565b509392505050565b600082601f830112612b7c57612b7b612a60565b5b8135612b8c848260208601612b25565b91505092915050565b600060208284031215612bab57612baa6125db565b5b600082013567ffffffffffffffff811115612bc957612bc86125e0565b5b612bd584828501612b67565b91505092915050565b60008060408385031215612bf557612bf46125db565b5b6000612c0385828601612828565b9250506020612c148582860161293e565b9150509250929050565b600067ffffffffffffffff821115612c3957612c38612a6a565b5b612c42826126e6565b9050602081019050919050565b6000612c62612c5d84612c1e565b612aca565b905082815260208101848484011115612c7e57612c7d612a65565b5b612c89848285612b16565b509392505050565b600082601f830112612ca657612ca5612a60565b5b8135612cb6848260208601612c4f565b91505092915050565b60008060008060808587031215612cd957612cd86125db565b5b6000612ce787828801612828565b9450506020612cf887828801612828565b9350506040612d0987828801612773565b925050606085013567ffffffffffffffff811115612d2a57612d296125e0565b5b612d3687828801612c91565b91505092959194509250565b60008060408385031215612d5957612d586125db565b5b6000612d6785828601612828565b9250506020612d7885828601612828565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dc957607f821691505b602082108103612ddc57612ddb612d82565b5b50919050565b7f4d696e74206973206e6f74206c69766521000000000000000000000000000000600082015250565b6000612e186011836126ab565b9150612e2382612de2565b602082019050919050565b60006020820190508181036000830152612e4781612e0b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e8882612752565b9150612e9383612752565b9250828201905080821115612eab57612eaa612e4e565b5b92915050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b6000612ee7601d836126ab565b9150612ef282612eb1565b602082019050919050565b60006020820190508181036000830152612f1681612eda565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612f536014836126ab565b9150612f5e82612f1d565b602082019050919050565b60006020820190508181036000830152612f8281612f46565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fbf6020836126ab565b9150612fca82612f89565b602082019050919050565b60006020820190508181036000830152612fee81612fb2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613049565b6130908683613049565b95508019841693508086168417925050509392505050565b6000819050919050565b60006130cd6130c86130c384612752565b6130a8565b612752565b9050919050565b6000819050919050565b6130e7836130b2565b6130fb6130f3826130d4565b848454613056565b825550505050565b600090565b613110613103565b61311b8184846130de565b505050565b5b8181101561313f57613134600082613108565b600181019050613121565b5050565b601f8211156131845761315581613024565b61315e84613039565b8101602085101561316d578190505b61318161317985613039565b830182613120565b50505b505050565b600082821c905092915050565b60006131a760001984600802613189565b1980831691505092915050565b60006131c08383613196565b9150826002028217905092915050565b6131d9826126a0565b67ffffffffffffffff8111156131f2576131f1612a6a565b5b6131fc8254612db1565b613207828285613143565b600060209050601f83116001811461323a5760008415613228578287015190505b61323285826131b4565b86555061329a565b601f19841661324886613024565b60005b828110156132705784890151825560018201915060208501945060208101905061324b565b8683101561328d5784890151613289601f891682613196565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006132fe602f836126ab565b9150613309826132a2565b604082019050919050565b6000602082019050818103600083015261332d816132f1565b9050919050565b600081905092915050565b600061334a826126a0565b6133548185613334565b93506133648185602086016126bc565b80840191505092915050565b6000815461337d81612db1565b6133878186613334565b945060018216600081146133a257600181146133b7576133ea565b60ff19831686528115158202860193506133ea565b6133c085613024565b60005b838110156133e2578154818901526001820191506020810190506133c3565b838801955050505b50505092915050565b60006133ff828661333f565b915061340b828561333f565b91506134178284613370565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134806026836126ab565b915061348b82613424565b604082019050919050565b600060208201905081810360008301526134af81613473565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134dd826134b6565b6134e781856134c1565b93506134f78185602086016126bc565b613500816126e6565b840191505092915050565b600060808201905061352060008301876127e7565b61352d60208301866127e7565b61353a604083018561287d565b818103606083015261354c81846134d2565b905095945050505050565b60008151905061356681612611565b92915050565b600060208284031215613582576135816125db565b5b600061359084828501613557565b91505092915050565b60006135a482612752565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135d6576135d5612e4e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061361b82612752565b915061362683612752565b925082613636576136356135e1565b5b828204905092915050565b600061364c82612752565b915061365783612752565b925082820390508181111561366f5761366e612e4e565b5b92915050565b600061368082612752565b915061368b83612752565b92508261369b5761369a6135e1565b5b82820690509291505056fea2646970667358221220774a84c283ee2074c313c2590475314843787e6fadbff892aa969ac39d67882964736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101d85760003560e01c8063715018a611610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c51461069b578063eac989f8146106d8578063eb8d244414610703578063f2fde38b1461072e576101d8565b8063b88d4fde146105e3578063c87b56dd1461060c578063d75b467214610649578063e0a8085314610672576101d8565b80638da5cb5b116100d15780638da5cb5b1461053b57806395d89b41146105665780639b642de114610591578063a22cb465146105ba576101d8565b8063715018a6146104955780637e0c7fc5146104ac578063841718a6146104d55780638462151c146104fe576101d8565b806319d1997a1161017a5780635503a0e8116101495780635503a0e8146103c55780635a0b8b23146103f05780636352211e1461041b57806370a0823114610458576101d8565b806319d1997a1461031d57806323b872dd1461034857806342842e0e14610371578063518302271461039a576101d8565b8063081812fc116101b6578063081812fc14610261578063095ea7b31461029e5780630a09d0a9146102c757806318160ddd146102f2576101d8565b806301ffc9a7146101dd57806306fdde031461021a5780630788370314610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061263d565b610757565b6040516102119190612685565b60405180910390f35b34801561022657600080fd5b5061022f6107e9565b60405161023c9190612730565b60405180910390f35b61025f600480360381019061025a9190612788565b61087b565b005b34801561026d57600080fd5b5061028860048036038101906102839190612788565b610993565b60405161029591906127f6565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c0919061283d565b610a0f565b005b3480156102d357600080fd5b506102dc610b50565b6040516102e99190612730565b60405180910390f35b3480156102fe57600080fd5b50610307610bde565b604051610314919061288c565b60405180910390f35b34801561032957600080fd5b50610332610bf5565b60405161033f919061288c565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a91906128a7565b610bfb565b005b34801561037d57600080fd5b50610398600480360381019061039391906128a7565b610f1d565b005b3480156103a657600080fd5b506103af610f3d565b6040516103bc9190612685565b60405180910390f35b3480156103d157600080fd5b506103da610f50565b6040516103e79190612730565b60405180910390f35b3480156103fc57600080fd5b50610405610fde565b604051610412919061288c565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612788565b610fe4565b60405161044f91906127f6565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a91906128fa565b610ff6565b60405161048c919061288c565b60405180910390f35b3480156104a157600080fd5b506104aa6110ae565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190612788565b611136565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612953565b611223565b005b34801561050a57600080fd5b50610525600480360381019061052091906128fa565b6112bc565b6040516105329190612a3e565b60405180910390f35b34801561054757600080fd5b50610550611400565b60405161055d91906127f6565b60405180910390f35b34801561057257600080fd5b5061057b61142a565b6040516105889190612730565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190612b95565b6114bc565b005b3480156105c657600080fd5b506105e160048036038101906105dc9190612bde565b61154b565b005b3480156105ef57600080fd5b5061060a60048036038101906106059190612cbf565b6116c2565b005b34801561061857600080fd5b50610633600480360381019061062e9190612788565b611735565b6040516106409190612730565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190612b95565b61188d565b005b34801561067e57600080fd5b5061069960048036038101906106949190612953565b61191c565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190612d42565b6119b5565b6040516106cf9190612685565b60405180910390f35b3480156106e457600080fd5b506106ed611a49565b6040516106fa9190612730565b60405180910390f35b34801561070f57600080fd5b50610718611ad7565b6040516107259190612685565b60405180910390f35b34801561073a57600080fd5b50610755600480360381019061075091906128fa565b611aea565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107f890612db1565b80601f016020809104026020016040519081016040528092919081815260200182805461082490612db1565b80156108715780601f1061084657610100808354040283529160200191610871565b820191906000526020600020905b81548152906001019060200180831161085457829003601f168201915b5050505050905090565b600f60019054906101000a900460ff166108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c190612e2e565b60405180910390fd5b60006108d4610bde565b9050600d54826108e333610ff6565b6108ed9190612e7d565b111561092e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092590612efd565b60405180910390fd5b600c54828261093d9190612e7d565b111561097e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097590612f69565b60405180910390fd5b61098f610989611be1565b83611be9565b5050565b600061099e82611c07565b6109d4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1a82610fe4565b90508073ffffffffffffffffffffffffffffffffffffffff16610a3b611c66565b73ffffffffffffffffffffffffffffffffffffffff1614610a9e57610a6781610a62611c66565b6119b5565b610a9d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e8054610b5d90612db1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8990612db1565b8015610bd65780601f10610bab57610100808354040283529160200191610bd6565b820191906000526020600020905b815481529060010190602001808311610bb957829003601f168201915b505050505081565b6000610be8611c6e565b6001546000540303905090565b600c5481565b6000610c0682611c77565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c6d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c7984611d43565b91509150610c8f8187610c8a611c66565b611d65565b610cdb57610ca486610c9f611c66565b6119b5565b610cda576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d41576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d4e8686866001611da9565b8015610d5957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e2785610e03888887611daf565b7c020000000000000000000000000000000000000000000000000000000017611dd7565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ead5760006001850190506000600460008381526020019081526020016000205403610eab576000548114610eaa578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f158686866001611e02565b505050505050565b610f38838383604051806020016040528060008152506116c2565b505050565b600f60009054906101000a900460ff1681565b600b8054610f5d90612db1565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8990612db1565b8015610fd65780601f10610fab57610100808354040283529160200191610fd6565b820191906000526020600020905b815481529060010190602001808311610fb957829003601f168201915b505050505081565b600d5481565b6000610fef82611c77565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361105d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110b6611be1565b73ffffffffffffffffffffffffffffffffffffffff166110d4611400565b73ffffffffffffffffffffffffffffffffffffffff161461112a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112190612fd5565b60405180910390fd5b6111346000611e08565b565b61113e611be1565b73ffffffffffffffffffffffffffffffffffffffff1661115c611400565b73ffffffffffffffffffffffffffffffffffffffff16146111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a990612fd5565b60405180910390fd5b60006111bc610bde565b9050600c5482826111cd9190612e7d565b111561120e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120590612f69565b60405180910390fd5b61121f611219611be1565b83611be9565b5050565b61122b611be1565b73ffffffffffffffffffffffffffffffffffffffff16611249611400565b73ffffffffffffffffffffffffffffffffffffffff161461129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690612fd5565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b606060006112c983610ff6565b67ffffffffffffffff8111156112e2576112e1612a6a565b5b6040519080825280602002602001820160405280156113105781602001602082028036833780820191505090505b509050600061131d611ece565b905060008060005b838110156113f357600061133882611ed7565b905080604001511561134a57506113e6565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461138a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113e457818685806001019650815181106113d7576113d6612ff5565b5b6020026020010181815250505b505b8080600101915050611325565b5083945050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461143990612db1565b80601f016020809104026020016040519081016040528092919081815260200182805461146590612db1565b80156114b25780601f10611487576101008083540402835291602001916114b2565b820191906000526020600020905b81548152906001019060200180831161149557829003601f168201915b5050505050905090565b6114c4611be1565b73ffffffffffffffffffffffffffffffffffffffff166114e2611400565b73ffffffffffffffffffffffffffffffffffffffff1614611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f90612fd5565b60405180910390fd5b80600a908161154791906131d0565b5050565b611553611c66565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115b7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115c4611c66565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611671611c66565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b69190612685565b60405180910390a35050565b6116cd848484610bfb565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461172f576116f884848484611f02565b61172e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061174082611c07565b61177f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177690613314565b60405180910390fd5b60001515600f60009054906101000a900460ff1615150361182c57600e80546117a790612db1565b80601f01602080910402602001604051908101604052809291908181526020018280546117d390612db1565b80156118205780601f106117f557610100808354040283529160200191611820565b820191906000526020600020905b81548152906001019060200180831161180357829003601f168201915b50505050509050611888565b6000611836612052565b905060008151116118565760405180602001604052806000815250611884565b80611860846120e4565b600b604051602001611874939291906133f3565b6040516020818303038152906040525b9150505b919050565b611895611be1565b73ffffffffffffffffffffffffffffffffffffffff166118b3611400565b73ffffffffffffffffffffffffffffffffffffffff1614611909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190090612fd5565b60405180910390fd5b80600e908161191891906131d0565b5050565b611924611be1565b73ffffffffffffffffffffffffffffffffffffffff16611942611400565b73ffffffffffffffffffffffffffffffffffffffff1614611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f90612fd5565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a8054611a5690612db1565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8290612db1565b8015611acf5780601f10611aa457610100808354040283529160200191611acf565b820191906000526020600020905b815481529060010190602001808311611ab257829003601f168201915b505050505081565b600f60019054906101000a900460ff1681565b611af2611be1565b73ffffffffffffffffffffffffffffffffffffffff16611b10611400565b73ffffffffffffffffffffffffffffffffffffffff1614611b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5d90612fd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90613496565b60405180910390fd5b611bde81611e08565b50565b600033905090565b611c03828260405180602001604052806000815250612244565b5050565b600081611c12611c6e565b11158015611c21575060005482105b8015611c5f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611c86611c6e565b11611d0c57600054811015611d0b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d09575b60008103611cff576004600083600190039350838152602001908152602001600020549050611cd5565b8092505050611d3e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611dc68686846122e1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b611edf612582565b611efb60046000848152602001908152602001600020546122ea565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f28611c66565b8786866040518563ffffffff1660e01b8152600401611f4a949392919061350b565b6020604051808303816000875af1925050508015611f8657506040513d601f19601f82011682018060405250810190611f83919061356c565b60015b611fff573d8060008114611fb6576040519150601f19603f3d011682016040523d82523d6000602084013e611fbb565b606091505b506000815103611ff7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461206190612db1565b80601f016020809104026020016040519081016040528092919081815260200182805461208d90612db1565b80156120da5780601f106120af576101008083540402835291602001916120da565b820191906000526020600020905b8154815290600101906020018083116120bd57829003601f168201915b5050505050905090565b60606000820361212b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061223f565b600082905060005b6000821461215d57808061214690613599565b915050600a826121569190613610565b9150612133565b60008167ffffffffffffffff81111561217957612178612a6a565b5b6040519080825280601f01601f1916602001820160405280156121ab5781602001600182028036833780820191505090505b5090505b60008514612238576001826121c49190613641565b9150600a856121d39190613675565b60306121df9190612e7d565b60f81b8183815181106121f5576121f4612ff5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122319190613610565b94506121af565b8093505050505b919050565b61224e83836123a0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122dc57600080549050600083820390505b61228e6000868380600101945086611f02565b6122c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061227b5781600054146122d957600080fd5b50505b505050565b60009392505050565b6122f2612582565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361240c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612446576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124536000848385611da9565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124ca836124bb6000866000611daf565b6124c485612572565b17611dd7565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106124ee5780600081905550505061256d6000848385611e02565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61261a816125e5565b811461262557600080fd5b50565b60008135905061263781612611565b92915050565b600060208284031215612653576126526125db565b5b600061266184828501612628565b91505092915050565b60008115159050919050565b61267f8161266a565b82525050565b600060208201905061269a6000830184612676565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126da5780820151818401526020810190506126bf565b60008484015250505050565b6000601f19601f8301169050919050565b6000612702826126a0565b61270c81856126ab565b935061271c8185602086016126bc565b612725816126e6565b840191505092915050565b6000602082019050818103600083015261274a81846126f7565b905092915050565b6000819050919050565b61276581612752565b811461277057600080fd5b50565b6000813590506127828161275c565b92915050565b60006020828403121561279e5761279d6125db565b5b60006127ac84828501612773565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127e0826127b5565b9050919050565b6127f0816127d5565b82525050565b600060208201905061280b60008301846127e7565b92915050565b61281a816127d5565b811461282557600080fd5b50565b60008135905061283781612811565b92915050565b60008060408385031215612854576128536125db565b5b600061286285828601612828565b925050602061287385828601612773565b9150509250929050565b61288681612752565b82525050565b60006020820190506128a1600083018461287d565b92915050565b6000806000606084860312156128c0576128bf6125db565b5b60006128ce86828701612828565b93505060206128df86828701612828565b92505060406128f086828701612773565b9150509250925092565b6000602082840312156129105761290f6125db565b5b600061291e84828501612828565b91505092915050565b6129308161266a565b811461293b57600080fd5b50565b60008135905061294d81612927565b92915050565b600060208284031215612969576129686125db565b5b60006129778482850161293e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6129b581612752565b82525050565b60006129c783836129ac565b60208301905092915050565b6000602082019050919050565b60006129eb82612980565b6129f5818561298b565b9350612a008361299c565b8060005b83811015612a31578151612a1888826129bb565b9750612a23836129d3565b925050600181019050612a04565b5085935050505092915050565b60006020820190508181036000830152612a5881846129e0565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612aa2826126e6565b810181811067ffffffffffffffff82111715612ac157612ac0612a6a565b5b80604052505050565b6000612ad46125d1565b9050612ae08282612a99565b919050565b600067ffffffffffffffff821115612b0057612aff612a6a565b5b612b09826126e6565b9050602081019050919050565b82818337600083830152505050565b6000612b38612b3384612ae5565b612aca565b905082815260208101848484011115612b5457612b53612a65565b5b612b5f848285612b16565b509392505050565b600082601f830112612b7c57612b7b612a60565b5b8135612b8c848260208601612b25565b91505092915050565b600060208284031215612bab57612baa6125db565b5b600082013567ffffffffffffffff811115612bc957612bc86125e0565b5b612bd584828501612b67565b91505092915050565b60008060408385031215612bf557612bf46125db565b5b6000612c0385828601612828565b9250506020612c148582860161293e565b9150509250929050565b600067ffffffffffffffff821115612c3957612c38612a6a565b5b612c42826126e6565b9050602081019050919050565b6000612c62612c5d84612c1e565b612aca565b905082815260208101848484011115612c7e57612c7d612a65565b5b612c89848285612b16565b509392505050565b600082601f830112612ca657612ca5612a60565b5b8135612cb6848260208601612c4f565b91505092915050565b60008060008060808587031215612cd957612cd86125db565b5b6000612ce787828801612828565b9450506020612cf887828801612828565b9350506040612d0987828801612773565b925050606085013567ffffffffffffffff811115612d2a57612d296125e0565b5b612d3687828801612c91565b91505092959194509250565b60008060408385031215612d5957612d586125db565b5b6000612d6785828601612828565b9250506020612d7885828601612828565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dc957607f821691505b602082108103612ddc57612ddb612d82565b5b50919050565b7f4d696e74206973206e6f74206c69766521000000000000000000000000000000600082015250565b6000612e186011836126ab565b9150612e2382612de2565b602082019050919050565b60006020820190508181036000830152612e4781612e0b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e8882612752565b9150612e9383612752565b9250828201905080821115612eab57612eaa612e4e565b5b92915050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b6000612ee7601d836126ab565b9150612ef282612eb1565b602082019050919050565b60006020820190508181036000830152612f1681612eda565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612f536014836126ab565b9150612f5e82612f1d565b602082019050919050565b60006020820190508181036000830152612f8281612f46565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fbf6020836126ab565b9150612fca82612f89565b602082019050919050565b60006020820190508181036000830152612fee81612fb2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613049565b6130908683613049565b95508019841693508086168417925050509392505050565b6000819050919050565b60006130cd6130c86130c384612752565b6130a8565b612752565b9050919050565b6000819050919050565b6130e7836130b2565b6130fb6130f3826130d4565b848454613056565b825550505050565b600090565b613110613103565b61311b8184846130de565b505050565b5b8181101561313f57613134600082613108565b600181019050613121565b5050565b601f8211156131845761315581613024565b61315e84613039565b8101602085101561316d578190505b61318161317985613039565b830182613120565b50505b505050565b600082821c905092915050565b60006131a760001984600802613189565b1980831691505092915050565b60006131c08383613196565b9150826002028217905092915050565b6131d9826126a0565b67ffffffffffffffff8111156131f2576131f1612a6a565b5b6131fc8254612db1565b613207828285613143565b600060209050601f83116001811461323a5760008415613228578287015190505b61323285826131b4565b86555061329a565b601f19841661324886613024565b60005b828110156132705784890151825560018201915060208501945060208101905061324b565b8683101561328d5784890151613289601f891682613196565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006132fe602f836126ab565b9150613309826132a2565b604082019050919050565b6000602082019050818103600083015261332d816132f1565b9050919050565b600081905092915050565b600061334a826126a0565b6133548185613334565b93506133648185602086016126bc565b80840191505092915050565b6000815461337d81612db1565b6133878186613334565b945060018216600081146133a257600181146133b7576133ea565b60ff19831686528115158202860193506133ea565b6133c085613024565b60005b838110156133e2578154818901526001820191506020810190506133c3565b838801955050505b50505092915050565b60006133ff828661333f565b915061340b828561333f565b91506134178284613370565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134806026836126ab565b915061348b82613424565b604082019050919050565b600060208201905081810360008301526134af81613473565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134dd826134b6565b6134e781856134c1565b93506134f78185602086016126bc565b613500816126e6565b840191505092915050565b600060808201905061352060008301876127e7565b61352d60208301866127e7565b61353a604083018561287d565b818103606083015261354c81846134d2565b905095945050505050565b60008151905061356681612611565b92915050565b600060208284031215613582576135816125db565b5b600061359084828501613557565b91505092915050565b60006135a482612752565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135d6576135d5612e4e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061361b82612752565b915061362683612752565b925082613636576136356135e1565b5b828204905092915050565b600061364c82612752565b915061365783612752565b925082820390508181111561366f5761366e612e4e565b5b92915050565b600061368082612752565b915061368b83612752565b92508261369b5761369a6135e1565b5b82820690509291505056fea2646970667358221220774a84c283ee2074c313c2590475314843787e6fadbff892aa969ac39d67882964736f6c63430008110033
Deployed Bytecode Sourcemap
236:2703:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5653:607:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11161:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;619:359:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13048:200:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12611:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;460:28:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4736:309:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;382:33:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22055:2739:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13912:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;492:28:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;345:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;419:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10957:142:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6319:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:7;;;;;;;;;;;;;:::i;:::-;;984:214:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2613:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1281:692;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1029:85:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11323:102:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1205:74:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13315:303:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14157:388;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2074:439:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2712:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2519:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13684:162:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;324:17:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;524:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1911:198:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5653:607:2;5738:4;6048:10;6033:25;;:11;:25;;;;:101;;;;6124:10;6109:25;;:11;:25;;;;6033:101;:177;;;;6200:10;6185:25;;:11;:25;;;;6033:177;6014:196;;5653:607;;;:::o;11161:98::-;11215:13;11247:5;11240:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11161:98;:::o;619:359:10:-;683:12;;;;;;;;;;;675:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;722:14;739:13;:11;:13::i;:::-;722:30;;805:17;;790:11;766:21;776:10;766:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;758:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;894:11;;879;870:6;:20;;;;:::i;:::-;:35;;862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;936:36;946:12;:10;:12::i;:::-;960:11;936:9;:36::i;:::-;669:309;619:359;:::o;13048:200:2:-;13116:7;13140:16;13148:7;13140;:16::i;:::-;13135:64;;13165:34;;;;;;;;;;;;;;13135:64;13217:15;:24;13233:7;13217:24;;;;;;;;;;;;;;;;;;;;;13210:31;;13048:200;;;:::o;12611:376::-;12683:13;12699:16;12707:7;12699;:16::i;:::-;12683:32;;12753:5;12730:28;;:19;:17;:19::i;:::-;:28;;;12726:172;;12777:44;12794:5;12801:19;:17;:19::i;:::-;12777:16;:44::i;:::-;12772:126;;12848:35;;;;;;;;;;;;;;12772:126;12726:172;12935:2;12908:15;:24;12924:7;12908:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;12972:7;12968:2;12952:28;;12961:5;12952:28;;;;;;;;;;;;12673:314;12611:376;;:::o;460:28:10:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4736:309:2:-;4789:7;5013:15;:13;:15::i;:::-;4998:12;;4982:13;;:28;:46;4975:53;;4736:309;:::o;382:33:10:-;;;;:::o;22055:2739:2:-;22184:27;22214;22233:7;22214:18;:27::i;:::-;22184:57;;22297:4;22256:45;;22272:19;22256:45;;;22252:86;;22310:28;;;;;;;;;;;;;;22252:86;22350:27;22379:23;22406:28;22426:7;22406:19;:28::i;:::-;22349:85;;;;22531:62;22550:15;22567:4;22573:19;:17;:19::i;:::-;22531:18;:62::i;:::-;22526:173;;22612:43;22629:4;22635:19;:17;:19::i;:::-;22612:16;:43::i;:::-;22607:92;;22664:35;;;;;;;;;;;;;;22607:92;22526:173;22728:1;22714:16;;:2;:16;;;22710:52;;22739:23;;;;;;;;;;;;;;22710:52;22773:43;22795:4;22801:2;22805:7;22814:1;22773:21;:43::i;:::-;22905:15;22902:157;;;23043:1;23022:19;23015:30;22902:157;23429:18;:24;23448:4;23429:24;;;;;;;;;;;;;;;;23427:26;;;;;;;;;;;;23497:18;:22;23516:2;23497:22;;;;;;;;;;;;;;;;23495:24;;;;;;;;;;;23812:142;23848:2;23895:45;23910:4;23916:2;23920:19;23895:14;:45::i;:::-;2046:8;23868:72;23812:18;:142::i;:::-;23783:17;:26;23801:7;23783:26;;;;;;;;;;;:171;;;;24121:1;2046:8;24071:19;:46;:51;24067:616;;24142:19;24174:1;24164:7;:11;24142:33;;24329:1;24295:17;:30;24313:11;24295:30;;;;;;;;;;;;:35;24291:378;;24431:13;;24416:11;:28;24412:239;;24609:19;24576:17;:30;24594:11;24576:30;;;;;;;;;;;:52;;;;24412:239;24291:378;24124:559;24067:616;24727:7;24723:2;24708:27;;24717:4;24708:27;;;;;;;;;;;;24745:42;24766:4;24772:2;24776:7;24785:1;24745:20;:42::i;:::-;22174:2620;;;22055:2739;;;:::o;13912:179::-;14045:39;14062:4;14068:2;14072:7;14045:39;;;;;;;;;;;;:16;:39::i;:::-;13912:179;;;:::o;492:28:10:-;;;;;;;;;;;;;:::o;345:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;419:37::-;;;;:::o;10957:142:2:-;11021:7;11063:27;11082:7;11063:18;:27::i;:::-;11040:52;;10957:142;;;:::o;6319:221::-;6383:7;6423:1;6406:19;;:5;:19;;;6402:60;;6434:28;;;;;;;;;;;;;;6402:60;1022:13;6479:18;:25;6498:5;6479:25;;;;;;;;;;;;;;;;:54;6472:61;;6319:221;;;:::o;1661:101:7:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;984:214:10:-;1252:12:7;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1046:14:10::1;1063:13;:11;:13::i;:::-;1046:30;;1114:11;;1099;1090:6;:20;;;;:::i;:::-;:35;;1082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1156:36;1166:12;:10;:12::i;:::-;1180:11;1156:9;:36::i;:::-;1040:158;984:214:::0;:::o;2613:91::-;1252:12:7;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2691:6:10::1;2676:12;;:21;;;;;;;;;;;;;;;;;;2613:91:::0;:::o;1281:692::-;1342:16;1386:18;1421:16;1431:5;1421:9;:16::i;:::-;1407:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1386:52;;1449:11;1463:14;:12;:14::i;:::-;1449:28;;1487:19;1516:25;1556:9;1551:392;1571:3;1567:1;:7;1551:392;;;1595:31;1629:15;1642:1;1629:12;:15::i;:::-;1595:49;;1662:9;:16;;;1658:63;;;1698:8;;;1658:63;1764:1;1738:28;;:9;:14;;;:28;;;1734:101;;1806:9;:14;;;1786:34;;1734:101;1873:5;1852:26;;:17;:26;;;1848:85;;1917:1;1898;1900:13;;;;;;1898:16;;;;;;;;:::i;:::-;;;;;;;:20;;;;;1848:85;1581:362;1551:392;1576:3;;;;;;;1551:392;;;;1959:1;1952:8;;;;;;1281:692;;;:::o;1029:85:7:-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;11323:102:2:-;11379:13;11411:7;11404:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11323:102;:::o;1205:74:10:-;1252:12:7;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1270:4:10::1;1264:3;:10;;;;;;:::i;:::-;;1205:74:::0;:::o;13315:303:2:-;13425:19;:17;:19::i;:::-;13413:31;;:8;:31;;;13409:61;;13453:17;;;;;;;;;;;;;;13409:61;13533:8;13481:18;:39;13500:19;:17;:19::i;:::-;13481:39;;;;;;;;;;;;;;;:49;13521:8;13481:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;13592:8;13556:55;;13571:19;:17;:19::i;:::-;13556:55;;;13602:8;13556:55;;;;;;:::i;:::-;;;;;;;;13315:303;;:::o;14157:388::-;14318:31;14331:4;14337:2;14341:7;14318:12;:31::i;:::-;14381:1;14363:2;:14;;;:19;14359:180;;14401:56;14432:4;14438:2;14442:7;14451:5;14401:30;:56::i;:::-;14396:143;;14484:40;;;;;;;;;;;;;;14396:143;14359:180;14157:388;;;;:::o;2074:439:10:-;2148:13;2177:17;2185:8;2177:7;:17::i;:::-;2169:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;2268:5;2256:17;;:8;;;;;;;;;;;:17;;;2252:69;;2296:14;2289:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2252:69;2326:28;2357:10;:8;:10::i;:::-;2326:41;;2411:1;2386:14;2380:28;:32;:128;;;;;;;;;;;;;;;;;2447:14;2463:19;:8;:17;:19::i;:::-;2484:9;2430:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2380:128;2373:135;;;2074:439;;;;:::o;2712:124::-;1252:12:7;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2814:15:10::1;2797:14;:32;;;;;;:::i;:::-;;2712:124:::0;:::o;2519:85::-;1252:12:7;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2591:6:10::1;2580:8;;:17;;;;;;;;;;;;;;;;;;2519:85:::0;:::o;13684:162:2:-;13781:4;13804:18;:25;13823:5;13804:25;;;;;;;;;;;;;;;:35;13830:8;13804:35;;;;;;;;;;;;;;;;;;;;;;;;;13797:42;;13684:162;;;;:::o;324:17:10:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;524:32::-;;;;;;;;;;;;;:::o;1911:198:7:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2019:1:::1;1999:22;;:8;:22;;::::0;1991:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;15138:102:2:-;15206:27;15216:2;15220:8;15206:27;;;;;;;;;;;;:9;:27::i;:::-;15138:102;;:::o;14791:268::-;14848:4;14902:7;14883:15;:13;:15::i;:::-;:26;;:65;;;;;14935:13;;14925:7;:23;14883:65;:150;;;;;15032:1;1774:8;14985:17;:26;15003:7;14985:26;;;;;;;;;;;;:43;:48;14883:150;14864:169;;14791:268;;;:::o;32874:103::-;32934:7;32960:10;32953:17;;32874:103;:::o;1977:93:10:-;2042:7;2064:1;2057:8;;1977:93;:::o;7949:1105:2:-;8016:7;8035:12;8050:7;8035:22;;8115:4;8096:15;:13;:15::i;:::-;:23;8092:898;;8148:13;;8141:4;:20;8137:853;;;8185:14;8202:17;:23;8220:4;8202:23;;;;;;;;;;;;8185:40;;8316:1;1774:8;8289:6;:23;:28;8285:687;;8800:111;8817:1;8807:6;:11;8800:111;;8859:17;:25;8877:6;;;;;;;8859:25;;;;;;;;;;;;8850:34;;8800:111;;;8943:6;8936:13;;;;;;8285:687;8163:827;8137:853;8092:898;9016:31;;;;;;;;;;;;;;7949:1105;;;;:::o;20436:637::-;20528:27;20557:23;20596:53;20652:15;20596:71;;20834:7;20828:4;20821:21;20868:22;20862:4;20855:36;20943:4;20937;20927:21;20904:44;;21037:19;21031:26;21012:45;;20774:293;20436:637;;;:::o;21181:632::-;21319:11;21478:15;21472:4;21468:26;21460:34;;21635:15;21624:9;21620:31;21607:44;;21780:15;21769:9;21766:30;21759:4;21748:9;21745:19;21742:55;21732:65;;21181:632;;;;;:::o;31742:154::-;;;;;:::o;30099:302::-;30230:7;30249:16;2166:3;30275:19;:40;;30249:67;;2166:3;30341:31;30352:4;30358:2;30362:9;30341:10;:31::i;:::-;30333:40;;:61;;30326:68;;;30099:302;;;;;:::o;10460:440::-;10540:14;10705:15;10698:5;10694:27;10685:36;;10877:5;10863:11;10839:22;10835:40;10832:51;10825:5;10822:62;10812:72;;10460:440;;;;:::o;32537:153::-;;;;;:::o;2263:187:7:-;2336:16;2355:6;;;;;;;;;;;2336:25;;2380:8;2371:6;;:17;;;;;;;;;;;;;;;;;;2434:8;2403:40;;2424:8;2403:40;;;;;;;;;;;;2326:124;2263:187;:::o;4440:93:2:-;4487:7;4513:13;;4506:20;;4440:93;:::o;9587:151::-;9647:21;;:::i;:::-;9687:44;9706:17;:24;9724:5;9706:24;;;;;;;;;;;;9687:18;:44::i;:::-;9680:51;;9587:151;;;:::o;28649:697::-;28807:4;28852:2;28827:45;;;28873:19;:17;:19::i;:::-;28894:4;28900:7;28909:5;28827:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;28823:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29122:1;29105:6;:13;:18;29101:229;;29150:40;;;;;;;;;;;;;;29101:229;29290:6;29284:13;29275:6;29271:2;29267:15;29260:38;28823:517;28993:54;;;28983:64;;;:6;:64;;;;28976:71;;;28649:697;;;;;;:::o;2840:96:10:-;2900:13;2928:3;2921:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2840:96;:::o;328:703:9:-;384:13;610:1;601:5;:10;597:51;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;15641:661:2:-;15759:19;15765:2;15769:8;15759:5;:19::i;:::-;15835:1;15817:2;:14;;;:19;15813:473;;15856:11;15870:13;;15856:27;;15901:13;15923:8;15917:3;:14;15901:30;;15949:229;15979:62;16018:1;16022:2;16026:7;;;;;;16035:5;15979:30;:62::i;:::-;15974:165;;16076:40;;;;;;;;;;;;;;15974:165;16173:3;16165:5;:11;15949:229;;16258:3;16241:13;;:20;16237:34;;16263:8;;;16237:34;15838:448;;15813:473;15641:661;;;:::o;30961:143::-;31094:6;30961:143;;;;;:::o;9143:358::-;9209:31;;:::i;:::-;9285:6;9252:9;:14;;:41;;;;;;;;;;;1661:3;9337:6;:32;;9303:9;:24;;:67;;;;;;;;;;;9426:1;1774:8;9399:6;:23;:28;;9380:9;:16;;:47;;;;;;;;;;;2166:3;9466:6;:27;;9437:9;:19;;:57;;;;;;;;;;;9143:358;;;:::o;16563:1492::-;16627:20;16650:13;;16627:36;;16691:1;16677:16;;:2;:16;;;16673:48;;16702:19;;;;;;;;;;;;;;16673:48;16747:1;16735:8;:13;16731:44;;16757:18;;;;;;;;;;;;;;16731:44;16786:61;16816:1;16820:2;16824:12;16838:8;16786:21;:61::i;:::-;17318:1;1156:2;17289:1;:25;;17288:31;17276:8;:44;17250:18;:22;17269:2;17250:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;17590:136;17626:2;17679:33;17702:1;17706:2;17710:1;17679:14;:33::i;:::-;17646:30;17667:8;17646:20;:30::i;:::-;:66;17590:18;:136::i;:::-;17556:17;:31;17574:12;17556:31;;;;;;;;;;;:170;;;;17741:15;17759:12;17741:30;;17785:11;17814:8;17799:12;:23;17785:37;;17836:99;17887:9;;;;;;17883:2;17862:35;;17879:1;17862:35;;;;;;;;;;;;17930:3;17920:7;:13;17836:99;;17965:3;17949:13;:19;;;;17030:949;;17988:60;18017:1;18021:2;18025:12;18039:8;17988:20;:60::i;:::-;16617:1438;16563:1492;;:::o;12238:316::-;12308:14;12535:1;12525:8;12522:15;12497:23;12493:45;12483:55;;12238:316;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:11:-;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:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:116::-;6272:21;6287:5;6272:21;:::i;:::-;6265:5;6262:32;6252:60;;6308:1;6305;6298:12;6252:60;6202:116;:::o;6324:133::-;6367:5;6405:6;6392:20;6383:29;;6421:30;6445:5;6421:30;:::i;:::-;6324:133;;;;:::o;6463:323::-;6519:6;6568:2;6556:9;6547:7;6543:23;6539:32;6536:119;;;6574:79;;:::i;:::-;6536:119;6694:1;6719:50;6761:7;6752:6;6741:9;6737:22;6719:50;:::i;:::-;6709:60;;6665:114;6463:323;;;;:::o;6792:114::-;6859:6;6893:5;6887:12;6877:22;;6792:114;;;:::o;6912:184::-;7011:11;7045:6;7040:3;7033:19;7085:4;7080:3;7076:14;7061:29;;6912:184;;;;:::o;7102:132::-;7169:4;7192:3;7184:11;;7222:4;7217:3;7213:14;7205:22;;7102:132;;;:::o;7240:108::-;7317:24;7335:5;7317:24;:::i;:::-;7312:3;7305:37;7240:108;;:::o;7354:179::-;7423:10;7444:46;7486:3;7478:6;7444:46;:::i;:::-;7522:4;7517:3;7513:14;7499:28;;7354:179;;;;:::o;7539:113::-;7609:4;7641;7636:3;7632:14;7624:22;;7539:113;;;:::o;7688:732::-;7807:3;7836:54;7884:5;7836:54;:::i;:::-;7906:86;7985:6;7980:3;7906:86;:::i;:::-;7899:93;;8016:56;8066:5;8016:56;:::i;:::-;8095:7;8126:1;8111:284;8136:6;8133:1;8130:13;8111:284;;;8212:6;8206:13;8239:63;8298:3;8283:13;8239:63;:::i;:::-;8232:70;;8325:60;8378:6;8325:60;:::i;:::-;8315:70;;8171:224;8158:1;8155;8151:9;8146:14;;8111:284;;;8115:14;8411:3;8404:10;;7812:608;;;7688:732;;;;:::o;8426:373::-;8569:4;8607:2;8596:9;8592:18;8584:26;;8656:9;8650:4;8646:20;8642:1;8631:9;8627:17;8620:47;8684:108;8787:4;8778:6;8684:108;:::i;:::-;8676:116;;8426:373;;;;:::o;8805:117::-;8914:1;8911;8904:12;8928:117;9037:1;9034;9027:12;9051:180;9099:77;9096:1;9089:88;9196:4;9193:1;9186:15;9220:4;9217:1;9210:15;9237:281;9320:27;9342:4;9320:27;:::i;:::-;9312:6;9308:40;9450:6;9438:10;9435:22;9414:18;9402:10;9399:34;9396:62;9393:88;;;9461:18;;:::i;:::-;9393:88;9501:10;9497:2;9490:22;9280:238;9237:281;;:::o;9524:129::-;9558:6;9585:20;;:::i;:::-;9575:30;;9614:33;9642:4;9634:6;9614:33;:::i;:::-;9524:129;;;:::o;9659:308::-;9721:4;9811:18;9803:6;9800:30;9797:56;;;9833:18;;:::i;:::-;9797:56;9871:29;9893:6;9871:29;:::i;:::-;9863:37;;9955:4;9949;9945:15;9937:23;;9659:308;;;:::o;9973:146::-;10070:6;10065:3;10060;10047:30;10111:1;10102:6;10097:3;10093:16;10086:27;9973:146;;;:::o;10125:425::-;10203:5;10228:66;10244:49;10286:6;10244:49;:::i;:::-;10228:66;:::i;:::-;10219:75;;10317:6;10310:5;10303:21;10355:4;10348:5;10344:16;10393:3;10384:6;10379:3;10375:16;10372:25;10369:112;;;10400:79;;:::i;:::-;10369:112;10490:54;10537:6;10532:3;10527;10490:54;:::i;:::-;10209:341;10125:425;;;;;:::o;10570:340::-;10626:5;10675:3;10668:4;10660:6;10656:17;10652:27;10642:122;;10683:79;;:::i;:::-;10642:122;10800:6;10787:20;10825:79;10900:3;10892:6;10885:4;10877:6;10873:17;10825:79;:::i;:::-;10816:88;;10632:278;10570:340;;;;:::o;10916:509::-;10985:6;11034:2;11022:9;11013:7;11009:23;11005:32;11002:119;;;11040:79;;:::i;:::-;11002:119;11188:1;11177:9;11173:17;11160:31;11218:18;11210:6;11207:30;11204:117;;;11240:79;;:::i;:::-;11204:117;11345:63;11400:7;11391:6;11380:9;11376:22;11345:63;:::i;:::-;11335:73;;11131:287;10916:509;;;;:::o;11431:468::-;11496:6;11504;11553:2;11541:9;11532:7;11528:23;11524:32;11521:119;;;11559:79;;:::i;:::-;11521:119;11679:1;11704:53;11749:7;11740:6;11729:9;11725:22;11704:53;:::i;:::-;11694:63;;11650:117;11806:2;11832:50;11874:7;11865:6;11854:9;11850:22;11832:50;:::i;:::-;11822:60;;11777:115;11431:468;;;;;:::o;11905:307::-;11966:4;12056:18;12048:6;12045:30;12042:56;;;12078:18;;:::i;:::-;12042:56;12116:29;12138:6;12116:29;:::i;:::-;12108:37;;12200:4;12194;12190:15;12182:23;;11905:307;;;:::o;12218:423::-;12295:5;12320:65;12336:48;12377:6;12336:48;:::i;:::-;12320:65;:::i;:::-;12311:74;;12408:6;12401:5;12394:21;12446:4;12439:5;12435:16;12484:3;12475:6;12470:3;12466:16;12463:25;12460:112;;;12491:79;;:::i;:::-;12460:112;12581:54;12628:6;12623:3;12618;12581:54;:::i;:::-;12301:340;12218:423;;;;;:::o;12660:338::-;12715:5;12764:3;12757:4;12749:6;12745:17;12741:27;12731:122;;12772:79;;:::i;:::-;12731:122;12889:6;12876:20;12914:78;12988:3;12980:6;12973:4;12965:6;12961:17;12914:78;:::i;:::-;12905:87;;12721:277;12660:338;;;;:::o;13004:943::-;13099:6;13107;13115;13123;13172:3;13160:9;13151:7;13147:23;13143:33;13140:120;;;13179:79;;:::i;:::-;13140:120;13299:1;13324:53;13369:7;13360:6;13349:9;13345:22;13324:53;:::i;:::-;13314:63;;13270:117;13426:2;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13397:118;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13710:2;13699:9;13695:18;13682:32;13741:18;13733:6;13730:30;13727:117;;;13763:79;;:::i;:::-;13727:117;13868:62;13922:7;13913:6;13902:9;13898:22;13868:62;:::i;:::-;13858:72;;13653:287;13004:943;;;;;;;:::o;13953:474::-;14021:6;14029;14078:2;14066:9;14057:7;14053:23;14049:32;14046:119;;;14084:79;;:::i;:::-;14046:119;14204:1;14229:53;14274:7;14265:6;14254:9;14250:22;14229:53;:::i;:::-;14219:63;;14175:117;14331:2;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14302:118;13953:474;;;;;:::o;14433:180::-;14481:77;14478:1;14471:88;14578:4;14575:1;14568:15;14602:4;14599:1;14592:15;14619:320;14663:6;14700:1;14694:4;14690:12;14680:22;;14747:1;14741:4;14737:12;14768:18;14758:81;;14824:4;14816:6;14812:17;14802:27;;14758:81;14886:2;14878:6;14875:14;14855:18;14852:38;14849:84;;14905:18;;:::i;:::-;14849:84;14670:269;14619:320;;;:::o;14945:167::-;15085:19;15081:1;15073:6;15069:14;15062:43;14945:167;:::o;15118:366::-;15260:3;15281:67;15345:2;15340:3;15281:67;:::i;:::-;15274:74;;15357:93;15446:3;15357:93;:::i;:::-;15475:2;15470:3;15466:12;15459:19;;15118:366;;;:::o;15490:419::-;15656:4;15694:2;15683:9;15679:18;15671:26;;15743:9;15737:4;15733:20;15729:1;15718:9;15714:17;15707:47;15771:131;15897:4;15771:131;:::i;:::-;15763:139;;15490:419;;;:::o;15915:180::-;15963:77;15960:1;15953:88;16060:4;16057:1;16050:15;16084:4;16081:1;16074:15;16101:191;16141:3;16160:20;16178:1;16160:20;:::i;:::-;16155:25;;16194:20;16212:1;16194:20;:::i;:::-;16189:25;;16237:1;16234;16230:9;16223:16;;16258:3;16255:1;16252:10;16249:36;;;16265:18;;:::i;:::-;16249:36;16101:191;;;;:::o;16298:179::-;16438:31;16434:1;16426:6;16422:14;16415:55;16298:179;:::o;16483:366::-;16625:3;16646:67;16710:2;16705:3;16646:67;:::i;:::-;16639:74;;16722:93;16811:3;16722:93;:::i;:::-;16840:2;16835:3;16831:12;16824:19;;16483:366;;;:::o;16855:419::-;17021:4;17059:2;17048:9;17044:18;17036:26;;17108:9;17102:4;17098:20;17094:1;17083:9;17079:17;17072:47;17136:131;17262:4;17136:131;:::i;:::-;17128:139;;16855:419;;;:::o;17280:170::-;17420:22;17416:1;17408:6;17404:14;17397:46;17280:170;:::o;17456:366::-;17598:3;17619:67;17683:2;17678:3;17619:67;:::i;:::-;17612:74;;17695:93;17784:3;17695:93;:::i;:::-;17813:2;17808:3;17804:12;17797:19;;17456:366;;;:::o;17828:419::-;17994:4;18032:2;18021:9;18017:18;18009:26;;18081:9;18075:4;18071:20;18067:1;18056:9;18052:17;18045:47;18109:131;18235:4;18109:131;:::i;:::-;18101:139;;17828:419;;;:::o;18253:182::-;18393:34;18389:1;18381:6;18377:14;18370:58;18253:182;:::o;18441:366::-;18583:3;18604:67;18668:2;18663:3;18604:67;:::i;:::-;18597:74;;18680:93;18769:3;18680:93;:::i;:::-;18798:2;18793:3;18789:12;18782:19;;18441:366;;;:::o;18813:419::-;18979:4;19017:2;19006:9;19002:18;18994:26;;19066:9;19060:4;19056:20;19052:1;19041:9;19037:17;19030:47;19094:131;19220:4;19094:131;:::i;:::-;19086:139;;18813:419;;;:::o;19238:180::-;19286:77;19283:1;19276:88;19383:4;19380:1;19373:15;19407:4;19404:1;19397:15;19424:141;19473:4;19496:3;19488:11;;19519:3;19516:1;19509:14;19553:4;19550:1;19540:18;19532:26;;19424:141;;;:::o;19571:93::-;19608:6;19655:2;19650;19643:5;19639:14;19635:23;19625:33;;19571:93;;;:::o;19670:107::-;19714:8;19764:5;19758:4;19754:16;19733:37;;19670:107;;;;:::o;19783:393::-;19852:6;19902:1;19890:10;19886:18;19925:97;19955:66;19944:9;19925:97;:::i;:::-;20043:39;20073:8;20062:9;20043:39;:::i;:::-;20031:51;;20115:4;20111:9;20104:5;20100:21;20091:30;;20164:4;20154:8;20150:19;20143:5;20140:30;20130:40;;19859:317;;19783:393;;;;;:::o;20182:60::-;20210:3;20231:5;20224:12;;20182:60;;;:::o;20248:142::-;20298:9;20331:53;20349:34;20358:24;20376:5;20358:24;:::i;:::-;20349:34;:::i;:::-;20331:53;:::i;:::-;20318:66;;20248:142;;;:::o;20396:75::-;20439:3;20460:5;20453:12;;20396:75;;;:::o;20477:269::-;20587:39;20618:7;20587:39;:::i;:::-;20648:91;20697:41;20721:16;20697:41;:::i;:::-;20689:6;20682:4;20676:11;20648:91;:::i;:::-;20642:4;20635:105;20553:193;20477:269;;;:::o;20752:73::-;20797:3;20752:73;:::o;20831:189::-;20908:32;;:::i;:::-;20949:65;21007:6;20999;20993:4;20949:65;:::i;:::-;20884:136;20831:189;;:::o;21026:186::-;21086:120;21103:3;21096:5;21093:14;21086:120;;;21157:39;21194:1;21187:5;21157:39;:::i;:::-;21130:1;21123:5;21119:13;21110:22;;21086:120;;;21026:186;;:::o;21218:543::-;21319:2;21314:3;21311:11;21308:446;;;21353:38;21385:5;21353:38;:::i;:::-;21437:29;21455:10;21437:29;:::i;:::-;21427:8;21423:44;21620:2;21608:10;21605:18;21602:49;;;21641:8;21626:23;;21602:49;21664:80;21720:22;21738:3;21720:22;:::i;:::-;21710:8;21706:37;21693:11;21664:80;:::i;:::-;21323:431;;21308:446;21218:543;;;:::o;21767:117::-;21821:8;21871:5;21865:4;21861:16;21840:37;;21767:117;;;;:::o;21890:169::-;21934:6;21967:51;22015:1;22011:6;22003:5;22000:1;21996:13;21967:51;:::i;:::-;21963:56;22048:4;22042;22038:15;22028:25;;21941:118;21890:169;;;;:::o;22064:295::-;22140:4;22286:29;22311:3;22305:4;22286:29;:::i;:::-;22278:37;;22348:3;22345:1;22341:11;22335:4;22332:21;22324:29;;22064:295;;;;:::o;22364:1395::-;22481:37;22514:3;22481:37;:::i;:::-;22583:18;22575:6;22572:30;22569:56;;;22605:18;;:::i;:::-;22569:56;22649:38;22681:4;22675:11;22649:38;:::i;:::-;22734:67;22794:6;22786;22780:4;22734:67;:::i;:::-;22828:1;22852:4;22839:17;;22884:2;22876:6;22873:14;22901:1;22896:618;;;;23558:1;23575:6;23572:77;;;23624:9;23619:3;23615:19;23609:26;23600:35;;23572:77;23675:67;23735:6;23728:5;23675:67;:::i;:::-;23669:4;23662:81;23531:222;22866:887;;22896:618;22948:4;22944:9;22936:6;22932:22;22982:37;23014:4;22982:37;:::i;:::-;23041:1;23055:208;23069:7;23066:1;23063:14;23055:208;;;23148:9;23143:3;23139:19;23133:26;23125:6;23118:42;23199:1;23191:6;23187:14;23177:24;;23246:2;23235:9;23231:18;23218:31;;23092:4;23089:1;23085:12;23080:17;;23055:208;;;23291:6;23282:7;23279:19;23276:179;;;23349:9;23344:3;23340:19;23334:26;23392:48;23434:4;23426:6;23422:17;23411:9;23392:48;:::i;:::-;23384:6;23377:64;23299:156;23276:179;23501:1;23497;23489:6;23485:14;23481:22;23475:4;23468:36;22903:611;;;22866:887;;22456:1303;;;22364:1395;;:::o;23765:234::-;23905:34;23901:1;23893:6;23889:14;23882:58;23974:17;23969:2;23961:6;23957:15;23950:42;23765:234;:::o;24005:366::-;24147:3;24168:67;24232:2;24227:3;24168:67;:::i;:::-;24161:74;;24244:93;24333:3;24244:93;:::i;:::-;24362:2;24357:3;24353:12;24346:19;;24005:366;;;:::o;24377:419::-;24543:4;24581:2;24570:9;24566:18;24558:26;;24630:9;24624:4;24620:20;24616:1;24605:9;24601:17;24594:47;24658:131;24784:4;24658:131;:::i;:::-;24650:139;;24377:419;;;:::o;24802:148::-;24904:11;24941:3;24926:18;;24802:148;;;;:::o;24956:390::-;25062:3;25090:39;25123:5;25090:39;:::i;:::-;25145:89;25227:6;25222:3;25145:89;:::i;:::-;25138:96;;25243:65;25301:6;25296:3;25289:4;25282:5;25278:16;25243:65;:::i;:::-;25333:6;25328:3;25324:16;25317:23;;25066:280;24956:390;;;;:::o;25376:874::-;25479:3;25516:5;25510:12;25545:36;25571:9;25545:36;:::i;:::-;25597:89;25679:6;25674:3;25597:89;:::i;:::-;25590:96;;25717:1;25706:9;25702:17;25733:1;25728:166;;;;25908:1;25903:341;;;;25695:549;;25728:166;25812:4;25808:9;25797;25793:25;25788:3;25781:38;25874:6;25867:14;25860:22;25852:6;25848:35;25843:3;25839:45;25832:52;;25728:166;;25903:341;25970:38;26002:5;25970:38;:::i;:::-;26030:1;26044:154;26058:6;26055:1;26052:13;26044:154;;;26132:7;26126:14;26122:1;26117:3;26113:11;26106:35;26182:1;26173:7;26169:15;26158:26;;26080:4;26077:1;26073:12;26068:17;;26044:154;;;26227:6;26222:3;26218:16;26211:23;;25910:334;;25695:549;;25483:767;;25376:874;;;;:::o;26256:589::-;26481:3;26503:95;26594:3;26585:6;26503:95;:::i;:::-;26496:102;;26615:95;26706:3;26697:6;26615:95;:::i;:::-;26608:102;;26727:92;26815:3;26806:6;26727:92;:::i;:::-;26720:99;;26836:3;26829:10;;26256:589;;;;;;:::o;26851:225::-;26991:34;26987:1;26979:6;26975:14;26968:58;27060:8;27055:2;27047:6;27043:15;27036:33;26851:225;:::o;27082:366::-;27224:3;27245:67;27309:2;27304:3;27245:67;:::i;:::-;27238:74;;27321:93;27410:3;27321:93;:::i;:::-;27439:2;27434:3;27430:12;27423:19;;27082:366;;;:::o;27454:419::-;27620:4;27658:2;27647:9;27643:18;27635:26;;27707:9;27701:4;27697:20;27693:1;27682:9;27678:17;27671:47;27735:131;27861:4;27735:131;:::i;:::-;27727:139;;27454:419;;;:::o;27879:98::-;27930:6;27964:5;27958:12;27948:22;;27879:98;;;:::o;27983:168::-;28066:11;28100:6;28095:3;28088:19;28140:4;28135:3;28131:14;28116:29;;27983:168;;;;:::o;28157:373::-;28243:3;28271:38;28303:5;28271:38;:::i;:::-;28325:70;28388:6;28383:3;28325:70;:::i;:::-;28318:77;;28404:65;28462:6;28457:3;28450:4;28443:5;28439:16;28404:65;:::i;:::-;28494:29;28516:6;28494:29;:::i;:::-;28489:3;28485:39;28478:46;;28247:283;28157:373;;;;:::o;28536:640::-;28731:4;28769:3;28758:9;28754:19;28746:27;;28783:71;28851:1;28840:9;28836:17;28827:6;28783:71;:::i;:::-;28864:72;28932:2;28921:9;28917:18;28908:6;28864:72;:::i;:::-;28946;29014:2;29003:9;28999:18;28990:6;28946:72;:::i;:::-;29065:9;29059:4;29055:20;29050:2;29039:9;29035:18;29028:48;29093:76;29164:4;29155:6;29093:76;:::i;:::-;29085:84;;28536:640;;;;;;;:::o;29182:141::-;29238:5;29269:6;29263:13;29254:22;;29285:32;29311:5;29285:32;:::i;:::-;29182:141;;;;:::o;29329:349::-;29398:6;29447:2;29435:9;29426:7;29422:23;29418:32;29415:119;;;29453:79;;:::i;:::-;29415:119;29573:1;29598:63;29653:7;29644:6;29633:9;29629:22;29598:63;:::i;:::-;29588:73;;29544:127;29329:349;;;;:::o;29684:233::-;29723:3;29746:24;29764:5;29746:24;:::i;:::-;29737:33;;29792:66;29785:5;29782:77;29779:103;;29862:18;;:::i;:::-;29779:103;29909:1;29902:5;29898:13;29891:20;;29684:233;;;:::o;29923:180::-;29971:77;29968:1;29961:88;30068:4;30065:1;30058:15;30092:4;30089:1;30082:15;30109:185;30149:1;30166:20;30184:1;30166:20;:::i;:::-;30161:25;;30200:20;30218:1;30200:20;:::i;:::-;30195:25;;30239:1;30229:35;;30244:18;;:::i;:::-;30229:35;30286:1;30283;30279:9;30274:14;;30109:185;;;;:::o;30300:194::-;30340:4;30360:20;30378:1;30360:20;:::i;:::-;30355:25;;30394:20;30412:1;30394:20;:::i;:::-;30389:25;;30438:1;30435;30431:9;30423:17;;30462:1;30456:4;30453:11;30450:37;;;30467:18;;:::i;:::-;30450:37;30300:194;;;;:::o;30500:176::-;30532:1;30549:20;30567:1;30549:20;:::i;:::-;30544:25;;30583:20;30601:1;30583:20;:::i;:::-;30578:25;;30622:1;30612:35;;30627:18;;:::i;:::-;30612:35;30668:1;30665;30661:9;30656:14;;30500:176;;;;:::o
Swarm Source
ipfs://774a84c283ee2074c313c2590475314843787e6fadbff892aa969ac39d678829
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.