Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 212 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 16443557 | 677 days ago | IN | 0 ETH | 0.00064536 | ||||
Safe Transfer Fr... | 16429423 | 679 days ago | IN | 0 ETH | 0.00209192 | ||||
Mint | 16423861 | 680 days ago | IN | 0.0186 ETH | 0.00143447 | ||||
Set Approval For... | 16423804 | 680 days ago | IN | 0 ETH | 0.00071 | ||||
Set Approval For... | 16423804 | 680 days ago | IN | 0 ETH | 0.00071 | ||||
Set Approval For... | 16423804 | 680 days ago | IN | 0 ETH | 0.00071 | ||||
Set Approval For... | 16423804 | 680 days ago | IN | 0 ETH | 0.00071 | ||||
Mint | 16423802 | 680 days ago | IN | 0.031 ETH | 0.00135901 | ||||
Mint | 16423789 | 680 days ago | IN | 0.031 ETH | 0.00121806 | ||||
Mint | 16423789 | 680 days ago | IN | 0.031 ETH | 0.00121806 | ||||
Mint | 16423786 | 680 days ago | IN | 0.031 ETH | 0.00122837 | ||||
Mint | 16423786 | 680 days ago | IN | 0.031 ETH | 0.00122837 | ||||
Mint | 16423784 | 680 days ago | IN | 0.031 ETH | 0.00127547 | ||||
Mint | 16423784 | 680 days ago | IN | 0.031 ETH | 0.00127547 | ||||
Mint | 16423781 | 680 days ago | IN | 0.031 ETH | 0.00125562 | ||||
Mint | 16423781 | 680 days ago | IN | 0.031 ETH | 0.00125562 | ||||
Mint | 16423781 | 680 days ago | IN | 0.031 ETH | 0.00125562 | ||||
Mint | 16423781 | 680 days ago | IN | 0.031 ETH | 0.00125562 | ||||
Mint | 16423778 | 680 days ago | IN | 0.031 ETH | 0.00120262 | ||||
Mint | 16423778 | 680 days ago | IN | 0.031 ETH | 0.00120262 | ||||
Mint | 16423777 | 680 days ago | IN | 0.031 ETH | 0.00128326 | ||||
Mint | 16423777 | 680 days ago | IN | 0.031 ETH | 0.00128326 | ||||
Mint | 16423775 | 680 days ago | IN | 0.031 ETH | 0.00128464 | ||||
Mint | 16423775 | 680 days ago | IN | 0.031 ETH | 0.00128464 | ||||
Mint | 16423767 | 680 days ago | IN | 0.0062 ETH | 0.0014031 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
16443557 | 677 days ago | 5.859 ETH |
Loading...
Loading
Contract Name:
PotHeads
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-17 */ /* Potheads is an NFT community-based project with a real-life clothing brand, get a Pothead and use it to access one of the most vibrant and most relaxed communities around and a percentage of the clothing brand earnings! Supply : 999 mint price : 0.0062 Max mint per tx : 5 Website : https://http://thepotheads.wtf/ Twitter : https://twitter.com/NFT__Potheads */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/math/Math.sol // 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); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @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); } } // File: new2.sol library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } pragma solidity ^0.8.7; contract PotHeads is Ownable,ERC721A{ using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = "ipfs://QmaRTrBBNQj1BLyU3PzAcvkmzzmCYQtfpaGrAwdrfeKfvZ/"; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost = 0.0062 ether; uint256 public maxSupply = 1000; uint256 public maxMintAmountPerTx = 5; bool public paused = true; bool public revealed = true; constructor() ERC721A("PotHeads", "POT") { } function mint(uint256 Amount) external payable mintCompliance(Amount) { require(!paused, "The contract is paused!"); require(totalSupply()+Amount <maxSupply,"this would Oversell"); require(msg.value >= cost * Amount, "Insufficient funds!"); _safeMint(msg.sender, Amount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function withdraw() public onlyOwner { // This will transfer the remaining contract balance to the owner. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); // ============================================================================= } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"Amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806060016040528060368152602001620037f460369139600a9080519060200190620000359291906200028b565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000839291906200028b565b50661606ddfd9b8000600d556103e8600e556005600f556001601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550348015620000dd57600080fd5b506040518060400160405280600881526020017f506f7448656164730000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f504f5400000000000000000000000000000000000000000000000000000000008152506200016a6200015e620001ba60201b60201c565b620001c260201b60201c565b8160039080519060200190620001829291906200028b565b5080600490805190602001906200019b9291906200028b565b50620001ac6200028660201b60201c565b6001819055505050620003a0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b82805462000299906200033b565b90600052602060002090601f016020900481019282620002bd576000855562000309565b82601f10620002d857805160ff191683800117855562000309565b8280016001018555821562000309579182015b8281111562000308578251825591602001919060010190620002eb565b5b5090506200031891906200031c565b5090565b5b80821115620003375760008160009055506001016200031d565b5090565b600060028204905060018216806200035457607f821691505b602082108114156200036b576200036a62000371565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61344480620003b06000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610684578063d5abeb01146106c1578063e985e9c5146106ec578063efbd73f414610729578063f2fde38b14610752576101ee565b8063a22cb465146105eb578063a45ba8e714610614578063b071401b1461063f578063b88d4fde14610668576101ee565b80638da5cb5b116100dc5780638da5cb5b1461054e57806394354fd01461057957806395d89b41146105a4578063a0712d68146105cf576101ee565b80636352211e1461049457806370a08231146104d1578063715018a61461050e5780637ec4a65914610525576101ee565b806323b872dd11610185578063518302271161015457806351830227146103e85780635503a0e8146104135780635c975abb1461043e57806362b99ad414610469576101ee565b806323b872dd1461035c5780633ccfd60b1461037857806342842e0e1461038f578063438b6300146103ab576101ee565b806313faede6116101c157806313faede6146102b457806316ba10e0146102df57806316c38b3c1461030857806318160ddd14610331576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612790565b61077b565b6040516102279190612c7e565b60405180910390f35b34801561023c57600080fd5b5061024561080d565b6040516102529190612c99565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612833565b61089f565b60405161028f9190612bf5565b60405180910390f35b6102b260048036038101906102ad9190612723565b61091e565b005b3480156102c057600080fd5b506102c9610a62565b6040516102d69190612dbb565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906127ea565b610a68565b005b34801561031457600080fd5b5061032f600480360381019061032a9190612763565b610a8a565b005b34801561033d57600080fd5b50610346610aaf565b6040516103539190612dbb565b60405180910390f35b6103766004803603810190610371919061260d565b610ac6565b005b34801561038457600080fd5b5061038d610deb565b005b6103a960048036038101906103a4919061260d565b610e73565b005b3480156103b757600080fd5b506103d260048036038101906103cd91906125a0565b610e93565b6040516103df9190612c5c565b60405180910390f35b3480156103f457600080fd5b506103fd610f9e565b60405161040a9190612c7e565b60405180910390f35b34801561041f57600080fd5b50610428610fb1565b6040516104359190612c99565b60405180910390f35b34801561044a57600080fd5b5061045361103f565b6040516104609190612c7e565b60405180910390f35b34801561047557600080fd5b5061047e611052565b60405161048b9190612c99565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612833565b6110e0565b6040516104c89190612bf5565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f391906125a0565b6110f2565b6040516105059190612dbb565b60405180910390f35b34801561051a57600080fd5b506105236111ab565b005b34801561053157600080fd5b5061054c600480360381019061054791906127ea565b6111bf565b005b34801561055a57600080fd5b506105636111e1565b6040516105709190612bf5565b60405180910390f35b34801561058557600080fd5b5061058e61120a565b60405161059b9190612dbb565b60405180910390f35b3480156105b057600080fd5b506105b9611210565b6040516105c69190612c99565b60405180910390f35b6105e960048036038101906105e49190612833565b6112a2565b005b3480156105f757600080fd5b50610612600480360381019061060d91906126e3565b611451565b005b34801561062057600080fd5b5061062961155c565b6040516106369190612c99565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612833565b6115ea565b005b610682600480360381019061067d9190612660565b6115fc565b005b34801561069057600080fd5b506106ab60048036038101906106a69190612833565b61166f565b6040516106b89190612c99565b60405180910390f35b3480156106cd57600080fd5b506106d66117c8565b6040516106e39190612dbb565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e91906125cd565b6117ce565b6040516107209190612c7e565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612860565b611862565b005b34801561075e57600080fd5b50610779600480360381019061077491906125a0565b611924565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108065750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461081c9061305f565b80601f01602080910402602001604051908101604052809291908181526020018280546108489061305f565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b60006108aa826119a8565b6108e0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610929826110e0565b90508073ffffffffffffffffffffffffffffffffffffffff1661094a611a07565b73ffffffffffffffffffffffffffffffffffffffff16146109ad5761097681610971611a07565b6117ce565b6109ac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610a70611a0f565b80600b9080519060200190610a869291906123b4565b5050565b610a92611a0f565b80601060006101000a81548160ff02191690831515021790555050565b6000610ab9611a8d565b6002546001540303905090565b6000610ad182611a92565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b38576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b4484611b60565b91509150610b5a8187610b55611a07565b611b87565b610ba657610b6f86610b6a611a07565b6117ce565b610ba5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c0d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c1a8686866001611bcb565b8015610c2557600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cf385610ccf888887611bd1565b7c020000000000000000000000000000000000000000000000000000000017611bf9565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d7b576000600185019050600060056000838152602001908152602001600020541415610d79576001548114610d78578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610de38686866001611c24565b505050505050565b610df3611a0f565b6000610dfd6111e1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e2090612be0565b60006040518083038185875af1925050503d8060008114610e5d576040519150601f19603f3d011682016040523d82523d6000602084013e610e62565b606091505b5050905080610e7057600080fd5b50565b610e8e838383604051806020016040528060008152506115fc565b505050565b60606000610ea0836110f2565b905060008167ffffffffffffffff811115610ebe57610ebd6131c7565b5b604051908082528060200260200182016040528015610eec5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f095750600e548211155b15610f92576000610f19836110e0565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7e5782848381518110610f6357610f62613198565b5b6020026020010181815250508180610f7a906130c2565b9250505b8280610f89906130c2565b93505050610ef8565b82945050505050919050565b601060019054906101000a900460ff1681565b600b8054610fbe9061305f565b80601f0160208091040260200160405190810160405280929190818152602001828054610fea9061305f565b80156110375780601f1061100c57610100808354040283529160200191611037565b820191906000526020600020905b81548152906001019060200180831161101a57829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a805461105f9061305f565b80601f016020809104026020016040519081016040528092919081815260200182805461108b9061305f565b80156110d85780601f106110ad576101008083540402835291602001916110d8565b820191906000526020600020905b8154815290600101906020018083116110bb57829003601f168201915b505050505081565b60006110eb82611a92565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561115a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111b3611a0f565b6111bd6000611c2a565b565b6111c7611a0f565b80600a90805190602001906111dd9291906123b4565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606004805461121f9061305f565b80601f016020809104026020016040519081016040528092919081815260200182805461124b9061305f565b80156112985780601f1061126d57610100808354040283529160200191611298565b820191906000526020600020905b81548152906001019060200180831161127b57829003601f168201915b5050505050905090565b806000811180156112b55750600f548111155b6112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90612cdb565b60405180910390fd5b600e54816113026009611cee565b61130c9190612ef9565b111561134d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134490612d7b565b60405180910390fd5b601060009054906101000a900460ff161561139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490612d3b565b60405180910390fd5b600e54826113a9610aaf565b6113b39190612ef9565b106113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90612cfb565b60405180910390fd5b81600d546114019190612f4f565b341015611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90612d9b565b60405180910390fd5b61144d3383611cfc565b5050565b806008600061145e611a07565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661150b611a07565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115509190612c7e565b60405180910390a35050565b600c80546115699061305f565b80601f01602080910402602001604051908101604052809291908181526020018280546115959061305f565b80156115e25780601f106115b7576101008083540402835291602001916115e2565b820191906000526020600020905b8154815290600101906020018083116115c557829003601f168201915b505050505081565b6115f2611a0f565b80600f8190555050565b611607848484610ac6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116695761163284848484611d1a565b611668576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061167a826119a8565b6116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b090612d5b565b60405180910390fd5b60001515601060019054906101000a900460ff161515141561176757600c80546116e29061305f565b80601f016020809104026020016040519081016040528092919081815260200182805461170e9061305f565b801561175b5780601f106117305761010080835404028352916020019161175b565b820191906000526020600020905b81548152906001019060200180831161173e57829003601f168201915b505050505090506117c3565b6000611771611e7a565b9050600081511161179157604051806020016040528060008152506117bf565b8061179b84611f0c565b600b6040516020016117af93929190612baf565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156118755750600f548111155b6118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90612cdb565b60405180910390fd5b600e54816118c26009611cee565b6118cc9190612ef9565b111561190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490612d7b565b60405180910390fd5b611915611a0f565b61191f8284611cfc565b505050565b61192c611a0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390612cbb565b60405180910390fd5b6119a581611c2a565b50565b6000816119b3611a8d565b111580156119c2575060015482105b8015611a00575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611a17611fe4565b73ffffffffffffffffffffffffffffffffffffffff16611a356111e1565b73ffffffffffffffffffffffffffffffffffffffff1614611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290612d1b565b60405180910390fd5b565b600090565b60008082905080611aa1611a8d565b11611b2957600154811015611b285760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b26575b6000811415611b1c576005600083600190039350838152602001908152602001600020549050611af1565b8092505050611b5b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611be8868684611fec565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b611d16828260405180602001604052806000815250611ff5565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d40611a07565b8786866040518563ffffffff1660e01b8152600401611d629493929190612c10565b602060405180830381600087803b158015611d7c57600080fd5b505af1925050508015611dad57506040513d601f19601f82011682018060405250810190611daa91906127bd565b60015b611e27573d8060008114611ddd576040519150601f19603f3d011682016040523d82523d6000602084013e611de2565b606091505b50600081511415611e1f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611e899061305f565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb59061305f565b8015611f025780601f10611ed757610100808354040283529160200191611f02565b820191906000526020600020905b815481529060010190602001808311611ee557829003601f168201915b5050505050905090565b606060006001611f1b84612093565b01905060008167ffffffffffffffff811115611f3a57611f396131c7565b5b6040519080825280601f01601f191660200182016040528015611f6c5781602001600182028036833780820191505090505b509050600082602001820190505b600115611fd9578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611fc357611fc261313a565b5b0494506000851415611fd457611fd9565b611f7a565b819350505050919050565b600033905090565b60009392505050565b611fff83836121e6565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461208e5760006001549050600083820390505b6120406000868380600101945086611d1a565b612076576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061202d57816001541461208b57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120f1577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120e7576120e661313a565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061212e576d04ee2d6d415b85acef810000000083816121245761212361313a565b5b0492506020810190505b662386f26fc10000831061215d57662386f26fc1000083816121535761215261313a565b5b0492506010810190505b6305f5e1008310612186576305f5e100838161217c5761217b61313a565b5b0492506008810190505b61271083106121ab5761271083816121a1576121a061313a565b5b0492506004810190505b606483106121ce57606483816121c4576121c361313a565b5b0492506002810190505b600a83106121dd576001810190505b80915050919050565b600060015490506000821415612228576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122356000848385611bcb565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122ac8361229d6000866000611bd1565b6122a6856123a4565b17611bf9565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461234d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612312565b506000821415612389576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061239f6000848385611c24565b505050565b60006001821460e11b9050919050565b8280546123c09061305f565b90600052602060002090601f0160209004810192826123e25760008555612429565b82601f106123fb57805160ff1916838001178555612429565b82800160010185558215612429579182015b8281111561242857825182559160200191906001019061240d565b5b509050612436919061243a565b5090565b5b8082111561245357600081600090555060010161243b565b5090565b600061246a61246584612dfb565b612dd6565b905082815260208101848484011115612486576124856131fb565b5b61249184828561301d565b509392505050565b60006124ac6124a784612e2c565b612dd6565b9050828152602081018484840111156124c8576124c76131fb565b5b6124d384828561301d565b509392505050565b6000813590506124ea816133b2565b92915050565b6000813590506124ff816133c9565b92915050565b600081359050612514816133e0565b92915050565b600081519050612529816133e0565b92915050565b600082601f830112612544576125436131f6565b5b8135612554848260208601612457565b91505092915050565b600082601f830112612572576125716131f6565b5b8135612582848260208601612499565b91505092915050565b60008135905061259a816133f7565b92915050565b6000602082840312156125b6576125b5613205565b5b60006125c4848285016124db565b91505092915050565b600080604083850312156125e4576125e3613205565b5b60006125f2858286016124db565b9250506020612603858286016124db565b9150509250929050565b60008060006060848603121561262657612625613205565b5b6000612634868287016124db565b9350506020612645868287016124db565b92505060406126568682870161258b565b9150509250925092565b6000806000806080858703121561267a57612679613205565b5b6000612688878288016124db565b9450506020612699878288016124db565b93505060406126aa8782880161258b565b925050606085013567ffffffffffffffff8111156126cb576126ca613200565b5b6126d78782880161252f565b91505092959194509250565b600080604083850312156126fa576126f9613205565b5b6000612708858286016124db565b9250506020612719858286016124f0565b9150509250929050565b6000806040838503121561273a57612739613205565b5b6000612748858286016124db565b92505060206127598582860161258b565b9150509250929050565b60006020828403121561277957612778613205565b5b6000612787848285016124f0565b91505092915050565b6000602082840312156127a6576127a5613205565b5b60006127b484828501612505565b91505092915050565b6000602082840312156127d3576127d2613205565b5b60006127e18482850161251a565b91505092915050565b600060208284031215612800576127ff613205565b5b600082013567ffffffffffffffff81111561281e5761281d613200565b5b61282a8482850161255d565b91505092915050565b60006020828403121561284957612848613205565b5b60006128578482850161258b565b91505092915050565b6000806040838503121561287757612876613205565b5b60006128858582860161258b565b9250506020612896858286016124db565b9150509250929050565b60006128ac8383612b91565b60208301905092915050565b6128c181612fa9565b82525050565b60006128d282612e82565b6128dc8185612eb0565b93506128e783612e5d565b8060005b838110156129185781516128ff88826128a0565b975061290a83612ea3565b9250506001810190506128eb565b5085935050505092915050565b61292e81612fbb565b82525050565b600061293f82612e8d565b6129498185612ec1565b935061295981856020860161302c565b6129628161320a565b840191505092915050565b600061297882612e98565b6129828185612edd565b935061299281856020860161302c565b61299b8161320a565b840191505092915050565b60006129b182612e98565b6129bb8185612eee565b93506129cb81856020860161302c565b80840191505092915050565b600081546129e48161305f565b6129ee8186612eee565b94506001821660008114612a095760018114612a1a57612a4d565b60ff19831686528186019350612a4d565b612a2385612e6d565b60005b83811015612a4557815481890152600182019150602081019050612a26565b838801955050505b50505092915050565b6000612a63602683612edd565b9150612a6e8261321b565b604082019050919050565b6000612a86601483612edd565b9150612a918261326a565b602082019050919050565b6000612aa9601383612edd565b9150612ab482613293565b602082019050919050565b6000612acc602083612edd565b9150612ad7826132bc565b602082019050919050565b6000612aef601783612edd565b9150612afa826132e5565b602082019050919050565b6000612b12602f83612edd565b9150612b1d8261330e565b604082019050919050565b6000612b35600083612ed2565b9150612b408261335d565b600082019050919050565b6000612b58601483612edd565b9150612b6382613360565b602082019050919050565b6000612b7b601383612edd565b9150612b8682613389565b602082019050919050565b612b9a81613013565b82525050565b612ba981613013565b82525050565b6000612bbb82866129a6565b9150612bc782856129a6565b9150612bd382846129d7565b9150819050949350505050565b6000612beb82612b28565b9150819050919050565b6000602082019050612c0a60008301846128b8565b92915050565b6000608082019050612c2560008301876128b8565b612c3260208301866128b8565b612c3f6040830185612ba0565b8181036060830152612c518184612934565b905095945050505050565b60006020820190508181036000830152612c7681846128c7565b905092915050565b6000602082019050612c936000830184612925565b92915050565b60006020820190508181036000830152612cb3818461296d565b905092915050565b60006020820190508181036000830152612cd481612a56565b9050919050565b60006020820190508181036000830152612cf481612a79565b9050919050565b60006020820190508181036000830152612d1481612a9c565b9050919050565b60006020820190508181036000830152612d3481612abf565b9050919050565b60006020820190508181036000830152612d5481612ae2565b9050919050565b60006020820190508181036000830152612d7481612b05565b9050919050565b60006020820190508181036000830152612d9481612b4b565b9050919050565b60006020820190508181036000830152612db481612b6e565b9050919050565b6000602082019050612dd06000830184612ba0565b92915050565b6000612de0612df1565b9050612dec8282613091565b919050565b6000604051905090565b600067ffffffffffffffff821115612e1657612e156131c7565b5b612e1f8261320a565b9050602081019050919050565b600067ffffffffffffffff821115612e4757612e466131c7565b5b612e508261320a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f0482613013565b9150612f0f83613013565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f4457612f4361310b565b5b828201905092915050565b6000612f5a82613013565b9150612f6583613013565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f9e57612f9d61310b565b5b828202905092915050565b6000612fb482612ff3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561304a57808201518184015260208101905061302f565b83811115613059576000848401525b50505050565b6000600282049050600182168061307757607f821691505b6020821081141561308b5761308a613169565b5b50919050565b61309a8261320a565b810181811067ffffffffffffffff821117156130b9576130b86131c7565b5b80604052505050565b60006130cd82613013565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613100576130ff61310b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f7468697320776f756c64204f76657273656c6c00000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6133bb81612fa9565b81146133c657600080fd5b50565b6133d281612fbb565b81146133dd57600080fd5b50565b6133e981612fc7565b81146133f457600080fd5b50565b61340081613013565b811461340b57600080fd5b5056fea2646970667358221220c2975d84f0247a91ae620326d17f084400f5d7f482e5f1ca1f783f46a06c792c64736f6c63430008070033697066733a2f2f516d6152547242424e516a31424c795533507a4163766b6d7a7a6d4359517466706147724177647266654b66765a2f
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610684578063d5abeb01146106c1578063e985e9c5146106ec578063efbd73f414610729578063f2fde38b14610752576101ee565b8063a22cb465146105eb578063a45ba8e714610614578063b071401b1461063f578063b88d4fde14610668576101ee565b80638da5cb5b116100dc5780638da5cb5b1461054e57806394354fd01461057957806395d89b41146105a4578063a0712d68146105cf576101ee565b80636352211e1461049457806370a08231146104d1578063715018a61461050e5780637ec4a65914610525576101ee565b806323b872dd11610185578063518302271161015457806351830227146103e85780635503a0e8146104135780635c975abb1461043e57806362b99ad414610469576101ee565b806323b872dd1461035c5780633ccfd60b1461037857806342842e0e1461038f578063438b6300146103ab576101ee565b806313faede6116101c157806313faede6146102b457806316ba10e0146102df57806316c38b3c1461030857806318160ddd14610331576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612790565b61077b565b6040516102279190612c7e565b60405180910390f35b34801561023c57600080fd5b5061024561080d565b6040516102529190612c99565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612833565b61089f565b60405161028f9190612bf5565b60405180910390f35b6102b260048036038101906102ad9190612723565b61091e565b005b3480156102c057600080fd5b506102c9610a62565b6040516102d69190612dbb565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906127ea565b610a68565b005b34801561031457600080fd5b5061032f600480360381019061032a9190612763565b610a8a565b005b34801561033d57600080fd5b50610346610aaf565b6040516103539190612dbb565b60405180910390f35b6103766004803603810190610371919061260d565b610ac6565b005b34801561038457600080fd5b5061038d610deb565b005b6103a960048036038101906103a4919061260d565b610e73565b005b3480156103b757600080fd5b506103d260048036038101906103cd91906125a0565b610e93565b6040516103df9190612c5c565b60405180910390f35b3480156103f457600080fd5b506103fd610f9e565b60405161040a9190612c7e565b60405180910390f35b34801561041f57600080fd5b50610428610fb1565b6040516104359190612c99565b60405180910390f35b34801561044a57600080fd5b5061045361103f565b6040516104609190612c7e565b60405180910390f35b34801561047557600080fd5b5061047e611052565b60405161048b9190612c99565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612833565b6110e0565b6040516104c89190612bf5565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f391906125a0565b6110f2565b6040516105059190612dbb565b60405180910390f35b34801561051a57600080fd5b506105236111ab565b005b34801561053157600080fd5b5061054c600480360381019061054791906127ea565b6111bf565b005b34801561055a57600080fd5b506105636111e1565b6040516105709190612bf5565b60405180910390f35b34801561058557600080fd5b5061058e61120a565b60405161059b9190612dbb565b60405180910390f35b3480156105b057600080fd5b506105b9611210565b6040516105c69190612c99565b60405180910390f35b6105e960048036038101906105e49190612833565b6112a2565b005b3480156105f757600080fd5b50610612600480360381019061060d91906126e3565b611451565b005b34801561062057600080fd5b5061062961155c565b6040516106369190612c99565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612833565b6115ea565b005b610682600480360381019061067d9190612660565b6115fc565b005b34801561069057600080fd5b506106ab60048036038101906106a69190612833565b61166f565b6040516106b89190612c99565b60405180910390f35b3480156106cd57600080fd5b506106d66117c8565b6040516106e39190612dbb565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e91906125cd565b6117ce565b6040516107209190612c7e565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612860565b611862565b005b34801561075e57600080fd5b50610779600480360381019061077491906125a0565b611924565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108065750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461081c9061305f565b80601f01602080910402602001604051908101604052809291908181526020018280546108489061305f565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b60006108aa826119a8565b6108e0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610929826110e0565b90508073ffffffffffffffffffffffffffffffffffffffff1661094a611a07565b73ffffffffffffffffffffffffffffffffffffffff16146109ad5761097681610971611a07565b6117ce565b6109ac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610a70611a0f565b80600b9080519060200190610a869291906123b4565b5050565b610a92611a0f565b80601060006101000a81548160ff02191690831515021790555050565b6000610ab9611a8d565b6002546001540303905090565b6000610ad182611a92565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b38576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b4484611b60565b91509150610b5a8187610b55611a07565b611b87565b610ba657610b6f86610b6a611a07565b6117ce565b610ba5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c0d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c1a8686866001611bcb565b8015610c2557600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cf385610ccf888887611bd1565b7c020000000000000000000000000000000000000000000000000000000017611bf9565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d7b576000600185019050600060056000838152602001908152602001600020541415610d79576001548114610d78578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610de38686866001611c24565b505050505050565b610df3611a0f565b6000610dfd6111e1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e2090612be0565b60006040518083038185875af1925050503d8060008114610e5d576040519150601f19603f3d011682016040523d82523d6000602084013e610e62565b606091505b5050905080610e7057600080fd5b50565b610e8e838383604051806020016040528060008152506115fc565b505050565b60606000610ea0836110f2565b905060008167ffffffffffffffff811115610ebe57610ebd6131c7565b5b604051908082528060200260200182016040528015610eec5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f095750600e548211155b15610f92576000610f19836110e0565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7e5782848381518110610f6357610f62613198565b5b6020026020010181815250508180610f7a906130c2565b9250505b8280610f89906130c2565b93505050610ef8565b82945050505050919050565b601060019054906101000a900460ff1681565b600b8054610fbe9061305f565b80601f0160208091040260200160405190810160405280929190818152602001828054610fea9061305f565b80156110375780601f1061100c57610100808354040283529160200191611037565b820191906000526020600020905b81548152906001019060200180831161101a57829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a805461105f9061305f565b80601f016020809104026020016040519081016040528092919081815260200182805461108b9061305f565b80156110d85780601f106110ad576101008083540402835291602001916110d8565b820191906000526020600020905b8154815290600101906020018083116110bb57829003601f168201915b505050505081565b60006110eb82611a92565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561115a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111b3611a0f565b6111bd6000611c2a565b565b6111c7611a0f565b80600a90805190602001906111dd9291906123b4565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606004805461121f9061305f565b80601f016020809104026020016040519081016040528092919081815260200182805461124b9061305f565b80156112985780601f1061126d57610100808354040283529160200191611298565b820191906000526020600020905b81548152906001019060200180831161127b57829003601f168201915b5050505050905090565b806000811180156112b55750600f548111155b6112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90612cdb565b60405180910390fd5b600e54816113026009611cee565b61130c9190612ef9565b111561134d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134490612d7b565b60405180910390fd5b601060009054906101000a900460ff161561139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490612d3b565b60405180910390fd5b600e54826113a9610aaf565b6113b39190612ef9565b106113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90612cfb565b60405180910390fd5b81600d546114019190612f4f565b341015611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90612d9b565b60405180910390fd5b61144d3383611cfc565b5050565b806008600061145e611a07565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661150b611a07565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115509190612c7e565b60405180910390a35050565b600c80546115699061305f565b80601f01602080910402602001604051908101604052809291908181526020018280546115959061305f565b80156115e25780601f106115b7576101008083540402835291602001916115e2565b820191906000526020600020905b8154815290600101906020018083116115c557829003601f168201915b505050505081565b6115f2611a0f565b80600f8190555050565b611607848484610ac6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116695761163284848484611d1a565b611668576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061167a826119a8565b6116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b090612d5b565b60405180910390fd5b60001515601060019054906101000a900460ff161515141561176757600c80546116e29061305f565b80601f016020809104026020016040519081016040528092919081815260200182805461170e9061305f565b801561175b5780601f106117305761010080835404028352916020019161175b565b820191906000526020600020905b81548152906001019060200180831161173e57829003601f168201915b505050505090506117c3565b6000611771611e7a565b9050600081511161179157604051806020016040528060008152506117bf565b8061179b84611f0c565b600b6040516020016117af93929190612baf565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156118755750600f548111155b6118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90612cdb565b60405180910390fd5b600e54816118c26009611cee565b6118cc9190612ef9565b111561190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490612d7b565b60405180910390fd5b611915611a0f565b61191f8284611cfc565b505050565b61192c611a0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390612cbb565b60405180910390fd5b6119a581611c2a565b50565b6000816119b3611a8d565b111580156119c2575060015482105b8015611a00575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611a17611fe4565b73ffffffffffffffffffffffffffffffffffffffff16611a356111e1565b73ffffffffffffffffffffffffffffffffffffffff1614611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290612d1b565b60405180910390fd5b565b600090565b60008082905080611aa1611a8d565b11611b2957600154811015611b285760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b26575b6000811415611b1c576005600083600190039350838152602001908152602001600020549050611af1565b8092505050611b5b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611be8868684611fec565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b611d16828260405180602001604052806000815250611ff5565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d40611a07565b8786866040518563ffffffff1660e01b8152600401611d629493929190612c10565b602060405180830381600087803b158015611d7c57600080fd5b505af1925050508015611dad57506040513d601f19601f82011682018060405250810190611daa91906127bd565b60015b611e27573d8060008114611ddd576040519150601f19603f3d011682016040523d82523d6000602084013e611de2565b606091505b50600081511415611e1f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611e899061305f565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb59061305f565b8015611f025780601f10611ed757610100808354040283529160200191611f02565b820191906000526020600020905b815481529060010190602001808311611ee557829003601f168201915b5050505050905090565b606060006001611f1b84612093565b01905060008167ffffffffffffffff811115611f3a57611f396131c7565b5b6040519080825280601f01601f191660200182016040528015611f6c5781602001600182028036833780820191505090505b509050600082602001820190505b600115611fd9578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611fc357611fc261313a565b5b0494506000851415611fd457611fd9565b611f7a565b819350505050919050565b600033905090565b60009392505050565b611fff83836121e6565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461208e5760006001549050600083820390505b6120406000868380600101945086611d1a565b612076576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061202d57816001541461208b57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120f1577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120e7576120e661313a565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061212e576d04ee2d6d415b85acef810000000083816121245761212361313a565b5b0492506020810190505b662386f26fc10000831061215d57662386f26fc1000083816121535761215261313a565b5b0492506010810190505b6305f5e1008310612186576305f5e100838161217c5761217b61313a565b5b0492506008810190505b61271083106121ab5761271083816121a1576121a061313a565b5b0492506004810190505b606483106121ce57606483816121c4576121c361313a565b5b0492506002810190505b600a83106121dd576001810190505b80915050919050565b600060015490506000821415612228576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122356000848385611bcb565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122ac8361229d6000866000611bd1565b6122a6856123a4565b17611bf9565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461234d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612312565b506000821415612389576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061239f6000848385611c24565b505050565b60006001821460e11b9050919050565b8280546123c09061305f565b90600052602060002090601f0160209004810192826123e25760008555612429565b82601f106123fb57805160ff1916838001178555612429565b82800160010185558215612429579182015b8281111561242857825182559160200191906001019061240d565b5b509050612436919061243a565b5090565b5b8082111561245357600081600090555060010161243b565b5090565b600061246a61246584612dfb565b612dd6565b905082815260208101848484011115612486576124856131fb565b5b61249184828561301d565b509392505050565b60006124ac6124a784612e2c565b612dd6565b9050828152602081018484840111156124c8576124c76131fb565b5b6124d384828561301d565b509392505050565b6000813590506124ea816133b2565b92915050565b6000813590506124ff816133c9565b92915050565b600081359050612514816133e0565b92915050565b600081519050612529816133e0565b92915050565b600082601f830112612544576125436131f6565b5b8135612554848260208601612457565b91505092915050565b600082601f830112612572576125716131f6565b5b8135612582848260208601612499565b91505092915050565b60008135905061259a816133f7565b92915050565b6000602082840312156125b6576125b5613205565b5b60006125c4848285016124db565b91505092915050565b600080604083850312156125e4576125e3613205565b5b60006125f2858286016124db565b9250506020612603858286016124db565b9150509250929050565b60008060006060848603121561262657612625613205565b5b6000612634868287016124db565b9350506020612645868287016124db565b92505060406126568682870161258b565b9150509250925092565b6000806000806080858703121561267a57612679613205565b5b6000612688878288016124db565b9450506020612699878288016124db565b93505060406126aa8782880161258b565b925050606085013567ffffffffffffffff8111156126cb576126ca613200565b5b6126d78782880161252f565b91505092959194509250565b600080604083850312156126fa576126f9613205565b5b6000612708858286016124db565b9250506020612719858286016124f0565b9150509250929050565b6000806040838503121561273a57612739613205565b5b6000612748858286016124db565b92505060206127598582860161258b565b9150509250929050565b60006020828403121561277957612778613205565b5b6000612787848285016124f0565b91505092915050565b6000602082840312156127a6576127a5613205565b5b60006127b484828501612505565b91505092915050565b6000602082840312156127d3576127d2613205565b5b60006127e18482850161251a565b91505092915050565b600060208284031215612800576127ff613205565b5b600082013567ffffffffffffffff81111561281e5761281d613200565b5b61282a8482850161255d565b91505092915050565b60006020828403121561284957612848613205565b5b60006128578482850161258b565b91505092915050565b6000806040838503121561287757612876613205565b5b60006128858582860161258b565b9250506020612896858286016124db565b9150509250929050565b60006128ac8383612b91565b60208301905092915050565b6128c181612fa9565b82525050565b60006128d282612e82565b6128dc8185612eb0565b93506128e783612e5d565b8060005b838110156129185781516128ff88826128a0565b975061290a83612ea3565b9250506001810190506128eb565b5085935050505092915050565b61292e81612fbb565b82525050565b600061293f82612e8d565b6129498185612ec1565b935061295981856020860161302c565b6129628161320a565b840191505092915050565b600061297882612e98565b6129828185612edd565b935061299281856020860161302c565b61299b8161320a565b840191505092915050565b60006129b182612e98565b6129bb8185612eee565b93506129cb81856020860161302c565b80840191505092915050565b600081546129e48161305f565b6129ee8186612eee565b94506001821660008114612a095760018114612a1a57612a4d565b60ff19831686528186019350612a4d565b612a2385612e6d565b60005b83811015612a4557815481890152600182019150602081019050612a26565b838801955050505b50505092915050565b6000612a63602683612edd565b9150612a6e8261321b565b604082019050919050565b6000612a86601483612edd565b9150612a918261326a565b602082019050919050565b6000612aa9601383612edd565b9150612ab482613293565b602082019050919050565b6000612acc602083612edd565b9150612ad7826132bc565b602082019050919050565b6000612aef601783612edd565b9150612afa826132e5565b602082019050919050565b6000612b12602f83612edd565b9150612b1d8261330e565b604082019050919050565b6000612b35600083612ed2565b9150612b408261335d565b600082019050919050565b6000612b58601483612edd565b9150612b6382613360565b602082019050919050565b6000612b7b601383612edd565b9150612b8682613389565b602082019050919050565b612b9a81613013565b82525050565b612ba981613013565b82525050565b6000612bbb82866129a6565b9150612bc782856129a6565b9150612bd382846129d7565b9150819050949350505050565b6000612beb82612b28565b9150819050919050565b6000602082019050612c0a60008301846128b8565b92915050565b6000608082019050612c2560008301876128b8565b612c3260208301866128b8565b612c3f6040830185612ba0565b8181036060830152612c518184612934565b905095945050505050565b60006020820190508181036000830152612c7681846128c7565b905092915050565b6000602082019050612c936000830184612925565b92915050565b60006020820190508181036000830152612cb3818461296d565b905092915050565b60006020820190508181036000830152612cd481612a56565b9050919050565b60006020820190508181036000830152612cf481612a79565b9050919050565b60006020820190508181036000830152612d1481612a9c565b9050919050565b60006020820190508181036000830152612d3481612abf565b9050919050565b60006020820190508181036000830152612d5481612ae2565b9050919050565b60006020820190508181036000830152612d7481612b05565b9050919050565b60006020820190508181036000830152612d9481612b4b565b9050919050565b60006020820190508181036000830152612db481612b6e565b9050919050565b6000602082019050612dd06000830184612ba0565b92915050565b6000612de0612df1565b9050612dec8282613091565b919050565b6000604051905090565b600067ffffffffffffffff821115612e1657612e156131c7565b5b612e1f8261320a565b9050602081019050919050565b600067ffffffffffffffff821115612e4757612e466131c7565b5b612e508261320a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f0482613013565b9150612f0f83613013565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f4457612f4361310b565b5b828201905092915050565b6000612f5a82613013565b9150612f6583613013565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f9e57612f9d61310b565b5b828202905092915050565b6000612fb482612ff3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561304a57808201518184015260208101905061302f565b83811115613059576000848401525b50505050565b6000600282049050600182168061307757607f821691505b6020821081141561308b5761308a613169565b5b50919050565b61309a8261320a565b810181811067ffffffffffffffff821117156130b9576130b86131c7565b5b80604052505050565b60006130cd82613013565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613100576130ff61310b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f7468697320776f756c64204f76657273656c6c00000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6133bb81612fa9565b81146133c657600080fd5b50565b6133d281612fbb565b81146133dd57600080fd5b50565b6133e981612fc7565b81146133f457600080fd5b50565b61340081613013565b811461340b57600080fd5b5056fea2646970667358221220c2975d84f0247a91ae620326d17f084400f5d7f482e5f1ca1f783f46a06c792c64736f6c63430008070033
Deployed Bytecode Sourcemap
71597:3405:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18720:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19622:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26113:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25546:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71906:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72853:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72959:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15373:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29752:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74529:466;;;;;;;;;;;;;:::i;:::-;;32673:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73150:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72055:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71830:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72025:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71743:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21015:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16557:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54527:103;;;;;;;;;;;;;:::i;:::-;;72747:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53879:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71981:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19798:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72142:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26671:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71868:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72611:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33464:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73791:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71945:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27062:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72448:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54785:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18720:639;18805:4;19144:10;19129:25;;:11;:25;;;;:102;;;;19221:10;19206:25;;:11;:25;;;;19129:102;:179;;;;19298:10;19283:25;;:11;:25;;;;19129:179;19109:199;;18720:639;;;:::o;19622:100::-;19676:13;19709:5;19702:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19622:100;:::o;26113:218::-;26189:7;26214:16;26222:7;26214;:16::i;:::-;26209:64;;26239:34;;;;;;;;;;;;;;26209:64;26293:15;:24;26309:7;26293:24;;;;;;;;;;;:30;;;;;;;;;;;;26286:37;;26113:218;;;:::o;25546:408::-;25635:13;25651:16;25659:7;25651;:16::i;:::-;25635:32;;25707:5;25684:28;;:19;:17;:19::i;:::-;:28;;;25680:175;;25732:44;25749:5;25756:19;:17;:19::i;:::-;25732:16;:44::i;:::-;25727:128;;25804:35;;;;;;;;;;;;;;25727:128;25680:175;25900:2;25867:15;:24;25883:7;25867:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25938:7;25934:2;25918:28;;25927:5;25918:28;;;;;;;;;;;;25624:330;25546:408;;:::o;71906:34::-;;;;:::o;72853:100::-;53765:13;:11;:13::i;:::-;72937:10:::1;72925:9;:22;;;;;;;;;;;;:::i;:::-;;72853:100:::0;:::o;72959:77::-;53765:13;:11;:13::i;:::-;73024:6:::1;73015;;:15;;;;;;;;;;;;;;;;;;72959:77:::0;:::o;15373:323::-;15434:7;15662:15;:13;:15::i;:::-;15647:12;;15631:13;;:28;:46;15624:53;;15373:323;:::o;29752:2825::-;29894:27;29924;29943:7;29924:18;:27::i;:::-;29894:57;;30009:4;29968:45;;29984:19;29968:45;;;29964:86;;30022:28;;;;;;;;;;;;;;29964:86;30064:27;30093:23;30120:35;30147:7;30120:26;:35::i;:::-;30063:92;;;;30255:68;30280:15;30297:4;30303:19;:17;:19::i;:::-;30255:24;:68::i;:::-;30250:180;;30343:43;30360:4;30366:19;:17;:19::i;:::-;30343:16;:43::i;:::-;30338:92;;30395:35;;;;;;;;;;;;;;30338:92;30250:180;30461:1;30447:16;;:2;:16;;;30443:52;;;30472:23;;;;;;;;;;;;;;30443:52;30508:43;30530:4;30536:2;30540:7;30549:1;30508:21;:43::i;:::-;30644:15;30641:160;;;30784:1;30763:19;30756:30;30641:160;31181:18;:24;31200:4;31181:24;;;;;;;;;;;;;;;;31179:26;;;;;;;;;;;;31250:18;:22;31269:2;31250:22;;;;;;;;;;;;;;;;31248:24;;;;;;;;;;;31572:146;31609:2;31658:45;31673:4;31679:2;31683:19;31658:14;:45::i;:::-;11772:8;31630:73;31572:18;:146::i;:::-;31543:17;:26;31561:7;31543:26;;;;;;;;;;;:175;;;;31889:1;11772:8;31838:19;:47;:52;31834:627;;;31911:19;31943:1;31933:7;:11;31911:33;;32100:1;32066:17;:30;32084:11;32066:30;;;;;;;;;;;;:35;32062:384;;;32204:13;;32189:11;:28;32185:242;;32384:19;32351:17;:30;32369:11;32351:30;;;;;;;;;;;:52;;;;32185:242;32062:384;31892:569;31834:627;32508:7;32504:2;32489:27;;32498:4;32489:27;;;;;;;;;;;;32527:42;32548:4;32554:2;32558:7;32567:1;32527:20;:42::i;:::-;29883:2694;;;29752:2825;;;:::o;74529:466::-;53765:13;:11;:13::i;:::-;74817:7:::1;74838;:5;:7::i;:::-;74830:21;;74859;74830:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74816:69;;;74900:2;74892:11;;;::::0;::::1;;74566:429;74529:466::o:0;32673:193::-;32819:39;32836:4;32842:2;32846:7;32819:39;;;;;;;;;;;;:16;:39::i;:::-;32673:193;;;:::o;73150:635::-;73225:16;73253:23;73279:17;73289:6;73279:9;:17::i;:::-;73253:43;;73303:30;73350:15;73336:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73303:63;;73373:22;73398:1;73373:26;;73406:23;73442:309;73467:15;73449;:33;:64;;;;;73504:9;;73486:14;:27;;73449:64;73442:309;;;73524:25;73552:23;73560:14;73552:7;:23::i;:::-;73524:51;;73611:6;73590:27;;:17;:27;;;73586:131;;;73663:14;73630:13;73644:15;73630:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;73690:17;;;;;:::i;:::-;;;;73586:131;73727:16;;;;;:::i;:::-;;;;73515:236;73442:309;;;73766:13;73759:20;;;;;;73150:635;;;:::o;72055:27::-;;;;;;;;;;;;;:::o;71830:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72025:25::-;;;;;;;;;;;;;:::o;71743:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21015:152::-;21087:7;21130:27;21149:7;21130:18;:27::i;:::-;21107:52;;21015:152;;;:::o;16557:233::-;16629:7;16670:1;16653:19;;:5;:19;;;16649:60;;;16681:28;;;;;;;;;;;;;;16649:60;10716:13;16727:18;:25;16746:5;16727:25;;;;;;;;;;;;;;;;:55;16720:62;;16557:233;;;:::o;54527:103::-;53765:13;:11;:13::i;:::-;54592:30:::1;54619:1;54592:18;:30::i;:::-;54527:103::o:0;72747:100::-;53765:13;:11;:13::i;:::-;72831:10:::1;72819:9;:22;;;;;;;;;;;;:::i;:::-;;72747:100:::0;:::o;53879:87::-;53925:7;53952:6;;;;;;;;;;;53945:13;;53879:87;:::o;71981:37::-;;;;:::o;19798:104::-;19854:13;19887:7;19880:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19798:104;:::o;72142:296::-;72204:6;74362:1;74348:11;:15;:52;;;;;74382:18;;74367:11;:33;;74348:52;74340:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;74474:9;;74459:11;74440:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;74432:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;72228:6:::1;;;;;;;;;;;72227:7;72219:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;72299:9;;72291:6;72277:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:31;72269:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;72366:6;72359:4;;:13;;;;:::i;:::-;72346:9;:26;;72338:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;72403:29;72413:10;72425:6;72403:9;:29::i;:::-;72142:296:::0;;:::o;26671:234::-;26818:8;26766:18;:39;26785:19;:17;:19::i;:::-;26766:39;;;;;;;;;;;;;;;:49;26806:8;26766:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26878:8;26842:55;;26857:19;:17;:19::i;:::-;26842:55;;;26888:8;26842:55;;;;;;:::i;:::-;;;;;;;;26671:234;;:::o;71868:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72611:130::-;53765:13;:11;:13::i;:::-;72716:19:::1;72695:18;:40;;;;72611:130:::0;:::o;33464:407::-;33639:31;33652:4;33658:2;33662:7;33639:12;:31::i;:::-;33703:1;33685:2;:14;;;:19;33681:183;;33724:56;33755:4;33761:2;33765:7;33774:5;33724:30;:56::i;:::-;33719:145;;33808:40;;;;;;;;;;;;;;33719:145;33681:183;33464:407;;;;:::o;73791:494::-;73890:13;73931:17;73939:8;73931:7;:17::i;:::-;73915:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;74038:5;74026:17;;:8;;;;;;;;;;;:17;;;74022:64;;;74061:17;74054:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74022:64;74094:28;74125:10;:8;:10::i;:::-;74094:41;;74180:1;74155:14;74149:28;:32;:130;;;;;;;;;;;;;;;;;74217:14;74233:19;:8;:17;:19::i;:::-;74254:9;74200:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74149:130;74142:137;;;73791:494;;;;:::o;71945:31::-;;;;:::o;27062:164::-;27159:4;27183:18;:25;27202:5;27183:25;;;;;;;;;;;;;;;:35;27209:8;27183:35;;;;;;;;;;;;;;;;;;;;;;;;;27176:42;;27062:164;;;;:::o;72448:155::-;72534:11;74362:1;74348:11;:15;:52;;;;;74382:18;;74367:11;:33;;74348:52;74340:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;74474:9;;74459:11;74440:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;74432:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;53765:13:::1;:11;:13::i;:::-;72564:33:::2;72574:9;72585:11;72564:9;:33::i;:::-;72448:155:::0;;;:::o;54785:201::-;53765:13;:11;:13::i;:::-;54894:1:::1;54874:22;;:8;:22;;;;54866:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54950:28;54969:8;54950:18;:28::i;:::-;54785:201:::0;:::o;27484:282::-;27549:4;27605:7;27586:15;:13;:15::i;:::-;:26;;:66;;;;;27639:13;;27629:7;:23;27586:66;:153;;;;;27738:1;11492:8;27690:17;:26;27708:7;27690:26;;;;;;;;;;;;:44;:49;27586:153;27566:173;;27484:282;;;:::o;49792:105::-;49852:7;49879:10;49872:17;;49792:105;:::o;54044:132::-;54119:12;:10;:12::i;:::-;54108:23;;:7;:5;:7::i;:::-;:23;;;54100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54044:132::o;14889:92::-;14945:7;14889:92;:::o;22170:1275::-;22237:7;22257:12;22272:7;22257:22;;22340:4;22321:15;:13;:15::i;:::-;:23;22317:1061;;22374:13;;22367:4;:20;22363:1015;;;22412:14;22429:17;:23;22447:4;22429:23;;;;;;;;;;;;22412:40;;22546:1;11492:8;22518:6;:24;:29;22514:845;;;23183:113;23200:1;23190:6;:11;23183:113;;;23243:17;:25;23261:6;;;;;;;23243:25;;;;;;;;;;;;23234:34;;23183:113;;;23329:6;23322:13;;;;;;22514:845;22389:989;22363:1015;22317:1061;23406:31;;;;;;;;;;;;;;22170:1275;;;;:::o;28647:485::-;28749:27;28778:23;28819:38;28860:15;:24;28876:7;28860:24;;;;;;;;;;;28819:65;;29037:18;29014:41;;29094:19;29088:26;29069:45;;28999:126;28647:485;;;:::o;27875:659::-;28024:11;28189:16;28182:5;28178:28;28169:37;;28349:16;28338:9;28334:32;28321:45;;28499:15;28488:9;28485:30;28477:5;28466:9;28463:20;28460:56;28450:66;;27875:659;;;;;:::o;34533:159::-;;;;;:::o;49101:311::-;49236:7;49256:16;11896:3;49282:19;:41;;49256:68;;11896:3;49350:31;49361:4;49367:2;49371:9;49350:10;:31::i;:::-;49342:40;;:62;;49335:69;;;49101:311;;;;;:::o;23993:450::-;24073:14;24241:16;24234:5;24230:28;24221:37;;24418:5;24404:11;24379:23;24375:41;24372:52;24365:5;24362:63;24352:73;;23993:450;;;;:::o;35357:158::-;;;;;:::o;55146:191::-;55220:16;55239:6;;;;;;;;;;;55220:25;;55265:8;55256:6;;:17;;;;;;;;;;;;;;;;;;55320:8;55289:40;;55310:8;55289:40;;;;;;;;;;;;55209:128;55146:191;:::o;70977:114::-;71042:7;71069;:14;;;71062:21;;70977:114;;;:::o;43624:112::-;43701:27;43711:2;43715:8;43701:27;;;;;;;;;;;;:9;:27::i;:::-;43624:112;;:::o;35955:716::-;36118:4;36164:2;36139:45;;;36185:19;:17;:19::i;:::-;36206:4;36212:7;36221:5;36139:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36135:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36439:1;36422:6;:13;:18;36418:235;;;36468:40;;;;;;;;;;;;;;36418:235;36611:6;36605:13;36596:6;36592:2;36588:15;36581:38;36135:529;36308:54;;;36298:64;;;:6;:64;;;;36291:71;;;35955:716;;;;;;:::o;73040:104::-;73100:13;73129:9;73122:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73040:104;:::o;68649:716::-;68705:13;68756:14;68793:1;68773:17;68784:5;68773:10;:17::i;:::-;:21;68756:38;;68809:20;68843:6;68832:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68809:41;;68865:11;68994:6;68990:2;68986:15;68978:6;68974:28;68967:35;;69031:288;69038:4;69031:288;;;69063:5;;;;;;;;69205:8;69200:2;69193:5;69189:14;69184:30;69179:3;69171:44;69261:2;69252:11;;;;;;:::i;:::-;;;;;69295:1;69286:5;:10;69282:21;;;69298:5;;69282:21;69031:288;;;69340:6;69333:13;;;;;68649:716;;;:::o;52430:98::-;52483:7;52510:10;52503:17;;52430:98;:::o;48802:147::-;48939:6;48802:147;;;;;:::o;42851:689::-;42982:19;42988:2;42992:8;42982:5;:19::i;:::-;43061:1;43043:2;:14;;;:19;43039:483;;43083:11;43097:13;;43083:27;;43129:13;43151:8;43145:3;:14;43129:30;;43178:233;43209:62;43248:1;43252:2;43256:7;;;;;;43265:5;43209:30;:62::i;:::-;43204:167;;43307:40;;;;;;;;;;;;;;43204:167;43406:3;43398:5;:11;43178:233;;43493:3;43476:13;;:20;43472:34;;43498:8;;;43472:34;43064:458;;43039:483;42851:689;;;:::o;65515:922::-;65568:7;65588:14;65605:1;65588:18;;65655:6;65646:5;:15;65642:102;;65691:6;65682:15;;;;;;:::i;:::-;;;;;65726:2;65716:12;;;;65642:102;65771:6;65762:5;:15;65758:102;;65807:6;65798:15;;;;;;:::i;:::-;;;;;65842:2;65832:12;;;;65758:102;65887:6;65878:5;:15;65874:102;;65923:6;65914:15;;;;;;:::i;:::-;;;;;65958:2;65948:12;;;;65874:102;66003:5;65994;:14;65990:99;;66038:5;66029:14;;;;;;:::i;:::-;;;;;66072:1;66062:11;;;;65990:99;66116:5;66107;:14;66103:99;;66151:5;66142:14;;;;;;:::i;:::-;;;;;66185:1;66175:11;;;;66103:99;66229:5;66220;:14;66216:99;;66264:5;66255:14;;;;;;:::i;:::-;;;;;66298:1;66288:11;;;;66216:99;66342:5;66333;:14;66329:66;;66378:1;66368:11;;;;66329:66;66423:6;66416:13;;;65515:922;;;:::o;37133:2966::-;37206:20;37229:13;;37206:36;;37269:1;37257:8;:13;37253:44;;;37279:18;;;;;;;;;;;;;;37253:44;37310:61;37340:1;37344:2;37348:12;37362:8;37310:21;:61::i;:::-;37854:1;10854:2;37824:1;:26;;37823:32;37811:8;:45;37785:18;:22;37804:2;37785:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38133:139;38170:2;38224:33;38247:1;38251:2;38255:1;38224:14;:33::i;:::-;38191:30;38212:8;38191:20;:30::i;:::-;:66;38133:18;:139::i;:::-;38099:17;:31;38117:12;38099:31;;;;;;;;;;;:173;;;;38289:16;38320:11;38349:8;38334:12;:23;38320:37;;38870:16;38866:2;38862:25;38850:37;;39242:12;39202:8;39161:1;39099:25;39040:1;38979;38952:335;39613:1;39599:12;39595:20;39553:346;39654:3;39645:7;39642:16;39553:346;;39872:7;39862:8;39859:1;39832:25;39829:1;39826;39821:59;39707:1;39698:7;39694:15;39683:26;;39553:346;;;39557:77;39944:1;39932:8;:13;39928:45;;;39954:19;;;;;;;;;;;;;;39928:45;40006:3;39990:13;:19;;;;37559:2462;;40031:60;40060:1;40064:2;40068:12;40082:8;40031:20;:60::i;:::-;37195:2904;37133:2966;;:::o;24545:324::-;24615:14;24848:1;24838:8;24835:15;24809:24;24805:46;24795:56;;24545:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:398::-;13544:3;13565:83;13646:1;13641:3;13565:83;:::i;:::-;13558:90;;13657:93;13746:3;13657:93;:::i;:::-;13775:1;13770:3;13766:11;13759:18;;13385:398;;;:::o;13789:366::-;13931:3;13952:67;14016:2;14011:3;13952:67;:::i;:::-;13945:74;;14028:93;14117:3;14028:93;:::i;:::-;14146:2;14141:3;14137:12;14130:19;;13789:366;;;:::o;14161:::-;14303:3;14324:67;14388:2;14383:3;14324:67;:::i;:::-;14317:74;;14400:93;14489:3;14400:93;:::i;:::-;14518:2;14513:3;14509:12;14502:19;;14161:366;;;:::o;14533:108::-;14610:24;14628:5;14610:24;:::i;:::-;14605:3;14598:37;14533:108;;:::o;14647:118::-;14734:24;14752:5;14734:24;:::i;:::-;14729:3;14722:37;14647:118;;:::o;14771:589::-;14996:3;15018:95;15109:3;15100:6;15018:95;:::i;:::-;15011:102;;15130:95;15221:3;15212:6;15130:95;:::i;:::-;15123:102;;15242:92;15330:3;15321:6;15242:92;:::i;:::-;15235:99;;15351:3;15344:10;;14771:589;;;;;;:::o;15366:379::-;15550:3;15572:147;15715:3;15572:147;:::i;:::-;15565:154;;15736:3;15729:10;;15366:379;;;:::o;15751:222::-;15844:4;15882:2;15871:9;15867:18;15859:26;;15895:71;15963:1;15952:9;15948:17;15939:6;15895:71;:::i;:::-;15751:222;;;;:::o;15979:640::-;16174:4;16212:3;16201:9;16197:19;16189:27;;16226:71;16294:1;16283:9;16279:17;16270:6;16226:71;:::i;:::-;16307:72;16375:2;16364:9;16360:18;16351:6;16307:72;:::i;:::-;16389;16457:2;16446:9;16442:18;16433:6;16389:72;:::i;:::-;16508:9;16502:4;16498:20;16493:2;16482:9;16478:18;16471:48;16536:76;16607:4;16598:6;16536:76;:::i;:::-;16528:84;;15979:640;;;;;;;:::o;16625:373::-;16768:4;16806:2;16795:9;16791:18;16783:26;;16855:9;16849:4;16845:20;16841:1;16830:9;16826:17;16819:47;16883:108;16986:4;16977:6;16883:108;:::i;:::-;16875:116;;16625:373;;;;:::o;17004:210::-;17091:4;17129:2;17118:9;17114:18;17106:26;;17142:65;17204:1;17193:9;17189:17;17180:6;17142:65;:::i;:::-;17004:210;;;;:::o;17220:313::-;17333:4;17371:2;17360:9;17356:18;17348:26;;17420:9;17414:4;17410:20;17406:1;17395:9;17391:17;17384:47;17448:78;17521:4;17512:6;17448:78;:::i;:::-;17440:86;;17220:313;;;;:::o;17539:419::-;17705:4;17743:2;17732:9;17728:18;17720:26;;17792:9;17786:4;17782:20;17778:1;17767:9;17763:17;17756:47;17820:131;17946:4;17820:131;:::i;:::-;17812:139;;17539:419;;;:::o;17964:::-;18130:4;18168:2;18157:9;18153:18;18145:26;;18217:9;18211:4;18207:20;18203:1;18192:9;18188:17;18181:47;18245:131;18371:4;18245:131;:::i;:::-;18237:139;;17964:419;;;:::o;18389:::-;18555:4;18593:2;18582:9;18578:18;18570:26;;18642:9;18636:4;18632:20;18628:1;18617:9;18613:17;18606:47;18670:131;18796:4;18670:131;:::i;:::-;18662:139;;18389:419;;;:::o;18814:::-;18980:4;19018:2;19007:9;19003:18;18995:26;;19067:9;19061:4;19057:20;19053:1;19042:9;19038:17;19031:47;19095:131;19221:4;19095:131;:::i;:::-;19087:139;;18814:419;;;:::o;19239:::-;19405:4;19443:2;19432:9;19428:18;19420:26;;19492:9;19486:4;19482:20;19478:1;19467:9;19463:17;19456:47;19520:131;19646:4;19520:131;:::i;:::-;19512:139;;19239:419;;;:::o;19664:::-;19830:4;19868:2;19857:9;19853:18;19845:26;;19917:9;19911:4;19907:20;19903:1;19892:9;19888:17;19881:47;19945:131;20071:4;19945:131;:::i;:::-;19937:139;;19664:419;;;:::o;20089:::-;20255:4;20293:2;20282:9;20278:18;20270:26;;20342:9;20336:4;20332:20;20328:1;20317:9;20313:17;20306:47;20370:131;20496:4;20370:131;:::i;:::-;20362:139;;20089:419;;;:::o;20514:::-;20680:4;20718:2;20707:9;20703:18;20695:26;;20767:9;20761:4;20757:20;20753:1;20742:9;20738:17;20731:47;20795:131;20921:4;20795:131;:::i;:::-;20787:139;;20514:419;;;:::o;20939:222::-;21032:4;21070:2;21059:9;21055:18;21047:26;;21083:71;21151:1;21140:9;21136:17;21127:6;21083:71;:::i;:::-;20939:222;;;;:::o;21167:129::-;21201:6;21228:20;;:::i;:::-;21218:30;;21257:33;21285:4;21277:6;21257:33;:::i;:::-;21167:129;;;:::o;21302:75::-;21335:6;21368:2;21362:9;21352:19;;21302:75;:::o;21383:307::-;21444:4;21534:18;21526:6;21523:30;21520:56;;;21556:18;;:::i;:::-;21520:56;21594:29;21616:6;21594:29;:::i;:::-;21586:37;;21678:4;21672;21668:15;21660:23;;21383:307;;;:::o;21696:308::-;21758:4;21848:18;21840:6;21837:30;21834:56;;;21870:18;;:::i;:::-;21834:56;21908:29;21930:6;21908:29;:::i;:::-;21900:37;;21992:4;21986;21982:15;21974:23;;21696:308;;;:::o;22010:132::-;22077:4;22100:3;22092:11;;22130:4;22125:3;22121:14;22113:22;;22010:132;;;:::o;22148:141::-;22197:4;22220:3;22212:11;;22243:3;22240:1;22233:14;22277:4;22274:1;22264:18;22256:26;;22148:141;;;:::o;22295:114::-;22362:6;22396:5;22390:12;22380:22;;22295:114;;;:::o;22415:98::-;22466:6;22500:5;22494:12;22484:22;;22415:98;;;:::o;22519:99::-;22571:6;22605:5;22599:12;22589:22;;22519:99;;;:::o;22624:113::-;22694:4;22726;22721:3;22717:14;22709:22;;22624:113;;;:::o;22743:184::-;22842:11;22876:6;22871:3;22864:19;22916:4;22911:3;22907:14;22892:29;;22743:184;;;;:::o;22933:168::-;23016:11;23050:6;23045:3;23038:19;23090:4;23085:3;23081:14;23066:29;;22933:168;;;;:::o;23107:147::-;23208:11;23245:3;23230:18;;23107:147;;;;:::o;23260:169::-;23344:11;23378:6;23373:3;23366:19;23418:4;23413:3;23409:14;23394:29;;23260:169;;;;:::o;23435:148::-;23537:11;23574:3;23559:18;;23435:148;;;;:::o;23589:305::-;23629:3;23648:20;23666:1;23648:20;:::i;:::-;23643:25;;23682:20;23700:1;23682:20;:::i;:::-;23677:25;;23836:1;23768:66;23764:74;23761:1;23758:81;23755:107;;;23842:18;;:::i;:::-;23755:107;23886:1;23883;23879:9;23872:16;;23589:305;;;;:::o;23900:348::-;23940:7;23963:20;23981:1;23963:20;:::i;:::-;23958:25;;23997:20;24015:1;23997:20;:::i;:::-;23992:25;;24185:1;24117:66;24113:74;24110:1;24107:81;24102:1;24095:9;24088:17;24084:105;24081:131;;;24192:18;;:::i;:::-;24081:131;24240:1;24237;24233:9;24222:20;;23900:348;;;;:::o;24254:96::-;24291:7;24320:24;24338:5;24320:24;:::i;:::-;24309:35;;24254:96;;;:::o;24356:90::-;24390:7;24433:5;24426:13;24419:21;24408:32;;24356:90;;;:::o;24452:149::-;24488:7;24528:66;24521:5;24517:78;24506:89;;24452:149;;;:::o;24607:126::-;24644:7;24684:42;24677:5;24673:54;24662:65;;24607:126;;;:::o;24739:77::-;24776:7;24805:5;24794:16;;24739:77;;;:::o;24822:154::-;24906:6;24901:3;24896;24883:30;24968:1;24959:6;24954:3;24950:16;24943:27;24822:154;;;:::o;24982:307::-;25050:1;25060:113;25074:6;25071:1;25068:13;25060:113;;;25159:1;25154:3;25150:11;25144:18;25140:1;25135:3;25131:11;25124:39;25096:2;25093:1;25089:10;25084:15;;25060:113;;;25191:6;25188:1;25185:13;25182:101;;;25271:1;25262:6;25257:3;25253:16;25246:27;25182:101;25031:258;24982:307;;;:::o;25295:320::-;25339:6;25376:1;25370:4;25366:12;25356:22;;25423:1;25417:4;25413:12;25444:18;25434:81;;25500:4;25492:6;25488:17;25478:27;;25434:81;25562:2;25554:6;25551:14;25531:18;25528:38;25525:84;;;25581:18;;:::i;:::-;25525:84;25346:269;25295:320;;;:::o;25621:281::-;25704:27;25726:4;25704:27;:::i;:::-;25696:6;25692:40;25834:6;25822:10;25819:22;25798:18;25786:10;25783:34;25780:62;25777:88;;;25845:18;;:::i;:::-;25777:88;25885:10;25881:2;25874:22;25664:238;25621:281;;:::o;25908:233::-;25947:3;25970:24;25988:5;25970:24;:::i;:::-;25961:33;;26016:66;26009:5;26006:77;26003:103;;;26086:18;;:::i;:::-;26003:103;26133:1;26126:5;26122:13;26115:20;;25908:233;;;:::o;26147:180::-;26195:77;26192:1;26185:88;26292:4;26289:1;26282:15;26316:4;26313:1;26306:15;26333:180;26381:77;26378:1;26371:88;26478:4;26475:1;26468:15;26502:4;26499:1;26492:15;26519:180;26567:77;26564:1;26557:88;26664:4;26661:1;26654:15;26688:4;26685:1;26678:15;26705:180;26753:77;26750:1;26743:88;26850:4;26847:1;26840:15;26874:4;26871:1;26864:15;26891:180;26939:77;26936:1;26929:88;27036:4;27033:1;27026:15;27060:4;27057:1;27050:15;27077:117;27186:1;27183;27176:12;27200:117;27309:1;27306;27299:12;27323:117;27432:1;27429;27422:12;27446:117;27555:1;27552;27545:12;27569:102;27610:6;27661:2;27657:7;27652:2;27645:5;27641:14;27637:28;27627:38;;27569:102;;;:::o;27677:225::-;27817:34;27813:1;27805:6;27801:14;27794:58;27886:8;27881:2;27873:6;27869:15;27862:33;27677:225;:::o;27908:170::-;28048:22;28044:1;28036:6;28032:14;28025:46;27908:170;:::o;28084:169::-;28224:21;28220:1;28212:6;28208:14;28201:45;28084:169;:::o;28259:182::-;28399:34;28395:1;28387:6;28383:14;28376:58;28259:182;:::o;28447:173::-;28587:25;28583:1;28575:6;28571:14;28564:49;28447:173;:::o;28626:234::-;28766:34;28762:1;28754:6;28750:14;28743:58;28835:17;28830:2;28822:6;28818:15;28811:42;28626:234;:::o;28866:114::-;;:::o;28986:170::-;29126:22;29122:1;29114:6;29110:14;29103:46;28986:170;:::o;29162:169::-;29302:21;29298:1;29290:6;29286:14;29279:45;29162:169;:::o;29337:122::-;29410:24;29428:5;29410:24;:::i;:::-;29403:5;29400:35;29390:63;;29449:1;29446;29439:12;29390:63;29337:122;:::o;29465:116::-;29535:21;29550:5;29535:21;:::i;:::-;29528:5;29525:32;29515:60;;29571:1;29568;29561:12;29515:60;29465:116;:::o;29587:120::-;29659:23;29676:5;29659:23;:::i;:::-;29652:5;29649:34;29639:62;;29697:1;29694;29687:12;29639:62;29587:120;:::o;29713:122::-;29786:24;29804:5;29786:24;:::i;:::-;29779:5;29776:35;29766:63;;29825:1;29822;29815:12;29766:63;29713:122;:::o
Swarm Source
ipfs://c2975d84f0247a91ae620326d17f084400f5d7f482e5f1ca1f783f46a06c792c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.