Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
982 Thuglife
Holders
214
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
25 ThuglifeLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ThugLife
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import './ERC721AQueryable.sol'; import './Ownable.sol'; import './Strings.sol'; import './MerkleProof.sol'; contract ThugLife is ERC721AQueryable,Ownable { using Strings for uint256; bytes32 public saleMerkleRoot; bool public active = true; bool public open = false; uint256 public mintTime = 1675436400; uint256 public waitMintTime = 3600 * 3; string baseURI; string public baseExtension = ".json"; string public NotRevealedUri = "https://cdn.thuglife.world/meta/848123b850a1439211fddcebae/json/"; uint256 public constant MAX_SUPPLY = 3333; uint256 public maxMintAmountPerTx = 5; uint256 public whitelistPrice = 0.0085 ether; uint256 public price = 0.0125 ether; mapping(address => uint256) public _mintQuantity; mapping(uint256 => string) private _tokenURIs; address public OD = 0xb4d7F92D02477AE93c2f8a3285b1f5c02a59Fd4F; event CostLog(address indexed _from,uint256 indexed _amount, uint256 indexed _payment); constructor() ERC721A("Thuglife", "Thuglife") { setNotRevealedURI(NotRevealedUri); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (open == false) { return string(abi.encodePacked(NotRevealedUri, tokenId.toString(), baseExtension)); } string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); if (bytes(base).length == 0) { return _tokenURI; } if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return string(abi.encodePacked(base, tokenId.toString(), baseExtension)); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { NotRevealedUri = _notRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function flipOpen() public onlyOwner { open = !open; } function flipActive() public onlyOwner { active = !active; } function claim(uint256 _amount,bytes32[] calldata _merkleProof) external payable{ require(active && block.timestamp >= mintTime, "Minting has not started"); require(totalSupply() + _amount <= MAX_SUPPLY, "Exceeded maximum supply"); require(_amount <= maxMintAmountPerTx, "xceeds max per transaction"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(!MerkleProof.verify(_merkleProof, saleMerkleRoot, leaf), "Invalid proof!"); require(_amount * whitelistPrice <= msg.value,"Not enough ether sent"); _mintQuantity[msg.sender] += _amount; require(_mintQuantity[msg.sender] <= maxMintAmountPerTx,"Exceeds max mint"); _safeMint(msg.sender, _amount); emit CostLog(msg.sender, _amount, msg.value); } function mint(uint256 _amount) external payable{ require(active && block.timestamp >= mintTime + waitMintTime, "Minting has not started"); require(totalSupply() + _amount <= MAX_SUPPLY, "Exceeded maximum supply"); require(_amount <= maxMintAmountPerTx, "xceeds max per transaction"); require(_amount * price <= msg.value,"Not enough ether sent"); _mintQuantity[msg.sender] += _amount; require(_mintQuantity[msg.sender] <= maxMintAmountPerTx,"Exceeds max mint"); _safeMint(msg.sender, _amount); emit CostLog(msg.sender, _amount, msg.value); } function ownerMint(uint256 _amount) external onlyOwner{ _safeMint(msg.sender, _amount); } function setSaleMerkleRoot(bytes32 merkleRoot) external onlyOwner { saleMerkleRoot = merkleRoot; } function setPrice(uint256 _amount) public onlyOwner { price = _amount; } function getTime() public view returns(uint256){ return block.timestamp; } function setMintTime(uint256 _mintTime) public onlyOwner { mintTime = _mintTime; } function setwhitelistPrice(uint256 _amount) public onlyOwner { whitelistPrice = _amount; } function setPerCostMint(uint256 _amount) public onlyOwner { maxMintAmountPerTx = _amount; } function withdraw() public onlyOwner { (bool success, ) = payable(OD).call{value: address(this).balance}(''); require(success); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import './IERC721A.sol'; import './Context.sol'; import './ERC165.sol'; import './Address.sol'; import './Strings.sol'; import './IERC721Receiver.sol'; contract ERC721A is Context, ERC165, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _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 _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary 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 { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @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 {} } error InvalidQueryRange();
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import './ERC721A.sol'; abstract contract ERC721AQueryable is ERC721A { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) public view returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _currentIndex) { return ownership; } ownership = _ownerships[tokenId]; if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[]( tokenIdsLength ); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _currentIndex; // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, _currentIndex)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for ( uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i ) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for ( uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i ) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import './IERC721.sol'; import './IERC721Metadata.sol'; interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// 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 rebuilds 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 from 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) { unchecked { 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 rebuilds 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 from 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) { unchecked { 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.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 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":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_payment","type":"uint256"}],"name":"CostLog","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NotRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","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":"_amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintTime","type":"uint256"}],"name":"setMintTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPerCostMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setSaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setwhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"waitMintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600a805461ffff191660011790556363dd2170600b55612a30600c5560c06040526005608081905264173539b7b760d91b60a09081526200004491600e9190620002aa565b5060405180606001604052806040815260200162002e7e6040913980516200007591600f91602090910190620002aa565b506005601055661e32b478974000601155662c68af0bb14000601255601580546001600160a01b03191673b4d7f92d02477ae93c2f8a3285b1f5c02a59fd4f179055348015620000c457600080fd5b50604080518082018252600880825267546875676c69666560c01b6020808401828152855180870190965292855284015281519192916200010891600291620002aa565b5080516200011e906003906020840190620002aa565b505060008055506200013033620001d4565b620001ce600f8054620001439062000350565b80601f0160208091040260200160405190810160405280929190818152602001828054620001719062000350565b8015620001c25780601f106200019657610100808354040283529160200191620001c2565b820191906000526020600020905b815481529060010190602001808311620001a457829003601f168201915b50506200022692505050565b6200038d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200023062000249565b80516200024590600f906020840190620002aa565b5050565b6008546001600160a01b03163314620002a85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620002b89062000350565b90600052602060002090601f016020900481019282620002dc576000855562000327565b82601f10620002f757805160ff191683800117855562000327565b8280016001018555821562000327579182015b82811115620003275782518255916020019190600101906200030a565b506200033592915062000339565b5090565b5b808211156200033557600081556001016200033a565b600181811c908216806200036557607f821691505b602082108114156200038757634e487b7160e01b600052602260045260246000fd5b50919050565b612ae1806200039d6000396000f3fe6080604052600436106102ae5760003560e01c806391b7f5ed11610175578063c6682862116100dc578063eecefa9b11610095578063f2fde38b1161006f578063f2fde38b14610803578063f91eb63014610823578063fc1a1c3614610843578063fcfff16f1461085957600080fd5b8063eecefa9b146107a3578063f19e75d4146107c3578063f2c4ce1e146107e357600080fd5b8063c6682862146106f8578063c87b56dd1461070d578063d4a417e61461072d578063da3ef23f14610743578063dda52d5314610763578063e985e9c51461078357600080fd5b8063a035b1fe1161012e578063a035b1fe1461064c578063a0712d6814610662578063a22cb46514610675578063b88d4fde14610695578063c2144dce146106b5578063c23dc68f146106cb57600080fd5b806391b7f5ed146105ac57806394354fd0146105cc57806395d89b41146105e25780639752ecf7146105f757806399a2557a1461060c578063a02956441461062c57600080fd5b8063434580f91161021957806370a08231116101d257806370a08231146104f6578063715018a61461051657806379fa1eab1461052b5780638462151c1461054b57806386478122146105785780638da5cb5b1461058e57600080fd5b8063434580f91461044c57806352d939e314610461578063557ed1ba1461047657806355f804b3146104895780635bbb2177146104a95780636352211e146104d657600080fd5b806323b872dd1161026b57806323b872dd146103a15780632f52ebb7146103c157806332cb6b0c146103d45780633ccfd60b146103ea5780633d4ab544146103ff57806342842e0e1461042c57600080fd5b806301ffc9a7146102b357806302fb0c5e146102e857806306fdde0314610302578063081812fc14610324578063095ea7b31461035c57806318160ddd1461037e575b600080fd5b3480156102bf57600080fd5b506102d36102ce3660046125f5565b610878565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50600a546102d39060ff1681565b34801561030e57600080fd5b506103176108ca565b6040516102df9190612922565b34801561033057600080fd5b5061034461033f3660046125dc565b61095c565b6040516001600160a01b0390911681526020016102df565b34801561036857600080fd5b5061037c6103773660046124d3565b6109a0565b005b34801561038a57600080fd5b50600154600054035b6040519081526020016102df565b3480156103ad57600080fd5b5061037c6103bc3660046123e0565b610a27565b61037c6103cf366004612677565b610a32565b3480156103e057600080fd5b50610393610d0581565b3480156103f657600080fd5b5061037c610d0b565b34801561040b57600080fd5b5061039361041a366004612392565b60136020526000908152604090205481565b34801561043857600080fd5b5061037c6104473660046123e0565b610d76565b34801561045857600080fd5b50610317610d91565b34801561046d57600080fd5b5061037c610e1f565b34801561048257600080fd5b5042610393565b34801561049557600080fd5b5061037c6104a436600461262f565b610e3b565b3480156104b557600080fd5b506104c96104c4366004612530565b610e5a565b6040516102df9190612880565b3480156104e257600080fd5b506103446104f13660046125dc565b610f20565b34801561050257600080fd5b50610393610511366004612392565b610f32565b34801561052257600080fd5b5061037c610f80565b34801561053757600080fd5b50601554610344906001600160a01b031681565b34801561055757600080fd5b5061056b610566366004612392565b610f94565b6040516102df91906128ea565b34801561058457600080fd5b50610393600b5481565b34801561059a57600080fd5b506008546001600160a01b0316610344565b3480156105b857600080fd5b5061037c6105c73660046125dc565b6110e1565b3480156105d857600080fd5b5061039360105481565b3480156105ee57600080fd5b506103176110ee565b34801561060357600080fd5b5061037c6110fd565b34801561061857600080fd5b5061056b6106273660046124fd565b611122565b34801561063857600080fd5b5061037c6106473660046125dc565b6112da565b34801561065857600080fd5b5061039360125481565b61037c6106703660046125dc565b6112e7565b34801561068157600080fd5b5061037c610690366004612497565b61150d565b3480156106a157600080fd5b5061037c6106b036600461241c565b6115a3565b3480156106c157600080fd5b50610393600c5481565b3480156106d757600080fd5b506106eb6106e63660046125dc565b6115ed565b6040516102df9190612935565b34801561070457600080fd5b5061031761169b565b34801561071957600080fd5b506103176107283660046125dc565b6116a8565b34801561073957600080fd5b5061039360095481565b34801561074f57600080fd5b5061037c61075e36600461262f565b611861565b34801561076f57600080fd5b5061037c61077e3660046125dc565b61187c565b34801561078f57600080fd5b506102d361079e3660046123ad565b611889565b3480156107af57600080fd5b5061037c6107be3660046125dc565b6118b7565b3480156107cf57600080fd5b5061037c6107de3660046125dc565b6118c4565b3480156107ef57600080fd5b5061037c6107fe36600461262f565b6118d6565b34801561080f57600080fd5b5061037c61081e366004612392565b6118f1565b34801561082f57600080fd5b5061037c61083e3660046125dc565b611967565b34801561084f57600080fd5b5061039360115481565b34801561086557600080fd5b50600a546102d390610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806108a957506001600160e01b03198216635b5e139f60e01b145b806108c457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108d9906129fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610905906129fd565b80156109525780601f1061092757610100808354040283529160200191610952565b820191906000526020600020905b81548152906001019060200180831161093557829003601f168201915b5050505050905090565b600061096782611974565b610984576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109ab82610f20565b9050806001600160a01b0316836001600160a01b031614156109e05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a17576109fa8133611889565b610a17576040516367d9dca160e11b815260040160405180910390fd5b610a2283838361199f565b505050565b610a228383836119fb565b600a5460ff168015610a465750600b544210155b610a915760405162461bcd60e51b8152602060048201526017602482015276135a5b9d1a5b99c81a185cc81b9bdd081cdd185c9d1959604a1b60448201526064015b60405180910390fd5b610d0583610aa26001546000540390565b610aac919061299a565b1115610af45760405162461bcd60e51b81526020600482015260176024820152764578636565646564206d6178696d756d20737570706c7960481b6044820152606401610a88565b601054831115610b465760405162461bcd60e51b815260206004820152601a60248201527f786365656473206d617820706572207472616e73616374696f6e0000000000006044820152606401610a88565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610bc0838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150849050611be8565b15610bfe5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610a88565b3460115485610c0d91906129b2565b1115610c535760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610a88565b3360009081526013602052604081208054869290610c7290849061299a565b9091555050601054336000908152601360205260409020541115610ccc5760405162461bcd60e51b8152602060048201526011602482015270115e18d959591cc81b585e08081b5a5b9d607a1b6044820152606401610a88565b610cd63385611bfe565b6040513490859033907f9f3488b493b562d1056a2765237072a15ae05e985908667781eddf46305e9bff90600090a450505050565b610d13611c18565b6015546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610d60576040519150601f19603f3d011682016040523d82523d6000602084013e610d65565b606091505b5050905080610d7357600080fd5b50565b610a22838383604051806020016040528060008152506115a3565b600f8054610d9e906129fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610dca906129fd565b8015610e175780601f10610dec57610100808354040283529160200191610e17565b820191906000526020600020905b815481529060010190602001808311610dfa57829003601f168201915b505050505081565b610e27611c18565b600a805460ff19811660ff90911615179055565b610e43611c18565b8051610e5690600d906020840190612286565b5050565b80516060906000816001600160401b03811115610e7957610e79612a7f565b604051908082528060200260200182016040528015610ec457816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610e975790505b50905060005b828114610f1857610ef3858281518110610ee657610ee6612a69565b60200260200101516115ed565b828281518110610f0557610f05612a69565b6020908102919091010152600101610eca565b509392505050565b6000610f2b82611c72565b5192915050565b60006001600160a01b038216610f5b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610f88611c18565b610f926000611d8c565b565b60606000806000610fa485610f32565b90506000816001600160401b03811115610fc057610fc0612a7f565b604051908082528060200260200182016040528015610fe9578160200160208202803683370190505b50905061100f604080516060810182526000808252602082018190529181019190915290565b60005b8386146110d557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250611078576110cd565b81516001600160a01b03161561108d57815194505b876001600160a01b0316856001600160a01b031614156110cd57808387806001019850815181106110c0576110c0612a69565b6020026020010181815250505b600101611012565b50909695505050505050565b6110e9611c18565b601255565b6060600380546108d9906129fd565b611105611c18565b600a805461ff001981166101009182900460ff1615909102179055565b606081831061114457604051631960ccad60e11b815260040160405180910390fd5b6000805480841115611154578093505b600061115f87610f32565b90508486101561117e5785850381811015611178578091505b50611182565b5060005b6000816001600160401b0381111561119c5761119c612a7f565b6040519080825280602002602001820160405280156111c5578160200160208202803683370190505b509050816111d85793506112d392505050565b60006111e3886115ed565b9050600081604001516111f4575080515b885b8881141580156112065750848714155b156112c757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252935061126a576112bf565b82516001600160a01b03161561127f57825191505b8a6001600160a01b0316826001600160a01b031614156112bf57808488806001019950815181106112b2576112b2612a69565b6020026020010181815250505b6001016111f6565b50505092835250909150505b9392505050565b6112e2611c18565b601155565b600a5460ff1680156113085750600c54600b54611304919061299a565b4210155b61134e5760405162461bcd60e51b8152602060048201526017602482015276135a5b9d1a5b99c81a185cc81b9bdd081cdd185c9d1959604a1b6044820152606401610a88565b610d058161135f6001546000540390565b611369919061299a565b11156113b15760405162461bcd60e51b81526020600482015260176024820152764578636565646564206d6178696d756d20737570706c7960481b6044820152606401610a88565b6010548111156114035760405162461bcd60e51b815260206004820152601a60248201527f786365656473206d617820706572207472616e73616374696f6e0000000000006044820152606401610a88565b346012548261141291906129b2565b11156114585760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610a88565b336000908152601360205260408120805483929061147790849061299a565b90915550506010543360009081526013602052604090205411156114d15760405162461bcd60e51b8152602060048201526011602482015270115e18d959591cc81b585e08081b5a5b9d607a1b6044820152606401610a88565b6114db3382611bfe565b6040513490829033907f9f3488b493b562d1056a2765237072a15ae05e985908667781eddf46305e9bff90600090a450565b6001600160a01b0382163314156115375760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115ae8484846119fb565b6001600160a01b0383163b156115e7576115ca84848484611dde565b6115e7576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810183905290915060005483106116325792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906116925792915050565b6112d383611c72565b600e8054610d9e906129fd565b60606116b382611974565b6117175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a88565b600a54610100900460ff1661175b57600f61173183611ed6565b600e60405160200161174593929190612827565b6040516020818303038152906040529050919050565b60008281526014602052604081208054611774906129fd565b80601f01602080910402602001604051908101604052809291908181526020018280546117a0906129fd565b80156117ed5780601f106117c2576101008083540402835291602001916117ed565b820191906000526020600020905b8154815290600101906020018083116117d057829003601f168201915b5050505050905060006117fe611f6a565b9050805160001415611811575092915050565b81511561184357808260405160200161182b9291906127bb565b60405160208183030381529060405292505050919050565b8061184d85611ed6565b600e60405160200161182b939291906127ea565b611869611c18565b8051610e5690600e906020840190612286565b611884611c18565b600b55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6118bf611c18565b601055565b6118cc611c18565b610d733382611bfe565b6118de611c18565b8051610e5690600f906020840190612286565b6118f9611c18565b6001600160a01b03811661195e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a88565b610d7381611d8c565b61196f611c18565b600955565b60008054821080156108c4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a0682611c72565b9050836001600160a01b031681600001516001600160a01b031614611a3d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611a5b5750611a5b8533611889565b80611a76575033611a6b8461095c565b6001600160a01b0316145b905080611a9657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611abd57604051633a954ecd60e21b815260040160405180910390fd5b611ac96000848761199f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611b9d576000548214611b9d57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600082611bf58584611f79565b14949350505050565b610e56828260405180602001604052806000815250611fbe565b6008546001600160a01b03163314610f925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a88565b604080516060810182526000808252602082018190529181019190915281600054811015611d7357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d715780516001600160a01b031615611d08579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d6c579392505050565b611d08565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e13903390899088908890600401612843565b602060405180830381600087803b158015611e2d57600080fd5b505af1925050508015611e5d575060408051601f3d908101601f19168201909252611e5a91810190612612565b60015b611eb8573d808015611e8b576040519150601f19603f3d011682016040523d82523d6000602084013e611e90565b606091505b508051611eb0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606000611ee383612182565b60010190506000816001600160401b03811115611f0257611f02612a7f565b6040519080825280601f01601f191660200182016040528015611f2c576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611f6557610f18565b611f36565b6060600d80546108d9906129fd565b600081815b8451811015610f1857611faa82868381518110611f9d57611f9d612a69565b602002602001015161225a565b915080611fb681612a38565b915050611f7e565b6000546001600160a01b038416611fe757604051622e076360e81b815260040160405180910390fd5b826120055760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b1561212d575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120f66000878480600101955087611dde565b612113576040516368d2bf6b60e11b815260040160405180910390fd5b8082106120ab57826000541461212857600080fd5b612172565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061212e575b5060009081556115e79085838684565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106121c15772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106121ed576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061220b57662386f26fc10000830492506010015b6305f5e1008310612223576305f5e100830492506008015b612710831061223757612710830492506004015b60648310612249576064830492506002015b600a83106108c45760010192915050565b60008183106122765760008281526020849052604090206112d3565b5060009182526020526040902090565b828054612292906129fd565b90600052602060002090601f0160209004810192826122b457600085556122fa565b82601f106122cd57805160ff19168380011785556122fa565b828001600101855582156122fa579182015b828111156122fa5782518255916020019190600101906122df565b5061230692915061230a565b5090565b5b80821115612306576000815560010161230b565b60006001600160401b0383111561233857612338612a7f565b61234b601f8401601f191660200161296a565b905082815283838301111561235f57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461238d57600080fd5b919050565b6000602082840312156123a457600080fd5b6112d382612376565b600080604083850312156123c057600080fd5b6123c983612376565b91506123d760208401612376565b90509250929050565b6000806000606084860312156123f557600080fd5b6123fe84612376565b925061240c60208501612376565b9150604084013590509250925092565b6000806000806080858703121561243257600080fd5b61243b85612376565b935061244960208601612376565b92506040850135915060608501356001600160401b0381111561246b57600080fd5b8501601f8101871361247c57600080fd5b61248b8782356020840161231f565b91505092959194509250565b600080604083850312156124aa57600080fd5b6124b383612376565b9150602083013580151581146124c857600080fd5b809150509250929050565b600080604083850312156124e657600080fd5b6124ef83612376565b946020939093013593505050565b60008060006060848603121561251257600080fd5b61251b84612376565b95602085013595506040909401359392505050565b6000602080838503121561254357600080fd5b82356001600160401b038082111561255a57600080fd5b818501915085601f83011261256e57600080fd5b81358181111561258057612580612a7f565b8060051b915061259184830161296a565b8181528481019084860184860187018a10156125ac57600080fd5b600095505b838610156125cf5780358352600195909501949186019186016125b1565b5098975050505050505050565b6000602082840312156125ee57600080fd5b5035919050565b60006020828403121561260757600080fd5b81356112d381612a95565b60006020828403121561262457600080fd5b81516112d381612a95565b60006020828403121561264157600080fd5b81356001600160401b0381111561265757600080fd5b8201601f8101841361266857600080fd5b611ece8482356020840161231f565b60008060006040848603121561268c57600080fd5b8335925060208401356001600160401b03808211156126aa57600080fd5b818601915086601f8301126126be57600080fd5b8135818111156126cd57600080fd5b8760208260051b85010111156126e257600080fd5b6020830194508093505050509250925092565b6000815180845261270d8160208601602086016129d1565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061273b57607f831692505b602080841082141561275d57634e487b7160e01b600052602260045260246000fd5b8180156127715760018114612782576127af565b60ff198616895284890196506127af565b60008881526020902060005b868110156127a75781548b82015290850190830161278e565b505084890196505b50505050505092915050565b600083516127cd8184602088016129d1565b8351908301906127e18183602088016129d1565b01949350505050565b600084516127fc8184602089016129d1565b8451908301906128108183602089016129d1565b61281c81830186612721565b979650505050505050565b60006128338286612721565b84516128108183602089016129d1565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612876908301846126f5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156110d5576128d783855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b928401926060929092019160010161289c565b6020808252825182820181905260009190848201906040850190845b818110156110d557835183529284019291840191600101612906565b6020815260006112d360208301846126f5565b81516001600160a01b031681526020808301516001600160401b031690820152604080830151151590820152606081016108c4565b604051601f8201601f191681016001600160401b038111828210171561299257612992612a7f565b604052919050565b600082198211156129ad576129ad612a53565b500190565b60008160001904831182151516156129cc576129cc612a53565b500290565b60005b838110156129ec5781810151838201526020016129d4565b838111156115e75750506000910152565b600181811c90821680612a1157607f821691505b60208210811415612a3257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a4c57612a4c612a53565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d7357600080fdfea2646970667358221220ecbc38b9f2fba9f9fd8d22c1df4d75cbf734e180333bf8e1ab455a69fd8c7b1564736f6c6343000807003368747470733a2f2f63646e2e746875676c6966652e776f726c642f6d6574612f38343831323362383530613134333932313166646463656261652f6a736f6e2f
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c806391b7f5ed11610175578063c6682862116100dc578063eecefa9b11610095578063f2fde38b1161006f578063f2fde38b14610803578063f91eb63014610823578063fc1a1c3614610843578063fcfff16f1461085957600080fd5b8063eecefa9b146107a3578063f19e75d4146107c3578063f2c4ce1e146107e357600080fd5b8063c6682862146106f8578063c87b56dd1461070d578063d4a417e61461072d578063da3ef23f14610743578063dda52d5314610763578063e985e9c51461078357600080fd5b8063a035b1fe1161012e578063a035b1fe1461064c578063a0712d6814610662578063a22cb46514610675578063b88d4fde14610695578063c2144dce146106b5578063c23dc68f146106cb57600080fd5b806391b7f5ed146105ac57806394354fd0146105cc57806395d89b41146105e25780639752ecf7146105f757806399a2557a1461060c578063a02956441461062c57600080fd5b8063434580f91161021957806370a08231116101d257806370a08231146104f6578063715018a61461051657806379fa1eab1461052b5780638462151c1461054b57806386478122146105785780638da5cb5b1461058e57600080fd5b8063434580f91461044c57806352d939e314610461578063557ed1ba1461047657806355f804b3146104895780635bbb2177146104a95780636352211e146104d657600080fd5b806323b872dd1161026b57806323b872dd146103a15780632f52ebb7146103c157806332cb6b0c146103d45780633ccfd60b146103ea5780633d4ab544146103ff57806342842e0e1461042c57600080fd5b806301ffc9a7146102b357806302fb0c5e146102e857806306fdde0314610302578063081812fc14610324578063095ea7b31461035c57806318160ddd1461037e575b600080fd5b3480156102bf57600080fd5b506102d36102ce3660046125f5565b610878565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50600a546102d39060ff1681565b34801561030e57600080fd5b506103176108ca565b6040516102df9190612922565b34801561033057600080fd5b5061034461033f3660046125dc565b61095c565b6040516001600160a01b0390911681526020016102df565b34801561036857600080fd5b5061037c6103773660046124d3565b6109a0565b005b34801561038a57600080fd5b50600154600054035b6040519081526020016102df565b3480156103ad57600080fd5b5061037c6103bc3660046123e0565b610a27565b61037c6103cf366004612677565b610a32565b3480156103e057600080fd5b50610393610d0581565b3480156103f657600080fd5b5061037c610d0b565b34801561040b57600080fd5b5061039361041a366004612392565b60136020526000908152604090205481565b34801561043857600080fd5b5061037c6104473660046123e0565b610d76565b34801561045857600080fd5b50610317610d91565b34801561046d57600080fd5b5061037c610e1f565b34801561048257600080fd5b5042610393565b34801561049557600080fd5b5061037c6104a436600461262f565b610e3b565b3480156104b557600080fd5b506104c96104c4366004612530565b610e5a565b6040516102df9190612880565b3480156104e257600080fd5b506103446104f13660046125dc565b610f20565b34801561050257600080fd5b50610393610511366004612392565b610f32565b34801561052257600080fd5b5061037c610f80565b34801561053757600080fd5b50601554610344906001600160a01b031681565b34801561055757600080fd5b5061056b610566366004612392565b610f94565b6040516102df91906128ea565b34801561058457600080fd5b50610393600b5481565b34801561059a57600080fd5b506008546001600160a01b0316610344565b3480156105b857600080fd5b5061037c6105c73660046125dc565b6110e1565b3480156105d857600080fd5b5061039360105481565b3480156105ee57600080fd5b506103176110ee565b34801561060357600080fd5b5061037c6110fd565b34801561061857600080fd5b5061056b6106273660046124fd565b611122565b34801561063857600080fd5b5061037c6106473660046125dc565b6112da565b34801561065857600080fd5b5061039360125481565b61037c6106703660046125dc565b6112e7565b34801561068157600080fd5b5061037c610690366004612497565b61150d565b3480156106a157600080fd5b5061037c6106b036600461241c565b6115a3565b3480156106c157600080fd5b50610393600c5481565b3480156106d757600080fd5b506106eb6106e63660046125dc565b6115ed565b6040516102df9190612935565b34801561070457600080fd5b5061031761169b565b34801561071957600080fd5b506103176107283660046125dc565b6116a8565b34801561073957600080fd5b5061039360095481565b34801561074f57600080fd5b5061037c61075e36600461262f565b611861565b34801561076f57600080fd5b5061037c61077e3660046125dc565b61187c565b34801561078f57600080fd5b506102d361079e3660046123ad565b611889565b3480156107af57600080fd5b5061037c6107be3660046125dc565b6118b7565b3480156107cf57600080fd5b5061037c6107de3660046125dc565b6118c4565b3480156107ef57600080fd5b5061037c6107fe36600461262f565b6118d6565b34801561080f57600080fd5b5061037c61081e366004612392565b6118f1565b34801561082f57600080fd5b5061037c61083e3660046125dc565b611967565b34801561084f57600080fd5b5061039360115481565b34801561086557600080fd5b50600a546102d390610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806108a957506001600160e01b03198216635b5e139f60e01b145b806108c457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108d9906129fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610905906129fd565b80156109525780601f1061092757610100808354040283529160200191610952565b820191906000526020600020905b81548152906001019060200180831161093557829003601f168201915b5050505050905090565b600061096782611974565b610984576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109ab82610f20565b9050806001600160a01b0316836001600160a01b031614156109e05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a17576109fa8133611889565b610a17576040516367d9dca160e11b815260040160405180910390fd5b610a2283838361199f565b505050565b610a228383836119fb565b600a5460ff168015610a465750600b544210155b610a915760405162461bcd60e51b8152602060048201526017602482015276135a5b9d1a5b99c81a185cc81b9bdd081cdd185c9d1959604a1b60448201526064015b60405180910390fd5b610d0583610aa26001546000540390565b610aac919061299a565b1115610af45760405162461bcd60e51b81526020600482015260176024820152764578636565646564206d6178696d756d20737570706c7960481b6044820152606401610a88565b601054831115610b465760405162461bcd60e51b815260206004820152601a60248201527f786365656473206d617820706572207472616e73616374696f6e0000000000006044820152606401610a88565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610bc0838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150849050611be8565b15610bfe5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610a88565b3460115485610c0d91906129b2565b1115610c535760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610a88565b3360009081526013602052604081208054869290610c7290849061299a565b9091555050601054336000908152601360205260409020541115610ccc5760405162461bcd60e51b8152602060048201526011602482015270115e18d959591cc81b585e08081b5a5b9d607a1b6044820152606401610a88565b610cd63385611bfe565b6040513490859033907f9f3488b493b562d1056a2765237072a15ae05e985908667781eddf46305e9bff90600090a450505050565b610d13611c18565b6015546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610d60576040519150601f19603f3d011682016040523d82523d6000602084013e610d65565b606091505b5050905080610d7357600080fd5b50565b610a22838383604051806020016040528060008152506115a3565b600f8054610d9e906129fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610dca906129fd565b8015610e175780601f10610dec57610100808354040283529160200191610e17565b820191906000526020600020905b815481529060010190602001808311610dfa57829003601f168201915b505050505081565b610e27611c18565b600a805460ff19811660ff90911615179055565b610e43611c18565b8051610e5690600d906020840190612286565b5050565b80516060906000816001600160401b03811115610e7957610e79612a7f565b604051908082528060200260200182016040528015610ec457816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610e975790505b50905060005b828114610f1857610ef3858281518110610ee657610ee6612a69565b60200260200101516115ed565b828281518110610f0557610f05612a69565b6020908102919091010152600101610eca565b509392505050565b6000610f2b82611c72565b5192915050565b60006001600160a01b038216610f5b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610f88611c18565b610f926000611d8c565b565b60606000806000610fa485610f32565b90506000816001600160401b03811115610fc057610fc0612a7f565b604051908082528060200260200182016040528015610fe9578160200160208202803683370190505b50905061100f604080516060810182526000808252602082018190529181019190915290565b60005b8386146110d557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250611078576110cd565b81516001600160a01b03161561108d57815194505b876001600160a01b0316856001600160a01b031614156110cd57808387806001019850815181106110c0576110c0612a69565b6020026020010181815250505b600101611012565b50909695505050505050565b6110e9611c18565b601255565b6060600380546108d9906129fd565b611105611c18565b600a805461ff001981166101009182900460ff1615909102179055565b606081831061114457604051631960ccad60e11b815260040160405180910390fd5b6000805480841115611154578093505b600061115f87610f32565b90508486101561117e5785850381811015611178578091505b50611182565b5060005b6000816001600160401b0381111561119c5761119c612a7f565b6040519080825280602002602001820160405280156111c5578160200160208202803683370190505b509050816111d85793506112d392505050565b60006111e3886115ed565b9050600081604001516111f4575080515b885b8881141580156112065750848714155b156112c757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252935061126a576112bf565b82516001600160a01b03161561127f57825191505b8a6001600160a01b0316826001600160a01b031614156112bf57808488806001019950815181106112b2576112b2612a69565b6020026020010181815250505b6001016111f6565b50505092835250909150505b9392505050565b6112e2611c18565b601155565b600a5460ff1680156113085750600c54600b54611304919061299a565b4210155b61134e5760405162461bcd60e51b8152602060048201526017602482015276135a5b9d1a5b99c81a185cc81b9bdd081cdd185c9d1959604a1b6044820152606401610a88565b610d058161135f6001546000540390565b611369919061299a565b11156113b15760405162461bcd60e51b81526020600482015260176024820152764578636565646564206d6178696d756d20737570706c7960481b6044820152606401610a88565b6010548111156114035760405162461bcd60e51b815260206004820152601a60248201527f786365656473206d617820706572207472616e73616374696f6e0000000000006044820152606401610a88565b346012548261141291906129b2565b11156114585760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610a88565b336000908152601360205260408120805483929061147790849061299a565b90915550506010543360009081526013602052604090205411156114d15760405162461bcd60e51b8152602060048201526011602482015270115e18d959591cc81b585e08081b5a5b9d607a1b6044820152606401610a88565b6114db3382611bfe565b6040513490829033907f9f3488b493b562d1056a2765237072a15ae05e985908667781eddf46305e9bff90600090a450565b6001600160a01b0382163314156115375760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115ae8484846119fb565b6001600160a01b0383163b156115e7576115ca84848484611dde565b6115e7576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810183905290915060005483106116325792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906116925792915050565b6112d383611c72565b600e8054610d9e906129fd565b60606116b382611974565b6117175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a88565b600a54610100900460ff1661175b57600f61173183611ed6565b600e60405160200161174593929190612827565b6040516020818303038152906040529050919050565b60008281526014602052604081208054611774906129fd565b80601f01602080910402602001604051908101604052809291908181526020018280546117a0906129fd565b80156117ed5780601f106117c2576101008083540402835291602001916117ed565b820191906000526020600020905b8154815290600101906020018083116117d057829003601f168201915b5050505050905060006117fe611f6a565b9050805160001415611811575092915050565b81511561184357808260405160200161182b9291906127bb565b60405160208183030381529060405292505050919050565b8061184d85611ed6565b600e60405160200161182b939291906127ea565b611869611c18565b8051610e5690600e906020840190612286565b611884611c18565b600b55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6118bf611c18565b601055565b6118cc611c18565b610d733382611bfe565b6118de611c18565b8051610e5690600f906020840190612286565b6118f9611c18565b6001600160a01b03811661195e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a88565b610d7381611d8c565b61196f611c18565b600955565b60008054821080156108c4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a0682611c72565b9050836001600160a01b031681600001516001600160a01b031614611a3d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611a5b5750611a5b8533611889565b80611a76575033611a6b8461095c565b6001600160a01b0316145b905080611a9657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611abd57604051633a954ecd60e21b815260040160405180910390fd5b611ac96000848761199f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611b9d576000548214611b9d57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600082611bf58584611f79565b14949350505050565b610e56828260405180602001604052806000815250611fbe565b6008546001600160a01b03163314610f925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a88565b604080516060810182526000808252602082018190529181019190915281600054811015611d7357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d715780516001600160a01b031615611d08579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d6c579392505050565b611d08565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e13903390899088908890600401612843565b602060405180830381600087803b158015611e2d57600080fd5b505af1925050508015611e5d575060408051601f3d908101601f19168201909252611e5a91810190612612565b60015b611eb8573d808015611e8b576040519150601f19603f3d011682016040523d82523d6000602084013e611e90565b606091505b508051611eb0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606000611ee383612182565b60010190506000816001600160401b03811115611f0257611f02612a7f565b6040519080825280601f01601f191660200182016040528015611f2c576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611f6557610f18565b611f36565b6060600d80546108d9906129fd565b600081815b8451811015610f1857611faa82868381518110611f9d57611f9d612a69565b602002602001015161225a565b915080611fb681612a38565b915050611f7e565b6000546001600160a01b038416611fe757604051622e076360e81b815260040160405180910390fd5b826120055760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b1561212d575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120f66000878480600101955087611dde565b612113576040516368d2bf6b60e11b815260040160405180910390fd5b8082106120ab57826000541461212857600080fd5b612172565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061212e575b5060009081556115e79085838684565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106121c15772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106121ed576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061220b57662386f26fc10000830492506010015b6305f5e1008310612223576305f5e100830492506008015b612710831061223757612710830492506004015b60648310612249576064830492506002015b600a83106108c45760010192915050565b60008183106122765760008281526020849052604090206112d3565b5060009182526020526040902090565b828054612292906129fd565b90600052602060002090601f0160209004810192826122b457600085556122fa565b82601f106122cd57805160ff19168380011785556122fa565b828001600101855582156122fa579182015b828111156122fa5782518255916020019190600101906122df565b5061230692915061230a565b5090565b5b80821115612306576000815560010161230b565b60006001600160401b0383111561233857612338612a7f565b61234b601f8401601f191660200161296a565b905082815283838301111561235f57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461238d57600080fd5b919050565b6000602082840312156123a457600080fd5b6112d382612376565b600080604083850312156123c057600080fd5b6123c983612376565b91506123d760208401612376565b90509250929050565b6000806000606084860312156123f557600080fd5b6123fe84612376565b925061240c60208501612376565b9150604084013590509250925092565b6000806000806080858703121561243257600080fd5b61243b85612376565b935061244960208601612376565b92506040850135915060608501356001600160401b0381111561246b57600080fd5b8501601f8101871361247c57600080fd5b61248b8782356020840161231f565b91505092959194509250565b600080604083850312156124aa57600080fd5b6124b383612376565b9150602083013580151581146124c857600080fd5b809150509250929050565b600080604083850312156124e657600080fd5b6124ef83612376565b946020939093013593505050565b60008060006060848603121561251257600080fd5b61251b84612376565b95602085013595506040909401359392505050565b6000602080838503121561254357600080fd5b82356001600160401b038082111561255a57600080fd5b818501915085601f83011261256e57600080fd5b81358181111561258057612580612a7f565b8060051b915061259184830161296a565b8181528481019084860184860187018a10156125ac57600080fd5b600095505b838610156125cf5780358352600195909501949186019186016125b1565b5098975050505050505050565b6000602082840312156125ee57600080fd5b5035919050565b60006020828403121561260757600080fd5b81356112d381612a95565b60006020828403121561262457600080fd5b81516112d381612a95565b60006020828403121561264157600080fd5b81356001600160401b0381111561265757600080fd5b8201601f8101841361266857600080fd5b611ece8482356020840161231f565b60008060006040848603121561268c57600080fd5b8335925060208401356001600160401b03808211156126aa57600080fd5b818601915086601f8301126126be57600080fd5b8135818111156126cd57600080fd5b8760208260051b85010111156126e257600080fd5b6020830194508093505050509250925092565b6000815180845261270d8160208601602086016129d1565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061273b57607f831692505b602080841082141561275d57634e487b7160e01b600052602260045260246000fd5b8180156127715760018114612782576127af565b60ff198616895284890196506127af565b60008881526020902060005b868110156127a75781548b82015290850190830161278e565b505084890196505b50505050505092915050565b600083516127cd8184602088016129d1565b8351908301906127e18183602088016129d1565b01949350505050565b600084516127fc8184602089016129d1565b8451908301906128108183602089016129d1565b61281c81830186612721565b979650505050505050565b60006128338286612721565b84516128108183602089016129d1565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612876908301846126f5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156110d5576128d783855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b928401926060929092019160010161289c565b6020808252825182820181905260009190848201906040850190845b818110156110d557835183529284019291840191600101612906565b6020815260006112d360208301846126f5565b81516001600160a01b031681526020808301516001600160401b031690820152604080830151151590820152606081016108c4565b604051601f8201601f191681016001600160401b038111828210171561299257612992612a7f565b604052919050565b600082198211156129ad576129ad612a53565b500190565b60008160001904831182151516156129cc576129cc612a53565b500290565b60005b838110156129ec5781810151838201526020016129d4565b838111156115e75750506000910152565b600181811c90821680612a1157607f821691505b60208210811415612a3257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a4c57612a4c612a53565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d7357600080fdfea2646970667358221220ecbc38b9f2fba9f9fd8d22c1df4d75cbf734e180333bf8e1ab455a69fd8c7b1564736f6c63430008070033
Deployed Bytecode Sourcemap
168:5777:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2355:300:3;;;;;;;;;;-1:-1:-1;2355:300:3;;;;;:::i;:::-;;:::i;:::-;;;11670:14:15;;11663:22;11645:41;;11633:2;11618:18;2355:300:3;;;;;;;;289:25:14;;;;;;;;;;-1:-1:-1;289:25:14;;;;;;;;5385:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6842:200::-;;;;;;;;;;-1:-1:-1;6842:200:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9602:32:15;;;9584:51;;9572:2;9557:18;6842:200:3;9438:203:15;6418:363:3;;;;;;;;;;-1:-1:-1;6418:363:3;;;;;:::i;:::-;;:::i;:::-;;1617:306;;;;;;;;;;-1:-1:-1;1876:12:3;;1670:7;1860:13;:28;1617:306;;;11843:25:15;;;11831:2;11816:18;1617:306:3;11697:177:15;7681:164:3;;;;;;;;;;-1:-1:-1;7681:164:3;;;;;:::i;:::-;;:::i;3627:801:14:-;;;;;;:::i;:::-;;:::i;610:41::-;;;;;;;;;;;;647:4;610:41;;5793:149;;;;;;;;;;;;;:::i;797:48::-;;;;;;;;;;-1:-1:-1;797:48:14;;;;;:::i;:::-;;;;;;;;;;;;;;7911:179:3;;;;;;;;;;-1:-1:-1;7911:179:3;;;;;:::i;:::-;;:::i;505:97:14:-;;;;;;;;;;;;;:::i;3549:72::-;;;;;;;;;;;;;:::i;5375:86::-;;;;;;;;;;-1:-1:-1;5439:15:14;5375:86;;3229:102;;;;;;;;;;-1:-1:-1;3229:102:14;;;;;:::i;:::-;;:::i;1319:508:4:-;;;;;;;;;;-1:-1:-1;1319:508:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5200:123:3:-;;;;;;;;;;-1:-1:-1;5200:123:3;;;;;:::i;:::-;;:::i;2714:203::-;;;;;;;;;;-1:-1:-1;2714:203:3;;;;;:::i;:::-;;:::i;1755:101:12:-;;;;;;;;;;;;;:::i;903:62:14:-;;;;;;;;;;-1:-1:-1;903:62:14;;;;-1:-1:-1;;;;;903:62:14;;;5141:951:4;;;;;;;;;;-1:-1:-1;5141:951:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;351:36:14:-;;;;;;;;;;;;;;;;1125:85:12;;;;;;;;;;-1:-1:-1;1197:6:12;;-1:-1:-1;;;;;1197:6:12;1125:85;;5280:84:14;;;;;;;;;;-1:-1:-1;5280:84:14;;;;;:::i;:::-;;:::i;658:37::-;;;;;;;;;;;;;;;;5547:102:3;;;;;;;;;;;;;:::i;3477:66:14:-;;;;;;;;;;;;;:::i;2203:2501:4:-;;;;;;;;;;-1:-1:-1;2203:2501:4;;;;;:::i;:::-;;:::i;5567:102:14:-;;;;;;;;;;-1:-1:-1;5567:102:14;;;;;:::i;:::-;;:::i;754:35::-;;;;;;;;;;;;;;;;4434:617;;;;;;:::i;:::-;;:::i;7109:282:3:-;;;;;;;;;;-1:-1:-1;7109:282:3;;;;;:::i;:::-;;:::i;8156:360::-;;;;;;;;;;-1:-1:-1;8156:360:3;;;;;:::i;:::-;;:::i;394:38:14:-;;;;;;;;;;;;;;;;739:427:4;;;;;;;;;;-1:-1:-1;739:427:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;460:37:14:-;;;;;;;;;;;;;:::i;2194:778::-;;;;;;;;;;-1:-1:-1;2194:778:14;;;;;:::i;:::-;;:::i;253:29::-;;;;;;;;;;;;;;;;3341:130;;;;;;;;;;-1:-1:-1;3341:130:14;;;;;:::i;:::-;;:::i;5467:94::-;;;;;;;;;;-1:-1:-1;5467:94:14;;;;;:::i;:::-;;:::i;7457:162:3:-;;;;;;;;;;-1:-1:-1;7457:162:3;;;;;:::i;:::-;;:::i;5676:103:14:-;;;;;;;;;;-1:-1:-1;5676:103:14;;;;;:::i;:::-;;:::i;5057:101::-;;;;;;;;;;-1:-1:-1;5057:101:14;;;;;:::i;:::-;;:::i;3094:124::-;;;;;;;;;;-1:-1:-1;3094:124:14;;;;;:::i;:::-;;:::i;2005:198:12:-;;;;;;;;;;-1:-1:-1;2005:198:12;;;;;:::i;:::-;;:::i;5164:110:14:-;;;;;;;;;;-1:-1:-1;5164:110:14;;;;;:::i;:::-;;:::i;702:44::-;;;;;;;;;;;;;;;;320:24;;;;;;;;;;-1:-1:-1;320:24:14;;;;;;;;;;;2355:300:3;2457:4;-1:-1:-1;;;;;;2492:40:3;;-1:-1:-1;;;2492:40:3;;:104;;-1:-1:-1;;;;;;;2548:48:3;;-1:-1:-1;;;2548:48:3;2492:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:2;;;2612:36:3;2473:175;2355:300;-1:-1:-1;;2355:300:3:o;5385:98::-;5439:13;5471:5;5464:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5385:98;:::o;6842:200::-;6910:7;6934:16;6942:7;6934;:16::i;:::-;6929:64;;6959:34;;-1:-1:-1;;;6959:34:3;;;;;;;;;;;6929:64;-1:-1:-1;7011:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7011:24:3;;6842:200::o;6418:363::-;6490:13;6506:24;6522:7;6506:15;:24::i;:::-;6490:40;;6550:5;-1:-1:-1;;;;;6544:11:3;:2;-1:-1:-1;;;;;6544:11:3;;6540:48;;;6564:24;;-1:-1:-1;;;6564:24:3;;;;;;;;;;;6540:48;666:10:1;-1:-1:-1;;;;;6603:21:3;;;6599:137;;6630:37;6647:5;666:10:1;7457:162:3;:::i;6630:37::-;6626:110;;6690:35;;-1:-1:-1;;;6690:35:3;;;;;;;;;;;6626:110;6746:28;6755:2;6759:7;6768:5;6746:8;:28::i;:::-;6480:301;6418:363;;:::o;7681:164::-;7810:28;7820:4;7826:2;7830:7;7810:9;:28::i;3627:801:14:-;3725:6;;;;:37;;;;;3754:8;;3735:15;:27;;3725:37;3717:73;;;;-1:-1:-1;;;3717:73:14;;15235:2:15;3717:73:14;;;15217:21:15;15274:2;15254:18;;;15247:30;-1:-1:-1;;;15293:18:15;;;15286:53;15356:18;;3717:73:14;;;;;;;;;647:4;3824:7;3808:13;1876:12:3;;1670:7;1860:13;:28;;1617:306;3808:13:14;:23;;;;:::i;:::-;:37;;3800:73;;;;-1:-1:-1;;;3800:73:14;;14883:2:15;3800:73:14;;;14865:21:15;14922:2;14902:18;;;14895:30;-1:-1:-1;;;14941:18:15;;;14934:53;15004:18;;3800:73:14;14681:347:15;3800:73:14;3902:18;;3891:7;:29;;3883:68;;;;-1:-1:-1;;;3883:68:14;;13055:2:15;3883:68:14;;;13037:21:15;13094:2;13074:18;;;13067:30;13133:28;13113:18;;;13106:56;13179:18;;3883:68:14;12853:350:15;3883:68:14;3986:28;;-1:-1:-1;;4003:10:14;7652:2:15;7648:15;7644:53;3986:28:14;;;7632:66:15;3961:12:14;;7714::15;;3986:28:14;;;;;;;;;;;;3976:39;;;;;;3961:54;;4034;4053:12;;4034:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4067:14:14;;;-1:-1:-1;4083:4:14;;-1:-1:-1;4034:18:14;:54::i;:::-;4033:55;4025:82;;;;-1:-1:-1;;;4025:82:14;;12305:2:15;4025:82:14;;;12287:21:15;12344:2;12324:18;;;12317:30;-1:-1:-1;;;12363:18:15;;;12356:44;12417:18;;4025:82:14;12103:338:15;4025:82:14;4153:9;4135:14;;4125:7;:24;;;;:::i;:::-;:37;;4117:70;;;;-1:-1:-1;;;4117:70:14;;14533:2:15;4117:70:14;;;14515:21:15;14572:2;14552:18;;;14545:30;-1:-1:-1;;;14591:18:15;;;14584:51;14652:18;;4117:70:14;14331:345:15;4117:70:14;4218:10;4204:25;;;;:13;:25;;;;;:36;;4233:7;;4204:25;:36;;4233:7;;4204:36;:::i;:::-;;;;-1:-1:-1;;4287:18:14;;4272:10;4258:25;;;;:13;:25;;;;;;:47;;4250:76;;;;-1:-1:-1;;;4250:76:14;;14187:2:15;4250:76:14;;;14169:21:15;14226:2;14206:18;;;14199:30;-1:-1:-1;;;14245:18:15;;;14238:47;14302:18;;4250:76:14;13985:341:15;4250:76:14;4337:30;4347:10;4359:7;4337:9;:30::i;:::-;4382:39;;4411:9;;4402:7;;4390:10;;4382:39;;;;;3707:721;3627:801;;;:::o;5793:149::-;1018:13:12;:11;:13::i;:::-;5867:2:14::1;::::0;5859:50:::1;::::0;5841:12:::1;::::0;-1:-1:-1;;;;;5867:2:14::1;::::0;5883:21:::1;::::0;5841:12;5859:50;5841:12;5859:50;5883:21;5867:2;5859:50:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5840:69;;;5927:7;5919:16;;;::::0;::::1;;5830:112;5793:149::o:0;7911:179:3:-;8044:39;8061:4;8067:2;8071:7;8044:39;;;;;;;;;;;;:16;:39::i;505:97:14:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3549:72::-;1018:13:12;:11;:13::i;:::-;3608:6:14::1;::::0;;-1:-1:-1;;3598:16:14;::::1;3608:6;::::0;;::::1;3607:7;3598:16;::::0;;3549:72::o;3229:102::-;1018:13:12;:11;:13::i;:::-;3303:21:14;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;3229:102:::0;:::o;1319:508:4:-;1511:15;;1423:23;;1486:22;1511:15;-1:-1:-1;;;;;1577:66:4;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;1577:66:4;;-1:-1:-1;;1577:66:4;;;;;;;;;;;;1540:103;;1662:9;1657:123;1678:14;1673:1;:19;1657:123;;1733:32;1753:8;1762:1;1753:11;;;;;;;;:::i;:::-;;;;;;;1733:19;:32::i;:::-;1717:10;1728:1;1717:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;1694:3;;1657:123;;;-1:-1:-1;1800:10:4;1319:508;-1:-1:-1;;;1319:508:4:o;5200:123:3:-;5264:7;5290:21;5303:7;5290:12;:21::i;:::-;:26;;5200:123;-1:-1:-1;;5200:123:3:o;2714:203::-;2778:7;-1:-1:-1;;;;;2801:19:3;;2797:60;;2829:28;;-1:-1:-1;;;2829:28:3;;;;;;;;;;;2797:60;-1:-1:-1;;;;;;2882:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;2882:27:3;;2714:203::o;1755:101:12:-;1018:13;:11;:13::i;:::-;1819:30:::1;1846:1;1819:18;:30::i;:::-;1755:101::o:0;5141:951:4:-;5226:16;5282:19;5315:25;5354:22;5379:16;5389:5;5379:9;:16::i;:::-;5354:41;;5409:25;5451:14;-1:-1:-1;;;;;5437:29:4;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5437:29:4;;5409:57;;5480:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;5480:31:4;5547:9;5525:522;5607:14;5592:11;:29;5525:522;;5687:14;;;;:11;:14;;;;;;;;;5675:26;;;;;;;;;-1:-1:-1;;;;;5675:26:4;;;;-1:-1:-1;;;5675:26:4;;-1:-1:-1;;;;;5675:26:4;;;;;;;;-1:-1:-1;;;5675:26:4;;;;;;;;;;;;;;;;-1:-1:-1;5719:71:4;;5763:8;;5719:71;5811:14;;-1:-1:-1;;;;;5811:28:4;;5807:109;;5883:14;;;-1:-1:-1;5807:109:4;5958:5;-1:-1:-1;;;;;5937:26:4;:17;-1:-1:-1;;;;;5937:26:4;;5933:100;;;6013:1;5987:8;5996:13;;;;;;5987:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;5933:100;5639:3;;5525:522;;;-1:-1:-1;6067:8:4;;5141:951;-1:-1:-1;;;;;;5141:951:4:o;5280:84:14:-;1018:13:12;:11;:13::i;:::-;5342:5:14::1;:15:::0;5280:84::o;5547:102:3:-;5603:13;5635:7;5628:14;;;;;:::i;3477:66:14:-;1018:13:12;:11;:13::i;:::-;3532:4:14::1;::::0;;-1:-1:-1;;3524:12:14;::::1;3532:4;::::0;;;::::1;;;3531:5;3524:12:::0;;::::1;;::::0;;3477:66::o;2203:2501:4:-;2325:16;2390:4;2381:5;:13;2377:45;;2403:19;;-1:-1:-1;;;2403:19:4;;;;;;;;;;;2377:45;2436:19;2489:13;;2737:9;2730:4;:16;2726:71;;;2773:9;2766:16;;2726:71;2810:25;2838:16;2848:5;2838:9;:16::i;:::-;2810:44;;3029:4;3021:5;:12;3017:271;;;3075:12;;;3109:31;;;3105:109;;;3184:11;3164:31;;3105:109;3035:193;3017:271;;;-1:-1:-1;3272:1:4;3017:271;3301:25;3343:17;-1:-1:-1;;;;;3329:32:4;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3329:32:4;-1:-1:-1;3301:60:4;-1:-1:-1;3379:22:4;3375:76;;3428:8;-1:-1:-1;3421:15:4;;-1:-1:-1;;;3421:15:4;3375:76;3592:31;3626:26;3646:5;3626:19;:26::i;:::-;3592:60;;3666:25;3908:9;:16;;;3903:90;;-1:-1:-1;3964:14:4;;3903:90;4040:5;4006:528;4068:4;4063:1;:9;;:45;;;;;4091:17;4076:11;:32;;4063:45;4006:528;;;4174:14;;;;:11;:14;;;;;;;;;4162:26;;;;;;;;;-1:-1:-1;;;;;4162:26:4;;;;-1:-1:-1;;;4162:26:4;;-1:-1:-1;;;;;4162:26:4;;;;;;;;-1:-1:-1;;;4162:26:4;;;;;;;;;;;;;;;;-1:-1:-1;4206:71:4;;4250:8;;4206:71;4298:14;;-1:-1:-1;;;;;4298:28:4;;4294:109;;4370:14;;;-1:-1:-1;4294:109:4;4445:5;-1:-1:-1;;;;;4424:26:4;:17;-1:-1:-1;;;;;4424:26:4;;4420:100;;;4500:1;4474:8;4483:13;;;;;;4474:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;4420:100;4126:3;;4006:528;;;-1:-1:-1;;;4616:29:4;;;-1:-1:-1;4623:8:4;;-1:-1:-1;;2203:2501:4;;;;;;:::o;5567:102:14:-;1018:13:12;:11;:13::i;:::-;5638:14:14::1;:24:::0;5567:102::o;4434:617::-;4499:6;;;;:52;;;;;4539:12;;4528:8;;:23;;;;:::i;:::-;4509:15;:42;;4499:52;4491:88;;;;-1:-1:-1;;;4491:88:14;;15235:2:15;4491:88:14;;;15217:21:15;15274:2;15254:18;;;15247:30;-1:-1:-1;;;15293:18:15;;;15286:53;15356:18;;4491:88:14;15033:347:15;4491:88:14;647:4;4613:7;4597:13;1876:12:3;;1670:7;1860:13;:28;;1617:306;4597:13:14;:23;;;;:::i;:::-;:37;;4589:73;;;;-1:-1:-1;;;4589:73:14;;14883:2:15;4589:73:14;;;14865:21:15;14922:2;14902:18;;;14895:30;-1:-1:-1;;;14941:18:15;;;14934:53;15004:18;;4589:73:14;14681:347:15;4589:73:14;4691:18;;4680:7;:29;;4672:68;;;;-1:-1:-1;;;4672:68:14;;13055:2:15;4672:68:14;;;13037:21:15;13094:2;13074:18;;;13067:30;13133:28;13113:18;;;13106:56;13179:18;;4672:68:14;12853:350:15;4672:68:14;4777:9;4768:5;;4758:7;:15;;;;:::i;:::-;:28;;4750:61;;;;-1:-1:-1;;;4750:61:14;;14533:2:15;4750:61:14;;;14515:21:15;14572:2;14552:18;;;14545:30;-1:-1:-1;;;14591:18:15;;;14584:51;14652:18;;4750:61:14;14331:345:15;4750:61:14;4841:10;4827:25;;;;:13;:25;;;;;:36;;4856:7;;4827:25;:36;;4856:7;;4827:36;:::i;:::-;;;;-1:-1:-1;;4910:18:14;;4895:10;4881:25;;;;:13;:25;;;;;;:47;;4873:76;;;;-1:-1:-1;;;4873:76:14;;14187:2:15;4873:76:14;;;14169:21:15;14226:2;14206:18;;;14199:30;-1:-1:-1;;;14245:18:15;;;14238:47;14302:18;;4873:76:14;13985:341:15;4873:76:14;4960:30;4970:10;4982:7;4960:9;:30::i;:::-;5005:39;;5034:9;;5025:7;;5013:10;;5005:39;;;;;4434:617;:::o;7109:282:3:-;-1:-1:-1;;;;;7207:24:3;;666:10:1;7207:24:3;7203:54;;;7240:17;;-1:-1:-1;;;7240:17:3;;;;;;;;;;;7203:54;666:10:1;7268:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7268:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;7268:53:3;;;;;;;;;;7336:48;;11645:41:15;;;7268:42:3;;666:10:1;7336:48:3;;11618:18:15;7336:48:3;;;;;;;7109:282;;:::o;8156:360::-;8317:28;8327:4;8333:2;8337:7;8317:9;:28::i;:::-;-1:-1:-1;;;;;8359:13:3;;1397:19:0;:23;8355:155:3;;8380:56;8411:4;8417:2;8421:7;8430:5;8380:30;:56::i;:::-;8376:134;;8459:40;;-1:-1:-1;;;8459:40:3;;;;;;;;;;;8376:134;8156:360;;;;:::o;739:427:4:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;912:53:4;952:13;;941:7;:24;908:100;;988:9;739:427;-1:-1:-1;;739:427:4:o;908:100::-;-1:-1:-1;1029:20:4;;;;:11;:20;;;;;;;;;1017:32;;;;;;;;;-1:-1:-1;;;;;1017:32:4;;;;-1:-1:-1;;;1017:32:4;;-1:-1:-1;;;;;1017:32:4;;;;;;;;-1:-1:-1;;;1017:32:4;;;;;;;;;;;;;;;;1059:63;;1102:9;739:427;-1:-1:-1;;739:427:4:o;1059:63::-;1138:21;1151:7;1138:12;:21::i;460:37:14:-;;;;;;;:::i;2194:778::-;2267:13;2317:16;2325:7;2317;:16::i;:::-;2296:110;;;;-1:-1:-1;;;2296:110:14;;13771:2:15;2296:110:14;;;13753:21:15;13810:2;13790:18;;;13783:30;13849:34;13829:18;;;13822:62;-1:-1:-1;;;13900:18:15;;;13893:45;13955:19;;2296:110:14;13569:411:15;2296:110:14;2420:4;;;;;;;2416:138;;2492:14;2508:18;:7;:16;:18::i;:::-;2528:13;2475:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2449:94;;2194:778;;;:::o;2416:138::-;2564:23;2590:19;;;:10;:19;;;;;2564:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2619:18;2640:10;:8;:10::i;:::-;2619:31;;2679:4;2673:18;2695:1;2673:23;2669:70;;;-1:-1:-1;2719:9:14;2194:778;-1:-1:-1;;2194:778:14:o;2669:70::-;2761:23;;:27;2757:106;;2835:4;2841:9;2818:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2804:48;;;;2194:778;;;:::o;2757:106::-;2924:4;2930:18;:7;:16;:18::i;:::-;2950:13;2907:57;;;;;;;;;;:::i;3341:130::-;1018:13:12;:11;:13::i;:::-;3431:33:14;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;5467:94::-:0;1018:13:12;:11;:13::i;:::-;5534:8:14::1;:20:::0;5467:94::o;7457:162:3:-;-1:-1:-1;;;;;7577:25:3;;;7554:4;7577:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7457:162::o;5676:103:14:-;1018:13:12;:11;:13::i;:::-;5744:18:14::1;:28:::0;5676:103::o;5057:101::-;1018:13:12;:11;:13::i;:::-;5121:30:14::1;5131:10;5143:7;5121:9;:30::i;3094:124::-:0;1018:13:12;:11;:13::i;:::-;3179:32:14;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;2005:198:12:-:0;1018:13;:11;:13::i;:::-;-1:-1:-1;;;;;2093:22:12;::::1;2085:73;;;::::0;-1:-1:-1;;;2085:73:12;;12648:2:15;2085:73:12::1;::::0;::::1;12630:21:15::0;12687:2;12667:18;;;12660:30;12726:34;12706:18;;;12699:62;-1:-1:-1;;;12777:18:15;;;12770:36;12823:19;;2085:73:12::1;12446:402:15::0;2085:73:12::1;2168:28;2187:8;2168:18;:28::i;5164:110:14:-:0;1018:13:12;:11;:13::i;:::-;5240:14:14::1;:27:::0;5164:110::o;8762:172:3:-;8819:4;8882:13;;8872:7;:23;8842:85;;;;-1:-1:-1;;8900:20:3;;;;:11;:20;;;;;:27;-1:-1:-1;;;8900:27:3;;;;8899:28;;8762:172::o;17743:189::-;17853:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;17853:29:3;-1:-1:-1;;;;;17853:29:3;;;;;;;;;17897:28;;17853:24;;17897:28;;;;;;;17743:189;;;:::o;12818:2082::-;12928:35;12966:21;12979:7;12966:12;:21::i;:::-;12928:59;;13024:4;-1:-1:-1;;;;;13002:26:3;:13;:18;;;-1:-1:-1;;;;;13002:26:3;;12998:67;;13037:28;;-1:-1:-1;;;13037:28:3;;;;;;;;;;;12998:67;13076:22;666:10:1;-1:-1:-1;;;;;13102:20:3;;;;:72;;-1:-1:-1;13138:36:3;13155:4;666:10:1;7457:162:3;:::i;13138:36::-;13102:124;;;-1:-1:-1;666:10:1;13190:20:3;13202:7;13190:11;:20::i;:::-;-1:-1:-1;;;;;13190:36:3;;13102:124;13076:151;;13243:17;13238:66;;13269:35;;-1:-1:-1;;;13269:35:3;;;;;;;;;;;13238:66;-1:-1:-1;;;;;13318:16:3;;13314:52;;13343:23;;-1:-1:-1;;;13343:23:3;;;;;;;;;;;13314:52;13482:35;13499:1;13503:7;13512:4;13482:8;:35::i;:::-;-1:-1:-1;;;;;13807:18:3;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;13807:31:3;;;-1:-1:-1;;;;;13807:31:3;;;-1:-1:-1;;13807:31:3;;;;;;;13852:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;13852:29:3;;;;;;;;;;;13930:20;;;:11;:20;;;;;;13964:18;;-1:-1:-1;;;;;;13996:49:3;;;;-1:-1:-1;;;14029:15:3;13996:49;;;;;;;;;;14315:11;;14374:24;;;;;14416:13;;13930:20;;14374:24;;14416:13;14412:377;;14623:13;;14608:11;:28;14604:171;;14660:20;;14728:28;;;;-1:-1:-1;;;;;14702:54:3;-1:-1:-1;;;14702:54:3;-1:-1:-1;;;;;;14702:54:3;;;-1:-1:-1;;;;;14660:20:3;;14702:54;;;;14604:171;13783:1016;;;14833:7;14829:2;-1:-1:-1;;;;;14814:27:3;14823:4;-1:-1:-1;;;;;14814:27:3;;;;;;;;;;;12918:1982;;12818:2082;;;:::o;1156:154:11:-;1247:4;1299;1270:25;1283:5;1290:4;1270:12;:25::i;:::-;:33;;1156:154;-1:-1:-1;;;;1156:154:11:o;9013:102:3:-;9081:27;9091:2;9095:8;9081:27;;;;;;;;;;;;:9;:27::i;1283:130:12:-;1197:6;;-1:-1:-1;;;;;1197:6:12;666:10:1;1346:23:12;1338:68;;;;-1:-1:-1;;;1338:68:12;;13410:2:15;1338:68:12;;;13392:21:15;;;13429:18;;;13422:30;13488:34;13468:18;;;13461:62;13540:18;;1338:68:12;13208:356:15;4057:1086:3;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;4167:7:3;4249:13;;4242:4;:20;4238:841;;;4282:31;4316:17;;;:11;:17;;;;;;;;;4282:51;;;;;;;;;-1:-1:-1;;;;;4282:51:3;;;;-1:-1:-1;;;4282:51:3;;-1:-1:-1;;;;;4282:51:3;;;;;;;;-1:-1:-1;;;4282:51:3;;;;;;;;;;;;;;4351:714;;4400:14;;-1:-1:-1;;;;;4400:28:3;;4396:99;;4463:9;4057:1086;-1:-1:-1;;;4057:1086:3:o;4396:99::-;-1:-1:-1;;;4831:6:3;4875:17;;;;:11;:17;;;;;;;;;4863:29;;;;;;;;;-1:-1:-1;;;;;4863:29:3;;;;;-1:-1:-1;;;4863:29:3;;-1:-1:-1;;;;;4863:29:3;;;;;;;;-1:-1:-1;;;4863:29:3;;;;;;;;;;;;;4922:28;4918:107;;4989:9;4057:1086;-1:-1:-1;;;4057:1086:3:o;4918:107::-;4792:255;;;4264:815;4238:841;5105:31;;-1:-1:-1;;;5105:31:3;;;;;;;;;;;2357:187:12;2449:6;;;-1:-1:-1;;;;;2465:17:12;;;-1:-1:-1;;;;;;2465:17:12;;;;;;;2497:40;;2449:6;;;2465:17;2449:6;;2497:40;;2430:16;;2497:40;2420:124;2357:187;:::o;18413:650:3:-;18591:72;;-1:-1:-1;;;18591:72:3;;18571:4;;-1:-1:-1;;;;;18591:36:3;;;;;:72;;666:10:1;;18642:4:3;;18648:7;;18657:5;;18591:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18591:72:3;;;;;;;;-1:-1:-1;;18591:72:3;;;;;;;;;;;;:::i;:::-;;;18587:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18822:13:3;;18818:229;;18867:40;;-1:-1:-1;;;18867:40:3;;;;;;;;;;;18818:229;19007:6;19001:13;18992:6;18988:2;18984:15;18977:38;18587:470;-1:-1:-1;;;;;;18709:55:3;-1:-1:-1;;;18709:55:3;;-1:-1:-1;18587:470:3;18413:650;;;;;;:::o;342:696:13:-;398:13;447:14;464:17;475:5;464:10;:17::i;:::-;484:1;464:21;447:38;;499:20;533:6;-1:-1:-1;;;;;522:18:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;522:18:13;-1:-1:-1;499:41:13;-1:-1:-1;660:28:13;;;676:2;660:28;715:280;-1:-1:-1;;746:5:13;-1:-1:-1;;;880:2:13;869:14;;864:30;746:5;851:44;939:2;930:11;;;-1:-1:-1;963:10:13;959:21;;975:5;;959:21;715:280;;2978:106:14;3038:13;3070:7;3063:14;;;;;:::i;1934:290:11:-;2017:7;2059:4;2017:7;2073:116;2097:5;:12;2093:1;:16;2073:116;;;2145:33;2155:12;2169:5;2175:1;2169:8;;;;;;;;:::i;:::-;;;;;;;2145:9;:33::i;:::-;2130:48;-1:-1:-1;2111:3:11;;;;:::i;:::-;;;;2073:116;;9475:1708:3;9593:20;9616:13;-1:-1:-1;;;;;9643:16:3;;9639:48;;9668:19;;-1:-1:-1;;;9668:19:3;;;;;;;;;;;9639:48;9701:13;9697:44;;9723:18;;-1:-1:-1;;;9723:18:3;;;;;;;;;;;9697:44;-1:-1:-1;;;;;10084:16:3;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;10142:49:3;;-1:-1:-1;;;;;10084:44:3;;;;;;;10142:49;;;;-1:-1:-1;;10084:44:3;;;;;;10142:49;;;;;;;;;;;;;;;;10206:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;10255:66:3;;;-1:-1:-1;;;10305:15:3;10255:66;;;;;;;;;;;;;10206:25;;10399:23;;;;1397:19:0;:23;10437:618:3;;10476:308;10506:38;;10531:12;;-1:-1:-1;;;;;10506:38:3;;;10523:1;;10506:38;;10523:1;;10506:38;10571:69;10610:1;10614:2;10618:14;;;;;;10634:5;10571:30;:69::i;:::-;10566:172;;10675:40;;-1:-1:-1;;;10675:40:3;;;;;;;;;;;10566:172;10779:3;10764:12;:18;10476:308;;10863:12;10846:13;;:29;10842:43;;10877:8;;;10842:43;10437:618;;;10924:117;10954:40;;10979:14;;;;;-1:-1:-1;;;;;10954:40:3;;;10971:1;;10954:40;;10971:1;;10954:40;11036:3;11021:12;:18;10924:117;;10437:618;-1:-1:-1;11068:13:3;:28;;;11116:60;;11149:2;11153:12;11167:8;11116:60;:::i;9889:890:10:-;9942:7;;-1:-1:-1;;;10017:15:10;;10013:99;;-1:-1:-1;;;10052:15:10;;;-1:-1:-1;10095:2:10;10085:12;10013:99;10138:6;10129:5;:15;10125:99;;10173:6;10164:15;;;-1:-1:-1;10207:2:10;10197:12;10125:99;10250:6;10241:5;:15;10237:99;;10285:6;10276:15;;;-1:-1:-1;10319:2:10;10309:12;10237:99;10362:5;10353;:14;10349:96;;10396:5;10387:14;;;-1:-1:-1;10429:1:10;10419:11;10349:96;10471:5;10462;:14;10458:96;;10505:5;10496:14;;;-1:-1:-1;10538:1:10;10528:11;10458:96;10580:5;10571;:14;10567:96;;10614:5;10605:14;;;-1:-1:-1;10647:1:10;10637:11;10567:96;10689:5;10680;:14;10676:64;;10724:1;10714:11;10766:6;9889:890;-1:-1:-1;;9889:890:10:o;8975:147:11:-;9038:7;9068:1;9064;:5;:51;;9196:13;9287:15;;;9322:4;9315:15;;;9368:4;9352:21;;9064:51;;;-1:-1:-1;9196:13:11;9287:15;;;9322:4;9315:15;9368:4;9352:21;;;8975:147::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:15;78:5;-1:-1:-1;;;;;104:6:15;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:15;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:15;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;-1:-1:-1;;;;;1811:6:15;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:15;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:15:o;2674:322::-;2751:6;2759;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2859:29;2878:9;2859:29;:::i;:::-;2849:39;2935:2;2920:18;;2907:32;;-1:-1:-1;2986:2:15;2971:18;;;2958:32;;2674:322;-1:-1:-1;;;2674:322:15:o;3001:957::-;3085:6;3116:2;3159;3147:9;3138:7;3134:23;3130:32;3127:52;;;3175:1;3172;3165:12;3127:52;3215:9;3202:23;-1:-1:-1;;;;;3285:2:15;3277:6;3274:14;3271:34;;;3301:1;3298;3291:12;3271:34;3339:6;3328:9;3324:22;3314:32;;3384:7;3377:4;3373:2;3369:13;3365:27;3355:55;;3406:1;3403;3396:12;3355:55;3442:2;3429:16;3464:2;3460;3457:10;3454:36;;;3470:18;;:::i;:::-;3516:2;3513:1;3509:10;3499:20;;3539:28;3563:2;3559;3555:11;3539:28;:::i;:::-;3601:15;;;3632:12;;;;3664:11;;;3694;;;3690:20;;3687:33;-1:-1:-1;3684:53:15;;;3733:1;3730;3723:12;3684:53;3755:1;3746:10;;3765:163;3779:2;3776:1;3773:9;3765:163;;;3836:17;;3824:30;;3797:1;3790:9;;;;;3874:12;;;;3906;;3765:163;;;-1:-1:-1;3947:5:15;3001:957;-1:-1:-1;;;;;;;;3001:957:15:o;3963:180::-;4022:6;4075:2;4063:9;4054:7;4050:23;4046:32;4043:52;;;4091:1;4088;4081:12;4043:52;-1:-1:-1;4114:23:15;;3963:180;-1:-1:-1;3963:180:15:o;4148:245::-;4206:6;4259:2;4247:9;4238:7;4234:23;4230:32;4227:52;;;4275:1;4272;4265:12;4227:52;4314:9;4301:23;4333:30;4357:5;4333:30;:::i;4398:249::-;4467:6;4520:2;4508:9;4499:7;4495:23;4491:32;4488:52;;;4536:1;4533;4526:12;4488:52;4568:9;4562:16;4587:30;4611:5;4587:30;:::i;4652:450::-;4721:6;4774:2;4762:9;4753:7;4749:23;4745:32;4742:52;;;4790:1;4787;4780:12;4742:52;4830:9;4817:23;-1:-1:-1;;;;;4855:6:15;4852:30;4849:50;;;4895:1;4892;4885:12;4849:50;4918:22;;4971:4;4963:13;;4959:27;-1:-1:-1;4949:55:15;;5000:1;4997;4990:12;4949:55;5023:73;5088:7;5083:2;5070:16;5065:2;5061;5057:11;5023:73;:::i;5292:683::-;5387:6;5395;5403;5456:2;5444:9;5435:7;5431:23;5427:32;5424:52;;;5472:1;5469;5462:12;5424:52;5508:9;5495:23;5485:33;;5569:2;5558:9;5554:18;5541:32;-1:-1:-1;;;;;5633:2:15;5625:6;5622:14;5619:34;;;5649:1;5646;5639:12;5619:34;5687:6;5676:9;5672:22;5662:32;;5732:7;5725:4;5721:2;5717:13;5713:27;5703:55;;5754:1;5751;5744:12;5703:55;5794:2;5781:16;5820:2;5812:6;5809:14;5806:34;;;5836:1;5833;5826:12;5806:34;5889:7;5884:2;5874:6;5871:1;5867:14;5863:2;5859:23;5855:32;5852:45;5849:65;;;5910:1;5907;5900:12;5849:65;5941:2;5937;5933:11;5923:21;;5963:6;5953:16;;;;;5292:683;;;;;:::o;5980:257::-;6021:3;6059:5;6053:12;6086:6;6081:3;6074:19;6102:63;6158:6;6151:4;6146:3;6142:14;6135:4;6128:5;6124:16;6102:63;:::i;:::-;6219:2;6198:15;-1:-1:-1;;6194:29:15;6185:39;;;;6226:4;6181:50;;5980:257;-1:-1:-1;;5980:257:15:o;6242:973::-;6327:12;;6292:3;;6382:1;6402:18;;;;6455;;;;6482:61;;6536:4;6528:6;6524:17;6514:27;;6482:61;6562:2;6610;6602:6;6599:14;6579:18;6576:38;6573:161;;;6656:10;6651:3;6647:20;6644:1;6637:31;6691:4;6688:1;6681:15;6719:4;6716:1;6709:15;6573:161;6750:18;6777:104;;;;6895:1;6890:319;;;;6743:466;;6777:104;-1:-1:-1;;6810:24:15;;6798:37;;6855:16;;;;-1:-1:-1;6777:104:15;;6890:319;16192:1;16185:14;;;16229:4;16216:18;;6984:1;6998:165;7012:6;7009:1;7006:13;6998:165;;;7090:14;;7077:11;;;7070:35;7133:16;;;;7027:10;;6998:165;;;7002:3;;7192:6;7187:3;7183:16;7176:23;;6743:466;;;;;;;6242:973;;;;:::o;7737:470::-;7916:3;7954:6;7948:13;7970:53;8016:6;8011:3;8004:4;7996:6;7992:17;7970:53;:::i;:::-;8086:13;;8045:16;;;;8108:57;8086:13;8045:16;8142:4;8130:17;;8108:57;:::i;:::-;8181:20;;7737:470;-1:-1:-1;;;;7737:470:15:o;8212:550::-;8436:3;8474:6;8468:13;8490:53;8536:6;8531:3;8524:4;8516:6;8512:17;8490:53;:::i;:::-;8606:13;;8565:16;;;;8628:57;8606:13;8565:16;8662:4;8650:17;;8628:57;:::i;:::-;8701:55;8746:8;8739:5;8735:20;8727:6;8701:55;:::i;:::-;8694:62;8212:550;-1:-1:-1;;;;;;;8212:550:15:o;8767:456::-;8988:3;9016:38;9050:3;9042:6;9016:38;:::i;:::-;9083:6;9077:13;9099:52;9144:6;9140:2;9133:4;9125:6;9121:17;9099:52;:::i;9646:488::-;-1:-1:-1;;;;;9915:15:15;;;9897:34;;9967:15;;9962:2;9947:18;;9940:43;10014:2;9999:18;;9992:34;;;10062:3;10057:2;10042:18;;10035:31;;;9840:4;;10083:45;;10108:19;;10100:6;10083:45;:::i;:::-;10075:53;9646:488;-1:-1:-1;;;;;;9646:488:15:o;10139:724::-;10374:2;10426:21;;;10496:13;;10399:18;;;10518:22;;;10345:4;;10374:2;10597:15;;;;10571:2;10556:18;;;10345:4;10640:197;10654:6;10651:1;10648:13;10640:197;;;10703:52;10751:3;10742:6;10736:13;7304:12;;-1:-1:-1;;;;;7300:38:15;7288:51;;7392:4;7381:16;;;7375:23;-1:-1:-1;;;;;7371:48:15;7355:14;;;7348:72;7483:4;7472:16;;;7466:23;7459:31;7452:39;7436:14;;7429:63;7220:278;10703:52;10812:15;;;;10784:4;10775:14;;;;;10676:1;10669:9;10640:197;;10868:632;11039:2;11091:21;;;11161:13;;11064:18;;;11183:22;;;11010:4;;11039:2;11262:15;;;;11236:2;11221:18;;;11010:4;11305:169;11319:6;11316:1;11313:13;11305:169;;;11380:13;;11368:26;;11449:15;;;;11414:12;;;;11341:1;11334:9;11305:169;;11879:219;12028:2;12017:9;12010:21;11991:4;12048:44;12088:2;12077:9;12073:18;12065:6;12048:44;:::i;15385:267::-;7304:12;;-1:-1:-1;;;;;7300:38:15;7288:51;;7392:4;7381:16;;;7375:23;-1:-1:-1;;;;;7371:48:15;7355:14;;;7348:72;7483:4;7472:16;;;7466:23;7459:31;7452:39;7436:14;;;7429:63;15583:2;15568:18;;15595:51;7220:278;15839:275;15910:2;15904:9;15975:2;15956:13;;-1:-1:-1;;15952:27:15;15940:40;;-1:-1:-1;;;;;15995:34:15;;16031:22;;;15992:62;15989:88;;;16057:18;;:::i;:::-;16093:2;16086:22;15839:275;;-1:-1:-1;15839:275:15:o;16245:128::-;16285:3;16316:1;16312:6;16309:1;16306:13;16303:39;;;16322:18;;:::i;:::-;-1:-1:-1;16358:9:15;;16245:128::o;16378:168::-;16418:7;16484:1;16480;16476:6;16472:14;16469:1;16466:21;16461:1;16454:9;16447:17;16443:45;16440:71;;;16491:18;;:::i;:::-;-1:-1:-1;16531:9:15;;16378:168::o;16551:258::-;16623:1;16633:113;16647:6;16644:1;16641:13;16633:113;;;16723:11;;;16717:18;16704:11;;;16697:39;16669:2;16662:10;16633:113;;;16764:6;16761:1;16758:13;16755:48;;;-1:-1:-1;;16799:1:15;16781:16;;16774:27;16551:258::o;16814:380::-;16893:1;16889:12;;;;16936;;;16957:61;;17011:4;17003:6;16999:17;16989:27;;16957:61;17064:2;17056:6;17053:14;17033:18;17030:38;17027:161;;;17110:10;17105:3;17101:20;17098:1;17091:31;17145:4;17142:1;17135:15;17173:4;17170:1;17163:15;17027:161;;16814:380;;;:::o;17199:135::-;17238:3;-1:-1:-1;;17259:17:15;;17256:43;;;17279:18;;:::i;:::-;-1:-1:-1;17326:1:15;17315:13;;17199:135::o;17339:127::-;17400:10;17395:3;17391:20;17388:1;17381:31;17431:4;17428:1;17421:15;17455:4;17452:1;17445:15;17603:127;17664:10;17659:3;17655:20;17652:1;17645:31;17695:4;17692:1;17685:15;17719:4;17716:1;17709:15;17735:127;17796:10;17791:3;17787:20;17784:1;17777:31;17827:4;17824:1;17817:15;17851:4;17848:1;17841:15;17867:131;-1:-1:-1;;;;;;17941:32:15;;17931:43;;17921:71;;17988:1;17985;17978:12
Swarm Source
ipfs://ecbc38b9f2fba9f9fd8d22c1df4d75cbf734e180333bf8e1ab455a69fd8c7b15
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.