Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 4,924 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 83369232 | 4 days ago | IN | 0 ETH | 0.00000025 | ||||
Set Approval For... | 83079907 | 24 days ago | IN | 0 ETH | 0.00000025 | ||||
Set Approval For... | 83074496 | 24 days ago | IN | 0 ETH | 0.00000046 | ||||
Set Approval For... | 83074457 | 24 days ago | IN | 0 ETH | 0.00000046 | ||||
Set Approval For... | 82501686 | 52 days ago | IN | 0 ETH | 0.00000025 | ||||
Set Approval For... | 82451591 | 56 days ago | IN | 0 ETH | 0.00000026 | ||||
Set Approval For... | 82216354 | 72 days ago | IN | 0 ETH | 0.00000047 | ||||
Set Approval For... | 82085980 | 80 days ago | IN | 0 ETH | 0.00000048 | ||||
Set Approval For... | 81922095 | 87 days ago | IN | 0 ETH | 0.0000005 | ||||
Set Approval For... | 81496937 | 102 days ago | IN | 0 ETH | 0.00000052 | ||||
Set Approval For... | 81436219 | 104 days ago | IN | 0 ETH | 0.00000029 | ||||
Set Approval For... | 81432153 | 104 days ago | IN | 0 ETH | 0.00000027 | ||||
Set Approval For... | 81361179 | 108 days ago | IN | 0 ETH | 0.00000029 | ||||
Set Approval For... | 81361178 | 108 days ago | IN | 0 ETH | 0.00000029 | ||||
Set Approval For... | 81224646 | 113 days ago | IN | 0 ETH | 0.00000026 | ||||
Set Approval For... | 80927887 | 122 days ago | IN | 0 ETH | 0.00000027 | ||||
Set Approval For... | 80811214 | 125 days ago | IN | 0 ETH | 0.00000036 | ||||
Set Approval For... | 80809119 | 125 days ago | IN | 0 ETH | 0.00000034 | ||||
Set Approval For... | 80809114 | 125 days ago | IN | 0 ETH | 0.00000034 | ||||
Set Approval For... | 80809111 | 125 days ago | IN | 0 ETH | 0.00000034 | ||||
Set Approval For... | 80620761 | 130 days ago | IN | 0 ETH | 0.00000031 | ||||
Set Approval For... | 80597229 | 131 days ago | IN | 0 ETH | 0.00000065 | ||||
Set Approval For... | 80252306 | 142 days ago | IN | 0 ETH | 0.00000034 | ||||
Set Approval For... | 80161141 | 144 days ago | IN | 0 ETH | 0.0000003 | ||||
Set Approval For... | 80151176 | 144 days ago | IN | 0 ETH | 0.00000028 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
44403655 | 447 days ago | 0.03 ETH | ||||
28030704 | 535 days ago | 0.025 ETH | ||||
21269111 | 583 days ago | 0.038 ETH | ||||
15508468 | 638 days ago | 0.063 ETH | ||||
11899788 | 674 days ago | 0.715 ETH | ||||
4956172 | 746 days ago | 0.35 ETH | ||||
4335144 | 751 days ago | 0.425 ETH | ||||
3760151 | 756 days ago | 0.875 ETH | ||||
3616277 | 758 days ago | 0.4 ETH | ||||
3563235 | 759 days ago | 0.585 ETH | ||||
3424773 | 761 days ago | 1.77 ETH | ||||
3116507 | 770 days ago | 0.06 ETH | ||||
3077394 | 772 days ago | 0.99 ETH | ||||
2513705 | 789 days ago | 1.905 ETH | ||||
2135478 | 804 days ago | 0.39 ETH | ||||
2070508 | 808 days ago | 2.79 ETH | ||||
1903004 | 820 days ago | 1.41 ETH | ||||
1736222 | 835 days ago | 5.835 ETH | ||||
1664181 | 842 days ago | 0.345 ETH | ||||
1425064 | 864 days ago | 1.065 ETH | ||||
1064291 | 889 days ago | 2.295 ETH | ||||
980159 | 895 days ago | 2.085 ETH | ||||
894145 | 900 days ago | 0.57 ETH | ||||
889418 | 900 days ago | 0.345 ETH | ||||
872937 | 901 days ago | 0.375 ETH |
Loading...
Loading
Contract Name:
NovaPunks
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Nova.Arbiscan.io on 2022-10-31 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.7; /** * @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; } } // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // ERC721A Contracts v4.2.2 // Creator: Chiru Labs /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // 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; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @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; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](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); } // ERC721A Contracts v4.2.2 // Creator: Chiru Labs /** * @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 { // Reference type for token approval. 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 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 { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _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]`. 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 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 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 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. 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`. ) 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 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // 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) } } } // ERC721A Contracts v4.2.2 // Creator: Chiru Labs /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // ERC721A Contracts v4.2.2 // Creator: Chiru Labs /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } contract NovaPunks is ERC721AQueryable, Ownable { string public baseURI; string public baseExtension = ".json"; uint256 public maxSupply = 5555; uint256 public cost = 0.005 ether; bool public publicsale = false; constructor() ERC721A("NovaPunks", "NVP") { } // ====== Settings ====== modifier callerIsUser() { require(tx.origin == msg.sender, "cannot be called by a contract"); _; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _startTokenId() internal pure override returns (uint256){ return 1; } // // ====== public ====== function mint(uint256 _mintAmount) public payable callerIsUser { // Is publicsale active require(publicsale, "publicsale is not active"); // // Amount control uint256 supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); // // Payment Control require(msg.value >= cost * _mintAmount, "insufficient funds"); // _safeMint(msg.sender, _mintAmount); } // // ====== View ====== function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _toString(tokenId), baseExtension)) : ""; } // ====== Only Owner ====== function ownerMint(address _to, uint256 _mintAmount) public onlyOwner { // Amount Control uint256 supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); // _safeMint(_to, _mintAmount); } // Sale Status function setPublicsale() public onlyOwner { publicsale = !publicsale; } // // Update Cost function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } // // Metadata function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } // // Withdraw Funds function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } // }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicsale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000519291906200023f565b506115b3600b556611c37937e08000600c556000600d60006101000a81548160ff0219169083151502179055503480156200008b57600080fd5b506040518060400160405280600981526020017f4e6f766150756e6b7300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e565000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001109291906200023f565b508060039080519060200190620001299291906200023f565b506200013a6200016860201b60201c565b600081905550505062000162620001566200017160201b60201c565b6200017960201b60201c565b62000354565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024d90620002ef565b90600052602060002090601f016020900481019282620002715760008555620002bd565b82601f106200028c57805160ff1916838001178555620002bd565b82800160010185558215620002bd579182015b82811115620002bc5782518255916020019190600101906200029f565b5b509050620002cc9190620002d0565b5090565b5b80821115620002eb576000816000905550600101620002d1565b5090565b600060028204905060018216806200030857607f821691505b602082108114156200031f576200031e62000325565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6137d480620003646000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063b94805a2116100a0578063d5abeb011161006f578063d5abeb0114610702578063da3ef23f1461072d578063e652422414610756578063e985e9c51461076d578063f2fde38b146107aa576101ee565b8063b94805a214610632578063c23dc68f1461065d578063c66828621461069a578063c87b56dd146106c5576101ee565b806399a2557a116100dc57806399a2557a14610587578063a0712d68146105c4578063a22cb465146105e0578063b88d4fde14610609576101ee565b8063715018a6146104dd5780638462151c146104f45780638da5cb5b1461053157806395d89b411461055c576101ee565b806342842e0e116101855780635bbb2177116101545780635bbb2177146103fb5780636352211e146104385780636c0360eb1461047557806370a08231146104a0576101ee565b806342842e0e1461035757806344a0d68a14610380578063484b973c146103a957806355f804b3146103d2576101ee565b806313faede6116101c157806313faede6146102c157806318160ddd146102ec57806323b872dd146103175780633ccfd60b14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612a45565b6107d3565b604051610227919061304e565b60405180910390f35b34801561023c57600080fd5b50610245610865565b6040516102529190613069565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612ae8565b6108f7565b60405161028f9190612fa3565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612965565b610976565b005b3480156102cd57600080fd5b506102d6610aba565b6040516102e39190613186565b60405180910390f35b3480156102f857600080fd5b50610301610ac0565b60405161030e9190613186565b60405180910390f35b34801561032357600080fd5b5061033e6004803603810190610339919061284f565b610ad7565b005b34801561034c57600080fd5b50610355610dfc565b005b34801561036357600080fd5b5061037e6004803603810190610379919061284f565b610e84565b005b34801561038c57600080fd5b506103a760048036038101906103a29190612ae8565b610ea4565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612965565b610eb6565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612a9f565b610f29565b005b34801561040757600080fd5b50610422600480360381019061041d91906129f8565b610f4b565b60405161042f919061300a565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190612ae8565b61100e565b60405161046c9190612fa3565b60405180910390f35b34801561048157600080fd5b5061048a611020565b6040516104979190613069565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c291906127e2565b6110ae565b6040516104d49190613186565b60405180910390f35b3480156104e957600080fd5b506104f2611167565b005b34801561050057600080fd5b5061051b600480360381019061051691906127e2565b61117b565b604051610528919061302c565b60405180910390f35b34801561053d57600080fd5b506105466112c5565b6040516105539190612fa3565b60405180910390f35b34801561056857600080fd5b506105716112ef565b60405161057e9190613069565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a991906129a5565b611381565b6040516105bb919061302c565b60405180910390f35b6105de60048036038101906105d99190612ae8565b611595565b005b3480156105ec57600080fd5b5061060760048036038101906106029190612925565b61170c565b005b34801561061557600080fd5b50610630600480360381019061062b91906128a2565b611884565b005b34801561063e57600080fd5b506106476118f7565b604051610654919061304e565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190612ae8565b61190a565b604051610691919061316b565b60405180910390f35b3480156106a657600080fd5b506106af611974565b6040516106bc9190613069565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190612ae8565b611a02565b6040516106f99190613069565b60405180910390f35b34801561070e57600080fd5b50610717611aac565b6040516107249190613186565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190612a9f565b611ab2565b005b34801561076257600080fd5b5061076b611ad4565b005b34801561077957600080fd5b50610794600480360381019061078f919061280f565b611b08565b6040516107a1919061304e565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc91906127e2565b611b9c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461087490613486565b80601f01602080910402602001604051908101604052809291908181526020018280546108a090613486565b80156108ed5780601f106108c2576101008083540402835291602001916108ed565b820191906000526020600020905b8154815290600101906020018083116108d057829003601f168201915b5050505050905090565b600061090282611c20565b610938576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109818261100e565b90508073ffffffffffffffffffffffffffffffffffffffff166109a2611c7f565b73ffffffffffffffffffffffffffffffffffffffff1614610a05576109ce816109c9611c7f565b611b08565b610a04576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610aca611c87565b6001546000540303905090565b6000610ae282611c90565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b49576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b5584611d5e565b91509150610b6b8187610b66611c7f565b611d85565b610bb757610b8086610b7b611c7f565b611b08565b610bb6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c1e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c2b8686866001611dc9565b8015610c3657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d0485610ce0888887611dcf565b7c020000000000000000000000000000000000000000000000000000000017611df7565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d8c576000600185019050600060046000838152602001908152602001600020541415610d8a576000548114610d89578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610df48686866001611e22565b505050505050565b610e04611e28565b6000610e0e6112c5565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e3190612f8e565b60006040518083038185875af1925050503d8060008114610e6e576040519150601f19603f3d011682016040523d82523d6000602084013e610e73565b606091505b5050905080610e8157600080fd5b50565b610e9f83838360405180602001604052806000815250611884565b505050565b610eac611e28565b80600c8190555050565b610ebe611e28565b6000610ec8610ac0565b9050600b548282610ed991906132fd565b1115610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f11906130ab565b60405180910390fd5b610f248383611ea6565b505050565b610f31611e28565b8060099080519060200190610f47929190612551565b5050565b6060600083839050905060008167ffffffffffffffff811115610f7157610f70613576565b5b604051908082528060200260200182016040528015610faa57816020015b610f976125d7565b815260200190600190039081610f8f5790505b50905060005b82811461100257610fd9868683818110610fcd57610fcc613547565b5b9050602002013561190a565b828281518110610fec57610feb613547565b5b6020026020010181905250806001019050610fb0565b50809250505092915050565b600061101982611c90565b9050919050565b6009805461102d90613486565b80601f016020809104026020016040519081016040528092919081815260200182805461105990613486565b80156110a65780601f1061107b576101008083540402835291602001916110a6565b820191906000526020600020905b81548152906001019060200180831161108957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611116576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61116f611e28565b6111796000611ec4565b565b6060600080600061118b856110ae565b905060008167ffffffffffffffff8111156111a9576111a8613576565b5b6040519080825280602002602001820160405280156111d75781602001602082028036833780820191505090505b5090506111e26125d7565b60006111ec611c87565b90505b8386146112b7576111ff81611f8a565b9150816040015115611210576112ac565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461125057816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156112ab578083878060010198508151811061129e5761129d613547565b5b6020026020010181815250505b5b8060010190506111ef565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112fe90613486565b80601f016020809104026020016040519081016040528092919081815260200182805461132a90613486565b80156113775780601f1061134c57610100808354040283529160200191611377565b820191906000526020600020905b81548152906001019060200180831161135a57829003601f168201915b5050505050905090565b60608183106113bc576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806113c7611fb5565b90506113d1611c87565b8510156113e3576113e0611c87565b94505b808411156113ef578093505b60006113fa876110ae565b90508486101561141d576000868603905081811015611417578091505b50611422565b600090505b60008167ffffffffffffffff81111561143e5761143d613576565b5b60405190808252806020026020018201604052801561146c5781602001602082028036833780820191505090505b5090506000821415611484578094505050505061158e565b600061148f8861190a565b9050600081604001516114a457816000015190505b60008990505b8881141580156114ba5750848714155b15611580576114c881611f8a565b92508260400151156114d957611575565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461151957826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611574578084888060010199508151811061156757611566613547565b5b6020026020010181815250505b5b8060010190506114aa565b508583528296505050505050505b9392505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa9061314b565b60405180910390fd5b600d60009054906101000a900460ff16611652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611649906130cb565b60405180910390fd5b600061165c610ac0565b9050600b54828261166d91906132fd565b11156116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a5906130ab565b60405180910390fd5b81600c546116bc9190613353565b3410156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f59061312b565b60405180910390fd5b6117083383611ea6565b5050565b611714611c7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611779576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611786611c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611833611c7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611878919061304e565b60405180910390a35050565b61188f848484610ad7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118f1576118ba84848484611fbe565b6118f0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d60009054906101000a900460ff1681565b6119126125d7565b61191a6125d7565b611922611c87565b8310806119365750611932611fb5565b8310155b15611944578091505061196f565b61194d83611f8a565b9050806040015115611962578091505061196f565b61196b8361211e565b9150505b919050565b600a805461198190613486565b80601f01602080910402602001604051908101604052809291908181526020018280546119ad90613486565b80156119fa5780601f106119cf576101008083540402835291602001916119fa565b820191906000526020600020905b8154815290600101906020018083116119dd57829003601f168201915b505050505081565b6060611a0d82611c20565b611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a439061310b565b60405180910390fd5b6000611a5661213e565b90506000815111611a765760405180602001604052806000815250611aa4565b80611a80846121d0565b600a604051602001611a9493929190612f5d565b6040516020818303038152906040525b915050919050565b600b5481565b611aba611e28565b80600a9080519060200190611ad0929190612551565b5050565b611adc611e28565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ba4611e28565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b9061308b565b60405180910390fd5b611c1d81611ec4565b50565b600081611c2b611c87565b11158015611c3a575060005482105b8015611c78575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611c9f611c87565b11611d2757600054811015611d265760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d24575b6000811415611d1a576004600083600190039350838152602001908152602001600020549050611cef565b8092505050611d59565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611de6868684612220565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e30612229565b73ffffffffffffffffffffffffffffffffffffffff16611e4e6112c5565b73ffffffffffffffffffffffffffffffffffffffff1614611ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9b906130eb565b60405180910390fd5b565b611ec0828260405180602001604052806000815250612231565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f926125d7565b611fae60046000848152602001908152602001600020546122ce565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe4611c7f565b8786866040518563ffffffff1660e01b81526004016120069493929190612fbe565b602060405180830381600087803b15801561202057600080fd5b505af192505050801561205157506040513d601f19601f8201168201806040525081019061204e9190612a72565b60015b6120cb573d8060008114612081576040519150601f19603f3d011682016040523d82523d6000602084013e612086565b606091505b506000815114156120c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6121266125d7565b61213761213283611c90565b6122ce565b9050919050565b60606009805461214d90613486565b80601f016020809104026020016040519081016040528092919081815260200182805461217990613486565b80156121c65780601f1061219b576101008083540402835291602001916121c6565b820191906000526020600020905b8154815290600101906020018083116121a957829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561220c57600183039250600a81066030018353600a81049050806122075761220c565b6121e1565b508181036020830392508083525050919050565b60009392505050565b600033905090565b61223b8383612384565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122c957600080549050600083820390505b61227b6000868380600101945086611fbe565b6122b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122685781600054146122c657600080fd5b50505b505050565b6122d66125d7565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008054905060008214156123c5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123d26000848385611dc9565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124498361243a6000866000611dcf565b61244385612541565b17611df7565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146124ea57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506124af565b506000821415612526576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061253c6000848385611e22565b505050565b60006001821460e11b9050919050565b82805461255d90613486565b90600052602060002090601f01602090048101928261257f57600085556125c6565b82601f1061259857805160ff19168380011785556125c6565b828001600101855582156125c6579182015b828111156125c55782518255916020019190600101906125aa565b5b5090506125d39190612626565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b8082111561263f576000816000905550600101612627565b5090565b6000612656612651846131c6565b6131a1565b905082815260208101848484011115612672576126716135b4565b5b61267d848285613444565b509392505050565b6000612698612693846131f7565b6131a1565b9050828152602081018484840111156126b4576126b36135b4565b5b6126bf848285613444565b509392505050565b6000813590506126d681613742565b92915050565b60008083601f8401126126f2576126f16135aa565b5b8235905067ffffffffffffffff81111561270f5761270e6135a5565b5b60208301915083602082028301111561272b5761272a6135af565b5b9250929050565b60008135905061274181613759565b92915050565b60008135905061275681613770565b92915050565b60008151905061276b81613770565b92915050565b600082601f830112612786576127856135aa565b5b8135612796848260208601612643565b91505092915050565b600082601f8301126127b4576127b36135aa565b5b81356127c4848260208601612685565b91505092915050565b6000813590506127dc81613787565b92915050565b6000602082840312156127f8576127f76135be565b5b6000612806848285016126c7565b91505092915050565b60008060408385031215612826576128256135be565b5b6000612834858286016126c7565b9250506020612845858286016126c7565b9150509250929050565b600080600060608486031215612868576128676135be565b5b6000612876868287016126c7565b9350506020612887868287016126c7565b9250506040612898868287016127cd565b9150509250925092565b600080600080608085870312156128bc576128bb6135be565b5b60006128ca878288016126c7565b94505060206128db878288016126c7565b93505060406128ec878288016127cd565b925050606085013567ffffffffffffffff81111561290d5761290c6135b9565b5b61291987828801612771565b91505092959194509250565b6000806040838503121561293c5761293b6135be565b5b600061294a858286016126c7565b925050602061295b85828601612732565b9150509250929050565b6000806040838503121561297c5761297b6135be565b5b600061298a858286016126c7565b925050602061299b858286016127cd565b9150509250929050565b6000806000606084860312156129be576129bd6135be565b5b60006129cc868287016126c7565b93505060206129dd868287016127cd565b92505060406129ee868287016127cd565b9150509250925092565b60008060208385031215612a0f57612a0e6135be565b5b600083013567ffffffffffffffff811115612a2d57612a2c6135b9565b5b612a39858286016126dc565b92509250509250929050565b600060208284031215612a5b57612a5a6135be565b5b6000612a6984828501612747565b91505092915050565b600060208284031215612a8857612a876135be565b5b6000612a968482850161275c565b91505092915050565b600060208284031215612ab557612ab46135be565b5b600082013567ffffffffffffffff811115612ad357612ad26135b9565b5b612adf8482850161279f565b91505092915050565b600060208284031215612afe57612afd6135be565b5b6000612b0c848285016127cd565b91505092915050565b6000612b218383612e77565b60808301905092915050565b6000612b398383612f30565b60208301905092915050565b612b4e816133ad565b82525050565b612b5d816133ad565b82525050565b6000612b6e8261325d565b612b7881856132a3565b9350612b8383613228565b8060005b83811015612bb4578151612b9b8882612b15565b9750612ba683613289565b925050600181019050612b87565b5085935050505092915050565b6000612bcc82613268565b612bd681856132b4565b9350612be183613238565b8060005b83811015612c12578151612bf98882612b2d565b9750612c0483613296565b925050600181019050612be5565b5085935050505092915050565b612c28816133bf565b82525050565b612c37816133bf565b82525050565b6000612c4882613273565b612c5281856132c5565b9350612c62818560208601613453565b612c6b816135c3565b840191505092915050565b6000612c818261327e565b612c8b81856132e1565b9350612c9b818560208601613453565b612ca4816135c3565b840191505092915050565b6000612cba8261327e565b612cc481856132f2565b9350612cd4818560208601613453565b80840191505092915050565b60008154612ced81613486565b612cf781866132f2565b94506001821660008114612d125760018114612d2357612d56565b60ff19831686528186019350612d56565b612d2c85613248565b60005b83811015612d4e57815481890152600182019150602081019050612d2f565b838801955050505b50505092915050565b6000612d6c6026836132e1565b9150612d77826135d4565b604082019050919050565b6000612d8f6016836132e1565b9150612d9a82613623565b602082019050919050565b6000612db26018836132e1565b9150612dbd8261364c565b602082019050919050565b6000612dd56020836132e1565b9150612de082613675565b602082019050919050565b6000612df8602f836132e1565b9150612e038261369e565b604082019050919050565b6000612e1b6000836132d6565b9150612e26826136ed565b600082019050919050565b6000612e3e6012836132e1565b9150612e49826136f0565b602082019050919050565b6000612e61601e836132e1565b9150612e6c82613719565b602082019050919050565b608082016000820151612e8d6000850182612b45565b506020820151612ea06020850182612f4e565b506040820151612eb36040850182612c1f565b506060820151612ec66060850182612f21565b50505050565b608082016000820151612ee26000850182612b45565b506020820151612ef56020850182612f4e565b506040820151612f086040850182612c1f565b506060820151612f1b6060850182612f21565b50505050565b612f2a81613417565b82525050565b612f3981613426565b82525050565b612f4881613426565b82525050565b612f5781613430565b82525050565b6000612f698286612caf565b9150612f758285612caf565b9150612f818284612ce0565b9150819050949350505050565b6000612f9982612e0e565b9150819050919050565b6000602082019050612fb86000830184612b54565b92915050565b6000608082019050612fd36000830187612b54565b612fe06020830186612b54565b612fed6040830185612f3f565b8181036060830152612fff8184612c3d565b905095945050505050565b600060208201905081810360008301526130248184612b63565b905092915050565b600060208201905081810360008301526130468184612bc1565b905092915050565b60006020820190506130636000830184612c2e565b92915050565b600060208201905081810360008301526130838184612c76565b905092915050565b600060208201905081810360008301526130a481612d5f565b9050919050565b600060208201905081810360008301526130c481612d82565b9050919050565b600060208201905081810360008301526130e481612da5565b9050919050565b6000602082019050818103600083015261310481612dc8565b9050919050565b6000602082019050818103600083015261312481612deb565b9050919050565b6000602082019050818103600083015261314481612e31565b9050919050565b6000602082019050818103600083015261316481612e54565b9050919050565b60006080820190506131806000830184612ecc565b92915050565b600060208201905061319b6000830184612f3f565b92915050565b60006131ab6131bc565b90506131b782826134b8565b919050565b6000604051905090565b600067ffffffffffffffff8211156131e1576131e0613576565b5b6131ea826135c3565b9050602081019050919050565b600067ffffffffffffffff82111561321257613211613576565b5b61321b826135c3565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061330882613426565b915061331383613426565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613348576133476134e9565b5b828201905092915050565b600061335e82613426565b915061336983613426565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133a2576133a16134e9565b5b828202905092915050565b60006133b8826133f7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613471578082015181840152602081019050613456565b83811115613480576000848401525b50505050565b6000600282049050600182168061349e57607f821691505b602082108114156134b2576134b1613518565b5b50919050565b6134c1826135c3565b810181811067ffffffffffffffff821117156134e0576134df613576565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f7075626c696373616c65206973206e6f74206163746976650000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f63616e6e6f742062652063616c6c6564206279206120636f6e74726163740000600082015250565b61374b816133ad565b811461375657600080fd5b50565b613762816133bf565b811461376d57600080fd5b50565b613779816133cb565b811461378457600080fd5b50565b61379081613426565b811461379b57600080fd5b5056fea26469706673582212207cc94b744d9a92560b261665c5456420be675869cab1eca75f44113f73ff15a064736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063b94805a2116100a0578063d5abeb011161006f578063d5abeb0114610702578063da3ef23f1461072d578063e652422414610756578063e985e9c51461076d578063f2fde38b146107aa576101ee565b8063b94805a214610632578063c23dc68f1461065d578063c66828621461069a578063c87b56dd146106c5576101ee565b806399a2557a116100dc57806399a2557a14610587578063a0712d68146105c4578063a22cb465146105e0578063b88d4fde14610609576101ee565b8063715018a6146104dd5780638462151c146104f45780638da5cb5b1461053157806395d89b411461055c576101ee565b806342842e0e116101855780635bbb2177116101545780635bbb2177146103fb5780636352211e146104385780636c0360eb1461047557806370a08231146104a0576101ee565b806342842e0e1461035757806344a0d68a14610380578063484b973c146103a957806355f804b3146103d2576101ee565b806313faede6116101c157806313faede6146102c157806318160ddd146102ec57806323b872dd146103175780633ccfd60b14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612a45565b6107d3565b604051610227919061304e565b60405180910390f35b34801561023c57600080fd5b50610245610865565b6040516102529190613069565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612ae8565b6108f7565b60405161028f9190612fa3565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612965565b610976565b005b3480156102cd57600080fd5b506102d6610aba565b6040516102e39190613186565b60405180910390f35b3480156102f857600080fd5b50610301610ac0565b60405161030e9190613186565b60405180910390f35b34801561032357600080fd5b5061033e6004803603810190610339919061284f565b610ad7565b005b34801561034c57600080fd5b50610355610dfc565b005b34801561036357600080fd5b5061037e6004803603810190610379919061284f565b610e84565b005b34801561038c57600080fd5b506103a760048036038101906103a29190612ae8565b610ea4565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612965565b610eb6565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612a9f565b610f29565b005b34801561040757600080fd5b50610422600480360381019061041d91906129f8565b610f4b565b60405161042f919061300a565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190612ae8565b61100e565b60405161046c9190612fa3565b60405180910390f35b34801561048157600080fd5b5061048a611020565b6040516104979190613069565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c291906127e2565b6110ae565b6040516104d49190613186565b60405180910390f35b3480156104e957600080fd5b506104f2611167565b005b34801561050057600080fd5b5061051b600480360381019061051691906127e2565b61117b565b604051610528919061302c565b60405180910390f35b34801561053d57600080fd5b506105466112c5565b6040516105539190612fa3565b60405180910390f35b34801561056857600080fd5b506105716112ef565b60405161057e9190613069565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a991906129a5565b611381565b6040516105bb919061302c565b60405180910390f35b6105de60048036038101906105d99190612ae8565b611595565b005b3480156105ec57600080fd5b5061060760048036038101906106029190612925565b61170c565b005b34801561061557600080fd5b50610630600480360381019061062b91906128a2565b611884565b005b34801561063e57600080fd5b506106476118f7565b604051610654919061304e565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190612ae8565b61190a565b604051610691919061316b565b60405180910390f35b3480156106a657600080fd5b506106af611974565b6040516106bc9190613069565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190612ae8565b611a02565b6040516106f99190613069565b60405180910390f35b34801561070e57600080fd5b50610717611aac565b6040516107249190613186565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190612a9f565b611ab2565b005b34801561076257600080fd5b5061076b611ad4565b005b34801561077957600080fd5b50610794600480360381019061078f919061280f565b611b08565b6040516107a1919061304e565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc91906127e2565b611b9c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461087490613486565b80601f01602080910402602001604051908101604052809291908181526020018280546108a090613486565b80156108ed5780601f106108c2576101008083540402835291602001916108ed565b820191906000526020600020905b8154815290600101906020018083116108d057829003601f168201915b5050505050905090565b600061090282611c20565b610938576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109818261100e565b90508073ffffffffffffffffffffffffffffffffffffffff166109a2611c7f565b73ffffffffffffffffffffffffffffffffffffffff1614610a05576109ce816109c9611c7f565b611b08565b610a04576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610aca611c87565b6001546000540303905090565b6000610ae282611c90565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b49576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b5584611d5e565b91509150610b6b8187610b66611c7f565b611d85565b610bb757610b8086610b7b611c7f565b611b08565b610bb6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c1e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c2b8686866001611dc9565b8015610c3657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d0485610ce0888887611dcf565b7c020000000000000000000000000000000000000000000000000000000017611df7565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d8c576000600185019050600060046000838152602001908152602001600020541415610d8a576000548114610d89578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610df48686866001611e22565b505050505050565b610e04611e28565b6000610e0e6112c5565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e3190612f8e565b60006040518083038185875af1925050503d8060008114610e6e576040519150601f19603f3d011682016040523d82523d6000602084013e610e73565b606091505b5050905080610e8157600080fd5b50565b610e9f83838360405180602001604052806000815250611884565b505050565b610eac611e28565b80600c8190555050565b610ebe611e28565b6000610ec8610ac0565b9050600b548282610ed991906132fd565b1115610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f11906130ab565b60405180910390fd5b610f248383611ea6565b505050565b610f31611e28565b8060099080519060200190610f47929190612551565b5050565b6060600083839050905060008167ffffffffffffffff811115610f7157610f70613576565b5b604051908082528060200260200182016040528015610faa57816020015b610f976125d7565b815260200190600190039081610f8f5790505b50905060005b82811461100257610fd9868683818110610fcd57610fcc613547565b5b9050602002013561190a565b828281518110610fec57610feb613547565b5b6020026020010181905250806001019050610fb0565b50809250505092915050565b600061101982611c90565b9050919050565b6009805461102d90613486565b80601f016020809104026020016040519081016040528092919081815260200182805461105990613486565b80156110a65780601f1061107b576101008083540402835291602001916110a6565b820191906000526020600020905b81548152906001019060200180831161108957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611116576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61116f611e28565b6111796000611ec4565b565b6060600080600061118b856110ae565b905060008167ffffffffffffffff8111156111a9576111a8613576565b5b6040519080825280602002602001820160405280156111d75781602001602082028036833780820191505090505b5090506111e26125d7565b60006111ec611c87565b90505b8386146112b7576111ff81611f8a565b9150816040015115611210576112ac565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461125057816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156112ab578083878060010198508151811061129e5761129d613547565b5b6020026020010181815250505b5b8060010190506111ef565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112fe90613486565b80601f016020809104026020016040519081016040528092919081815260200182805461132a90613486565b80156113775780601f1061134c57610100808354040283529160200191611377565b820191906000526020600020905b81548152906001019060200180831161135a57829003601f168201915b5050505050905090565b60608183106113bc576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806113c7611fb5565b90506113d1611c87565b8510156113e3576113e0611c87565b94505b808411156113ef578093505b60006113fa876110ae565b90508486101561141d576000868603905081811015611417578091505b50611422565b600090505b60008167ffffffffffffffff81111561143e5761143d613576565b5b60405190808252806020026020018201604052801561146c5781602001602082028036833780820191505090505b5090506000821415611484578094505050505061158e565b600061148f8861190a565b9050600081604001516114a457816000015190505b60008990505b8881141580156114ba5750848714155b15611580576114c881611f8a565b92508260400151156114d957611575565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461151957826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611574578084888060010199508151811061156757611566613547565b5b6020026020010181815250505b5b8060010190506114aa565b508583528296505050505050505b9392505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa9061314b565b60405180910390fd5b600d60009054906101000a900460ff16611652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611649906130cb565b60405180910390fd5b600061165c610ac0565b9050600b54828261166d91906132fd565b11156116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a5906130ab565b60405180910390fd5b81600c546116bc9190613353565b3410156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f59061312b565b60405180910390fd5b6117083383611ea6565b5050565b611714611c7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611779576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611786611c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611833611c7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611878919061304e565b60405180910390a35050565b61188f848484610ad7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118f1576118ba84848484611fbe565b6118f0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d60009054906101000a900460ff1681565b6119126125d7565b61191a6125d7565b611922611c87565b8310806119365750611932611fb5565b8310155b15611944578091505061196f565b61194d83611f8a565b9050806040015115611962578091505061196f565b61196b8361211e565b9150505b919050565b600a805461198190613486565b80601f01602080910402602001604051908101604052809291908181526020018280546119ad90613486565b80156119fa5780601f106119cf576101008083540402835291602001916119fa565b820191906000526020600020905b8154815290600101906020018083116119dd57829003601f168201915b505050505081565b6060611a0d82611c20565b611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a439061310b565b60405180910390fd5b6000611a5661213e565b90506000815111611a765760405180602001604052806000815250611aa4565b80611a80846121d0565b600a604051602001611a9493929190612f5d565b6040516020818303038152906040525b915050919050565b600b5481565b611aba611e28565b80600a9080519060200190611ad0929190612551565b5050565b611adc611e28565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ba4611e28565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b9061308b565b60405180910390fd5b611c1d81611ec4565b50565b600081611c2b611c87565b11158015611c3a575060005482105b8015611c78575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611c9f611c87565b11611d2757600054811015611d265760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d24575b6000811415611d1a576004600083600190039350838152602001908152602001600020549050611cef565b8092505050611d59565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611de6868684612220565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e30612229565b73ffffffffffffffffffffffffffffffffffffffff16611e4e6112c5565b73ffffffffffffffffffffffffffffffffffffffff1614611ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9b906130eb565b60405180910390fd5b565b611ec0828260405180602001604052806000815250612231565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f926125d7565b611fae60046000848152602001908152602001600020546122ce565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe4611c7f565b8786866040518563ffffffff1660e01b81526004016120069493929190612fbe565b602060405180830381600087803b15801561202057600080fd5b505af192505050801561205157506040513d601f19601f8201168201806040525081019061204e9190612a72565b60015b6120cb573d8060008114612081576040519150601f19603f3d011682016040523d82523d6000602084013e612086565b606091505b506000815114156120c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6121266125d7565b61213761213283611c90565b6122ce565b9050919050565b60606009805461214d90613486565b80601f016020809104026020016040519081016040528092919081815260200182805461217990613486565b80156121c65780601f1061219b576101008083540402835291602001916121c6565b820191906000526020600020905b8154815290600101906020018083116121a957829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561220c57600183039250600a81066030018353600a81049050806122075761220c565b6121e1565b508181036020830392508083525050919050565b60009392505050565b600033905090565b61223b8383612384565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122c957600080549050600083820390505b61227b6000868380600101945086611fbe565b6122b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122685781600054146122c657600080fd5b50505b505050565b6122d66125d7565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008054905060008214156123c5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123d26000848385611dc9565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124498361243a6000866000611dcf565b61244385612541565b17611df7565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146124ea57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506124af565b506000821415612526576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061253c6000848385611e22565b505050565b60006001821460e11b9050919050565b82805461255d90613486565b90600052602060002090601f01602090048101928261257f57600085556125c6565b82601f1061259857805160ff19168380011785556125c6565b828001600101855582156125c6579182015b828111156125c55782518255916020019190600101906125aa565b5b5090506125d39190612626565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b8082111561263f576000816000905550600101612627565b5090565b6000612656612651846131c6565b6131a1565b905082815260208101848484011115612672576126716135b4565b5b61267d848285613444565b509392505050565b6000612698612693846131f7565b6131a1565b9050828152602081018484840111156126b4576126b36135b4565b5b6126bf848285613444565b509392505050565b6000813590506126d681613742565b92915050565b60008083601f8401126126f2576126f16135aa565b5b8235905067ffffffffffffffff81111561270f5761270e6135a5565b5b60208301915083602082028301111561272b5761272a6135af565b5b9250929050565b60008135905061274181613759565b92915050565b60008135905061275681613770565b92915050565b60008151905061276b81613770565b92915050565b600082601f830112612786576127856135aa565b5b8135612796848260208601612643565b91505092915050565b600082601f8301126127b4576127b36135aa565b5b81356127c4848260208601612685565b91505092915050565b6000813590506127dc81613787565b92915050565b6000602082840312156127f8576127f76135be565b5b6000612806848285016126c7565b91505092915050565b60008060408385031215612826576128256135be565b5b6000612834858286016126c7565b9250506020612845858286016126c7565b9150509250929050565b600080600060608486031215612868576128676135be565b5b6000612876868287016126c7565b9350506020612887868287016126c7565b9250506040612898868287016127cd565b9150509250925092565b600080600080608085870312156128bc576128bb6135be565b5b60006128ca878288016126c7565b94505060206128db878288016126c7565b93505060406128ec878288016127cd565b925050606085013567ffffffffffffffff81111561290d5761290c6135b9565b5b61291987828801612771565b91505092959194509250565b6000806040838503121561293c5761293b6135be565b5b600061294a858286016126c7565b925050602061295b85828601612732565b9150509250929050565b6000806040838503121561297c5761297b6135be565b5b600061298a858286016126c7565b925050602061299b858286016127cd565b9150509250929050565b6000806000606084860312156129be576129bd6135be565b5b60006129cc868287016126c7565b93505060206129dd868287016127cd565b92505060406129ee868287016127cd565b9150509250925092565b60008060208385031215612a0f57612a0e6135be565b5b600083013567ffffffffffffffff811115612a2d57612a2c6135b9565b5b612a39858286016126dc565b92509250509250929050565b600060208284031215612a5b57612a5a6135be565b5b6000612a6984828501612747565b91505092915050565b600060208284031215612a8857612a876135be565b5b6000612a968482850161275c565b91505092915050565b600060208284031215612ab557612ab46135be565b5b600082013567ffffffffffffffff811115612ad357612ad26135b9565b5b612adf8482850161279f565b91505092915050565b600060208284031215612afe57612afd6135be565b5b6000612b0c848285016127cd565b91505092915050565b6000612b218383612e77565b60808301905092915050565b6000612b398383612f30565b60208301905092915050565b612b4e816133ad565b82525050565b612b5d816133ad565b82525050565b6000612b6e8261325d565b612b7881856132a3565b9350612b8383613228565b8060005b83811015612bb4578151612b9b8882612b15565b9750612ba683613289565b925050600181019050612b87565b5085935050505092915050565b6000612bcc82613268565b612bd681856132b4565b9350612be183613238565b8060005b83811015612c12578151612bf98882612b2d565b9750612c0483613296565b925050600181019050612be5565b5085935050505092915050565b612c28816133bf565b82525050565b612c37816133bf565b82525050565b6000612c4882613273565b612c5281856132c5565b9350612c62818560208601613453565b612c6b816135c3565b840191505092915050565b6000612c818261327e565b612c8b81856132e1565b9350612c9b818560208601613453565b612ca4816135c3565b840191505092915050565b6000612cba8261327e565b612cc481856132f2565b9350612cd4818560208601613453565b80840191505092915050565b60008154612ced81613486565b612cf781866132f2565b94506001821660008114612d125760018114612d2357612d56565b60ff19831686528186019350612d56565b612d2c85613248565b60005b83811015612d4e57815481890152600182019150602081019050612d2f565b838801955050505b50505092915050565b6000612d6c6026836132e1565b9150612d77826135d4565b604082019050919050565b6000612d8f6016836132e1565b9150612d9a82613623565b602082019050919050565b6000612db26018836132e1565b9150612dbd8261364c565b602082019050919050565b6000612dd56020836132e1565b9150612de082613675565b602082019050919050565b6000612df8602f836132e1565b9150612e038261369e565b604082019050919050565b6000612e1b6000836132d6565b9150612e26826136ed565b600082019050919050565b6000612e3e6012836132e1565b9150612e49826136f0565b602082019050919050565b6000612e61601e836132e1565b9150612e6c82613719565b602082019050919050565b608082016000820151612e8d6000850182612b45565b506020820151612ea06020850182612f4e565b506040820151612eb36040850182612c1f565b506060820151612ec66060850182612f21565b50505050565b608082016000820151612ee26000850182612b45565b506020820151612ef56020850182612f4e565b506040820151612f086040850182612c1f565b506060820151612f1b6060850182612f21565b50505050565b612f2a81613417565b82525050565b612f3981613426565b82525050565b612f4881613426565b82525050565b612f5781613430565b82525050565b6000612f698286612caf565b9150612f758285612caf565b9150612f818284612ce0565b9150819050949350505050565b6000612f9982612e0e565b9150819050919050565b6000602082019050612fb86000830184612b54565b92915050565b6000608082019050612fd36000830187612b54565b612fe06020830186612b54565b612fed6040830185612f3f565b8181036060830152612fff8184612c3d565b905095945050505050565b600060208201905081810360008301526130248184612b63565b905092915050565b600060208201905081810360008301526130468184612bc1565b905092915050565b60006020820190506130636000830184612c2e565b92915050565b600060208201905081810360008301526130838184612c76565b905092915050565b600060208201905081810360008301526130a481612d5f565b9050919050565b600060208201905081810360008301526130c481612d82565b9050919050565b600060208201905081810360008301526130e481612da5565b9050919050565b6000602082019050818103600083015261310481612dc8565b9050919050565b6000602082019050818103600083015261312481612deb565b9050919050565b6000602082019050818103600083015261314481612e31565b9050919050565b6000602082019050818103600083015261316481612e54565b9050919050565b60006080820190506131806000830184612ecc565b92915050565b600060208201905061319b6000830184612f3f565b92915050565b60006131ab6131bc565b90506131b782826134b8565b919050565b6000604051905090565b600067ffffffffffffffff8211156131e1576131e0613576565b5b6131ea826135c3565b9050602081019050919050565b600067ffffffffffffffff82111561321257613211613576565b5b61321b826135c3565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061330882613426565b915061331383613426565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613348576133476134e9565b5b828201905092915050565b600061335e82613426565b915061336983613426565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133a2576133a16134e9565b5b828202905092915050565b60006133b8826133f7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613471578082015181840152602081019050613456565b83811115613480576000848401525b50505050565b6000600282049050600182168061349e57607f821691505b602082108114156134b2576134b1613518565b5b50919050565b6134c1826135c3565b810181811067ffffffffffffffff821117156134e0576134df613576565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f7075626c696373616c65206973206e6f74206163746976650000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f63616e6e6f742062652063616c6c6564206279206120636f6e74726163740000600082015250565b61374b816133ad565b811461375657600080fd5b50565b613762816133bf565b811461376d57600080fd5b50565b613779816133cb565b811461378457600080fd5b50565b61379081613426565b811461379b57600080fd5b5056fea26469706673582212207cc94b744d9a92560b261665c5456420be675869cab1eca75f44113f73ff15a064736f6c63430008070033
Deployed Bytecode Sourcemap
62951:2522:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21772:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22674:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29157:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28598:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63108:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18425:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32864:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65327:137;;;;;;;;;;;;;:::i;:::-;;35777:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64960:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64572:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65067:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58166:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24067:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63004:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19609:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2667:103;;;;;;;;;;;;;:::i;:::-;;62042:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2019:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22850:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59082:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63620:451;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29715:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36560:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63148:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57579:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63030:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64108:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63072:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65171:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64851:79;;;;;;;;;;;;;:::i;:::-;;30180:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2925:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21772:639;21857:4;22196:10;22181:25;;:11;:25;;;;:102;;;;22273:10;22258:25;;:11;:25;;;;22181:102;:179;;;;22350:10;22335:25;;:11;:25;;;;22181:179;22161:199;;21772:639;;;:::o;22674:100::-;22728:13;22761:5;22754:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22674:100;:::o;29157:218::-;29233:7;29258:16;29266:7;29258;:16::i;:::-;29253:64;;29283:34;;;;;;;;;;;;;;29253:64;29337:15;:24;29353:7;29337:24;;;;;;;;;;;:30;;;;;;;;;;;;29330:37;;29157:218;;;:::o;28598:400::-;28679:13;28695:16;28703:7;28695;:16::i;:::-;28679:32;;28751:5;28728:28;;:19;:17;:19::i;:::-;:28;;;28724:175;;28776:44;28793:5;28800:19;:17;:19::i;:::-;28776:16;:44::i;:::-;28771:128;;28848:35;;;;;;;;;;;;;;28771:128;28724:175;28944:2;28911:15;:24;28927:7;28911:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28982:7;28978:2;28962:28;;28971:5;28962:28;;;;;;;;;;;;28668:330;28598:400;;:::o;63108:33::-;;;;:::o;18425:323::-;18486:7;18714:15;:13;:15::i;:::-;18699:12;;18683:13;;:28;:46;18676:53;;18425:323;:::o;32864:2817::-;32998:27;33028;33047:7;33028:18;:27::i;:::-;32998:57;;33113:4;33072:45;;33088:19;33072:45;;;33068:86;;33126:28;;;;;;;;;;;;;;33068:86;33168:27;33197:23;33224:35;33251:7;33224:26;:35::i;:::-;33167:92;;;;33359:68;33384:15;33401:4;33407:19;:17;:19::i;:::-;33359:24;:68::i;:::-;33354:180;;33447:43;33464:4;33470:19;:17;:19::i;:::-;33447:16;:43::i;:::-;33442:92;;33499:35;;;;;;;;;;;;;;33442:92;33354:180;33565:1;33551:16;;:2;:16;;;33547:52;;;33576:23;;;;;;;;;;;;;;33547:52;33612:43;33634:4;33640:2;33644:7;33653:1;33612:21;:43::i;:::-;33748:15;33745:160;;;33888:1;33867:19;33860:30;33745:160;34285:18;:24;34304:4;34285:24;;;;;;;;;;;;;;;;34283:26;;;;;;;;;;;;34354:18;:22;34373:2;34354:22;;;;;;;;;;;;;;;;34352:24;;;;;;;;;;;34676:146;34713:2;34762:45;34777:4;34783:2;34787:19;34762:14;:45::i;:::-;14824:8;34734:73;34676:18;:146::i;:::-;34647:17;:26;34665:7;34647:26;;;;;;;;;;;:175;;;;34993:1;14824:8;34942:19;:47;:52;34938:627;;;35015:19;35047:1;35037:7;:11;35015:33;;35204:1;35170:17;:30;35188:11;35170:30;;;;;;;;;;;;:35;35166:384;;;35308:13;;35293:11;:28;35289:242;;35488:19;35455:17;:30;35473:11;35455:30;;;;;;;;;;;:52;;;;35289:242;35166:384;34996:569;34938:627;35612:7;35608:2;35593:27;;35602:4;35593:27;;;;;;;;;;;;35631:42;35652:4;35658:2;35662:7;35671:1;35631:20;:42::i;:::-;32987:2694;;;32864:2817;;;:::o;65327:137::-;1905:13;:11;:13::i;:::-;65372:7:::1;65393;:5;:7::i;:::-;65385:21;;65414;65385:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65371:69;;;65455:2;65447:11;;;::::0;::::1;;65364:100;65327:137::o:0;35777:185::-;35915:39;35932:4;35938:2;35942:7;35915:39;;;;;;;;;;;;:16;:39::i;:::-;35777:185;;;:::o;64960:80::-;1905:13;:11;:13::i;:::-;65026:8:::1;65019:4;:15;;;;64960:80:::0;:::o;64572:255::-;1905:13;:11;:13::i;:::-;64672:14:::1;64689:13;:11;:13::i;:::-;64672:30;;64741:9;;64726:11;64717:6;:20;;;;:::i;:::-;:33;;64709:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64794:27;64804:3;64809:11;64794:9;:27::i;:::-;64642:185;64572:255:::0;;:::o;65067:98::-;1905:13;:11;:13::i;:::-;65148:11:::1;65138:7;:21;;;;;;;;;;;;:::i;:::-;;65067:98:::0;:::o;58166:528::-;58310:23;58376:22;58401:8;;:15;;58376:40;;58431:34;58489:14;58468:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;58431:73;;58524:9;58519:125;58540:14;58535:1;:19;58519:125;;58596:32;58616:8;;58625:1;58616:11;;;;;;;:::i;:::-;;;;;;;;58596:19;:32::i;:::-;58580:10;58591:1;58580:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;58556:3;;;;;58519:125;;;;58665:10;58658:17;;;;58166:528;;;;:::o;24067:152::-;24139:7;24182:27;24201:7;24182:18;:27::i;:::-;24159:52;;24067:152;;;:::o;63004:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19609:233::-;19681:7;19722:1;19705:19;;:5;:19;;;19701:60;;;19733:28;;;;;;;;;;;;;;19701:60;13768:13;19779:18;:25;19798:5;19779:25;;;;;;;;;;;;;;;;:55;19772:62;;19609:233;;;:::o;2667:103::-;1905:13;:11;:13::i;:::-;2732:30:::1;2759:1;2732:18;:30::i;:::-;2667:103::o:0;62042:900::-;62120:16;62174:19;62208:25;62248:22;62273:16;62283:5;62273:9;:16::i;:::-;62248:41;;62304:25;62346:14;62332:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62304:57;;62376:31;;:::i;:::-;62427:9;62439:15;:13;:15::i;:::-;62427:27;;62422:472;62471:14;62456:11;:29;62422:472;;62523:15;62536:1;62523:12;:15::i;:::-;62511:27;;62561:9;:16;;;62557:73;;;62602:8;;62557:73;62678:1;62652:28;;:9;:14;;;:28;;;62648:111;;62725:9;:14;;;62705:34;;62648:111;62802:5;62781:26;;:17;:26;;;62777:102;;;62858:1;62832:8;62841:13;;;;;;62832:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;62777:102;62422:472;62487:3;;;;;62422:472;;;;62915:8;62908:15;;;;;;;62042:900;;;:::o;2019:87::-;2065:7;2092:6;;;;;;;;;;;2085:13;;2019:87;:::o;22850:104::-;22906:13;22939:7;22932:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22850:104;:::o;59082:2513::-;59225:16;59292:4;59283:5;:13;59279:45;;59305:19;;;;;;;;;;;;;;59279:45;59339:19;59373:17;59393:14;:12;:14::i;:::-;59373:34;;59493:15;:13;:15::i;:::-;59485:5;:23;59481:87;;;59537:15;:13;:15::i;:::-;59529:23;;59481:87;59644:9;59637:4;:16;59633:73;;;59681:9;59674:16;;59633:73;59720:25;59748:16;59758:5;59748:9;:16::i;:::-;59720:44;;59942:4;59934:5;:12;59930:278;;;59967:19;59996:5;59989:4;:12;59967:34;;60038:17;60024:11;:31;60020:111;;;60100:11;60080:31;;60020:111;59948:198;59930:278;;;60191:1;60171:21;;59930:278;60222:25;60264:17;60250:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60222:60;;60322:1;60301:17;:22;60297:78;;;60351:8;60344:15;;;;;;;;60297:78;60519:31;60553:26;60573:5;60553:19;:26::i;:::-;60519:60;;60594:25;60839:9;:16;;;60834:92;;60896:9;:14;;;60876:34;;60834:92;60945:9;60957:5;60945:17;;60940:478;60969:4;60964:1;:9;;:45;;;;;60992:17;60977:11;:32;;60964:45;60940:478;;;61047:15;61060:1;61047:12;:15::i;:::-;61035:27;;61085:9;:16;;;61081:73;;;61126:8;;61081:73;61202:1;61176:28;;:9;:14;;;:28;;;61172:111;;61249:9;:14;;;61229:34;;61172:111;61326:5;61305:26;;:17;:26;;;61301:102;;;61382:1;61356:8;61365:13;;;;;;61356:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;61301:102;60940:478;61011:3;;;;;60940:478;;;;61520:11;61510:8;61503:29;61568:8;61561:15;;;;;;;;59082:2513;;;;;;:::o;63620:451::-;63320:10;63307:23;;:9;:23;;;63299:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;63727:10:::1;;;;;;;;;;;63719:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;63806:14;63823:13;:11;:13::i;:::-;63806:30;;63875:9;;63860:11;63851:6;:20;;;;:::i;:::-;:33;;63843:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63980:11;63973:4;;:18;;;;:::i;:::-;63960:9;:31;;63952:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;64031:34;64041:10;64053:11;64031:9;:34::i;:::-;63683:388;63620:451:::0;:::o;29715:308::-;29826:19;:17;:19::i;:::-;29814:31;;:8;:31;;;29810:61;;;29854:17;;;;;;;;;;;;;;29810:61;29936:8;29884:18;:39;29903:19;:17;:19::i;:::-;29884:39;;;;;;;;;;;;;;;:49;29924:8;29884:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29996:8;29960:55;;29975:19;:17;:19::i;:::-;29960:55;;;30006:8;29960:55;;;;;;:::i;:::-;;;;;;;;29715:308;;:::o;36560:399::-;36727:31;36740:4;36746:2;36750:7;36727:12;:31::i;:::-;36791:1;36773:2;:14;;;:19;36769:183;;36812:56;36843:4;36849:2;36853:7;36862:5;36812:30;:56::i;:::-;36807:145;;36896:40;;;;;;;;;;;;;;36807:145;36769:183;36560:399;;;;:::o;63148:30::-;;;;;;;;;;;;;:::o;57579:428::-;57663:21;;:::i;:::-;57697:31;;:::i;:::-;57753:15;:13;:15::i;:::-;57743:7;:25;:54;;;;57783:14;:12;:14::i;:::-;57772:7;:25;;57743:54;57739:103;;;57821:9;57814:16;;;;;57739:103;57864:21;57877:7;57864:12;:21::i;:::-;57852:33;;57900:9;:16;;;57896:65;;;57940:9;57933:16;;;;;57896:65;57978:21;57991:7;57978:12;:21::i;:::-;57971:28;;;57579:428;;;;:::o;63030:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64108:427::-;64206:13;64247:16;64255:7;64247;:16::i;:::-;64231:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;64341:28;64372:10;:8;:10::i;:::-;64341:41;;64427:1;64402:14;64396:28;:32;:133;;;;;;;;;;;;;;;;;64464:14;64480:18;64490:7;64480:9;:18::i;:::-;64500:13;64447:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64396:133;64389:140;;;64108:427;;;:::o;63072:31::-;;;;:::o;65171:122::-;1905:13;:11;:13::i;:::-;65270:17:::1;65254:13;:33;;;;;;;;;;;;:::i;:::-;;65171:122:::0;:::o;64851:79::-;1905:13;:11;:13::i;:::-;64914:10:::1;;;;;;;;;;;64913:11;64900:10;;:24;;;;;;;;;;;;;;;;;;64851:79::o:0;30180:164::-;30277:4;30301:18;:25;30320:5;30301:25;;;;;;;;;;;;;;;:35;30327:8;30301:35;;;;;;;;;;;;;;;;;;;;;;;;;30294:42;;30180:164;;;;:::o;2925:201::-;1905:13;:11;:13::i;:::-;3034:1:::1;3014:22;;:8;:22;;;;3006:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3090:28;3109:8;3090:18;:28::i;:::-;2925:201:::0;:::o;30602:282::-;30667:4;30723:7;30704:15;:13;:15::i;:::-;:26;;:66;;;;;30757:13;;30747:7;:23;30704:66;:153;;;;;30856:1;14544:8;30808:17;:26;30826:7;30808:26;;;;;;;;;;;;:44;:49;30704:153;30684:173;;30602:282;;;:::o;52368:105::-;52428:7;52455:10;52448:17;;52368:105;:::o;63495:86::-;63552:7;63574:1;63567:8;;63495:86;:::o;25222:1275::-;25289:7;25309:12;25324:7;25309:22;;25392:4;25373:15;:13;:15::i;:::-;:23;25369:1061;;25426:13;;25419:4;:20;25415:1015;;;25464:14;25481:17;:23;25499:4;25481:23;;;;;;;;;;;;25464:40;;25598:1;14544:8;25570:6;:24;:29;25566:845;;;26235:113;26252:1;26242:6;:11;26235:113;;;26295:17;:25;26313:6;;;;;;;26295:25;;;;;;;;;;;;26286:34;;26235:113;;;26381:6;26374:13;;;;;;25566:845;25441:989;25415:1015;25369:1061;26458:31;;;;;;;;;;;;;;25222:1275;;;;:::o;31765:479::-;31867:27;31896:23;31937:38;31978:15;:24;31994:7;31978:24;;;;;;;;;;;31937:65;;32149:18;32126:41;;32206:19;32200:26;32181:45;;32111:126;31765:479;;;:::o;30993:659::-;31142:11;31307:16;31300:5;31296:28;31287:37;;31467:16;31456:9;31452:32;31439:45;;31617:15;31606:9;31603:30;31595:5;31584:9;31581:20;31578:56;31568:66;;30993:659;;;;;:::o;37621:159::-;;;;;:::o;51677:311::-;51812:7;51832:16;14948:3;51858:19;:41;;51832:68;;14948:3;51926:31;51937:4;51943:2;51947:9;51926:10;:31::i;:::-;51918:40;;:62;;51911:69;;;51677:311;;;;;:::o;27045:450::-;27125:14;27293:16;27286:5;27282:28;27273:37;;27470:5;27456:11;27431:23;27427:41;27424:52;27417:5;27414:63;27404:73;;27045:450;;;;:::o;38445:158::-;;;;;:::o;2184:132::-;2259:12;:10;:12::i;:::-;2248:23;;:7;:5;:7::i;:::-;:23;;;2240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2184:132::o;46200:112::-;46277:27;46287:2;46291:8;46277:27;;;;;;;;;;;;:9;:27::i;:::-;46200:112;;:::o;3286:191::-;3360:16;3379:6;;;;;;;;;;;3360:25;;3405:8;3396:6;;:17;;;;;;;;;;;;;;;;;;3460:8;3429:40;;3450:8;3429:40;;;;;;;;;;;;3349:128;3286:191;:::o;24670:161::-;24738:21;;:::i;:::-;24779:44;24798:17;:24;24816:5;24798:24;;;;;;;;;;;;24779:18;:44::i;:::-;24772:51;;24670:161;;;:::o;18112:103::-;18167:7;18194:13;;18187:20;;18112:103;:::o;39043:716::-;39206:4;39252:2;39227:45;;;39273:19;:17;:19::i;:::-;39294:4;39300:7;39309:5;39227:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39223:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39527:1;39510:6;:13;:18;39506:235;;;39556:40;;;;;;;;;;;;;;39506:235;39699:6;39693:13;39684:6;39680:2;39676:15;39669:38;39223:529;39396:54;;;39386:64;;;:6;:64;;;;39379:71;;;39043:716;;;;;;:::o;24408:166::-;24478:21;;:::i;:::-;24519:47;24538:27;24557:7;24538:18;:27::i;:::-;24519:18;:47::i;:::-;24512:54;;24408:166;;;:::o;63385:102::-;63445:13;63474:7;63467:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63385:102;:::o;52575:1581::-;52640:17;53065:4;53058;53052:11;53048:22;53041:29;;53157:3;53151:4;53144:17;53263:3;53502:5;53484:428;53510:1;53484:428;;;53550:1;53545:3;53541:11;53534:18;;53721:2;53715:4;53711:13;53707:2;53703:22;53698:3;53690:36;53815:2;53809:4;53805:13;53797:21;;53882:4;53872:25;;53890:5;;53872:25;53484:428;;;53488:21;53951:3;53946;53942:13;54066:4;54061:3;54057:14;54050:21;;54131:6;54126:3;54119:19;52679:1470;;52575:1581;;;:::o;51378:147::-;51515:6;51378:147;;;;;:::o;656:98::-;709:7;736:10;729:17;;656:98;:::o;45427:689::-;45558:19;45564:2;45568:8;45558:5;:19::i;:::-;45637:1;45619:2;:14;;;:19;45615:483;;45659:11;45673:13;;45659:27;;45705:13;45727:8;45721:3;:14;45705:30;;45754:233;45785:62;45824:1;45828:2;45832:7;;;;;;45841:5;45785:30;:62::i;:::-;45780:167;;45883:40;;;;;;;;;;;;;;45780:167;45982:3;45974:5;:11;45754:233;;46069:3;46052:13;;:20;46048:34;;46074:8;;;46048:34;45640:458;;45615:483;45427:689;;;:::o;26596:366::-;26662:31;;:::i;:::-;26739:6;26706:9;:14;;:41;;;;;;;;;;;14427:3;26792:6;:33;;26758:9;:24;;:68;;;;;;;;;;;26884:1;14544:8;26856:6;:24;:29;;26837:9;:16;;:48;;;;;;;;;;;14948:3;26925:6;:28;;26896:9;:19;;:58;;;;;;;;;;;26596:366;;;:::o;40221:2454::-;40294:20;40317:13;;40294:36;;40357:1;40345:8;:13;40341:44;;;40367:18;;;;;;;;;;;;;;40341:44;40398:61;40428:1;40432:2;40436:12;40450:8;40398:21;:61::i;:::-;40942:1;13906:2;40912:1;:26;;40911:32;40899:8;:45;40873:18;:22;40892:2;40873:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41221:139;41258:2;41312:33;41335:1;41339:2;41343:1;41312:14;:33::i;:::-;41279:30;41300:8;41279:20;:30::i;:::-;:66;41221:18;:139::i;:::-;41187:17;:31;41205:12;41187:31;;;;;;;;;;;:173;;;;41377:16;41408:11;41437:8;41422:12;:23;41408:37;;41692:16;41688:2;41684:25;41672:37;;42064:12;42024:8;41983:1;41921:25;41862:1;41801;41774:335;42189:1;42175:12;42171:20;42129:346;42230:3;42221:7;42218:16;42129:346;;42448:7;42438:8;42435:1;42408:25;42405:1;42402;42397:59;42283:1;42274:7;42270:15;42259:26;;42129:346;;;42133:77;42520:1;42508:8;:13;42504:45;;;42530:19;;;;;;;;;;;;;;42504:45;42582:3;42566:13;:19;;;;40647:1950;;42607:60;42636:1;42640:2;42644:12;42658:8;42607:20;:60::i;:::-;40283:2392;40221:2454;;:::o;27597:324::-;27667:14;27900:1;27890:8;27887:15;27861:24;27857:46;27847:56;;27597:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:619::-;6288:6;6296;6304;6353:2;6341:9;6332:7;6328:23;6324:32;6321:119;;;6359:79;;:::i;:::-;6321:119;6479:1;6504:53;6549:7;6540:6;6529:9;6525:22;6504:53;:::i;:::-;6494:63;;6450:117;6606:2;6632:53;6677:7;6668:6;6657:9;6653:22;6632:53;:::i;:::-;6622:63;;6577:118;6734:2;6760:53;6805:7;6796:6;6785:9;6781:22;6760:53;:::i;:::-;6750:63;;6705:118;6211:619;;;;;:::o;6836:559::-;6922:6;6930;6979:2;6967:9;6958:7;6954:23;6950:32;6947:119;;;6985:79;;:::i;:::-;6947:119;7133:1;7122:9;7118:17;7105:31;7163:18;7155:6;7152:30;7149:117;;;7185:79;;:::i;:::-;7149:117;7298:80;7370:7;7361:6;7350:9;7346:22;7298:80;:::i;:::-;7280:98;;;;7076:312;6836:559;;;;;:::o;7401:327::-;7459:6;7508:2;7496:9;7487:7;7483:23;7479:32;7476:119;;;7514:79;;:::i;:::-;7476:119;7634:1;7659:52;7703:7;7694:6;7683:9;7679:22;7659:52;:::i;:::-;7649:62;;7605:116;7401:327;;;;:::o;7734:349::-;7803:6;7852:2;7840:9;7831:7;7827:23;7823:32;7820:119;;;7858:79;;:::i;:::-;7820:119;7978:1;8003:63;8058:7;8049:6;8038:9;8034:22;8003:63;:::i;:::-;7993:73;;7949:127;7734:349;;;;:::o;8089:509::-;8158:6;8207:2;8195:9;8186:7;8182:23;8178:32;8175:119;;;8213:79;;:::i;:::-;8175:119;8361:1;8350:9;8346:17;8333:31;8391:18;8383:6;8380:30;8377:117;;;8413:79;;:::i;:::-;8377:117;8518:63;8573:7;8564:6;8553:9;8549:22;8518:63;:::i;:::-;8508:73;;8304:287;8089:509;;;;:::o;8604:329::-;8663:6;8712:2;8700:9;8691:7;8687:23;8683:32;8680:119;;;8718:79;;:::i;:::-;8680:119;8838:1;8863:53;8908:7;8899:6;8888:9;8884:22;8863:53;:::i;:::-;8853:63;;8809:117;8604:329;;;;:::o;8939:303::-;9070:10;9091:108;9195:3;9187:6;9091:108;:::i;:::-;9231:4;9226:3;9222:14;9208:28;;8939:303;;;;:::o;9248:179::-;9317:10;9338:46;9380:3;9372:6;9338:46;:::i;:::-;9416:4;9411:3;9407:14;9393:28;;9248:179;;;;:::o;9433:108::-;9510:24;9528:5;9510:24;:::i;:::-;9505:3;9498:37;9433:108;;:::o;9547:118::-;9634:24;9652:5;9634:24;:::i;:::-;9629:3;9622:37;9547:118;;:::o;9747:980::-;9928:3;9957:85;10036:5;9957:85;:::i;:::-;10058:117;10168:6;10163:3;10058:117;:::i;:::-;10051:124;;10199:87;10280:5;10199:87;:::i;:::-;10309:7;10340:1;10325:377;10350:6;10347:1;10344:13;10325:377;;;10426:6;10420:13;10453:125;10574:3;10559:13;10453:125;:::i;:::-;10446:132;;10601:91;10685:6;10601:91;:::i;:::-;10591:101;;10385:317;10372:1;10369;10365:9;10360:14;;10325:377;;;10329:14;10718:3;10711:10;;9933:794;;;9747:980;;;;:::o;10763:732::-;10882:3;10911:54;10959:5;10911:54;:::i;:::-;10981:86;11060:6;11055:3;10981:86;:::i;:::-;10974:93;;11091:56;11141:5;11091:56;:::i;:::-;11170:7;11201:1;11186:284;11211:6;11208:1;11205:13;11186:284;;;11287:6;11281:13;11314:63;11373:3;11358:13;11314:63;:::i;:::-;11307:70;;11400:60;11453:6;11400:60;:::i;:::-;11390:70;;11246:224;11233:1;11230;11226:9;11221:14;;11186:284;;;11190:14;11486:3;11479:10;;10887:608;;;10763:732;;;;:::o;11501:99::-;11572:21;11587:5;11572:21;:::i;:::-;11567:3;11560:34;11501:99;;:::o;11606:109::-;11687:21;11702:5;11687:21;:::i;:::-;11682:3;11675:34;11606:109;;:::o;11721:360::-;11807:3;11835:38;11867:5;11835:38;:::i;:::-;11889:70;11952:6;11947:3;11889:70;:::i;:::-;11882:77;;11968:52;12013:6;12008:3;12001:4;11994:5;11990:16;11968:52;:::i;:::-;12045:29;12067:6;12045:29;:::i;:::-;12040:3;12036:39;12029:46;;11811:270;11721:360;;;;:::o;12087:364::-;12175:3;12203:39;12236:5;12203:39;:::i;:::-;12258:71;12322:6;12317:3;12258:71;:::i;:::-;12251:78;;12338:52;12383:6;12378:3;12371:4;12364:5;12360:16;12338:52;:::i;:::-;12415:29;12437:6;12415:29;:::i;:::-;12410:3;12406:39;12399:46;;12179:272;12087:364;;;;:::o;12457:377::-;12563:3;12591:39;12624:5;12591:39;:::i;:::-;12646:89;12728:6;12723:3;12646:89;:::i;:::-;12639:96;;12744:52;12789:6;12784:3;12777:4;12770:5;12766:16;12744:52;:::i;:::-;12821:6;12816:3;12812:16;12805:23;;12567:267;12457:377;;;;:::o;12864:845::-;12967:3;13004:5;12998:12;13033:36;13059:9;13033:36;:::i;:::-;13085:89;13167:6;13162:3;13085:89;:::i;:::-;13078:96;;13205:1;13194:9;13190:17;13221:1;13216:137;;;;13367:1;13362:341;;;;13183:520;;13216:137;13300:4;13296:9;13285;13281:25;13276:3;13269:38;13336:6;13331:3;13327:16;13320:23;;13216:137;;13362:341;13429:38;13461:5;13429:38;:::i;:::-;13489:1;13503:154;13517:6;13514:1;13511:13;13503:154;;;13591:7;13585:14;13581:1;13576:3;13572:11;13565:35;13641:1;13632:7;13628:15;13617:26;;13539:4;13536:1;13532:12;13527:17;;13503:154;;;13686:6;13681:3;13677:16;13670:23;;13369:334;;13183:520;;12971:738;;12864:845;;;;:::o;13715:366::-;13857:3;13878:67;13942:2;13937:3;13878:67;:::i;:::-;13871:74;;13954:93;14043:3;13954:93;:::i;:::-;14072:2;14067:3;14063:12;14056:19;;13715:366;;;:::o;14087:::-;14229:3;14250:67;14314:2;14309:3;14250:67;:::i;:::-;14243:74;;14326:93;14415:3;14326:93;:::i;:::-;14444:2;14439:3;14435:12;14428:19;;14087:366;;;:::o;14459:::-;14601:3;14622:67;14686:2;14681:3;14622:67;:::i;:::-;14615:74;;14698:93;14787:3;14698:93;:::i;:::-;14816:2;14811:3;14807:12;14800:19;;14459:366;;;:::o;14831:::-;14973:3;14994:67;15058:2;15053:3;14994:67;:::i;:::-;14987:74;;15070:93;15159:3;15070:93;:::i;:::-;15188:2;15183:3;15179:12;15172:19;;14831:366;;;:::o;15203:::-;15345:3;15366:67;15430:2;15425:3;15366:67;:::i;:::-;15359:74;;15442:93;15531:3;15442:93;:::i;:::-;15560:2;15555:3;15551:12;15544:19;;15203:366;;;:::o;15575:398::-;15734:3;15755:83;15836:1;15831:3;15755:83;:::i;:::-;15748:90;;15847:93;15936:3;15847:93;:::i;:::-;15965:1;15960:3;15956:11;15949:18;;15575:398;;;:::o;15979:366::-;16121:3;16142:67;16206:2;16201:3;16142:67;:::i;:::-;16135:74;;16218:93;16307:3;16218:93;:::i;:::-;16336:2;16331:3;16327:12;16320:19;;15979:366;;;:::o;16351:::-;16493:3;16514:67;16578:2;16573:3;16514:67;:::i;:::-;16507:74;;16590:93;16679:3;16590:93;:::i;:::-;16708:2;16703:3;16699:12;16692:19;;16351:366;;;:::o;16795:864::-;16944:4;16939:3;16935:14;17031:4;17024:5;17020:16;17014:23;17050:63;17107:4;17102:3;17098:14;17084:12;17050:63;:::i;:::-;16959:164;17215:4;17208:5;17204:16;17198:23;17234:61;17289:4;17284:3;17280:14;17266:12;17234:61;:::i;:::-;17133:172;17389:4;17382:5;17378:16;17372:23;17408:57;17459:4;17454:3;17450:14;17436:12;17408:57;:::i;:::-;17315:160;17562:4;17555:5;17551:16;17545:23;17581:61;17636:4;17631:3;17627:14;17613:12;17581:61;:::i;:::-;17485:167;16913:746;16795:864;;:::o;17737:874::-;17896:4;17891:3;17887:14;17983:4;17976:5;17972:16;17966:23;18002:63;18059:4;18054:3;18050:14;18036:12;18002:63;:::i;:::-;17911:164;18167:4;18160:5;18156:16;18150:23;18186:61;18241:4;18236:3;18232:14;18218:12;18186:61;:::i;:::-;18085:172;18341:4;18334:5;18330:16;18324:23;18360:57;18411:4;18406:3;18402:14;18388:12;18360:57;:::i;:::-;18267:160;18514:4;18507:5;18503:16;18497:23;18533:61;18588:4;18583:3;18579:14;18565:12;18533:61;:::i;:::-;18437:167;17865:746;17737:874;;:::o;18617:105::-;18692:23;18709:5;18692:23;:::i;:::-;18687:3;18680:36;18617:105;;:::o;18728:108::-;18805:24;18823:5;18805:24;:::i;:::-;18800:3;18793:37;18728:108;;:::o;18842:118::-;18929:24;18947:5;18929:24;:::i;:::-;18924:3;18917:37;18842:118;;:::o;18966:105::-;19041:23;19058:5;19041:23;:::i;:::-;19036:3;19029:36;18966:105;;:::o;19077:589::-;19302:3;19324:95;19415:3;19406:6;19324:95;:::i;:::-;19317:102;;19436:95;19527:3;19518:6;19436:95;:::i;:::-;19429:102;;19548:92;19636:3;19627:6;19548:92;:::i;:::-;19541:99;;19657:3;19650:10;;19077:589;;;;;;:::o;19672:379::-;19856:3;19878:147;20021:3;19878:147;:::i;:::-;19871:154;;20042:3;20035:10;;19672:379;;;:::o;20057:222::-;20150:4;20188:2;20177:9;20173:18;20165:26;;20201:71;20269:1;20258:9;20254:17;20245:6;20201:71;:::i;:::-;20057:222;;;;:::o;20285:640::-;20480:4;20518:3;20507:9;20503:19;20495:27;;20532:71;20600:1;20589:9;20585:17;20576:6;20532:71;:::i;:::-;20613:72;20681:2;20670:9;20666:18;20657:6;20613:72;:::i;:::-;20695;20763:2;20752:9;20748:18;20739:6;20695:72;:::i;:::-;20814:9;20808:4;20804:20;20799:2;20788:9;20784:18;20777:48;20842:76;20913:4;20904:6;20842:76;:::i;:::-;20834:84;;20285:640;;;;;;;:::o;20931:497::-;21136:4;21174:2;21163:9;21159:18;21151:26;;21223:9;21217:4;21213:20;21209:1;21198:9;21194:17;21187:47;21251:170;21416:4;21407:6;21251:170;:::i;:::-;21243:178;;20931:497;;;;:::o;21434:373::-;21577:4;21615:2;21604:9;21600:18;21592:26;;21664:9;21658:4;21654:20;21650:1;21639:9;21635:17;21628:47;21692:108;21795:4;21786:6;21692:108;:::i;:::-;21684:116;;21434:373;;;;:::o;21813:210::-;21900:4;21938:2;21927:9;21923:18;21915:26;;21951:65;22013:1;22002:9;21998:17;21989:6;21951:65;:::i;:::-;21813:210;;;;:::o;22029:313::-;22142:4;22180:2;22169:9;22165:18;22157:26;;22229:9;22223:4;22219:20;22215:1;22204:9;22200:17;22193:47;22257:78;22330:4;22321:6;22257:78;:::i;:::-;22249:86;;22029:313;;;;:::o;22348:419::-;22514:4;22552:2;22541:9;22537:18;22529:26;;22601:9;22595:4;22591:20;22587:1;22576:9;22572:17;22565:47;22629:131;22755:4;22629:131;:::i;:::-;22621:139;;22348:419;;;:::o;22773:::-;22939:4;22977:2;22966:9;22962:18;22954:26;;23026:9;23020:4;23016:20;23012:1;23001:9;22997:17;22990:47;23054:131;23180:4;23054:131;:::i;:::-;23046:139;;22773:419;;;:::o;23198:::-;23364:4;23402:2;23391:9;23387:18;23379:26;;23451:9;23445:4;23441:20;23437:1;23426:9;23422:17;23415:47;23479:131;23605:4;23479:131;:::i;:::-;23471:139;;23198:419;;;:::o;23623:::-;23789:4;23827:2;23816:9;23812:18;23804:26;;23876:9;23870:4;23866:20;23862:1;23851:9;23847:17;23840:47;23904:131;24030:4;23904:131;:::i;:::-;23896:139;;23623:419;;;:::o;24048:::-;24214:4;24252:2;24241:9;24237:18;24229:26;;24301:9;24295:4;24291:20;24287:1;24276:9;24272:17;24265:47;24329:131;24455:4;24329:131;:::i;:::-;24321:139;;24048:419;;;:::o;24473:::-;24639:4;24677:2;24666:9;24662:18;24654:26;;24726:9;24720:4;24716:20;24712:1;24701:9;24697:17;24690:47;24754:131;24880:4;24754:131;:::i;:::-;24746:139;;24473:419;;;:::o;24898:::-;25064:4;25102:2;25091:9;25087:18;25079:26;;25151:9;25145:4;25141:20;25137:1;25126:9;25122:17;25115:47;25179:131;25305:4;25179:131;:::i;:::-;25171:139;;24898:419;;;:::o;25323:347::-;25478:4;25516:3;25505:9;25501:19;25493:27;;25530:133;25660:1;25649:9;25645:17;25636:6;25530:133;:::i;:::-;25323:347;;;;:::o;25676:222::-;25769:4;25807:2;25796:9;25792:18;25784:26;;25820:71;25888:1;25877:9;25873:17;25864:6;25820:71;:::i;:::-;25676:222;;;;:::o;25904:129::-;25938:6;25965:20;;:::i;:::-;25955:30;;25994:33;26022:4;26014:6;25994:33;:::i;:::-;25904:129;;;:::o;26039:75::-;26072:6;26105:2;26099:9;26089:19;;26039:75;:::o;26120:307::-;26181:4;26271:18;26263:6;26260:30;26257:56;;;26293:18;;:::i;:::-;26257:56;26331:29;26353:6;26331:29;:::i;:::-;26323:37;;26415:4;26409;26405:15;26397:23;;26120:307;;;:::o;26433:308::-;26495:4;26585:18;26577:6;26574:30;26571:56;;;26607:18;;:::i;:::-;26571:56;26645:29;26667:6;26645:29;:::i;:::-;26637:37;;26729:4;26723;26719:15;26711:23;;26433:308;;;:::o;26747:163::-;26845:4;26868:3;26860:11;;26898:4;26893:3;26889:14;26881:22;;26747:163;;;:::o;26916:132::-;26983:4;27006:3;26998:11;;27036:4;27031:3;27027:14;27019:22;;26916:132;;;:::o;27054:141::-;27103:4;27126:3;27118:11;;27149:3;27146:1;27139:14;27183:4;27180:1;27170:18;27162:26;;27054:141;;;:::o;27201:145::-;27299:6;27333:5;27327:12;27317:22;;27201:145;;;:::o;27352:114::-;27419:6;27453:5;27447:12;27437:22;;27352:114;;;:::o;27472:98::-;27523:6;27557:5;27551:12;27541:22;;27472:98;;;:::o;27576:99::-;27628:6;27662:5;27656:12;27646:22;;27576:99;;;:::o;27681:144::-;27782:4;27814;27809:3;27805:14;27797:22;;27681:144;;;:::o;27831:113::-;27901:4;27933;27928:3;27924:14;27916:22;;27831:113;;;:::o;27950:215::-;28080:11;28114:6;28109:3;28102:19;28154:4;28149:3;28145:14;28130:29;;27950:215;;;;:::o;28171:184::-;28270:11;28304:6;28299:3;28292:19;28344:4;28339:3;28335:14;28320:29;;28171:184;;;;:::o;28361:168::-;28444:11;28478:6;28473:3;28466:19;28518:4;28513:3;28509:14;28494:29;;28361:168;;;;:::o;28535:147::-;28636:11;28673:3;28658:18;;28535:147;;;;:::o;28688:169::-;28772:11;28806:6;28801:3;28794:19;28846:4;28841:3;28837:14;28822:29;;28688:169;;;;:::o;28863:148::-;28965:11;29002:3;28987:18;;28863:148;;;;:::o;29017:305::-;29057:3;29076:20;29094:1;29076:20;:::i;:::-;29071:25;;29110:20;29128:1;29110:20;:::i;:::-;29105:25;;29264:1;29196:66;29192:74;29189:1;29186:81;29183:107;;;29270:18;;:::i;:::-;29183:107;29314:1;29311;29307:9;29300:16;;29017:305;;;;:::o;29328:348::-;29368:7;29391:20;29409:1;29391:20;:::i;:::-;29386:25;;29425:20;29443:1;29425:20;:::i;:::-;29420:25;;29613:1;29545:66;29541:74;29538:1;29535:81;29530:1;29523:9;29516:17;29512:105;29509:131;;;29620:18;;:::i;:::-;29509:131;29668:1;29665;29661:9;29650:20;;29328:348;;;;:::o;29682:96::-;29719:7;29748:24;29766:5;29748:24;:::i;:::-;29737:35;;29682:96;;;:::o;29784:90::-;29818:7;29861:5;29854:13;29847:21;29836:32;;29784:90;;;:::o;29880:149::-;29916:7;29956:66;29949:5;29945:78;29934:89;;29880:149;;;:::o;30035:126::-;30072:7;30112:42;30105:5;30101:54;30090:65;;30035:126;;;:::o;30167:91::-;30203:7;30243:8;30236:5;30232:20;30221:31;;30167:91;;;:::o;30264:77::-;30301:7;30330:5;30319:16;;30264:77;;;:::o;30347:101::-;30383:7;30423:18;30416:5;30412:30;30401:41;;30347:101;;;:::o;30454:154::-;30538:6;30533:3;30528;30515:30;30600:1;30591:6;30586:3;30582:16;30575:27;30454:154;;;:::o;30614:307::-;30682:1;30692:113;30706:6;30703:1;30700:13;30692:113;;;30791:1;30786:3;30782:11;30776:18;30772:1;30767:3;30763:11;30756:39;30728:2;30725:1;30721:10;30716:15;;30692:113;;;30823:6;30820:1;30817:13;30814:101;;;30903:1;30894:6;30889:3;30885:16;30878:27;30814:101;30663:258;30614:307;;;:::o;30927:320::-;30971:6;31008:1;31002:4;30998:12;30988:22;;31055:1;31049:4;31045:12;31076:18;31066:81;;31132:4;31124:6;31120:17;31110:27;;31066:81;31194:2;31186:6;31183:14;31163:18;31160:38;31157:84;;;31213:18;;:::i;:::-;31157:84;30978:269;30927:320;;;:::o;31253:281::-;31336:27;31358:4;31336:27;:::i;:::-;31328:6;31324:40;31466:6;31454:10;31451:22;31430:18;31418:10;31415:34;31412:62;31409:88;;;31477:18;;:::i;:::-;31409:88;31517:10;31513:2;31506:22;31296:238;31253:281;;:::o;31540:180::-;31588:77;31585:1;31578:88;31685:4;31682:1;31675:15;31709:4;31706:1;31699:15;31726:180;31774:77;31771:1;31764:88;31871:4;31868:1;31861:15;31895:4;31892:1;31885:15;31912:180;31960:77;31957:1;31950:88;32057:4;32054:1;32047:15;32081:4;32078:1;32071:15;32098:180;32146:77;32143:1;32136:88;32243:4;32240:1;32233:15;32267:4;32264:1;32257:15;32284:117;32393:1;32390;32383:12;32407:117;32516:1;32513;32506:12;32530:117;32639:1;32636;32629:12;32653:117;32762:1;32759;32752:12;32776:117;32885:1;32882;32875:12;32899:117;33008:1;33005;32998:12;33022:102;33063:6;33114:2;33110:7;33105:2;33098:5;33094:14;33090:28;33080:38;;33022:102;;;:::o;33130:225::-;33270:34;33266:1;33258:6;33254:14;33247:58;33339:8;33334:2;33326:6;33322:15;33315:33;33130:225;:::o;33361:172::-;33501:24;33497:1;33489:6;33485:14;33478:48;33361:172;:::o;33539:174::-;33679:26;33675:1;33667:6;33663:14;33656:50;33539:174;:::o;33719:182::-;33859:34;33855:1;33847:6;33843:14;33836:58;33719:182;:::o;33907:234::-;34047:34;34043:1;34035:6;34031:14;34024:58;34116:17;34111:2;34103:6;34099:15;34092:42;33907:234;:::o;34147:114::-;;:::o;34267:168::-;34407:20;34403:1;34395:6;34391:14;34384:44;34267:168;:::o;34441:180::-;34581:32;34577:1;34569:6;34565:14;34558:56;34441:180;:::o;34627:122::-;34700:24;34718:5;34700:24;:::i;:::-;34693:5;34690:35;34680:63;;34739:1;34736;34729:12;34680:63;34627:122;:::o;34755:116::-;34825:21;34840:5;34825:21;:::i;:::-;34818:5;34815:32;34805:60;;34861:1;34858;34851:12;34805:60;34755:116;:::o;34877:120::-;34949:23;34966:5;34949:23;:::i;:::-;34942:5;34939:34;34929:62;;34987:1;34984;34977:12;34929:62;34877:120;:::o;35003:122::-;35076:24;35094:5;35076:24;:::i;:::-;35069:5;35066:35;35056:63;;35115:1;35112;35105:12;35056:63;35003:122;:::o
Swarm Source
ipfs://7cc94b744d9a92560b261665c5456420be675869cab1eca75f44113f73ff15a0
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.