ERC-721
Overview
Max Total Supply
3,069 SOSP
Holders
620
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 SOSPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SOSPEPE
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "./ERC721A.sol"; import "./OperatorFilterer.sol"; import "./Ownable.sol"; import "./MerkleProof.sol"; import "./ReentrancyGuard.sol"; import "./Strings.sol"; contract SOSPEPE is ERC721A, OperatorFilterer, Ownable, ReentrancyGuard { using Strings for uint256; bool public frenslistMintEnabled = false; bool public publicMintEnabled = false; bool public teamMintClaimed = false; bool public operatorFilteringEnabled; uint256 public maxSupply = 1069; uint256 public teamMintLimit = 50; uint256 public frenslistMintCost = 0.007 ether; uint256 public publicMintCost = 0.007 ether; uint256 public maxFreeFrenslistMintLimit = 2; uint256 public maxFrenslistMintLimit = 5; uint256 public maxPublicMintLimit = 5; bytes32 public merkleRoot; string public baseURI; constructor(string memory _initBaseURI) ERC721A("SOS PEPE", "SOSP") { _registerForOperatorFiltering(); operatorFilteringEnabled = true; setBaseURI(_initBaseURI); } function setApprovalForAll( address operator, bool approved ) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve( address operator, uint256 tokenId ) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function setOperatorFilteringEnabled(bool value) public onlyOwner { operatorFilteringEnabled = value; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setMerkleRoot(bytes32 root) external onlyOwner { merkleRoot = root; } function setMaxSupply(uint256 newMaxSupply) external onlyOwner { maxSupply = newMaxSupply; } function setfrenslistMintCost(uint256 newPrice) external onlyOwner { frenslistMintCost = newPrice; } function setpublicMintCost(uint256 newPrice) external onlyOwner { publicMintCost = newPrice; } function setPublicMintEnabled(bool _state) public onlyOwner { publicMintEnabled = _state; } function setFrenslistMintEnabled(bool _state) public onlyOwner { frenslistMintEnabled = _state; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function _operatorFilteringEnabled() internal view override returns (bool) { return operatorFilteringEnabled; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "Token doesn't exist!"); return bytes(baseURI).length > 0 ? string(abi.encodePacked("ipfs://", baseURI, "/", tokenId.toString(), ".json")) : ""; } modifier nonContract() { require(tx.origin == msg.sender, "Contracts not allowed to mint!"); _; } modifier mintCompliance(uint256 _mintAmount) { require(balanceOf(msg.sender) <= 5, "You have already minted 5!"); require(_mintAmount <= 5, "Max mint per transaction is 5!"); require(_mintAmount <= 5 - (balanceOf(msg.sender)), "You cannot mint this many tokens."); require(totalSupply() + _mintAmount <= maxSupply, "Max Supply Exceeded!"); _; } function mintForAddress(uint256 _mintAmount, address _to) external onlyOwner { require(totalSupply() + _mintAmount <= maxSupply, "Max Supply Exceeded!"); _mint(_to, _mintAmount); } function teamMint() external onlyOwner { require(!teamMintClaimed, "Team already claimed!"); _safeMint(owner(), teamMintLimit); teamMintClaimed = true; } function amIOnTheFrenslist(bytes32[] calldata proof) public view returns (bool) { return MerkleProof.verify(proof, merkleRoot, keccak256(abi.encodePacked(msg.sender))); } function frenslistMint(uint256 _mintAmount, bytes32[] calldata proof) public payable mintCompliance(_mintAmount) nonReentrant { require(frenslistMintEnabled, "Frenslist minting hasn't started!"); require(MerkleProof.verify(proof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "You're not on the frenslist!"); if(balanceOf(_msgSender()) > 1) { require(msg.value >= _mintAmount * frenslistMintCost, "Insufficient Funds1!"); } else { require(msg.value >= (_mintAmount - 2) * frenslistMintCost, "Insufficient Funds2!"); } _safeMint(_msgSender(), _mintAmount); } function publicMint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) nonReentrant { require(publicMintEnabled, "Public minting hasn't started!"); if(balanceOf(_msgSender()) >= 0) { require(msg.value >= _mintAmount * publicMintCost, "Insufficient Funds3!"); } _safeMint(_msgSender(), _mintAmount); } function withdraw() external onlyOwner { (bool hs,) = payable(owner()).call{ value: (address(this).balance)}(""); require(hs); } }
// 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 // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @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 == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /// @notice Optimized and flexible operator filterer to abide to OpenSea's /// mandatory on-chain royalty enforcement in order for new collections to /// receive royalties. /// For more information, see: /// See: https://github.com/ProjectOpenSea/operator-filter-registry abstract contract OperatorFilterer { /// @dev The default OpenSea operator blocklist subscription. address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; /// @dev The OpenSea operator filter registry. address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E; /// @dev Registers the current contract to OpenSea's operator filter, /// and subscribe to the default OpenSea operator blocklist. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering() internal virtual { _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true); } /// @dev Registers the current contract to OpenSea's operator filter. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe) internal virtual { /// @solidity memory-safe-assembly assembly { let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`. // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty. subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy)) for {} iszero(subscribe) {} { if iszero(subscriptionOrRegistrantToCopy) { functionSelector := 0x4420e486 // `register(address)`. break } functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`. break } // Store the function selector. mstore(0x00, shl(224, functionSelector)) // Store the `address(this)`. mstore(0x04, address()) // Store the `subscriptionOrRegistrantToCopy`. mstore(0x24, subscriptionOrRegistrantToCopy) // Register into the registry. if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) { // If the function selector has not been overwritten, // it is an out-of-gas error. if eq(shr(224, mload(0x00)), functionSelector) { // To prevent gas under-estimation. revert(0, 0) } } // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, because of Solidity's memory size limits. mstore(0x24, 0) } } /// @dev Modifier to guard a function and revert if the caller is a blocked operator. modifier onlyAllowedOperator(address from) virtual { if (from != msg.sender) { if (!_isPriorityOperator(msg.sender)) { if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender); } } _; } /// @dev Modifier to guard a function from approving a blocked operator.. modifier onlyAllowedOperatorApproval(address operator) virtual { if (!_isPriorityOperator(operator)) { if (_operatorFilteringEnabled()) _revertIfBlocked(operator); } _; } /// @dev Helper function that reverts if the `operator` is blocked by the registry. function _revertIfBlocked(address operator) private view { /// @solidity memory-safe-assembly assembly { // Store the function selector of `isOperatorAllowed(address,address)`, // shifted left by 6 bytes, which is enough for 8tb of memory. // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL). mstore(0x00, 0xc6171134001122334455) // Store the `address(this)`. mstore(0x1a, address()) // Store the `operator`. mstore(0x3a, operator) // `isOperatorAllowed` always returns true if it does not revert. if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) { // Bubble up the revert if the staticcall reverts. returndatacopy(0x00, 0x00, returndatasize()) revert(0x00, returndatasize()) } // We'll skip checking if `from` is inside the blacklist. // Even though that can block transferring out of wrapper contracts, // we don't want tokens to be stuck. // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, if less than 8tb of memory is used. mstore(0x3a, 0) } } /// @dev For deriving contracts to override, so that operator filtering /// can be turned on / off. /// Returns true by default. function _operatorFilteringEnabled() internal view virtual returns (bool) { return true; } /// @dev For deriving contracts to override, so that preferred marketplaces can /// skip operator filtering, helping users save gas. /// Returns false for all inputs by default. function _isPriorityOperator(address) internal view virtual returns (bool) { return false; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"amIOnTheFrenslist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"frenslistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"frenslistMintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frenslistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxFreeFrenslistMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFrenslistMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFrenslistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setfrenslistMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setpublicMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff02191690831515021790555061042d600b556032600c556618de76816d8000600d556618de76816d8000600e556002600f55600560105560056011553480156200009257600080fd5b5060405162004835380380620048358339818101604052810190620000b8919062000688565b6040518060400160405280600881526020017f534f5320504550450000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f534f53500000000000000000000000000000000000000000000000000000000081525081600290805190602001906200013c9291906200043b565b508060039080519060200190620001559291906200043b565b5062000166620001d960201b60201c565b60008190555050506200018e62000182620001e260201b60201c565b620001ea60201b60201c565b6001600981905550620001a6620002b060201b60201c565b6001600a60036101000a81548160ff021916908315150217905550620001d281620002d960201b60201c565b50620007c1565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002d7733cc6cdda760b79bafa08df41ecfa224f810dceb660016200030560201b60201c565b565b620002e96200038060201b60201c565b8060139080519060200190620003019291906200043b565b5050565b637d3e3dbe8260601b60601c9250816200033457826200032c57634420e486905062000334565b63a0af290390505b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af162000376578060005160e01c14156200037557600080fd5b5b6000602452505050565b62000390620001e260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003b66200041160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200040f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000406906200073a565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000449906200078b565b90600052602060002090601f0160209004810192826200046d5760008555620004b9565b82601f106200048857805160ff1916838001178555620004b9565b82800160010185558215620004b9579182015b82811115620004b85782518255916020019190600101906200049b565b5b509050620004c89190620004cc565b5090565b5b80821115620004e7576000816000905550600101620004cd565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005548262000509565b810181811067ffffffffffffffff821117156200057657620005756200051a565b5b80604052505050565b60006200058b620004eb565b905062000599828262000549565b919050565b600067ffffffffffffffff821115620005bc57620005bb6200051a565b5b620005c78262000509565b9050602081019050919050565b60005b83811015620005f4578082015181840152602081019050620005d7565b8381111562000604576000848401525b50505050565b6000620006216200061b846200059e565b6200057f565b90508281526020810184848401111562000640576200063f62000504565b5b6200064d848285620005d4565b509392505050565b600082601f8301126200066d576200066c620004ff565b5b81516200067f8482602086016200060a565b91505092915050565b600060208284031215620006a157620006a0620004f5565b5b600082015167ffffffffffffffff811115620006c257620006c1620004fa565b5b620006d08482850162000655565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000722602083620006d9565b91506200072f82620006ea565b602082019050919050565b60006020820190508181036000830152620007558162000713565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007a457607f821691505b60208210811415620007bb57620007ba6200075c565b5b50919050565b61406480620007d16000396000f3fe6080604052600436106102675760003560e01c80637b7ea1eb11610144578063b7c0b8e8116100b6578063e6b27bb01161007a578063e6b27bb014610894578063e985e9c5146108bf578063efbd73f4146108fc578063f1063f8e14610925578063f2fde38b1461094e578063fb796e6c1461097757610267565b8063b7c0b8e8146107d0578063b88d4fde146107f9578063ba7a86b814610815578063c87b56dd1461082c578063d5abeb011461086957610267565b806395d89b411161010857806395d89b41146106d2578063a22cb465146106fd578063a552dbb114610726578063a931d71614610751578063ad58a7381461077c578063afbaab4a146107a757610267565b80637b7ea1eb146105ff5780637cb647591461062a578063818668d7146106535780638c7700671461067c5780638da5cb5b146106a757610267565b806338e1f1f1116101dd5780635957f032116101a15780635957f032146104dd5780636352211e1461051a5780636c0360eb146105575780636f8b44b01461058257806370a08231146105ab578063715018a6146105e857610267565b806338e1f1f11461042b5780633ccfd60b1461045657806342842e0e1461046d5780634dbc99a61461048957806355f804b3146104b457610267565b806318160ddd1161022f57806318160ddd1461035857806320858cc91461038357806323b872dd1461039f5780632db11544146103bb5780632eb4a7ab146103d757806331a912771461040257610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630f4161aa1461032d575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190612b80565b6109a2565b6040516102a09190612bc8565b60405180910390f35b3480156102b557600080fd5b506102be610a34565b6040516102cb9190612c7c565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190612cd4565b610ac6565b6040516103089190612d42565b60405180910390f35b61032b60048036038101906103269190612d89565b610b45565b005b34801561033957600080fd5b50610342610b7a565b60405161034f9190612bc8565b60405180910390f35b34801561036457600080fd5b5061036d610b8d565b60405161037a9190612dd8565b60405180910390f35b61039d60048036038101906103989190612e58565b610ba4565b005b6103b960048036038101906103b49190612eb8565b610ed6565b005b6103d560048036038101906103d09190612cd4565b610f41565b005b3480156103e357600080fd5b506103ec61115c565b6040516103f99190612f24565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612f6b565b611162565b005b34801561043757600080fd5b50610440611187565b60405161044d9190612bc8565b60405180910390f35b34801561046257600080fd5b5061046b61119a565b005b61048760048036038101906104829190612eb8565b611222565b005b34801561049557600080fd5b5061049e61128d565b6040516104ab9190612dd8565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d691906130c8565b611293565b005b3480156104e957600080fd5b5061050460048036038101906104ff9190613111565b6112b5565b6040516105119190612bc8565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190612cd4565b611333565b60405161054e9190612d42565b60405180910390f35b34801561056357600080fd5b5061056c611345565b6040516105799190612c7c565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190612cd4565b6113d3565b005b3480156105b757600080fd5b506105d260048036038101906105cd919061315e565b6113e5565b6040516105df9190612dd8565b60405180910390f35b3480156105f457600080fd5b506105fd61149e565b005b34801561060b57600080fd5b506106146114b2565b6040516106219190612bc8565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c91906131b7565b6114c5565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612f6b565b6114d7565b005b34801561068857600080fd5b506106916114fc565b60405161069e9190612dd8565b60405180910390f35b3480156106b357600080fd5b506106bc611502565b6040516106c99190612d42565b60405180910390f35b3480156106de57600080fd5b506106e761152c565b6040516106f49190612c7c565b60405180910390f35b34801561070957600080fd5b50610724600480360381019061071f91906131e4565b6115be565b005b34801561073257600080fd5b5061073b6115f3565b6040516107489190612dd8565b60405180910390f35b34801561075d57600080fd5b506107666115f9565b6040516107739190612dd8565b60405180910390f35b34801561078857600080fd5b506107916115ff565b60405161079e9190612dd8565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c99190612cd4565b611605565b005b3480156107dc57600080fd5b506107f760048036038101906107f29190612f6b565b611617565b005b610813600480360381019061080e91906132c5565b61163c565b005b34801561082157600080fd5b5061082a6116a9565b005b34801561083857600080fd5b50610853600480360381019061084e9190612cd4565b611731565b6040516108609190612c7c565b60405180910390f35b34801561087557600080fd5b5061087e6117d9565b60405161088b9190612dd8565b60405180910390f35b3480156108a057600080fd5b506108a96117df565b6040516108b69190612dd8565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e19190613348565b6117e5565b6040516108f39190612bc8565b60405180910390f35b34801561090857600080fd5b50610923600480360381019061091e9190613388565b611879565b005b34801561093157600080fd5b5061094c60048036038101906109479190612cd4565b6118e6565b005b34801561095a57600080fd5b506109756004803603810190610970919061315e565b6118f8565b005b34801561098357600080fd5b5061098c61197c565b6040516109999190612bc8565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a2d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a43906133f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6f906133f7565b8015610abc5780601f10610a9157610100808354040283529160200191610abc565b820191906000526020600020905b815481529060010190602001808311610a9f57829003601f168201915b5050505050905090565b6000610ad18261198f565b610b07576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b4f816119ee565b610b6b57610b5b6119f5565b15610b6a57610b6981611a0c565b5b5b610b758383611a50565b505050565b600a60019054906101000a900460ff1681565b6000610b97611b94565b6001546000540303905090565b826005610bb0336113e5565b1115610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be890613475565b60405180910390fd5b6005811115610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c906134e1565b60405180910390fd5b610c3e336113e5565b6005610c4a9190613530565b811115610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c83906135d6565b60405180910390fd5b600b5481610c98610b8d565b610ca291906135f6565b1115610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90613698565b60405180910390fd5b610ceb611b9d565b600a60009054906101000a900460ff16610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d319061372a565b60405180910390fd5b610dae838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060125433604051602001610d939190613792565b60405160208183030381529060405280519060200120611bed565b610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de4906137f9565b60405180910390fd5b6001610dff610dfa611c04565b6113e5565b1115610e5a57600d5484610e139190613819565b341015610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c906138bf565b60405180910390fd5b610eb7565b600d54600285610e6a9190613530565b610e749190613819565b341015610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead9061392b565b60405180910390fd5b5b610ec8610ec2611c04565b85611c0c565b610ed0611c2a565b50505050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f3057610f13336119ee565b610f2f57610f1f6119f5565b15610f2e57610f2d33611a0c565b5b5b5b610f3b848484611c34565b50505050565b806005610f4d336113e5565b1115610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8590613475565b60405180910390fd5b6005811115610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc9906134e1565b60405180910390fd5b610fdb336113e5565b6005610fe79190613530565b811115611029576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611020906135d6565b60405180910390fd5b600b5481611035610b8d565b61103f91906135f6565b1115611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107790613698565b60405180910390fd5b611088611b9d565b600a60019054906101000a900460ff166110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90613997565b60405180910390fd5b60006110e96110e4611c04565b6113e5565b1061113f57600e54826110fc9190613819565b34101561113e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113590613a03565b60405180910390fd5b5b61115061114a611c04565b83611c0c565b611158611c2a565b5050565b60125481565b61116a611f59565b80600a60006101000a81548160ff02191690831515021790555050565b600a60009054906101000a900460ff1681565b6111a2611f59565b60006111ac611502565b73ffffffffffffffffffffffffffffffffffffffff16476040516111cf90613a54565b60006040518083038185875af1925050503d806000811461120c576040519150601f19603f3d011682016040523d82523d6000602084013e611211565b606091505b505090508061121f57600080fd5b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461127c5761125f336119ee565b61127b5761126b6119f5565b1561127a5761127933611a0c565b5b5b5b611287848484611fd7565b50505050565b600c5481565b61129b611f59565b80601390805190602001906112b1929190612a71565b5050565b600061132b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601254336040516020016113109190613792565b60405160208183030381529060405280519060200120611bed565b905092915050565b600061133e82611ff7565b9050919050565b60138054611352906133f7565b80601f016020809104026020016040519081016040528092919081815260200182805461137e906133f7565b80156113cb5780601f106113a0576101008083540402835291602001916113cb565b820191906000526020600020905b8154815290600101906020018083116113ae57829003601f168201915b505050505081565b6113db611f59565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561144d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114a6611f59565b6114b060006120c5565b565b600a60029054906101000a900460ff1681565b6114cd611f59565b8060128190555050565b6114df611f59565b80600a60016101000a81548160ff02191690831515021790555050565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461153b906133f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611567906133f7565b80156115b45780601f10611589576101008083540402835291602001916115b4565b820191906000526020600020905b81548152906001019060200180831161159757829003601f168201915b5050505050905090565b816115c8816119ee565b6115e4576115d46119f5565b156115e3576115e281611a0c565b5b5b6115ee838361218b565b505050565b600f5481565b60105481565b600d5481565b61160d611f59565b80600e8190555050565b61161f611f59565b80600a60036101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461169657611679336119ee565b611695576116856119f5565b156116945761169333611a0c565b5b5b5b6116a285858585612296565b5050505050565b6116b1611f59565b600a60029054906101000a900460ff1615611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f890613ab5565b60405180910390fd5b61171461170c611502565b600c54611c0c565b6001600a60026101000a81548160ff021916908315150217905550565b606061173c8261198f565b61177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290613b21565b60405180910390fd5b60006013805461178a906133f7565b9050116117a657604051806020016040528060008152506117d2565b60136117b183612309565b6040516020016117c2929190613cf5565b6040516020818303038152906040525b9050919050565b600b5481565b60115481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611881611f59565b600b548261188d610b8d565b61189791906135f6565b11156118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90613698565b60405180910390fd5b6118e281836123e1565b5050565b6118ee611f59565b80600d8190555050565b611900611f59565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196790613dac565b60405180910390fd5b611979816120c5565b50565b600a60039054906101000a900460ff1681565b60008161199a611b94565b111580156119a9575060005482105b80156119e7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000919050565b6000600a60039054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611a48573d6000803e3d6000fd5b6000603a5250565b6000611a5b82611333565b90508073ffffffffffffffffffffffffffffffffffffffff16611a7c61259e565b73ffffffffffffffffffffffffffffffffffffffff1614611adf57611aa881611aa361259e565b6117e5565b611ade576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60026009541415611be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bda90613e18565b60405180910390fd5b6002600981905550565b600082611bfa85846125a6565b1490509392505050565b600033905090565b611c268282604051806020016040528060008152506125fc565b5050565b6001600981905550565b6000611c3f82611ff7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ca6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611cb284612699565b91509150611cc88187611cc361259e565b6126c0565b611d1457611cdd86611cd861259e565b6117e5565b611d13576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611d7b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d888686866001612704565b8015611d9357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611e6185611e3d88888761270a565b7c020000000000000000000000000000000000000000000000000000000017612732565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611ee9576000600185019050600060046000838152602001908152602001600020541415611ee7576000548114611ee6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f51868686600161275d565b505050505050565b611f61611c04565b73ffffffffffffffffffffffffffffffffffffffff16611f7f611502565b73ffffffffffffffffffffffffffffffffffffffff1614611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc90613e84565b60405180910390fd5b565b611ff28383836040518060200160405280600081525061163c565b505050565b60008082905080612006611b94565b1161208e5760005481101561208d5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561208b575b6000811415612081576004600083600190039350838152602001908152602001600020549050612056565b80925050506120c0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806007600061219861259e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661224561259e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161228a9190612bc8565b60405180910390a35050565b6122a1848484610ed6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612303576122cc84848484612763565b612302576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060006001612318846128c3565b01905060008167ffffffffffffffff81111561233757612336612f9d565b5b6040519080825280601f01601f1916602001820160405280156123695781602001600182028036833780820191505090505b509050600082602001820190505b6001156123d6578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816123c0576123bf613ea4565b5b04945060008514156123d1576123d6565b612377565b819350505050919050565b6000805490506000821415612422576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61242f6000848385612704565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124a683612497600086600061270a565b6124a085612a16565b17612732565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461254757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061250c565b506000821415612583576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612599600084838561275d565b505050565b600033905090565b60008082905060005b84518110156125f1576125dc828683815181106125cf576125ce613ed3565b5b6020026020010151612a26565b915080806125e990613f02565b9150506125af565b508091505092915050565b61260683836123e1565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461269457600080549050600083820390505b6126466000868380600101945086612763565b61267c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061263357816000541461269157600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612721868684612a51565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261278961259e565b8786866040518563ffffffff1660e01b81526004016127ab9493929190613fa0565b602060405180830381600087803b1580156127c557600080fd5b505af19250505080156127f657506040513d601f19601f820116820180604052508101906127f39190614001565b60015b612870573d8060008114612826576040519150601f19603f3d011682016040523d82523d6000602084013e61282b565b606091505b50600081511415612868576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612921577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161291757612916613ea4565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061295e576d04ee2d6d415b85acef8100000000838161295457612953613ea4565b5b0492506020810190505b662386f26fc10000831061298d57662386f26fc10000838161298357612982613ea4565b5b0492506010810190505b6305f5e10083106129b6576305f5e10083816129ac576129ab613ea4565b5b0492506008810190505b61271083106129db5761271083816129d1576129d0613ea4565b5b0492506004810190505b606483106129fe57606483816129f4576129f3613ea4565b5b0492506002810190505b600a8310612a0d576001810190505b80915050919050565b60006001821460e11b9050919050565b6000818310612a3e57612a398284612a5a565b612a49565b612a488383612a5a565b5b905092915050565b60009392505050565b600082600052816020526040600020905092915050565b828054612a7d906133f7565b90600052602060002090601f016020900481019282612a9f5760008555612ae6565b82601f10612ab857805160ff1916838001178555612ae6565b82800160010185558215612ae6579182015b82811115612ae5578251825591602001919060010190612aca565b5b509050612af39190612af7565b5090565b5b80821115612b10576000816000905550600101612af8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b5d81612b28565b8114612b6857600080fd5b50565b600081359050612b7a81612b54565b92915050565b600060208284031215612b9657612b95612b1e565b5b6000612ba484828501612b6b565b91505092915050565b60008115159050919050565b612bc281612bad565b82525050565b6000602082019050612bdd6000830184612bb9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c1d578082015181840152602081019050612c02565b83811115612c2c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c4e82612be3565b612c588185612bee565b9350612c68818560208601612bff565b612c7181612c32565b840191505092915050565b60006020820190508181036000830152612c968184612c43565b905092915050565b6000819050919050565b612cb181612c9e565b8114612cbc57600080fd5b50565b600081359050612cce81612ca8565b92915050565b600060208284031215612cea57612ce9612b1e565b5b6000612cf884828501612cbf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d2c82612d01565b9050919050565b612d3c81612d21565b82525050565b6000602082019050612d576000830184612d33565b92915050565b612d6681612d21565b8114612d7157600080fd5b50565b600081359050612d8381612d5d565b92915050565b60008060408385031215612da057612d9f612b1e565b5b6000612dae85828601612d74565b9250506020612dbf85828601612cbf565b9150509250929050565b612dd281612c9e565b82525050565b6000602082019050612ded6000830184612dc9565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612e1857612e17612df3565b5b8235905067ffffffffffffffff811115612e3557612e34612df8565b5b602083019150836020820283011115612e5157612e50612dfd565b5b9250929050565b600080600060408486031215612e7157612e70612b1e565b5b6000612e7f86828701612cbf565b935050602084013567ffffffffffffffff811115612ea057612e9f612b23565b5b612eac86828701612e02565b92509250509250925092565b600080600060608486031215612ed157612ed0612b1e565b5b6000612edf86828701612d74565b9350506020612ef086828701612d74565b9250506040612f0186828701612cbf565b9150509250925092565b6000819050919050565b612f1e81612f0b565b82525050565b6000602082019050612f396000830184612f15565b92915050565b612f4881612bad565b8114612f5357600080fd5b50565b600081359050612f6581612f3f565b92915050565b600060208284031215612f8157612f80612b1e565b5b6000612f8f84828501612f56565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fd582612c32565b810181811067ffffffffffffffff82111715612ff457612ff3612f9d565b5b80604052505050565b6000613007612b14565b90506130138282612fcc565b919050565b600067ffffffffffffffff82111561303357613032612f9d565b5b61303c82612c32565b9050602081019050919050565b82818337600083830152505050565b600061306b61306684613018565b612ffd565b90508281526020810184848401111561308757613086612f98565b5b613092848285613049565b509392505050565b600082601f8301126130af576130ae612df3565b5b81356130bf848260208601613058565b91505092915050565b6000602082840312156130de576130dd612b1e565b5b600082013567ffffffffffffffff8111156130fc576130fb612b23565b5b6131088482850161309a565b91505092915050565b6000806020838503121561312857613127612b1e565b5b600083013567ffffffffffffffff81111561314657613145612b23565b5b61315285828601612e02565b92509250509250929050565b60006020828403121561317457613173612b1e565b5b600061318284828501612d74565b91505092915050565b61319481612f0b565b811461319f57600080fd5b50565b6000813590506131b18161318b565b92915050565b6000602082840312156131cd576131cc612b1e565b5b60006131db848285016131a2565b91505092915050565b600080604083850312156131fb576131fa612b1e565b5b600061320985828601612d74565b925050602061321a85828601612f56565b9150509250929050565b600067ffffffffffffffff82111561323f5761323e612f9d565b5b61324882612c32565b9050602081019050919050565b600061326861326384613224565b612ffd565b90508281526020810184848401111561328457613283612f98565b5b61328f848285613049565b509392505050565b600082601f8301126132ac576132ab612df3565b5b81356132bc848260208601613255565b91505092915050565b600080600080608085870312156132df576132de612b1e565b5b60006132ed87828801612d74565b94505060206132fe87828801612d74565b935050604061330f87828801612cbf565b925050606085013567ffffffffffffffff8111156133305761332f612b23565b5b61333c87828801613297565b91505092959194509250565b6000806040838503121561335f5761335e612b1e565b5b600061336d85828601612d74565b925050602061337e85828601612d74565b9150509250929050565b6000806040838503121561339f5761339e612b1e565b5b60006133ad85828601612cbf565b92505060206133be85828601612d74565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061340f57607f821691505b60208210811415613423576134226133c8565b5b50919050565b7f596f75206861766520616c7265616479206d696e746564203521000000000000600082015250565b600061345f601a83612bee565b915061346a82613429565b602082019050919050565b6000602082019050818103600083015261348e81613452565b9050919050565b7f4d6178206d696e7420706572207472616e73616374696f6e2069732035210000600082015250565b60006134cb601e83612bee565b91506134d682613495565b602082019050919050565b600060208201905081810360008301526134fa816134be565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061353b82612c9e565b915061354683612c9e565b92508282101561355957613558613501565b5b828203905092915050565b7f596f752063616e6e6f74206d696e742074686973206d616e7920746f6b656e7360008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006135c0602183612bee565b91506135cb82613564565b604082019050919050565b600060208201905081810360008301526135ef816135b3565b9050919050565b600061360182612c9e565b915061360c83612c9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561364157613640613501565b5b828201905092915050565b7f4d617820537570706c7920457863656564656421000000000000000000000000600082015250565b6000613682601483612bee565b915061368d8261364c565b602082019050919050565b600060208201905081810360008301526136b181613675565b9050919050565b7f4672656e736c697374206d696e74696e67206861736e2774207374617274656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000613714602183612bee565b915061371f826136b8565b604082019050919050565b6000602082019050818103600083015261374381613707565b9050919050565b60008160601b9050919050565b60006137628261374a565b9050919050565b600061377482613757565b9050919050565b61378c61378782612d21565b613769565b82525050565b600061379e828461377b565b60148201915081905092915050565b7f596f75277265206e6f74206f6e20746865206672656e736c6973742100000000600082015250565b60006137e3601c83612bee565b91506137ee826137ad565b602082019050919050565b60006020820190508181036000830152613812816137d6565b9050919050565b600061382482612c9e565b915061382f83612c9e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561386857613867613501565b5b828202905092915050565b7f496e73756666696369656e742046756e64733121000000000000000000000000600082015250565b60006138a9601483612bee565b91506138b482613873565b602082019050919050565b600060208201905081810360008301526138d88161389c565b9050919050565b7f496e73756666696369656e742046756e64733221000000000000000000000000600082015250565b6000613915601483612bee565b9150613920826138df565b602082019050919050565b6000602082019050818103600083015261394481613908565b9050919050565b7f5075626c6963206d696e74696e67206861736e27742073746172746564210000600082015250565b6000613981601e83612bee565b915061398c8261394b565b602082019050919050565b600060208201905081810360008301526139b081613974565b9050919050565b7f496e73756666696369656e742046756e64733321000000000000000000000000600082015250565b60006139ed601483612bee565b91506139f8826139b7565b602082019050919050565b60006020820190508181036000830152613a1c816139e0565b9050919050565b600081905092915050565b50565b6000613a3e600083613a23565b9150613a4982613a2e565b600082019050919050565b6000613a5f82613a31565b9150819050919050565b7f5465616d20616c726561647920636c61696d6564210000000000000000000000600082015250565b6000613a9f601583612bee565b9150613aaa82613a69565b602082019050919050565b60006020820190508181036000830152613ace81613a92565b9050919050565b7f546f6b656e20646f65736e277420657869737421000000000000000000000000600082015250565b6000613b0b601483612bee565b9150613b1682613ad5565b602082019050919050565b60006020820190508181036000830152613b3a81613afe565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b6000613b82600783613b41565b9150613b8d82613b4c565b600782019050919050565b60008190508160005260206000209050919050565b60008154613bba816133f7565b613bc48186613b41565b94506001821660008114613bdf5760018114613bf057613c23565b60ff19831686528186019350613c23565b613bf985613b98565b60005b83811015613c1b57815481890152600182019150602081019050613bfc565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613c62600183613b41565b9150613c6d82613c2c565b600182019050919050565b6000613c8382612be3565b613c8d8185613b41565b9350613c9d818560208601612bff565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613cdf600583613b41565b9150613cea82613ca9565b600582019050919050565b6000613d0082613b75565b9150613d0c8285613bad565b9150613d1782613c55565b9150613d238284613c78565b9150613d2e82613cd2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d96602683612bee565b9150613da182613d3a565b604082019050919050565b60006020820190508181036000830152613dc581613d89565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613e02601f83612bee565b9150613e0d82613dcc565b602082019050919050565b60006020820190508181036000830152613e3181613df5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e6e602083612bee565b9150613e7982613e38565b602082019050919050565b60006020820190508181036000830152613e9d81613e61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613f0d82612c9e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f4057613f3f613501565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000613f7282613f4b565b613f7c8185613f56565b9350613f8c818560208601612bff565b613f9581612c32565b840191505092915050565b6000608082019050613fb56000830187612d33565b613fc26020830186612d33565b613fcf6040830185612dc9565b8181036060830152613fe18184613f67565b905095945050505050565b600081519050613ffb81612b54565b92915050565b60006020828403121561401757614016612b1e565b5b600061402584828501613fec565b9150509291505056fea2646970667358221220153162ac510c47177eaff5aae2c0640d4f912a681e0a3f9939a6a34b0baab38b64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102675760003560e01c80637b7ea1eb11610144578063b7c0b8e8116100b6578063e6b27bb01161007a578063e6b27bb014610894578063e985e9c5146108bf578063efbd73f4146108fc578063f1063f8e14610925578063f2fde38b1461094e578063fb796e6c1461097757610267565b8063b7c0b8e8146107d0578063b88d4fde146107f9578063ba7a86b814610815578063c87b56dd1461082c578063d5abeb011461086957610267565b806395d89b411161010857806395d89b41146106d2578063a22cb465146106fd578063a552dbb114610726578063a931d71614610751578063ad58a7381461077c578063afbaab4a146107a757610267565b80637b7ea1eb146105ff5780637cb647591461062a578063818668d7146106535780638c7700671461067c5780638da5cb5b146106a757610267565b806338e1f1f1116101dd5780635957f032116101a15780635957f032146104dd5780636352211e1461051a5780636c0360eb146105575780636f8b44b01461058257806370a08231146105ab578063715018a6146105e857610267565b806338e1f1f11461042b5780633ccfd60b1461045657806342842e0e1461046d5780634dbc99a61461048957806355f804b3146104b457610267565b806318160ddd1161022f57806318160ddd1461035857806320858cc91461038357806323b872dd1461039f5780632db11544146103bb5780632eb4a7ab146103d757806331a912771461040257610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630f4161aa1461032d575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190612b80565b6109a2565b6040516102a09190612bc8565b60405180910390f35b3480156102b557600080fd5b506102be610a34565b6040516102cb9190612c7c565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190612cd4565b610ac6565b6040516103089190612d42565b60405180910390f35b61032b60048036038101906103269190612d89565b610b45565b005b34801561033957600080fd5b50610342610b7a565b60405161034f9190612bc8565b60405180910390f35b34801561036457600080fd5b5061036d610b8d565b60405161037a9190612dd8565b60405180910390f35b61039d60048036038101906103989190612e58565b610ba4565b005b6103b960048036038101906103b49190612eb8565b610ed6565b005b6103d560048036038101906103d09190612cd4565b610f41565b005b3480156103e357600080fd5b506103ec61115c565b6040516103f99190612f24565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612f6b565b611162565b005b34801561043757600080fd5b50610440611187565b60405161044d9190612bc8565b60405180910390f35b34801561046257600080fd5b5061046b61119a565b005b61048760048036038101906104829190612eb8565b611222565b005b34801561049557600080fd5b5061049e61128d565b6040516104ab9190612dd8565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d691906130c8565b611293565b005b3480156104e957600080fd5b5061050460048036038101906104ff9190613111565b6112b5565b6040516105119190612bc8565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190612cd4565b611333565b60405161054e9190612d42565b60405180910390f35b34801561056357600080fd5b5061056c611345565b6040516105799190612c7c565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190612cd4565b6113d3565b005b3480156105b757600080fd5b506105d260048036038101906105cd919061315e565b6113e5565b6040516105df9190612dd8565b60405180910390f35b3480156105f457600080fd5b506105fd61149e565b005b34801561060b57600080fd5b506106146114b2565b6040516106219190612bc8565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c91906131b7565b6114c5565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612f6b565b6114d7565b005b34801561068857600080fd5b506106916114fc565b60405161069e9190612dd8565b60405180910390f35b3480156106b357600080fd5b506106bc611502565b6040516106c99190612d42565b60405180910390f35b3480156106de57600080fd5b506106e761152c565b6040516106f49190612c7c565b60405180910390f35b34801561070957600080fd5b50610724600480360381019061071f91906131e4565b6115be565b005b34801561073257600080fd5b5061073b6115f3565b6040516107489190612dd8565b60405180910390f35b34801561075d57600080fd5b506107666115f9565b6040516107739190612dd8565b60405180910390f35b34801561078857600080fd5b506107916115ff565b60405161079e9190612dd8565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c99190612cd4565b611605565b005b3480156107dc57600080fd5b506107f760048036038101906107f29190612f6b565b611617565b005b610813600480360381019061080e91906132c5565b61163c565b005b34801561082157600080fd5b5061082a6116a9565b005b34801561083857600080fd5b50610853600480360381019061084e9190612cd4565b611731565b6040516108609190612c7c565b60405180910390f35b34801561087557600080fd5b5061087e6117d9565b60405161088b9190612dd8565b60405180910390f35b3480156108a057600080fd5b506108a96117df565b6040516108b69190612dd8565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e19190613348565b6117e5565b6040516108f39190612bc8565b60405180910390f35b34801561090857600080fd5b50610923600480360381019061091e9190613388565b611879565b005b34801561093157600080fd5b5061094c60048036038101906109479190612cd4565b6118e6565b005b34801561095a57600080fd5b506109756004803603810190610970919061315e565b6118f8565b005b34801561098357600080fd5b5061098c61197c565b6040516109999190612bc8565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a2d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a43906133f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6f906133f7565b8015610abc5780601f10610a9157610100808354040283529160200191610abc565b820191906000526020600020905b815481529060010190602001808311610a9f57829003601f168201915b5050505050905090565b6000610ad18261198f565b610b07576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b4f816119ee565b610b6b57610b5b6119f5565b15610b6a57610b6981611a0c565b5b5b610b758383611a50565b505050565b600a60019054906101000a900460ff1681565b6000610b97611b94565b6001546000540303905090565b826005610bb0336113e5565b1115610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be890613475565b60405180910390fd5b6005811115610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c906134e1565b60405180910390fd5b610c3e336113e5565b6005610c4a9190613530565b811115610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c83906135d6565b60405180910390fd5b600b5481610c98610b8d565b610ca291906135f6565b1115610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90613698565b60405180910390fd5b610ceb611b9d565b600a60009054906101000a900460ff16610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d319061372a565b60405180910390fd5b610dae838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060125433604051602001610d939190613792565b60405160208183030381529060405280519060200120611bed565b610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de4906137f9565b60405180910390fd5b6001610dff610dfa611c04565b6113e5565b1115610e5a57600d5484610e139190613819565b341015610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c906138bf565b60405180910390fd5b610eb7565b600d54600285610e6a9190613530565b610e749190613819565b341015610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead9061392b565b60405180910390fd5b5b610ec8610ec2611c04565b85611c0c565b610ed0611c2a565b50505050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f3057610f13336119ee565b610f2f57610f1f6119f5565b15610f2e57610f2d33611a0c565b5b5b5b610f3b848484611c34565b50505050565b806005610f4d336113e5565b1115610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8590613475565b60405180910390fd5b6005811115610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc9906134e1565b60405180910390fd5b610fdb336113e5565b6005610fe79190613530565b811115611029576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611020906135d6565b60405180910390fd5b600b5481611035610b8d565b61103f91906135f6565b1115611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107790613698565b60405180910390fd5b611088611b9d565b600a60019054906101000a900460ff166110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90613997565b60405180910390fd5b60006110e96110e4611c04565b6113e5565b1061113f57600e54826110fc9190613819565b34101561113e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113590613a03565b60405180910390fd5b5b61115061114a611c04565b83611c0c565b611158611c2a565b5050565b60125481565b61116a611f59565b80600a60006101000a81548160ff02191690831515021790555050565b600a60009054906101000a900460ff1681565b6111a2611f59565b60006111ac611502565b73ffffffffffffffffffffffffffffffffffffffff16476040516111cf90613a54565b60006040518083038185875af1925050503d806000811461120c576040519150601f19603f3d011682016040523d82523d6000602084013e611211565b606091505b505090508061121f57600080fd5b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461127c5761125f336119ee565b61127b5761126b6119f5565b1561127a5761127933611a0c565b5b5b5b611287848484611fd7565b50505050565b600c5481565b61129b611f59565b80601390805190602001906112b1929190612a71565b5050565b600061132b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601254336040516020016113109190613792565b60405160208183030381529060405280519060200120611bed565b905092915050565b600061133e82611ff7565b9050919050565b60138054611352906133f7565b80601f016020809104026020016040519081016040528092919081815260200182805461137e906133f7565b80156113cb5780601f106113a0576101008083540402835291602001916113cb565b820191906000526020600020905b8154815290600101906020018083116113ae57829003601f168201915b505050505081565b6113db611f59565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561144d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114a6611f59565b6114b060006120c5565b565b600a60029054906101000a900460ff1681565b6114cd611f59565b8060128190555050565b6114df611f59565b80600a60016101000a81548160ff02191690831515021790555050565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461153b906133f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611567906133f7565b80156115b45780601f10611589576101008083540402835291602001916115b4565b820191906000526020600020905b81548152906001019060200180831161159757829003601f168201915b5050505050905090565b816115c8816119ee565b6115e4576115d46119f5565b156115e3576115e281611a0c565b5b5b6115ee838361218b565b505050565b600f5481565b60105481565b600d5481565b61160d611f59565b80600e8190555050565b61161f611f59565b80600a60036101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461169657611679336119ee565b611695576116856119f5565b156116945761169333611a0c565b5b5b5b6116a285858585612296565b5050505050565b6116b1611f59565b600a60029054906101000a900460ff1615611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f890613ab5565b60405180910390fd5b61171461170c611502565b600c54611c0c565b6001600a60026101000a81548160ff021916908315150217905550565b606061173c8261198f565b61177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290613b21565b60405180910390fd5b60006013805461178a906133f7565b9050116117a657604051806020016040528060008152506117d2565b60136117b183612309565b6040516020016117c2929190613cf5565b6040516020818303038152906040525b9050919050565b600b5481565b60115481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611881611f59565b600b548261188d610b8d565b61189791906135f6565b11156118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90613698565b60405180910390fd5b6118e281836123e1565b5050565b6118ee611f59565b80600d8190555050565b611900611f59565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196790613dac565b60405180910390fd5b611979816120c5565b50565b600a60039054906101000a900460ff1681565b60008161199a611b94565b111580156119a9575060005482105b80156119e7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000919050565b6000600a60039054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611a48573d6000803e3d6000fd5b6000603a5250565b6000611a5b82611333565b90508073ffffffffffffffffffffffffffffffffffffffff16611a7c61259e565b73ffffffffffffffffffffffffffffffffffffffff1614611adf57611aa881611aa361259e565b6117e5565b611ade576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60026009541415611be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bda90613e18565b60405180910390fd5b6002600981905550565b600082611bfa85846125a6565b1490509392505050565b600033905090565b611c268282604051806020016040528060008152506125fc565b5050565b6001600981905550565b6000611c3f82611ff7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ca6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611cb284612699565b91509150611cc88187611cc361259e565b6126c0565b611d1457611cdd86611cd861259e565b6117e5565b611d13576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611d7b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d888686866001612704565b8015611d9357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611e6185611e3d88888761270a565b7c020000000000000000000000000000000000000000000000000000000017612732565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611ee9576000600185019050600060046000838152602001908152602001600020541415611ee7576000548114611ee6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f51868686600161275d565b505050505050565b611f61611c04565b73ffffffffffffffffffffffffffffffffffffffff16611f7f611502565b73ffffffffffffffffffffffffffffffffffffffff1614611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc90613e84565b60405180910390fd5b565b611ff28383836040518060200160405280600081525061163c565b505050565b60008082905080612006611b94565b1161208e5760005481101561208d5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561208b575b6000811415612081576004600083600190039350838152602001908152602001600020549050612056565b80925050506120c0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806007600061219861259e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661224561259e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161228a9190612bc8565b60405180910390a35050565b6122a1848484610ed6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612303576122cc84848484612763565b612302576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060006001612318846128c3565b01905060008167ffffffffffffffff81111561233757612336612f9d565b5b6040519080825280601f01601f1916602001820160405280156123695781602001600182028036833780820191505090505b509050600082602001820190505b6001156123d6578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816123c0576123bf613ea4565b5b04945060008514156123d1576123d6565b612377565b819350505050919050565b6000805490506000821415612422576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61242f6000848385612704565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124a683612497600086600061270a565b6124a085612a16565b17612732565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461254757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061250c565b506000821415612583576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612599600084838561275d565b505050565b600033905090565b60008082905060005b84518110156125f1576125dc828683815181106125cf576125ce613ed3565b5b6020026020010151612a26565b915080806125e990613f02565b9150506125af565b508091505092915050565b61260683836123e1565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461269457600080549050600083820390505b6126466000868380600101945086612763565b61267c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061263357816000541461269157600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612721868684612a51565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261278961259e565b8786866040518563ffffffff1660e01b81526004016127ab9493929190613fa0565b602060405180830381600087803b1580156127c557600080fd5b505af19250505080156127f657506040513d601f19601f820116820180604052508101906127f39190614001565b60015b612870573d8060008114612826576040519150601f19603f3d011682016040523d82523d6000602084013e61282b565b606091505b50600081511415612868576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612921577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161291757612916613ea4565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061295e576d04ee2d6d415b85acef8100000000838161295457612953613ea4565b5b0492506020810190505b662386f26fc10000831061298d57662386f26fc10000838161298357612982613ea4565b5b0492506010810190505b6305f5e10083106129b6576305f5e10083816129ac576129ab613ea4565b5b0492506008810190505b61271083106129db5761271083816129d1576129d0613ea4565b5b0492506004810190505b606483106129fe57606483816129f4576129f3613ea4565b5b0492506002810190505b600a8310612a0d576001810190505b80915050919050565b60006001821460e11b9050919050565b6000818310612a3e57612a398284612a5a565b612a49565b612a488383612a5a565b5b905092915050565b60009392505050565b600082600052816020526040600020905092915050565b828054612a7d906133f7565b90600052602060002090601f016020900481019282612a9f5760008555612ae6565b82601f10612ab857805160ff1916838001178555612ae6565b82800160010185558215612ae6579182015b82811115612ae5578251825591602001919060010190612aca565b5b509050612af39190612af7565b5090565b5b80821115612b10576000816000905550600101612af8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b5d81612b28565b8114612b6857600080fd5b50565b600081359050612b7a81612b54565b92915050565b600060208284031215612b9657612b95612b1e565b5b6000612ba484828501612b6b565b91505092915050565b60008115159050919050565b612bc281612bad565b82525050565b6000602082019050612bdd6000830184612bb9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c1d578082015181840152602081019050612c02565b83811115612c2c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c4e82612be3565b612c588185612bee565b9350612c68818560208601612bff565b612c7181612c32565b840191505092915050565b60006020820190508181036000830152612c968184612c43565b905092915050565b6000819050919050565b612cb181612c9e565b8114612cbc57600080fd5b50565b600081359050612cce81612ca8565b92915050565b600060208284031215612cea57612ce9612b1e565b5b6000612cf884828501612cbf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d2c82612d01565b9050919050565b612d3c81612d21565b82525050565b6000602082019050612d576000830184612d33565b92915050565b612d6681612d21565b8114612d7157600080fd5b50565b600081359050612d8381612d5d565b92915050565b60008060408385031215612da057612d9f612b1e565b5b6000612dae85828601612d74565b9250506020612dbf85828601612cbf565b9150509250929050565b612dd281612c9e565b82525050565b6000602082019050612ded6000830184612dc9565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612e1857612e17612df3565b5b8235905067ffffffffffffffff811115612e3557612e34612df8565b5b602083019150836020820283011115612e5157612e50612dfd565b5b9250929050565b600080600060408486031215612e7157612e70612b1e565b5b6000612e7f86828701612cbf565b935050602084013567ffffffffffffffff811115612ea057612e9f612b23565b5b612eac86828701612e02565b92509250509250925092565b600080600060608486031215612ed157612ed0612b1e565b5b6000612edf86828701612d74565b9350506020612ef086828701612d74565b9250506040612f0186828701612cbf565b9150509250925092565b6000819050919050565b612f1e81612f0b565b82525050565b6000602082019050612f396000830184612f15565b92915050565b612f4881612bad565b8114612f5357600080fd5b50565b600081359050612f6581612f3f565b92915050565b600060208284031215612f8157612f80612b1e565b5b6000612f8f84828501612f56565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fd582612c32565b810181811067ffffffffffffffff82111715612ff457612ff3612f9d565b5b80604052505050565b6000613007612b14565b90506130138282612fcc565b919050565b600067ffffffffffffffff82111561303357613032612f9d565b5b61303c82612c32565b9050602081019050919050565b82818337600083830152505050565b600061306b61306684613018565b612ffd565b90508281526020810184848401111561308757613086612f98565b5b613092848285613049565b509392505050565b600082601f8301126130af576130ae612df3565b5b81356130bf848260208601613058565b91505092915050565b6000602082840312156130de576130dd612b1e565b5b600082013567ffffffffffffffff8111156130fc576130fb612b23565b5b6131088482850161309a565b91505092915050565b6000806020838503121561312857613127612b1e565b5b600083013567ffffffffffffffff81111561314657613145612b23565b5b61315285828601612e02565b92509250509250929050565b60006020828403121561317457613173612b1e565b5b600061318284828501612d74565b91505092915050565b61319481612f0b565b811461319f57600080fd5b50565b6000813590506131b18161318b565b92915050565b6000602082840312156131cd576131cc612b1e565b5b60006131db848285016131a2565b91505092915050565b600080604083850312156131fb576131fa612b1e565b5b600061320985828601612d74565b925050602061321a85828601612f56565b9150509250929050565b600067ffffffffffffffff82111561323f5761323e612f9d565b5b61324882612c32565b9050602081019050919050565b600061326861326384613224565b612ffd565b90508281526020810184848401111561328457613283612f98565b5b61328f848285613049565b509392505050565b600082601f8301126132ac576132ab612df3565b5b81356132bc848260208601613255565b91505092915050565b600080600080608085870312156132df576132de612b1e565b5b60006132ed87828801612d74565b94505060206132fe87828801612d74565b935050604061330f87828801612cbf565b925050606085013567ffffffffffffffff8111156133305761332f612b23565b5b61333c87828801613297565b91505092959194509250565b6000806040838503121561335f5761335e612b1e565b5b600061336d85828601612d74565b925050602061337e85828601612d74565b9150509250929050565b6000806040838503121561339f5761339e612b1e565b5b60006133ad85828601612cbf565b92505060206133be85828601612d74565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061340f57607f821691505b60208210811415613423576134226133c8565b5b50919050565b7f596f75206861766520616c7265616479206d696e746564203521000000000000600082015250565b600061345f601a83612bee565b915061346a82613429565b602082019050919050565b6000602082019050818103600083015261348e81613452565b9050919050565b7f4d6178206d696e7420706572207472616e73616374696f6e2069732035210000600082015250565b60006134cb601e83612bee565b91506134d682613495565b602082019050919050565b600060208201905081810360008301526134fa816134be565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061353b82612c9e565b915061354683612c9e565b92508282101561355957613558613501565b5b828203905092915050565b7f596f752063616e6e6f74206d696e742074686973206d616e7920746f6b656e7360008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006135c0602183612bee565b91506135cb82613564565b604082019050919050565b600060208201905081810360008301526135ef816135b3565b9050919050565b600061360182612c9e565b915061360c83612c9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561364157613640613501565b5b828201905092915050565b7f4d617820537570706c7920457863656564656421000000000000000000000000600082015250565b6000613682601483612bee565b915061368d8261364c565b602082019050919050565b600060208201905081810360008301526136b181613675565b9050919050565b7f4672656e736c697374206d696e74696e67206861736e2774207374617274656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000613714602183612bee565b915061371f826136b8565b604082019050919050565b6000602082019050818103600083015261374381613707565b9050919050565b60008160601b9050919050565b60006137628261374a565b9050919050565b600061377482613757565b9050919050565b61378c61378782612d21565b613769565b82525050565b600061379e828461377b565b60148201915081905092915050565b7f596f75277265206e6f74206f6e20746865206672656e736c6973742100000000600082015250565b60006137e3601c83612bee565b91506137ee826137ad565b602082019050919050565b60006020820190508181036000830152613812816137d6565b9050919050565b600061382482612c9e565b915061382f83612c9e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561386857613867613501565b5b828202905092915050565b7f496e73756666696369656e742046756e64733121000000000000000000000000600082015250565b60006138a9601483612bee565b91506138b482613873565b602082019050919050565b600060208201905081810360008301526138d88161389c565b9050919050565b7f496e73756666696369656e742046756e64733221000000000000000000000000600082015250565b6000613915601483612bee565b9150613920826138df565b602082019050919050565b6000602082019050818103600083015261394481613908565b9050919050565b7f5075626c6963206d696e74696e67206861736e27742073746172746564210000600082015250565b6000613981601e83612bee565b915061398c8261394b565b602082019050919050565b600060208201905081810360008301526139b081613974565b9050919050565b7f496e73756666696369656e742046756e64733321000000000000000000000000600082015250565b60006139ed601483612bee565b91506139f8826139b7565b602082019050919050565b60006020820190508181036000830152613a1c816139e0565b9050919050565b600081905092915050565b50565b6000613a3e600083613a23565b9150613a4982613a2e565b600082019050919050565b6000613a5f82613a31565b9150819050919050565b7f5465616d20616c726561647920636c61696d6564210000000000000000000000600082015250565b6000613a9f601583612bee565b9150613aaa82613a69565b602082019050919050565b60006020820190508181036000830152613ace81613a92565b9050919050565b7f546f6b656e20646f65736e277420657869737421000000000000000000000000600082015250565b6000613b0b601483612bee565b9150613b1682613ad5565b602082019050919050565b60006020820190508181036000830152613b3a81613afe565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b6000613b82600783613b41565b9150613b8d82613b4c565b600782019050919050565b60008190508160005260206000209050919050565b60008154613bba816133f7565b613bc48186613b41565b94506001821660008114613bdf5760018114613bf057613c23565b60ff19831686528186019350613c23565b613bf985613b98565b60005b83811015613c1b57815481890152600182019150602081019050613bfc565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613c62600183613b41565b9150613c6d82613c2c565b600182019050919050565b6000613c8382612be3565b613c8d8185613b41565b9350613c9d818560208601612bff565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613cdf600583613b41565b9150613cea82613ca9565b600582019050919050565b6000613d0082613b75565b9150613d0c8285613bad565b9150613d1782613c55565b9150613d238284613c78565b9150613d2e82613cd2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d96602683612bee565b9150613da182613d3a565b604082019050919050565b60006020820190508181036000830152613dc581613d89565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613e02601f83612bee565b9150613e0d82613dcc565b602082019050919050565b60006020820190508181036000830152613e3181613df5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e6e602083612bee565b9150613e7982613e38565b602082019050919050565b60006020820190508181036000830152613e9d81613e61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613f0d82612c9e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f4057613f3f613501565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000613f7282613f4b565b613f7c8185613f56565b9350613f8c818560208601612bff565b613f9581612c32565b840191505092915050565b6000608082019050613fb56000830187612d33565b613fc26020830186612d33565b613fcf6040830185612dc9565b8181036060830152613fe18184613f67565b905095945050505050565b600081519050613ffb81612b54565b92915050565b60006020828403121561401757614016612b1e565b5b600061402584828501613fec565b9150509291505056fea2646970667358221220153162ac510c47177eaff5aae2c0640d4f912a681e0a3f9939a6a34b0baab38b64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
222:5723:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9048:630:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9932:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16253:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1280:185:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;378:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5787:317:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4767:642:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1471:199;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5415:362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;822:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2912:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;332:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5783:160;;;;;;;;;;;;;:::i;:::-;;1676:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;542:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2256:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4575:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11284:150:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;853:21:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2464:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6938:230:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:7;;;;;;;;;;;;;:::i;:::-;;421:35:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2368:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2803:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;633:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1194:85:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10101:102:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1078:196:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;682:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;732:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;581:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2692:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2135:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1889:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4388:181;;;;;;;;;;;;;:::i;:::-;;3381:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;505:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;778:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17175:162:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4182:200:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2575:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2074:198:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;462:36:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9048:630:2;9133:4;9466:10;9451:25;;:11;:25;;;;:101;;;;9542:10;9527:25;;:11;:25;;;;9451:101;:177;;;;9618:10;9603:25;;:11;:25;;;;9451:177;9432:196;;9048:630;;;:::o;9932:98::-;9986:13;10018:5;10011:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9932:98;:::o;16253:214::-;16329:7;16353:16;16361:7;16353;:16::i;:::-;16348:64;;16378:34;;;;;;;;;;;;;;16348:64;16430:15;:24;16446:7;16430:24;;;;;;;;;;;:30;;;;;;;;;;;;16423:37;;16253:214;;;:::o;1280:185:9:-;1406:8;3502:29:6;3522:8;3502:19;:29::i;:::-;3497:120;;3551:27;:25;:27::i;:::-;3547:59;;;3580:26;3597:8;3580:16;:26::i;:::-;3547:59;3497:120;1426:32:9::1;1440:8;1450:7;1426:13;:32::i;:::-;1280:185:::0;;;:::o;378:37::-;;;;;;;;;;;;;:::o;5787:317:2:-;5848:7;6072:15;:13;:15::i;:::-;6057:12;;6041:13;;:28;:46;6034:53;;5787:317;:::o;4767:642:9:-;4867:11;3876:1;3851:21;3861:10;3851:9;:21::i;:::-;:26;;3843:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;3941:1;3926:11;:16;;3918:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;4015:21;4025:10;4015:9;:21::i;:::-;4010:1;:27;;;;:::i;:::-;3995:11;:42;;3987:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;4124:9;;4109:11;4093:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;4085:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2261:21:8::1;:19;:21::i;:::-;4911:20:9::2;;;;;;;;;;;4903:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;4987:78;5006:5;;4987:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5013:10;;5052;5035:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;5025:39;;;;;;4987:18;:78::i;:::-;4979:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;5138:1;5112:23;5122:12;:10;:12::i;:::-;5112:9;:23::i;:::-;:27;5109:248;;;5190:17;;5176:11;:31;;;;:::i;:::-;5163:9;:44;;5155:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;5109:248;;;5304:17;;5299:1;5285:11;:15;;;;:::i;:::-;5284:37;;;;:::i;:::-;5271:9;:50;;5263:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;5109:248;5366:36;5376:12;:10;:12::i;:::-;5390:11;5366:9;:36::i;:::-;2303:20:8::1;:18;:20::i;:::-;4767:642:9::0;;;;:::o;1471:199::-;1610:4;3155:10:6;3147:18;;:4;:18;;;3143:180;;3186:31;3206:10;3186:19;:31::i;:::-;3181:132;;3241:27;:25;:27::i;:::-;3237:61;;;3270:28;3287:10;3270:16;:28::i;:::-;3237:61;3181:132;3143:180;1626:37:9::1;1645:4;1651:2;1655:7;1626:18;:37::i;:::-;1471:199:::0;;;;:::o;5415:362::-;5486:11;3876:1;3851:21;3861:10;3851:9;:21::i;:::-;:26;;3843:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;3941:1;3926:11;:16;;3918:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;4015:21;4025:10;4015:9;:21::i;:::-;4010:1;:27;;;;:::i;:::-;3995:11;:42;;3987:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;4124:9;;4109:11;4093:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;4085:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2261:21:8::1;:19;:21::i;:::-;5530:17:9::2;;;;;;;;;;;5522:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5622:1;5595:23;5605:12;:10;:12::i;:::-;5595:9;:23::i;:::-;:28;5592:133;;5674:14;;5660:11;:28;;;;:::i;:::-;5647:9;:41;;5639:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;5592:133;5734:36;5744:12;:10;:12::i;:::-;5758:11;5734:9;:36::i;:::-;2303:20:8::1;:18;:20::i;:::-;5415:362:9::0;;:::o;822:25::-;;;;:::o;2912:109::-;1087:13:7;:11;:13::i;:::-;3008:6:9::1;2985:20;;:29;;;;;;;;;;;;;;;;;;2912:109:::0;:::o;332:40::-;;;;;;;;;;;;;:::o;5783:160::-;1087:13:7;:11;:13::i;:::-;5833:7:9::1;5853;:5;:7::i;:::-;5845:21;;5888;5845:70;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5832:83;;;5933:2;5925:11;;;::::0;::::1;;5822:121;5783:160::o:0;1676:207::-;1819:4;3155:10:6;3147:18;;:4;:18;;;3143:180;;3186:31;3206:10;3186:19;:31::i;:::-;3181:132;;3241:27;:25;:27::i;:::-;3237:61;;;3270:28;3287:10;3270:16;:28::i;:::-;3237:61;3181:132;3143:180;1835:41:9::1;1858:4;1864:2;1868:7;1835:22;:41::i;:::-;1676:207:::0;;;;:::o;542:33::-;;;;:::o;2256:102::-;1087:13:7;:11;:13::i;:::-;2340:11:9::1;2330:7;:21;;;;;;;;;;;;:::i;:::-;;2256:102:::0;:::o;4575:182::-;4649:4;4672:78;4691:5;;4672:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4698:10;;4737;4720:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;4710:39;;;;;;4672:18;:78::i;:::-;4665:85;;4575:182;;;;:::o;11284:150:2:-;11356:7;11398:27;11417:7;11398:18;:27::i;:::-;11375:52;;11284:150;;;:::o;853:21:9:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2464:105::-;1087:13:7;:11;:13::i;:::-;2550:12:9::1;2538:9;:24;;;;2464:105:::0;:::o;6938:230:2:-;7010:7;7050:1;7033:19;;:5;:19;;;7029:60;;;7061:28;;;;;;;;;;;;;;7029:60;1253:13;7106:18;:25;7125:5;7106:25;;;;;;;;;;;;;;;;:55;7099:62;;6938:230;;;:::o;1824:101:7:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;421:35:9:-;;;;;;;;;;;;;:::o;2368:90::-;1087:13:7;:11;:13::i;:::-;2447:4:9::1;2434:10;:17;;;;2368:90:::0;:::o;2803:103::-;1087:13:7;:11;:13::i;:::-;2893:6:9::1;2873:17;;:26;;;;;;;;;;;;;;;;;;2803:103:::0;:::o;633:43::-;;;;:::o;1194:85:7:-;1240:7;1266:6;;;;;;;;;;;1259:13;;1194:85;:::o;10101:102:2:-;10157:13;10189:7;10182:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10101:102;:::o;1078:196:9:-;1204:8;3502:29:6;3522:8;3502:19;:29::i;:::-;3497:120;;3551:27;:25;:27::i;:::-;3547:59;;;3580:26;3597:8;3580:16;:26::i;:::-;3547:59;3497:120;1224:43:9::1;1248:8;1258;1224:23;:43::i;:::-;1078:196:::0;;;:::o;682:44::-;;;;:::o;732:40::-;;;;:::o;581:46::-;;;;:::o;2692:106::-;1087:13:7;:11;:13::i;:::-;2783:8:9::1;2766:14;:25;;;;2692:106:::0;:::o;2135:115::-;1087:13:7;:11;:13::i;:::-;2238:5:9::1;2211:24;;:32;;;;;;;;;;;;;;;;;;2135:115:::0;:::o;1889:240::-;2059:4;3155:10:6;3147:18;;:4;:18;;;3143:180;;3186:31;3206:10;3186:19;:31::i;:::-;3181:132;;3241:27;:25;:27::i;:::-;3237:61;;;3270:28;3287:10;3270:16;:28::i;:::-;3237:61;3181:132;3143:180;2075:47:9::1;2098:4;2104:2;2108:7;2117:4;2075:22;:47::i;:::-;1889:240:::0;;;;;:::o;4388:181::-;1087:13:7;:11;:13::i;:::-;4446:15:9::1;;;;;;;;;;;4445:16;4437:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;4497:33;4507:7;:5;:7::i;:::-;4516:13;;4497:9;:33::i;:::-;4558:4;4540:15;;:22;;;;;;;;;;;;;;;;;;4388:181::o:0;3381:274::-;3446:13;3479:16;3487:7;3479;:16::i;:::-;3471:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;3561:1;3543:7;3537:21;;;;;:::i;:::-;;;:25;:111;;;;;;;;;;;;;;;;;3600:7;3614:18;:7;:16;:18::i;:::-;3572:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3537:111;3530:118;;3381:274;;;:::o;505:31::-;;;;:::o;778:37::-;;;;:::o;17175:162:2:-;17272:4;17295:18;:25;17314:5;17295:25;;;;;;;;;;;;;;;:35;17321:8;17295:35;;;;;;;;;;;;;;;;;;;;;;;;;17288:42;;17175:162;;;;:::o;4182:200:9:-;1087:13:7;:11;:13::i;:::-;4308:9:9::1;;4293:11;4277:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;4269:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4352:23;4358:3;4363:11;4352:5;:23::i;:::-;4182:200:::0;;:::o;2575:112::-;1087:13:7;:11;:13::i;:::-;2672:8:9::1;2652:17;:28;;;;2575:112:::0;:::o;2074:198:7:-;1087:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;;;2154:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;462:36:9:-;;;;;;;;;;;;;:::o;17586:277:2:-;17651:4;17705:7;17686:15;:13;:15::i;:::-;:26;;:65;;;;;17738:13;;17728:7;:23;17686:65;:151;;;;;17836:1;2011:8;17788:17;:26;17806:7;17788:26;;;;;;;;;;;;:44;:49;17686:151;17667:170;;17586:277;;;:::o;5505:104:6:-;5574:4;5505:104;;;:::o;3132:123:9:-;3201:4;3224:24;;;;;;;;;;;3217:31;;3132:123;:::o;3728:1332:6:-;4115:22;4109:4;4102:36;4206:9;4200:4;4193:23;4279:8;4273:4;4266:22;4453:4;4447;4441;4435;4408:25;4401:5;4390:68;4380:270;;4572:16;4566:4;4560;4545:44;4619:16;4613:4;4606:30;4380:270;5042:1;5036:4;5029:15;3728:1332;:::o;15705:398:2:-;15793:13;15809:16;15817:7;15809;:16::i;:::-;15793:32;;15863:5;15840:28;;:19;:17;:19::i;:::-;:28;;;15836:172;;15887:44;15904:5;15911:19;:17;:19::i;:::-;15887:16;:44::i;:::-;15882:126;;15958:35;;;;;;;;;;;;;;15882:126;15836:172;16051:2;16018:15;:24;16034:7;16018:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16088:7;16084:2;16068:28;;16077:5;16068:28;;;;;;;;;;;;15783:320;15705:398;;:::o;3027:99:9:-;3092:7;3118:1;3111:8;;3027:99;:::o;2336:287:8:-;1759:1;2468:7;;:19;;2460:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1759:1;2598:7;:18;;;;2336:287::o;1156:184:5:-;1277:4;1329;1300:25;1313:5;1320:4;1300:12;:25::i;:::-;:33;1293:40;;1156:184;;;;;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;33316:110:2:-;33392:27;33402:2;33406:8;33392:27;;;;;;;;;;;;:9;:27::i;:::-;33316:110;;:::o;2629:209:8:-;1716:1;2809:7;:22;;;;2629:209::o;19796:2764:2:-;19933:27;19963;19982:7;19963:18;:27::i;:::-;19933:57;;20046:4;20005:45;;20021:19;20005:45;;;20001:86;;20059:28;;;;;;;;;;;;;;20001:86;20099:27;20128:23;20155:35;20182:7;20155:26;:35::i;:::-;20098:92;;;;20287:68;20312:15;20329:4;20335:19;:17;:19::i;:::-;20287:24;:68::i;:::-;20282:179;;20374:43;20391:4;20397:19;:17;:19::i;:::-;20374:16;:43::i;:::-;20369:92;;20426:35;;;;;;;;;;;;;;20369:92;20282:179;20490:1;20476:16;;:2;:16;;;20472:52;;;20501:23;;;;;;;;;;;;;;20472:52;20535:43;20557:4;20563:2;20567:7;20576:1;20535:21;:43::i;:::-;20667:15;20664:157;;;20805:1;20784:19;20777:30;20664:157;21193:18;:24;21212:4;21193:24;;;;;;;;;;;;;;;;21191:26;;;;;;;;;;;;21261:18;:22;21280:2;21261:22;;;;;;;;;;;;;;;;21259:24;;;;;;;;;;;21576:143;21612:2;21660:45;21675:4;21681:2;21685:19;21660:14;:45::i;:::-;2285:8;21632:73;21576:18;:143::i;:::-;21547:17;:26;21565:7;21547:26;;;;;;;;;;;:172;;;;21887:1;2285:8;21836:19;:47;:52;21832:617;;;21908:19;21940:1;21930:7;:11;21908:33;;22095:1;22061:17;:30;22079:11;22061:30;;;;;;;;;;;;:35;22057:378;;;22197:13;;22182:11;:28;22178:239;;22375:19;22342:17;:30;22360:11;22342:30;;;;;;;;;;;:52;;;;22178:239;22057:378;21890:559;21832:617;22493:7;22489:2;22474:27;;22483:4;22474:27;;;;;;;;;;;;22511:42;22532:4;22538:2;22542:7;22551:1;22511:20;:42::i;:::-;19923:2637;;;19796:2764;;;:::o;1352:130:7:-;1426:12;:10;:12::i;:::-;1415:23;;:7;:5;:7::i;:::-;:23;;;1407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1352:130::o;22651:187:2:-;22792:39;22809:4;22815:2;22819:7;22792:39;;;;;;;;;;;;:16;:39::i;:::-;22651:187;;;:::o;12408:1249::-;12475:7;12494:12;12509:7;12494:22;;12574:4;12555:15;:13;:15::i;:::-;:23;12551:1042;;12607:13;;12600:4;:20;12596:997;;;12644:14;12661:17;:23;12679:4;12661:23;;;;;;;;;;;;12644:40;;12776:1;2011:8;12748:6;:24;:29;12744:831;;;13403:111;13420:1;13410:6;:11;13403:111;;;13462:17;:25;13480:6;;;;;;;13462:25;;;;;;;;;;;;13453:34;;13403:111;;;13546:6;13539:13;;;;;;12744:831;12622:971;12596:997;12551:1042;13619:31;;;;;;;;;;;;;;12408:1249;;;;:::o;2426:187:7:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;16794:231:2:-;16940:8;16888:18;:39;16907:19;:17;:19::i;:::-;16888:39;;;;;;;;;;;;;;;:49;16928:8;16888:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;16999:8;16963:55;;16978:19;:17;:19::i;:::-;16963:55;;;17009:8;16963:55;;;;;;:::i;:::-;;;;;;;;16794:231;;:::o;23419:396::-;23588:31;23601:4;23607:2;23611:7;23588:12;:31::i;:::-;23651:1;23633:2;:14;;;:19;23629:180;;23671:56;23702:4;23708:2;23712:7;23721:5;23671:30;:56::i;:::-;23666:143;;23754:40;;;;;;;;;;;;;;23666:143;23629:180;23419:396;;;;:::o;410:696:10:-;466:13;515:14;552:1;532:17;543:5;532:10;:17::i;:::-;:21;515:38;;567:20;601:6;590:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;567:41;;622:11;748:6;744:2;740:15;732:6;728:28;721:35;;783:280;790:4;783:280;;;814:5;;;;;;;;953:8;948:2;941:5;937:14;932:30;927:3;919:44;1007:2;998:11;;;;;;:::i;:::-;;;;;1040:1;1031:5;:10;1027:21;;;1043:5;;1027:21;783:280;;;1083:6;1076:13;;;;;410:696;;;:::o;26984:2902:2:-;27056:20;27079:13;;27056:36;;27118:1;27106:8;:13;27102:44;;;27128:18;;;;;;;;;;;;;;27102:44;27157:61;27187:1;27191:2;27195:12;27209:8;27157:21;:61::i;:::-;27690:1;1388:2;27660:1;:26;;27659:32;27647:8;:45;27621:18;:22;27640:2;27621:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;27962:136;27998:2;28051:33;28074:1;28078:2;28082:1;28051:14;:33::i;:::-;28018:30;28039:8;28018:20;:30::i;:::-;:66;27962:18;:136::i;:::-;27928:17;:31;27946:12;27928:31;;;;;;;;;;;:170;;;;28113:16;28143:11;28172:8;28157:12;:23;28143:37;;28685:16;28681:2;28677:25;28665:37;;29049:12;29010:8;28970:1;28909:25;28851:1;28791;28765:328;29413:1;29399:12;29395:20;29354:339;29453:3;29444:7;29441:16;29354:339;;29667:7;29657:8;29654:1;29627:25;29624:1;29621;29616:59;29505:1;29496:7;29492:15;29481:26;;29354:339;;;29358:75;29736:1;29724:8;:13;29720:45;;;29746:19;;;;;;;;;;;;;;29720:45;29796:3;29780:13;:19;;;;27401:2409;;29819:60;29848:1;29852:2;29856:12;29870:8;29819:20;:60::i;:::-;27046:2840;26984:2902;;:::o;39330:103::-;39390:7;39416:10;39409:17;;39330:103;:::o;1994:290:5:-;2077:7;2096:20;2119:4;2096:27;;2138:9;2133:116;2157:5;:12;2153:1;:16;2133:116;;;2205:33;2215:12;2229:5;2235:1;2229:8;;;;;;;;:::i;:::-;;;;;;;;2205:9;:33::i;:::-;2190:48;;2171:3;;;;;:::i;:::-;;;;2133:116;;;;2265:12;2258:19;;;1994:290;;;;:::o;32568:669:2:-;32694:19;32700:2;32704:8;32694:5;:19::i;:::-;32770:1;32752:2;:14;;;:19;32748:473;;32791:11;32805:13;;32791:27;;32836:13;32858:8;32852:3;:14;32836:30;;32884:229;32914:62;32953:1;32957:2;32961:7;;;;;;32970:5;32914:30;:62::i;:::-;32909:165;;33011:40;;;;;;;;;;;;;;32909:165;33108:3;33100:5;:11;32884:229;;33193:3;33176:13;;:20;33172:34;;33198:8;;;33172:34;32773:448;;32748:473;32568:669;;;:::o;18721:474::-;18820:27;18849:23;18888:38;18929:15;:24;18945:7;18929:24;;;;;;;;;;;18888:65;;19103:18;19080:41;;19159:19;19153:26;19134:45;;19066:123;18721:474;;;:::o;17967:646::-;18112:11;18274:16;18267:5;18263:28;18254:37;;18432:16;18421:9;18417:32;18404:45;;18580:15;18569:9;18566:30;18558:5;18547:9;18544:20;18541:56;18531:66;;17967:646;;;;;:::o;24459:154::-;;;;;:::o;38657:304::-;38788:7;38807:16;2406:3;38833:19;:41;;38807:68;;2406:3;38900:31;38911:4;38917:2;38921:9;38900:10;:31::i;:::-;38892:40;;:62;;38885:69;;;38657:304;;;;;:::o;14190:443::-;14270:14;14435:16;14428:5;14424:28;14415:37;;14610:5;14596:11;14571:23;14567:41;14564:52;14557:5;14554:63;14544:73;;14190:443;;;;:::o;25260:153::-;;;;;:::o;25841:697::-;25999:4;26044:2;26019:45;;;26065:19;:17;:19::i;:::-;26086:4;26092:7;26101:5;26019:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26015:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26314:1;26297:6;:13;:18;26293:229;;;26342:40;;;;;;;;;;;;;;26293:229;26482:6;26476:13;26467:6;26463:2;26459:15;26452:38;26015:517;26185:54;;;26175:64;;;:6;:64;;;;26168:71;;;25841:697;;;;;;:::o;9889:890:4:-;9942:7;9961:14;9978:1;9961:18;;10026:6;10017:5;:15;10013:99;;10061:6;10052:15;;;;;;:::i;:::-;;;;;10095:2;10085:12;;;;10013:99;10138:6;10129:5;:15;10125:99;;10173:6;10164:15;;;;;;:::i;:::-;;;;;10207:2;10197:12;;;;10125:99;10250:6;10241:5;:15;10237:99;;10285:6;10276:15;;;;;;:::i;:::-;;;;;10319:2;10309:12;;;;10237:99;10362:5;10353;:14;10349:96;;10396:5;10387:14;;;;;;:::i;:::-;;;;;10429:1;10419:11;;;;10349:96;10471:5;10462;:14;10458:96;;10505:5;10496:14;;;;;;:::i;:::-;;;;;10538:1;10528:11;;;;10458:96;10580:5;10571;:14;10567:96;;10614:5;10605:14;;;;;;:::i;:::-;;;;;10647:1;10637:11;;;;10567:96;10689:5;10680;:14;10676:64;;10724:1;10714:11;;;;10676:64;10766:6;10759:13;;;9889:890;;;:::o;14730:318:2:-;14800:14;15029:1;15019:8;15016:15;14990:24;14986:46;14976:56;;14730:318;;;:::o;8879:147:5:-;8942:7;8972:1;8968;:5;:51;;8999:20;9014:1;9017;8999:14;:20::i;:::-;8968:51;;;8976:20;8991:1;8994;8976:14;:20::i;:::-;8968:51;8961:58;;8879:147;;;;:::o;38368:143:2:-;38501:6;38368:143;;;;;:::o;9032:261:5:-;9100:13;9204:1;9198:4;9191:15;9232:1;9226:4;9219:15;9272:4;9266;9256:21;9247:30;;9032:261;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:117;5645:1;5642;5635:12;5676:568;5749:8;5759:6;5809:3;5802:4;5794:6;5790:17;5786:27;5776:122;;5817:79;;:::i;:::-;5776:122;5930:6;5917:20;5907:30;;5960:18;5952:6;5949:30;5946:117;;;5982:79;;:::i;:::-;5946:117;6096:4;6088:6;6084:17;6072:29;;6150:3;6142:4;6134:6;6130:17;6120:8;6116:32;6113:41;6110:128;;;6157:79;;:::i;:::-;6110:128;5676:568;;;;;:::o;6250:704::-;6345:6;6353;6361;6410:2;6398:9;6389:7;6385:23;6381:32;6378:119;;;6416:79;;:::i;:::-;6378:119;6536:1;6561:53;6606:7;6597:6;6586:9;6582:22;6561:53;:::i;:::-;6551:63;;6507:117;6691:2;6680:9;6676:18;6663:32;6722:18;6714:6;6711:30;6708:117;;;6744:79;;:::i;:::-;6708:117;6857:80;6929:7;6920:6;6909:9;6905:22;6857:80;:::i;:::-;6839:98;;;;6634:313;6250:704;;;;;:::o;6960:619::-;7037:6;7045;7053;7102:2;7090:9;7081:7;7077:23;7073:32;7070:119;;;7108:79;;:::i;:::-;7070:119;7228:1;7253:53;7298:7;7289:6;7278:9;7274:22;7253:53;:::i;:::-;7243:63;;7199:117;7355:2;7381:53;7426:7;7417:6;7406:9;7402:22;7381:53;:::i;:::-;7371:63;;7326:118;7483:2;7509:53;7554:7;7545:6;7534:9;7530:22;7509:53;:::i;:::-;7499:63;;7454:118;6960:619;;;;;:::o;7585:77::-;7622:7;7651:5;7640:16;;7585:77;;;:::o;7668:118::-;7755:24;7773:5;7755:24;:::i;:::-;7750:3;7743:37;7668:118;;:::o;7792:222::-;7885:4;7923:2;7912:9;7908:18;7900:26;;7936:71;8004:1;7993:9;7989:17;7980:6;7936:71;:::i;:::-;7792:222;;;;:::o;8020:116::-;8090:21;8105:5;8090:21;:::i;:::-;8083:5;8080:32;8070:60;;8126:1;8123;8116:12;8070:60;8020:116;:::o;8142:133::-;8185:5;8223:6;8210:20;8201:29;;8239:30;8263:5;8239:30;:::i;:::-;8142:133;;;;:::o;8281:323::-;8337:6;8386:2;8374:9;8365:7;8361:23;8357:32;8354:119;;;8392:79;;:::i;:::-;8354:119;8512:1;8537:50;8579:7;8570:6;8559:9;8555:22;8537:50;:::i;:::-;8527:60;;8483:114;8281:323;;;;:::o;8610:117::-;8719:1;8716;8709:12;8733:180;8781:77;8778:1;8771:88;8878:4;8875:1;8868:15;8902:4;8899:1;8892:15;8919:281;9002:27;9024:4;9002:27;:::i;:::-;8994:6;8990:40;9132:6;9120:10;9117:22;9096:18;9084:10;9081:34;9078:62;9075:88;;;9143:18;;:::i;:::-;9075:88;9183:10;9179:2;9172:22;8962:238;8919:281;;:::o;9206:129::-;9240:6;9267:20;;:::i;:::-;9257:30;;9296:33;9324:4;9316:6;9296:33;:::i;:::-;9206:129;;;:::o;9341:308::-;9403:4;9493:18;9485:6;9482:30;9479:56;;;9515:18;;:::i;:::-;9479:56;9553:29;9575:6;9553:29;:::i;:::-;9545:37;;9637:4;9631;9627:15;9619:23;;9341:308;;;:::o;9655:154::-;9739:6;9734:3;9729;9716:30;9801:1;9792:6;9787:3;9783:16;9776:27;9655:154;;;:::o;9815:412::-;9893:5;9918:66;9934:49;9976:6;9934:49;:::i;:::-;9918:66;:::i;:::-;9909:75;;10007:6;10000:5;9993:21;10045:4;10038:5;10034:16;10083:3;10074:6;10069:3;10065:16;10062:25;10059:112;;;10090:79;;:::i;:::-;10059:112;10180:41;10214:6;10209:3;10204;10180:41;:::i;:::-;9899:328;9815:412;;;;;:::o;10247:340::-;10303:5;10352:3;10345:4;10337:6;10333:17;10329:27;10319:122;;10360:79;;:::i;:::-;10319:122;10477:6;10464:20;10502:79;10577:3;10569:6;10562:4;10554:6;10550:17;10502:79;:::i;:::-;10493:88;;10309:278;10247:340;;;;:::o;10593:509::-;10662:6;10711:2;10699:9;10690:7;10686:23;10682:32;10679:119;;;10717:79;;:::i;:::-;10679:119;10865:1;10854:9;10850:17;10837:31;10895:18;10887:6;10884:30;10881:117;;;10917:79;;:::i;:::-;10881:117;11022:63;11077:7;11068:6;11057:9;11053:22;11022:63;:::i;:::-;11012:73;;10808:287;10593:509;;;;:::o;11108:559::-;11194:6;11202;11251:2;11239:9;11230:7;11226:23;11222:32;11219:119;;;11257:79;;:::i;:::-;11219:119;11405:1;11394:9;11390:17;11377:31;11435:18;11427:6;11424:30;11421:117;;;11457:79;;:::i;:::-;11421:117;11570:80;11642:7;11633:6;11622:9;11618:22;11570:80;:::i;:::-;11552:98;;;;11348:312;11108:559;;;;;:::o;11673:329::-;11732:6;11781:2;11769:9;11760:7;11756:23;11752:32;11749:119;;;11787:79;;:::i;:::-;11749:119;11907:1;11932:53;11977:7;11968:6;11957:9;11953:22;11932:53;:::i;:::-;11922:63;;11878:117;11673:329;;;;:::o;12008:122::-;12081:24;12099:5;12081:24;:::i;:::-;12074:5;12071:35;12061:63;;12120:1;12117;12110:12;12061:63;12008:122;:::o;12136:139::-;12182:5;12220:6;12207:20;12198:29;;12236:33;12263:5;12236:33;:::i;:::-;12136:139;;;;:::o;12281:329::-;12340:6;12389:2;12377:9;12368:7;12364:23;12360:32;12357:119;;;12395:79;;:::i;:::-;12357:119;12515:1;12540:53;12585:7;12576:6;12565:9;12561:22;12540:53;:::i;:::-;12530:63;;12486:117;12281:329;;;;:::o;12616:468::-;12681:6;12689;12738:2;12726:9;12717:7;12713:23;12709:32;12706:119;;;12744:79;;:::i;:::-;12706:119;12864:1;12889:53;12934:7;12925:6;12914:9;12910:22;12889:53;:::i;:::-;12879:63;;12835:117;12991:2;13017:50;13059:7;13050:6;13039:9;13035:22;13017:50;:::i;:::-;13007:60;;12962:115;12616:468;;;;;:::o;13090:307::-;13151:4;13241:18;13233:6;13230:30;13227:56;;;13263:18;;:::i;:::-;13227:56;13301:29;13323:6;13301:29;:::i;:::-;13293:37;;13385:4;13379;13375:15;13367:23;;13090:307;;;:::o;13403:410::-;13480:5;13505:65;13521:48;13562:6;13521:48;:::i;:::-;13505:65;:::i;:::-;13496:74;;13593:6;13586:5;13579:21;13631:4;13624:5;13620:16;13669:3;13660:6;13655:3;13651:16;13648:25;13645:112;;;13676:79;;:::i;:::-;13645:112;13766:41;13800:6;13795:3;13790;13766:41;:::i;:::-;13486:327;13403:410;;;;;:::o;13832:338::-;13887:5;13936:3;13929:4;13921:6;13917:17;13913:27;13903:122;;13944:79;;:::i;:::-;13903:122;14061:6;14048:20;14086:78;14160:3;14152:6;14145:4;14137:6;14133:17;14086:78;:::i;:::-;14077:87;;13893:277;13832:338;;;;:::o;14176:943::-;14271:6;14279;14287;14295;14344:3;14332:9;14323:7;14319:23;14315:33;14312:120;;;14351:79;;:::i;:::-;14312:120;14471:1;14496:53;14541:7;14532:6;14521:9;14517:22;14496:53;:::i;:::-;14486:63;;14442:117;14598:2;14624:53;14669:7;14660:6;14649:9;14645:22;14624:53;:::i;:::-;14614:63;;14569:118;14726:2;14752:53;14797:7;14788:6;14777:9;14773:22;14752:53;:::i;:::-;14742:63;;14697:118;14882:2;14871:9;14867:18;14854:32;14913:18;14905:6;14902:30;14899:117;;;14935:79;;:::i;:::-;14899:117;15040:62;15094:7;15085:6;15074:9;15070:22;15040:62;:::i;:::-;15030:72;;14825:287;14176:943;;;;;;;:::o;15125:474::-;15193:6;15201;15250:2;15238:9;15229:7;15225:23;15221:32;15218:119;;;15256:79;;:::i;:::-;15218:119;15376:1;15401:53;15446:7;15437:6;15426:9;15422:22;15401:53;:::i;:::-;15391:63;;15347:117;15503:2;15529:53;15574:7;15565:6;15554:9;15550:22;15529:53;:::i;:::-;15519:63;;15474:118;15125:474;;;;;:::o;15605:::-;15673:6;15681;15730:2;15718:9;15709:7;15705:23;15701:32;15698:119;;;15736:79;;:::i;:::-;15698:119;15856:1;15881:53;15926:7;15917:6;15906:9;15902:22;15881:53;:::i;:::-;15871:63;;15827:117;15983:2;16009:53;16054:7;16045:6;16034:9;16030:22;16009:53;:::i;:::-;15999:63;;15954:118;15605:474;;;;;:::o;16085:180::-;16133:77;16130:1;16123:88;16230:4;16227:1;16220:15;16254:4;16251:1;16244:15;16271:320;16315:6;16352:1;16346:4;16342:12;16332:22;;16399:1;16393:4;16389:12;16420:18;16410:81;;16476:4;16468:6;16464:17;16454:27;;16410:81;16538:2;16530:6;16527:14;16507:18;16504:38;16501:84;;;16557:18;;:::i;:::-;16501:84;16322:269;16271:320;;;:::o;16597:176::-;16737:28;16733:1;16725:6;16721:14;16714:52;16597:176;:::o;16779:366::-;16921:3;16942:67;17006:2;17001:3;16942:67;:::i;:::-;16935:74;;17018:93;17107:3;17018:93;:::i;:::-;17136:2;17131:3;17127:12;17120:19;;16779:366;;;:::o;17151:419::-;17317:4;17355:2;17344:9;17340:18;17332:26;;17404:9;17398:4;17394:20;17390:1;17379:9;17375:17;17368:47;17432:131;17558:4;17432:131;:::i;:::-;17424:139;;17151:419;;;:::o;17576:180::-;17716:32;17712:1;17704:6;17700:14;17693:56;17576:180;:::o;17762:366::-;17904:3;17925:67;17989:2;17984:3;17925:67;:::i;:::-;17918:74;;18001:93;18090:3;18001:93;:::i;:::-;18119:2;18114:3;18110:12;18103:19;;17762:366;;;:::o;18134:419::-;18300:4;18338:2;18327:9;18323:18;18315:26;;18387:9;18381:4;18377:20;18373:1;18362:9;18358:17;18351:47;18415:131;18541:4;18415:131;:::i;:::-;18407:139;;18134:419;;;:::o;18559:180::-;18607:77;18604:1;18597:88;18704:4;18701:1;18694:15;18728:4;18725:1;18718:15;18745:191;18785:4;18805:20;18823:1;18805:20;:::i;:::-;18800:25;;18839:20;18857:1;18839:20;:::i;:::-;18834:25;;18878:1;18875;18872:8;18869:34;;;18883:18;;:::i;:::-;18869:34;18928:1;18925;18921:9;18913:17;;18745:191;;;;:::o;18942:220::-;19082:34;19078:1;19070:6;19066:14;19059:58;19151:3;19146:2;19138:6;19134:15;19127:28;18942:220;:::o;19168:366::-;19310:3;19331:67;19395:2;19390:3;19331:67;:::i;:::-;19324:74;;19407:93;19496:3;19407:93;:::i;:::-;19525:2;19520:3;19516:12;19509:19;;19168:366;;;:::o;19540:419::-;19706:4;19744:2;19733:9;19729:18;19721:26;;19793:9;19787:4;19783:20;19779:1;19768:9;19764:17;19757:47;19821:131;19947:4;19821:131;:::i;:::-;19813:139;;19540:419;;;:::o;19965:305::-;20005:3;20024:20;20042:1;20024:20;:::i;:::-;20019:25;;20058:20;20076:1;20058:20;:::i;:::-;20053:25;;20212:1;20144:66;20140:74;20137:1;20134:81;20131:107;;;20218:18;;:::i;:::-;20131:107;20262:1;20259;20255:9;20248:16;;19965:305;;;;:::o;20276:170::-;20416:22;20412:1;20404:6;20400:14;20393:46;20276:170;:::o;20452:366::-;20594:3;20615:67;20679:2;20674:3;20615:67;:::i;:::-;20608:74;;20691:93;20780:3;20691:93;:::i;:::-;20809:2;20804:3;20800:12;20793:19;;20452:366;;;:::o;20824:419::-;20990:4;21028:2;21017:9;21013:18;21005:26;;21077:9;21071:4;21067:20;21063:1;21052:9;21048:17;21041:47;21105:131;21231:4;21105:131;:::i;:::-;21097:139;;20824:419;;;:::o;21249:220::-;21389:34;21385:1;21377:6;21373:14;21366:58;21458:3;21453:2;21445:6;21441:15;21434:28;21249:220;:::o;21475:366::-;21617:3;21638:67;21702:2;21697:3;21638:67;:::i;:::-;21631:74;;21714:93;21803:3;21714:93;:::i;:::-;21832:2;21827:3;21823:12;21816:19;;21475:366;;;:::o;21847:419::-;22013:4;22051:2;22040:9;22036:18;22028:26;;22100:9;22094:4;22090:20;22086:1;22075:9;22071:17;22064:47;22128:131;22254:4;22128:131;:::i;:::-;22120:139;;21847:419;;;:::o;22272:94::-;22305:8;22353:5;22349:2;22345:14;22324:35;;22272:94;;;:::o;22372:::-;22411:7;22440:20;22454:5;22440:20;:::i;:::-;22429:31;;22372:94;;;:::o;22472:100::-;22511:7;22540:26;22560:5;22540:26;:::i;:::-;22529:37;;22472:100;;;:::o;22578:157::-;22683:45;22703:24;22721:5;22703:24;:::i;:::-;22683:45;:::i;:::-;22678:3;22671:58;22578:157;;:::o;22741:256::-;22853:3;22868:75;22939:3;22930:6;22868:75;:::i;:::-;22968:2;22963:3;22959:12;22952:19;;22988:3;22981:10;;22741:256;;;;:::o;23003:178::-;23143:30;23139:1;23131:6;23127:14;23120:54;23003:178;:::o;23187:366::-;23329:3;23350:67;23414:2;23409:3;23350:67;:::i;:::-;23343:74;;23426:93;23515:3;23426:93;:::i;:::-;23544:2;23539:3;23535:12;23528:19;;23187:366;;;:::o;23559:419::-;23725:4;23763:2;23752:9;23748:18;23740:26;;23812:9;23806:4;23802:20;23798:1;23787:9;23783:17;23776:47;23840:131;23966:4;23840:131;:::i;:::-;23832:139;;23559:419;;;:::o;23984:348::-;24024:7;24047:20;24065:1;24047:20;:::i;:::-;24042:25;;24081:20;24099:1;24081:20;:::i;:::-;24076:25;;24269:1;24201:66;24197:74;24194:1;24191:81;24186:1;24179:9;24172:17;24168:105;24165:131;;;24276:18;;:::i;:::-;24165:131;24324:1;24321;24317:9;24306:20;;23984:348;;;;:::o;24338:170::-;24478:22;24474:1;24466:6;24462:14;24455:46;24338:170;:::o;24514:366::-;24656:3;24677:67;24741:2;24736:3;24677:67;:::i;:::-;24670:74;;24753:93;24842:3;24753:93;:::i;:::-;24871:2;24866:3;24862:12;24855:19;;24514:366;;;:::o;24886:419::-;25052:4;25090:2;25079:9;25075:18;25067:26;;25139:9;25133:4;25129:20;25125:1;25114:9;25110:17;25103:47;25167:131;25293:4;25167:131;:::i;:::-;25159:139;;24886:419;;;:::o;25311:170::-;25451:22;25447:1;25439:6;25435:14;25428:46;25311:170;:::o;25487:366::-;25629:3;25650:67;25714:2;25709:3;25650:67;:::i;:::-;25643:74;;25726:93;25815:3;25726:93;:::i;:::-;25844:2;25839:3;25835:12;25828:19;;25487:366;;;:::o;25859:419::-;26025:4;26063:2;26052:9;26048:18;26040:26;;26112:9;26106:4;26102:20;26098:1;26087:9;26083:17;26076:47;26140:131;26266:4;26140:131;:::i;:::-;26132:139;;25859:419;;;:::o;26284:180::-;26424:32;26420:1;26412:6;26408:14;26401:56;26284:180;:::o;26470:366::-;26612:3;26633:67;26697:2;26692:3;26633:67;:::i;:::-;26626:74;;26709:93;26798:3;26709:93;:::i;:::-;26827:2;26822:3;26818:12;26811:19;;26470:366;;;:::o;26842:419::-;27008:4;27046:2;27035:9;27031:18;27023:26;;27095:9;27089:4;27085:20;27081:1;27070:9;27066:17;27059:47;27123:131;27249:4;27123:131;:::i;:::-;27115:139;;26842:419;;;:::o;27267:170::-;27407:22;27403:1;27395:6;27391:14;27384:46;27267:170;:::o;27443:366::-;27585:3;27606:67;27670:2;27665:3;27606:67;:::i;:::-;27599:74;;27682:93;27771:3;27682:93;:::i;:::-;27800:2;27795:3;27791:12;27784:19;;27443:366;;;:::o;27815:419::-;27981:4;28019:2;28008:9;28004:18;27996:26;;28068:9;28062:4;28058:20;28054:1;28043:9;28039:17;28032:47;28096:131;28222:4;28096:131;:::i;:::-;28088:139;;27815:419;;;:::o;28240:147::-;28341:11;28378:3;28363:18;;28240:147;;;;:::o;28393:114::-;;:::o;28513:398::-;28672:3;28693:83;28774:1;28769:3;28693:83;:::i;:::-;28686:90;;28785:93;28874:3;28785:93;:::i;:::-;28903:1;28898:3;28894:11;28887:18;;28513:398;;;:::o;28917:379::-;29101:3;29123:147;29266:3;29123:147;:::i;:::-;29116:154;;29287:3;29280:10;;28917:379;;;:::o;29302:171::-;29442:23;29438:1;29430:6;29426:14;29419:47;29302:171;:::o;29479:366::-;29621:3;29642:67;29706:2;29701:3;29642:67;:::i;:::-;29635:74;;29718:93;29807:3;29718:93;:::i;:::-;29836:2;29831:3;29827:12;29820:19;;29479:366;;;:::o;29851:419::-;30017:4;30055:2;30044:9;30040:18;30032:26;;30104:9;30098:4;30094:20;30090:1;30079:9;30075:17;30068:47;30132:131;30258:4;30132:131;:::i;:::-;30124:139;;29851:419;;;:::o;30276:170::-;30416:22;30412:1;30404:6;30400:14;30393:46;30276:170;:::o;30452:366::-;30594:3;30615:67;30679:2;30674:3;30615:67;:::i;:::-;30608:74;;30691:93;30780:3;30691:93;:::i;:::-;30809:2;30804:3;30800:12;30793:19;;30452:366;;;:::o;30824:419::-;30990:4;31028:2;31017:9;31013:18;31005:26;;31077:9;31071:4;31067:20;31063:1;31052:9;31048:17;31041:47;31105:131;31231:4;31105:131;:::i;:::-;31097:139;;30824:419;;;:::o;31249:148::-;31351:11;31388:3;31373:18;;31249:148;;;;:::o;31403:161::-;31543:9;31539:1;31531:6;31527:14;31520:33;31403:161;:::o;31574:416::-;31734:3;31759:84;31841:1;31836:3;31759:84;:::i;:::-;31752:91;;31856:93;31945:3;31856:93;:::i;:::-;31978:1;31973:3;31969:11;31962:18;;31574:416;;;:::o;32000:157::-;32049:4;32076:3;32068:11;;32103:3;32100:1;32093:14;32141:4;32138:1;32128:18;32120:26;;32000:157;;;:::o;32195:925::-;32298:3;32339:5;32333:12;32372:36;32398:9;32372:36;:::i;:::-;32428:89;32510:6;32505:3;32428:89;:::i;:::-;32421:96;;32552:1;32541:9;32537:17;32572:1;32567:153;;;;32738:1;32733:377;;;;32530:580;;32567:153;32659:4;32655:9;32644;32640:25;32635:3;32628:38;32699:6;32694:3;32690:16;32683:23;;32567:153;;32733:377;32808:38;32840:5;32808:38;:::i;:::-;32872:1;32890:166;32904:6;32901:1;32898:13;32890:166;;;32982:7;32976:14;32972:1;32967:3;32963:11;32956:35;33036:1;33027:7;33023:15;33012:26;;32926:4;32923:1;32919:12;32914:17;;32890:166;;;33089:6;33084:3;33080:16;33073:23;;32740:370;;32530:580;;32302:818;;32195:925;;;;:::o;33130:159::-;33274:3;33270:1;33262:6;33258:14;33251:27;33130:159;:::o;33299:416::-;33459:3;33484:84;33566:1;33561:3;33484:84;:::i;:::-;33477:91;;33581:93;33670:3;33581:93;:::i;:::-;33703:1;33698:3;33694:11;33687:18;;33299:416;;;:::o;33725:397::-;33831:3;33863:39;33896:5;33863:39;:::i;:::-;33922:89;34004:6;33999:3;33922:89;:::i;:::-;33915:96;;34024:52;34069:6;34064:3;34057:4;34050:5;34046:16;34024:52;:::i;:::-;34105:6;34100:3;34096:16;34089:23;;33835:287;33725:397;;;;:::o;34132:163::-;34276:7;34272:1;34264:6;34260:14;34253:31;34132:163;:::o;34305:416::-;34465:3;34490:84;34572:1;34567:3;34490:84;:::i;:::-;34483:91;;34587:93;34676:3;34587:93;:::i;:::-;34709:1;34704:3;34700:11;34693:18;;34305:416;;;:::o;34731:1255::-;35211:3;35237:148;35381:3;35237:148;:::i;:::-;35230:155;;35406:92;35494:3;35485:6;35406:92;:::i;:::-;35399:99;;35519:148;35663:3;35519:148;:::i;:::-;35512:155;;35688:95;35779:3;35770:6;35688:95;:::i;:::-;35681:102;;35804:148;35948:3;35804:148;:::i;:::-;35797:155;;35973:3;35966:10;;34731:1255;;;;;:::o;35996:237::-;36140:34;36136:1;36128:6;36124:14;36117:58;36213:8;36208:2;36200:6;36196:15;36189:33;35996:237;:::o;36243:382::-;36385:3;36410:67;36474:2;36469:3;36410:67;:::i;:::-;36403:74;;36490:93;36579:3;36490:93;:::i;:::-;36612:2;36607:3;36603:12;36596:19;;36243:382;;;:::o;36635:435::-;36801:4;36843:2;36832:9;36828:18;36820:26;;36896:9;36890:4;36886:20;36882:1;36871:9;36867:17;36860:47;36928:131;37054:4;36928:131;:::i;:::-;36920:139;;36635:435;;;:::o;37080:189::-;37224:33;37220:1;37212:6;37208:14;37201:57;37080:189;:::o;37279:382::-;37421:3;37446:67;37510:2;37505:3;37446:67;:::i;:::-;37439:74;;37526:93;37615:3;37526:93;:::i;:::-;37648:2;37643:3;37639:12;37632:19;;37279:382;;;:::o;37671:435::-;37837:4;37879:2;37868:9;37864:18;37856:26;;37932:9;37926:4;37922:20;37918:1;37907:9;37903:17;37896:47;37964:131;38090:4;37964:131;:::i;:::-;37956:139;;37671:435;;;:::o;38116:190::-;38260:34;38256:1;38248:6;38244:14;38237:58;38116:190;:::o;38316:382::-;38458:3;38483:67;38547:2;38542:3;38483:67;:::i;:::-;38476:74;;38563:93;38652:3;38563:93;:::i;:::-;38685:2;38680:3;38676:12;38669:19;;38316:382;;;:::o;38708:435::-;38874:4;38916:2;38905:9;38901:18;38893:26;;38969:9;38963:4;38959:20;38955:1;38944:9;38940:17;38933:47;39001:131;39127:4;39001:131;:::i;:::-;38993:139;;38708:435;;;:::o;39153:196::-;39205:77;39202:1;39195:88;39306:4;39303:1;39296:15;39334:4;39331:1;39324:15;39359:196;39411:77;39408:1;39401:88;39512:4;39509:1;39502:15;39540:4;39537:1;39530:15;39565:249;39604:3;39631:24;39649:5;39631:24;:::i;:::-;39622:33;;39681:66;39674:5;39671:77;39668:103;;;39751:18;;:::i;:::-;39668:103;39802:1;39795:5;39791:13;39784:20;;39565:249;;;:::o;39824:106::-;39875:6;39913:5;39907:12;39897:22;;39824:106;;;:::o;39940:180::-;40023:11;40061:6;40056:3;40049:19;40105:4;40100:3;40096:14;40081:29;;39940:180;;;;:::o;40130:380::-;40216:3;40248:38;40280:5;40248:38;:::i;:::-;40306:70;40369:6;40364:3;40306:70;:::i;:::-;40299:77;;40389:52;40434:6;40429:3;40422:4;40415:5;40411:16;40389:52;:::i;:::-;40470:29;40492:6;40470:29;:::i;:::-;40465:3;40461:39;40454:46;;40220:290;40130:380;;;;:::o;40520:668::-;40715:4;40757:3;40746:9;40742:19;40734:27;;40775:71;40843:1;40832:9;40828:17;40819:6;40775:71;:::i;:::-;40860:72;40928:2;40917:9;40913:18;40904:6;40860:72;:::i;:::-;40946;41014:2;41003:9;40999:18;40990:6;40946:72;:::i;:::-;41069:9;41063:4;41059:20;41054:2;41043:9;41039:18;41032:48;41101:76;41172:4;41163:6;41101:76;:::i;:::-;41093:84;;40520:668;;;;;;;:::o;41198:153::-;41254:5;41289:6;41283:13;41274:22;;41309:32;41335:5;41309:32;:::i;:::-;41198:153;;;;:::o;41361:373::-;41430:6;41483:2;41471:9;41462:7;41458:23;41454:32;41451:119;;;41489:79;;:::i;:::-;41451:119;41617:1;41646:63;41701:7;41692:6;41681:9;41677:22;41646:63;:::i;:::-;41636:73;;41584:139;41361:373;;;;:::o
Swarm Source
ipfs://153162ac510c47177eaff5aae2c0640d4f912a681e0a3f9939a6a34b0baab38b
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.