Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
1029
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheSanctum_Neophytes
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT /* _____ _ ____ _ |_ _| |__ ___ / ___| __ _ _ __ ___| |_ _ _ _ __ ___ | | | '_ \ / _ \ \___ \ / _` | '_ \ / __| __| | | | '_ ` _ \ | | | | | | __/ ___) | (_| | | | | (__| |_| |_| | | | | | | |_| |_| |_|\___| |____/ \__,_|_| |_|\___|\__|\__,_|_| |_| |_| */ pragma solidity ^0.8.7; import "./Ownable.sol"; import "./Strings.sol"; import "./ERC721A.sol"; import "./Markle.sol"; contract TheSanctum_Neophytes is ERC721A, Ownable{ using Strings for uint256; uint public tokenPrice = 0.01 ether; uint constant maxSupply = 10000; uint constant GenesismaxSupply = 2000; bool public Genesis_status = false; bool public Presale_status = false; bool public public_sale_status = false; bool public isBurnEnabled=false; bytes32 public whitelistMerkleRoot; bytes32 public GenesisMerkleRoot; mapping(address => bool) private presaleList; string public baseURI; mapping(address => uint256) public totalPublicMint; mapping(address => uint256) public totalWhitelistMint; mapping(address => uint256) public totalGenesisMint; mapping(uint256 => address) public burnedby; mapping(address => bool) public isclaimedbyaddress; mapping(uint => bool) public isclaimedbytoken; uint public maxPerTransaction = 5; //Max Limit Per TX uint public maxPerWalletPresale = 2; //Max Limit for Presale uint public maxPerGenesis = 1; constructor() ERC721A("The Sanctum-Neophytes", "Neophytes"){} function Public_mint(uint _count) public payable{ require(public_sale_status == true, "Sale is Paused."); require(_count > 0, "mint at least one token"); require(totalSupply() + _count <= maxSupply, "Sold Out!"); require(msg.value >= tokenPrice * _count, "incorrect ether amount"); require(_count <= maxPerTransaction, "ONLY 5 NEOPHYTES ALLOWED PER TRANSACTION"); totalPublicMint[msg.sender] += _count; _safeMint(msg.sender, _count); } function Whitelist_mint(uint _count,bytes32[] calldata merkleProof) external payable{ uint genesis_token_id=Genesis_holders(msg.sender); require(Presale_status == true, "THE MAGIC MINT HAS NOT STARTED YET"); require(MerkleProof.verify(merkleProof,whitelistMerkleRoot,keccak256(abi.encodePacked(msg.sender))),"YOUR WALLET IS NOT WHITELISTED"); require(_count <= maxPerWalletPresale, "ONLY 2 NEOPHYTES ALLOWED PER TRANSACTION"); require(totalSupply() + _count <= maxSupply, "Sold Out!"); require((totalWhitelistMint[msg.sender] +_count) <= maxPerWalletPresale, "ONLY 2 NEOPHYTES ALLOWED PER WALLET"); if(genesis_token_id==0) { require(msg.value >= tokenPrice * _count, "incorrect ether amount"); _safeMint(msg.sender, _count); totalWhitelistMint[msg.sender] += _count; } else{ require(msg.value >= (tokenPrice * _count)-(tokenPrice/10), "incorrect ether amount"); _safeMint(msg.sender, _count); totalWhitelistMint[msg.sender] += _count; isclaimedbyaddress[msg.sender] = true; isclaimedbytoken[genesis_token_id] = true; } } function Genesis_mint(uint _count,bytes32[] calldata merkleProof) external{ require(Genesis_status == true, "THE MAGIC MINT HAS NOT STARTED YET"); require(MerkleProof.verify(merkleProof,GenesisMerkleRoot,keccak256(abi.encodePacked(msg.sender))),"YOUR WALLET IS NOT WHITELISTED"); require(_count <= maxPerGenesis, "max per transaction 1"); require(totalSupply() + _count<= GenesismaxSupply, "Genesis Collection Sold out"); require((totalGenesisMint[msg.sender] +_count) <= maxPerGenesis, "ONLY 1 GENESIS NEOPHYTE ALLOWED PER WALLET"); totalGenesisMint[msg.sender] += _count; _safeMint(msg.sender, _count); } function Whitelist_checker(address walletAddress, bytes32[] calldata merkleProof) public view returns (bool){ if(MerkleProof.verify(merkleProof,whitelistMerkleRoot,keccak256(abi.encodePacked(walletAddress)))) { return true; } else {return false;} } function Genesis_checker(address walletAddress, bytes32[] calldata merkleProof) public view returns (bool){ if(MerkleProof.verify(merkleProof,GenesisMerkleRoot,keccak256(abi.encodePacked(walletAddress)))) { return true; } else {return false;} } function Genesis_holders(address walletAddress) public view returns (uint){ uint value=0; uint maxlimit= GenesismaxSupply; if(totalSupply()<GenesismaxSupply){ maxlimit=totalSupply(); } for(uint i=1; i<=maxlimit; i++) { if(ownerOf(i)==walletAddress && !isclaimedbyaddress[walletAddress] && !isclaimedbytoken[i]) { value=i; break; } } return value; } function adminMint(uint _count) external onlyOwner{ require(_count > 0, "mint at least one token"); require(totalSupply() + _count <= maxSupply, "Sold Out!"); _safeMint(msg.sender, _count); } function sendGifts(address[] memory _wallets) public onlyOwner{ require(totalSupply() + _wallets.length <= maxSupply, "Sold Out!"); for(uint i = 0; i < _wallets.length; i++) _safeMint(_wallets[i], 1); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } //return uri for certain token function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ""; } function setBaseUri(string memory _uri) external onlyOwner { baseURI = _uri; } function Presale_Status(bool status) external onlyOwner { Presale_status = status; } function Genesis_status_update(bool status) external onlyOwner { Genesis_status = status; } function Public_status_update(bool status) external onlyOwner { public_sale_status = status; } function update_burning_status(bool status) external onlyOwner { isBurnEnabled = status; } function SetWhitelist(bytes32 merkleRoot) external onlyOwner { whitelistMerkleRoot = merkleRoot; } function SetGenesis(bytes32 merkleRoot) external onlyOwner { GenesisMerkleRoot = merkleRoot; } function burn(uint256 tokenId) external { require(isBurnEnabled, "burning disabled"); require( _isApprovedOrOwner(msg.sender, tokenId), "burn caller is not approved" ); _burn(tokenId); burnedby[tokenId] = msg.sender; } function public_sale_price(uint pr) external onlyOwner { tokenPrice = pr; } function withdraw() external onlyOwner { payable(owner()).transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "./OperatorFilterer.sol"; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. // OpenZeppelin Contracts (last updated v4.8.0) (access/Ownable2Step.sol) pragma solidity ^0.8.0; import "./Ownable.sol"; /** * @dev Contract module which provides 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} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() external { address sender = _msgSender(); require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner"); _transferOwnership(sender); } } pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; import './DefaultOperatorFilterer.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A, DefaultOperatorFilterer { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721A.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override onlyAllowedOperator(from){ uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override onlyAllowedOperator(from){ safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override onlyAllowedOperator(from){ transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; import {Ownable} from "./Ownable.sol"; import {EnumerableSet} from "./EnumerableSet.sol"; import {OperatorFilterRegistryErrorsAndEvents} from "./OperatorFilterRegistryErrorsAndEvents.sol"; /** * @title OperatorFilterRegistry * @notice Borrows heavily from the QQL BlacklistOperatorFilter contract: * https://github.com/qql-art/contracts/blob/main/contracts/BlacklistOperatorFilter.sol * @notice This contracts allows tokens or token owners to register specific addresses or codeHashes that may be * * restricted according to the isOperatorAllowed function. */ contract OperatorFilterRegistry is IOperatorFilterRegistry, OperatorFilterRegistryErrorsAndEvents { using EnumerableSet for EnumerableSet.AddressSet; using EnumerableSet for EnumerableSet.Bytes32Set; /// @dev initialized accounts have a nonzero codehash (see https://eips.ethereum.org/EIPS/eip-1052) /// Note that this will also be a smart contract's codehash when making calls from its constructor. bytes32 constant EOA_CODEHASH = keccak256(""); mapping(address => EnumerableSet.AddressSet) private _filteredOperators; mapping(address => EnumerableSet.Bytes32Set) private _filteredCodeHashes; mapping(address => address) private _registrations; mapping(address => EnumerableSet.AddressSet) private _subscribers; /** * @notice restricts method caller to the address or EIP-173 "owner()" */ modifier onlyAddressOrOwner(address addr) { if (msg.sender != addr) { try Ownable(addr).owner() returns (address owner) { if (msg.sender != owner) { revert OnlyAddressOrOwner(); } } catch (bytes memory reason) { if (reason.length == 0) { revert NotOwnable(); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } _; } /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool) { address registration = _registrations[registrant]; if (registration != address(0)) { EnumerableSet.AddressSet storage filteredOperatorsRef; EnumerableSet.Bytes32Set storage filteredCodeHashesRef; filteredOperatorsRef = _filteredOperators[registration]; filteredCodeHashesRef = _filteredCodeHashes[registration]; if (filteredOperatorsRef.contains(operator)) { revert AddressFiltered(operator); } if (operator.code.length > 0) { bytes32 codeHash = operator.codehash; if (filteredCodeHashesRef.contains(codeHash)) { revert CodeHashFiltered(operator, codeHash); } } } return true; } ////////////////// // AUTH METHODS // ////////////////// /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external onlyAddressOrOwner(registrant) { if (_registrations[registrant] != address(0)) { revert AlreadyRegistered(); } _registrations[registrant] = registrant; emit RegistrationUpdated(registrant, true); } /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address registrant) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { _subscribers[registration].remove(registrant); emit SubscriptionUpdated(registrant, registration, false); } _registrations[registrant] = address(0); emit RegistrationUpdated(registrant, false); } /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration != address(0)) { revert AlreadyRegistered(); } if (registrant == subscription) { revert CannotSubscribeToSelf(); } address subscriptionRegistration = _registrations[subscription]; if (subscriptionRegistration == address(0)) { revert NotRegistered(subscription); } if (subscriptionRegistration != subscription) { revert CannotSubscribeToRegistrantWithSubscription(subscription); } _registrations[registrant] = subscription; _subscribers[subscription].add(registrant); emit RegistrationUpdated(registrant, true); emit SubscriptionUpdated(registrant, subscription, true); } /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external onlyAddressOrOwner(registrant) { if (registrantToCopy == registrant) { revert CannotCopyFromSelf(); } address registration = _registrations[registrant]; if (registration != address(0)) { revert AlreadyRegistered(); } address registrantRegistration = _registrations[registrantToCopy]; if (registrantRegistration == address(0)) { revert NotRegistered(registrantToCopy); } _registrations[registrant] = registrant; emit RegistrationUpdated(registrant, true); _copyEntries(registrant, registrantToCopy); } /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { revert CannotUpdateWhileSubscribed(registration); } EnumerableSet.AddressSet storage filteredOperatorsRef = _filteredOperators[registrant]; if (!filtered) { bool removed = filteredOperatorsRef.remove(operator); if (!removed) { revert AddressNotFiltered(operator); } } else { bool added = filteredOperatorsRef.add(operator); if (!added) { revert AddressAlreadyFiltered(operator); } } emit OperatorUpdated(registrant, operator, filtered); } /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codeHash, bool filtered) external onlyAddressOrOwner(registrant) { if (codeHash == EOA_CODEHASH) { revert CannotFilterEOAs(); } address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { revert CannotUpdateWhileSubscribed(registration); } EnumerableSet.Bytes32Set storage filteredCodeHashesRef = _filteredCodeHashes[registrant]; if (!filtered) { bool removed = filteredCodeHashesRef.remove(codeHash); if (!removed) { revert CodeHashNotFiltered(codeHash); } } else { bool added = filteredCodeHashesRef.add(codeHash); if (!added) { revert CodeHashAlreadyFiltered(codeHash); } } emit CodeHashUpdated(registrant, codeHash, filtered); } /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { revert CannotUpdateWhileSubscribed(registration); } EnumerableSet.AddressSet storage filteredOperatorsRef = _filteredOperators[registrant]; uint256 operatorsLength = operators.length; unchecked { if (!filtered) { for (uint256 i = 0; i < operatorsLength; ++i) { address operator = operators[i]; bool removed = filteredOperatorsRef.remove(operator); if (!removed) { revert AddressNotFiltered(operator); } } } else { for (uint256 i = 0; i < operatorsLength; ++i) { address operator = operators[i]; bool added = filteredOperatorsRef.add(operator); if (!added) { revert AddressAlreadyFiltered(operator); } } } } emit OperatorsUpdated(registrant, operators, filtered); } /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { revert CannotUpdateWhileSubscribed(registration); } EnumerableSet.Bytes32Set storage filteredCodeHashesRef = _filteredCodeHashes[registrant]; uint256 codeHashesLength = codeHashes.length; unchecked { if (!filtered) { for (uint256 i = 0; i < codeHashesLength; ++i) { bytes32 codeHash = codeHashes[i]; bool removed = filteredCodeHashesRef.remove(codeHash); if (!removed) { revert CodeHashNotFiltered(codeHash); } } } else { for (uint256 i = 0; i < codeHashesLength; ++i) { bytes32 codeHash = codeHashes[i]; if (codeHash == EOA_CODEHASH) { revert CannotFilterEOAs(); } bool added = filteredCodeHashesRef.add(codeHash); if (!added) { revert CodeHashAlreadyFiltered(codeHash); } } } } emit CodeHashesUpdated(registrant, codeHashes, filtered); } /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address newSubscription) external onlyAddressOrOwner(registrant) { if (registrant == newSubscription) { revert CannotSubscribeToSelf(); } if (newSubscription == address(0)) { revert CannotSubscribeToZeroAddress(); } address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration == newSubscription) { revert AlreadySubscribed(newSubscription); } address newSubscriptionRegistration = _registrations[newSubscription]; if (newSubscriptionRegistration == address(0)) { revert NotRegistered(newSubscription); } if (newSubscriptionRegistration != newSubscription) { revert CannotSubscribeToRegistrantWithSubscription(newSubscription); } if (registration != registrant) { _subscribers[registration].remove(registrant); emit SubscriptionUpdated(registrant, registration, false); } _registrations[registrant] = newSubscription; _subscribers[newSubscription].add(registrant); emit SubscriptionUpdated(registrant, newSubscription, true); } /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration == registrant) { revert NotSubscribed(); } _subscribers[registration].remove(registrant); _registrations[registrant] = registrant; emit SubscriptionUpdated(registrant, registration, false); if (copyExistingEntries) { _copyEntries(registrant, registration); } } /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external onlyAddressOrOwner(registrant) { if (registrant == registrantToCopy) { revert CannotCopyFromSelf(); } address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { revert CannotUpdateWhileSubscribed(registration); } address registrantRegistration = _registrations[registrantToCopy]; if (registrantRegistration == address(0)) { revert NotRegistered(registrantToCopy); } _copyEntries(registrant, registrantToCopy); } /// @dev helper to copy entries from registrantToCopy to registrant and emit events function _copyEntries(address registrant, address registrantToCopy) private { EnumerableSet.AddressSet storage filteredOperatorsRef = _filteredOperators[registrantToCopy]; EnumerableSet.Bytes32Set storage filteredCodeHashesRef = _filteredCodeHashes[registrantToCopy]; uint256 filteredOperatorsLength = filteredOperatorsRef.length(); uint256 filteredCodeHashesLength = filteredCodeHashesRef.length(); unchecked { for (uint256 i = 0; i < filteredOperatorsLength; ++i) { address operator = filteredOperatorsRef.at(i); bool added = _filteredOperators[registrant].add(operator); if (added) { emit OperatorUpdated(registrant, operator, true); } } for (uint256 i = 0; i < filteredCodeHashesLength; ++i) { bytes32 codehash = filteredCodeHashesRef.at(i); bool added = _filteredCodeHashes[registrant].add(codehash); if (added) { emit CodeHashUpdated(registrant, codehash, true); } } } } ////////////////// // VIEW METHODS // ////////////////// /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address registrant) external view returns (address subscription) { subscription = _registrations[registrant]; if (subscription == address(0)) { revert NotRegistered(registrant); } else if (subscription == registrant) { subscription = address(0); } } /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external view returns (address[] memory) { return _subscribers[registrant].values(); } /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external view returns (address) { return _subscribers[registrant].at(index); } /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external view returns (bool) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredOperators[registration].contains(operator); } return _filteredOperators[registrant].contains(operator); } /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external view returns (bool) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredCodeHashes[registration].contains(codeHash); } return _filteredCodeHashes[registrant].contains(codeHash); } /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external view returns (bool) { bytes32 codeHash = operatorWithCode.codehash; address registration = _registrations[registrant]; if (registration != registrant) { return _filteredCodeHashes[registration].contains(codeHash); } return _filteredCodeHashes[registrant].contains(codeHash); } /** * @notice Returns true if an address has registered */ function isRegistered(address registrant) external view returns (bool) { return _registrations[registrant] != address(0); } /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address registrant) external view returns (address[] memory) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredOperators[registration].values(); } return _filteredOperators[registrant].values(); } /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address registrant) external view returns (bytes32[] memory) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredCodeHashes[registration].values(); } return _filteredCodeHashes[registrant].values(); } /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external view returns (address) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredOperators[registration].at(index); } return _filteredOperators[registrant].at(index); } /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external view returns (bytes32) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredCodeHashes[registration].at(index); } return _filteredCodeHashes[registrant].at(index); } /// @dev Convenience method to compute the code hash of an arbitrary contract function codeHashOf(address a) external view returns (bytes32) { return a.codehash; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; contract OperatorFilterRegistryErrorsAndEvents { error CannotFilterEOAs(); error AddressAlreadyFiltered(address operator); error AddressNotFiltered(address operator); error CodeHashAlreadyFiltered(bytes32 codeHash); error CodeHashNotFiltered(bytes32 codeHash); error OnlyAddressOrOwner(); error NotRegistered(address registrant); error AlreadyRegistered(); error AlreadySubscribed(address subscription); error NotSubscribed(); error CannotUpdateWhileSubscribed(address subscription); error CannotSubscribeToSelf(); error CannotSubscribeToZeroAddress(); error NotOwnable(); error AddressFiltered(address filtered); error CodeHashFiltered(address account, bytes32 codeHash); error CannotSubscribeToRegistrantWithSubscription(address registrant); error CannotCopyFromSelf(); event RegistrationUpdated(address indexed registrant, bool indexed registered); event OperatorUpdated(address indexed registrant, address indexed operator, bool indexed filtered); event OperatorsUpdated(address indexed registrant, address[] operators, bool indexed filtered); event CodeHashUpdated(address indexed registrant, bytes32 indexed codeHash, bool indexed filtered); event CodeHashesUpdated(address indexed registrant, bytes32[] codeHashes, bool indexed filtered); event SubscriptionUpdated(address indexed registrant, address indexed subscription, bool indexed subscribed); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; import {Ownable2Step} from "./EnumerableSet.sol"; /** * @title OwnedRegistrant * @notice Ownable contract that registers itself with the OperatorFilterRegistry and administers its own entries, * to facilitate a subscription whose ownership can be transferred. */ contract OwnedRegistrant is Ownable2Step { address constant registry = 0x000000000000AAeB6D7670E522A718067333cd4E; constructor(address _owner) { IOperatorFilterRegistry(registry).register(address(this)); transferOwnership(_owner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":[],"name":"GenesisMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"Genesis_checker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"Genesis_holders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"Genesis_mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Genesis_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"Genesis_status_update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"Presale_Status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Presale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"Public_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"Public_status_update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"SetGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"SetWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"Whitelist_checker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"Whitelist_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"burnedby","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"isBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isclaimedbyaddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isclaimedbytoken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerGenesis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"pr","type":"uint256"}],"name":"public_sale_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"public_sale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","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":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalGenesisMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","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":"","type":"address"}],"name":"totalWhitelistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"update_burning_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052662386f26fc100006009556000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506000600a60036101000a81548160ff0219169083151502179055506005601555600260165560016017553480156200009757600080fd5b506040518060400160405280601581526020017f5468652053616e6374756d2d4e656f70687974657300000000000000000000008152506040518060400160405280600981526020017f4e656f7068797465730000000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000310578015620001d6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200019c92919062000490565b600060405180830381600087803b158015620001b757600080fd5b505af1158015620001cc573d6000803e3d6000fd5b505050506200030f565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000290576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200025692919062000490565b600060405180830381600087803b1580156200027157600080fd5b505af115801562000286573d6000803e3d6000fd5b505050506200030e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002d99190620004bd565b600060405180830381600087803b158015620002f457600080fd5b505af115801562000309573d6000803e3d6000fd5b505050505b5b5b5050816002908162000323919062000754565b50806003908162000335919062000754565b50620003466200037460201b60201c565b60008190555050506200036e620003626200037d60201b60201c565b6200038560201b60201c565b6200083b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000478826200044b565b9050919050565b6200048a816200046b565b82525050565b6000604082019050620004a760008301856200047f565b620004b660208301846200047f565b9392505050565b6000602082019050620004d460008301846200047f565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200055c57607f821691505b60208210810362000572576200057162000514565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005dc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200059d565b620005e886836200059d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006356200062f620006298462000600565b6200060a565b62000600565b9050919050565b6000819050919050565b620006518362000614565b6200066962000660826200063c565b848454620005aa565b825550505050565b600090565b6200068062000671565b6200068d81848462000646565b505050565b5b81811015620006b557620006a960008262000676565b60018101905062000693565b5050565b601f8211156200070457620006ce8162000578565b620006d9846200058d565b81016020851015620006e9578190505b62000701620006f8856200058d565b83018262000692565b50505b505050565b600082821c905092915050565b6000620007296000198460080262000709565b1980831691505092915050565b600062000744838362000716565b9150826002028217905092915050565b6200075f82620004da565b67ffffffffffffffff8111156200077b576200077a620004e5565b5b62000787825462000543565b62000794828285620006b9565b600060209050601f831160018114620007cc5760008415620007b7578287015190505b620007c3858262000736565b86555062000833565b601f198416620007dc8662000578565b60005b828110156200080657848901518255600182019150602085019450602081019050620007df565b8683101562000826578489015162000822601f89168262000716565b8355505b6001600288020188555050505b505050505050565b6157c4806200084b6000396000f3fe6080604052600436106102fe5760003560e01c80637ff9b59611610190578063ab275ef0116100dc578063c244c71011610095578063cdf4e8e71161006f578063cdf4e8e714610b63578063e985e9c514610ba0578063f2fde38b14610bdd578063fca3c86714610c06576102fe565b8063c244c71014610ac0578063c504a95014610afd578063c87b56dd14610b26576102fe565b8063ab275ef0146109cc578063b88d4fde146109f7578063ba6dd6f014610a13578063bbb33a9a14610a3e578063c18ccfbf14610a7b578063c1f2612314610a97576102fe565b806395d89b4111610149578063a0bcfc7f11610123578063a0bcfc7f14610912578063a22cb4651461093b578063a731fa2814610964578063aa98e0c6146109a1576102fe565b806395d89b411461087f57806395ea5e67146108aa5780639ce98ef2146108d5576102fe565b80637ff9b596146107835780638154ecee146107ae57806388bb4321146107d75780638a0d041f146108005780638b240efa146108295780638da5cb5b14610854576102fe565b806323b872dd1161024f57806361950aeb116102085780636cee9d23116101e25780636cee9d23146106dd57806370a0823114610706578063715018a6146107435780637c8255db1461075a576102fe565b806361950aeb1461064a5780636352211e146106755780636c0360eb146106b2576102fe565b806323b872dd1461057e5780633ac594041461059a5780633ccfd60b146105c357806342842e0e146105da57806342966c68146105f65780634b980d671461061f576102fe565b8063095ea7b3116102bc5780631ba5aacc116102965780631ba5aacc146104d15780631c16521c146104ed5780631d1021a01461052a578063230a9b8d14610553576102fe565b8063095ea7b31461044d5780630d1d420f1461046957806318160ddd146104a6576102fe565b806280f6d51461030357806301ffc9a7146103405780630345e3cb1461037d57806306fdde03146103ba57806307ebec27146103e5578063081812fc14610410575b600080fd5b34801561030f57600080fd5b5061032a60048036038101906103259190613e0d565b610c2f565b6040516103379190613e7b565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190613eee565b610c62565b6040516103749190613f36565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f9190613f7d565b610cf4565b6040516103b19190613fb9565b60405180910390f35b3480156103c657600080fd5b506103cf610d0c565b6040516103dc9190614064565b60405180910390f35b3480156103f157600080fd5b506103fa610d9e565b6040516104079190613f36565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613e0d565b610db1565b6040516104449190613e7b565b60405180910390f35b61046760048036038101906104629190614086565b610e30565b005b34801561047557600080fd5b50610490600480360381019061048b919061412b565b610f74565b60405161049d9190613f36565b60405180910390f35b3480156104b257600080fd5b506104bb611004565b6040516104c89190613fb9565b60405180910390f35b6104eb60048036038101906104e6919061418b565b61101b565b005b3480156104f957600080fd5b50610514600480360381019061050f9190613f7d565b61146d565b6040516105219190613fb9565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c9190614217565b611485565b005b34801561055f57600080fd5b506105686114aa565b6040516105759190613fb9565b60405180910390f35b61059860048036038101906105939190614244565b6114b0565b005b3480156105a657600080fd5b506105c160048036038101906105bc91906142cd565b611cb6565b005b3480156105cf57600080fd5b506105d8611cc8565b005b6105f460048036038101906105ef9190614244565b611d20565b005b34801561060257600080fd5b5061061d60048036038101906106189190613e0d565b611f22565b005b34801561062b57600080fd5b50610634612018565b6040516106419190613fb9565b60405180910390f35b34801561065657600080fd5b5061065f61201e565b60405161066c9190613f36565b60405180910390f35b34801561068157600080fd5b5061069c60048036038101906106979190613e0d565b612031565b6040516106a99190613e7b565b60405180910390f35b3480156106be57600080fd5b506106c7612043565b6040516106d49190614064565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190614217565b6120d1565b005b34801561071257600080fd5b5061072d60048036038101906107289190613f7d565b6120f6565b60405161073a9190613fb9565b60405180910390f35b34801561074f57600080fd5b506107586121ae565b005b34801561076657600080fd5b50610781600480360381019061077c9190614438565b6121c2565b005b34801561078f57600080fd5b5061079861226a565b6040516107a59190613fb9565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d09190613e0d565b612270565b005b3480156107e357600080fd5b506107fe60048036038101906107f99190614217565b612282565b005b34801561080c57600080fd5b5061082760048036038101906108229190614217565b6122a7565b005b34801561083557600080fd5b5061083e6122cc565b60405161084b9190613fb9565b60405180910390f35b34801561086057600080fd5b506108696122d2565b6040516108769190613e7b565b60405180910390f35b34801561088b57600080fd5b506108946122fc565b6040516108a19190614064565b60405180910390f35b3480156108b657600080fd5b506108bf61238e565b6040516108cc9190613f36565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f79190613e0d565b6123a1565b6040516109099190613f36565b60405180910390f35b34801561091e57600080fd5b5061093960048036038101906109349190614536565b6123c1565b005b34801561094757600080fd5b50610962600480360381019061095d919061457f565b6123dc565b005b34801561097057600080fd5b5061098b60048036038101906109869190613f7d565b6124e7565b6040516109989190613fb9565b60405180910390f35b3480156109ad57600080fd5b506109b66124ff565b6040516109c391906145ce565b60405180910390f35b3480156109d857600080fd5b506109e1612505565b6040516109ee91906145ce565b60405180910390f35b610a116004803603810190610a0c919061468a565b61250b565b005b348015610a1f57600080fd5b50610a286127b2565b604051610a359190613f36565b60405180910390f35b348015610a4a57600080fd5b50610a656004803603810190610a60919061412b565b6127c5565b604051610a729190613f36565b60405180910390f35b610a956004803603810190610a909190613e0d565b612855565b005b348015610aa357600080fd5b50610abe6004803603810190610ab99190613e0d565b612a3d565b005b348015610acc57600080fd5b50610ae76004803603810190610ae29190613f7d565b612aec565b604051610af49190613f36565b60405180910390f35b348015610b0957600080fd5b50610b246004803603810190610b1f91906142cd565b612b0c565b005b348015610b3257600080fd5b50610b4d6004803603810190610b489190613e0d565b612b1e565b604051610b5a9190614064565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b859190613f7d565b612bc6565b604051610b979190613fb9565b60405180910390f35b348015610bac57600080fd5b50610bc76004803603810190610bc2919061470d565b612ce0565b604051610bd49190613f36565b60405180910390f35b348015610be957600080fd5b50610c046004803603810190610bff9190613f7d565b612d74565b005b348015610c1257600080fd5b50610c2d6004803603810190610c28919061418b565b612df7565b005b60126020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cbd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ced5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60106020528060005260406000206000915090505481565b606060028054610d1b9061477c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d479061477c565b8015610d945780601f10610d6957610100808354040283529160200191610d94565b820191906000526020600020905b815481529060010190602001808311610d7757829003601f168201915b5050505050905090565b600a60039054906101000a900460ff1681565b6000610dbc82613090565b610df2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e3b82612031565b90508073ffffffffffffffffffffffffffffffffffffffff16610e5c6130ef565b73ffffffffffffffffffffffffffffffffffffffff1614610ebf57610e8881610e836130ef565b612ce0565b610ebe576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610fea838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5486604051602001610fcf91906147f5565b604051602081830303815290604052805190602001206130f7565b15610ff85760019050610ffd565b600090505b9392505050565b600061100e61310e565b6001546000540303905090565b600061102633612bc6565b905060011515600a60019054906101000a900460ff1615151461107e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107590614882565b60405180910390fd5b6110f2838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b54336040516020016110d791906147f5565b604051602081830303815290604052805190602001206130f7565b611131576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611128906148ee565b60405180910390fd5b601654841115611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90614980565b60405180910390fd5b61271084611182611004565b61118c91906149cf565b11156111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490614a4f565b60405180910390fd5b60165484601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461121b91906149cf565b111561125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390614ae1565b60405180910390fd5b6000810361131957836009546112729190614b01565b3410156112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90614b8f565b60405180910390fd5b6112be3385613117565b83601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461130d91906149cf565b92505081905550611467565b600a6009546113289190614bde565b846009546113369190614b01565b6113409190614c0f565b341015611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137990614b8f565b60405180910390fd5b61138c3385613117565b83601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113db91906149cf565b925050819055506001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016014600083815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50505050565b600f6020528060005260406000206000915090505481565b61148d613135565b80600a60036101000a81548160ff02191690831515021790555050565b60165481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611992573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361183457600061151d836131b3565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611584576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806115908561327f565b915091506115a681886115a16130ef565b6132a6565b6115f2576115bb876115b66130ef565b612ce0565b6115f1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603611658576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61166587878760016132ea565b801561167057600082555b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061173e8661171a8989876132f0565b7c020000000000000000000000000000000000000000000000000000000017613318565b600460008781526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036117c457600060018601905060006004600083815260200190815260200160002054036117c25760005481146117c1578360046000838152602001908152602001600020819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461182c8787876001613343565b505050611cb0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161187d929190614c43565b602060405180830381865afa15801561189a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118be9190614c81565b801561195057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161190e929190614c43565b602060405180830381865afa15801561192b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194f9190614c81565b5b61199157336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016119889190613e7b565b60405180910390fd5b5b600061199d836131b3565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a04576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611a108561327f565b91509150611a268188611a216130ef565b6132a6565b611a7257611a3b87611a366130ef565b612ce0565b611a71576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603611ad8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ae587878760016132ea565b8015611af057600082555b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611bbe86611b9a8989876132f0565b7c020000000000000000000000000000000000000000000000000000000017613318565b600460008781526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611c445760006001860190506000600460008381526020019081526020016000205403611c42576000548114611c41578360046000838152602001908152602001600020819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cac8787876001613343565b5050505b50505050565b611cbe613135565b80600c8190555050565b611cd0613135565b611cd86122d2565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611d1d573d6000803e3d6000fd5b50565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611f00573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611da257611d9d8484846040518060200160405280600081525061250b565b611f1c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611deb929190614c43565b602060405180830381865afa158015611e08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2c9190614c81565b8015611ebe57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611e7c929190614c43565b602060405180830381865afa158015611e99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ebd9190614c81565b5b611eff57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611ef69190613e7b565b60405180910390fd5b5b611f1b8484846040518060200160405280600081525061250b565b5b50505050565b600a60039054906101000a900460ff16611f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6890614cfa565b60405180910390fd5b611f7b3382613349565b611fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb190614d66565b60405180910390fd5b611fc381613427565b336012600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b600a60009054906101000a900460ff1681565b600061203c826131b3565b9050919050565b600e80546120509061477c565b80601f016020809104026020016040519081016040528092919081815260200182805461207c9061477c565b80156120c95780601f1061209e576101008083540402835291602001916120c9565b820191906000526020600020905b8154815290600101906020018083116120ac57829003601f168201915b505050505081565b6120d9613135565b80600a60026101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361215d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6121b6613135565b6121c06000613435565b565b6121ca613135565b61271081516121d7611004565b6121e191906149cf565b1115612222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221990614a4f565b60405180910390fd5b60005b81518110156122665761225382828151811061224457612243614d86565b5b60200260200101516001613117565b808061225e90614db5565b915050612225565b5050565b60095481565b612278613135565b8060098190555050565b61228a613135565b80600a60016101000a81548160ff02191690831515021790555050565b6122af613135565b80600a60006101000a81548160ff02191690831515021790555050565b60175481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461230b9061477c565b80601f01602080910402602001604051908101604052809291908181526020018280546123379061477c565b80156123845780601f1061235957610100808354040283529160200191612384565b820191906000526020600020905b81548152906001019060200180831161236757829003601f168201915b5050505050905090565b600a60029054906101000a900460ff1681565b60146020528060005260406000206000915054906101000a900460ff1681565b6123c9613135565b80600e90816123d89190614fa9565b5050565b80600760006123e96130ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166124966130ef565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124db9190613f36565b60405180910390a35050565b60116020528060005260406000206000915090505481565b600b5481565b600c5481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561273d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125df576125788585856114b0565b60008473ffffffffffffffffffffffffffffffffffffffff163b146125da576125a3858585856134fb565b6125d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6127ab565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401612628929190614c43565b602060405180830381865afa158015612645573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126699190614c81565b80156126fb57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016126b9929190614c43565b602060405180830381865afa1580156126d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126fa9190614c81565b5b61273c57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016127339190613e7b565b60405180910390fd5b5b6127488585856114b0565b60008473ffffffffffffffffffffffffffffffffffffffff163b146127aa57612773858585856134fb565b6127a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b5050505050565b600a60019054906101000a900460ff1681565b600061283b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b548660405160200161282091906147f5565b604051602081830303815290604052805190602001206130f7565b15612849576001905061284e565b600090505b9392505050565b60011515600a60029054906101000a900460ff161515146128ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a2906150c7565b60405180910390fd5b600081116128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590615133565b60405180910390fd5b612710816128fa611004565b61290491906149cf565b1115612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c90614a4f565b60405180910390fd5b806009546129539190614b01565b341015612995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298c90614b8f565b60405180910390fd5b6015548111156129da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d1906151c5565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a2991906149cf565b92505081905550612a3a3382613117565b50565b612a45613135565b60008111612a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7f90615133565b60405180910390fd5b61271081612a94611004565b612a9e91906149cf565b1115612adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad690614a4f565b60405180910390fd5b612ae93382613117565b50565b60136020528060005260406000206000915054906101000a900460ff1681565b612b14613135565b80600b8190555050565b6060612b2982613090565b612b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5f90615257565b60405180910390fd5b6000600e8054612b779061477c565b905011612b935760405180602001604052806000815250612bbf565b600e612b9e8361364b565b604051602001612baf929190615382565b6040516020818303038152906040525b9050919050565b6000806000905060006107d090506107d0612bdf611004565b1015612bf057612bed611004565b90505b6000600190505b818111612cd5578473ffffffffffffffffffffffffffffffffffffffff16612c1e82612031565b73ffffffffffffffffffffffffffffffffffffffff16148015612c8b5750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612cb557506014600082815260200190815260200160002060009054906101000a900460ff16155b15612cc257809250612cd5565b8080612ccd90614db5565b915050612bf7565b508192505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612d7c613135565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de290615423565b60405180910390fd5b612df481613435565b50565b60011515600a60009054906101000a900460ff16151514612e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4490614882565b60405180910390fd5b612ec1828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5433604051602001612ea691906147f5565b604051602081830303815290604052805190602001206130f7565b612f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef7906148ee565b60405180910390fd5b601754831115612f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3c9061548f565b60405180910390fd5b6107d083612f51611004565b612f5b91906149cf565b1115612f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f93906154fb565b60405180910390fd5b60175483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fea91906149cf565b111561302b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130229061558d565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461307a91906149cf565b9250508190555061308b3384613117565b505050565b60008161309b61310e565b111580156130aa575060005482105b80156130e8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000826131048584613719565b1490509392505050565b60006001905090565b61313182826040518060200160405280600081525061378e565b5050565b61313d61382b565b73ffffffffffffffffffffffffffffffffffffffff1661315b6122d2565b73ffffffffffffffffffffffffffffffffffffffff16146131b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a8906155f9565b60405180910390fd5b565b600080829050806131c261310e565b11613248576000548110156132475760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603613245575b6000810361323b576004600083600190039350838152602001908152602001600020549050613211565b809250505061327a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613307868684613833565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600061335482613090565b613393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338a9061568b565b60405180910390fd5b600061339e83612031565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061340d57508373ffffffffffffffffffffffffffffffffffffffff166133f584610db1565b73ffffffffffffffffffffffffffffffffffffffff16145b8061341e575061341d8185612ce0565b5b91505092915050565b61343281600061383c565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135216130ef565b8786866040518563ffffffff1660e01b81526004016135439493929190615700565b6020604051808303816000875af192505050801561357f57506040513d601f19601f8201168201806040525081019061357c9190615761565b60015b6135f8573d80600081146135af576040519150601f19603f3d011682016040523d82523d6000602084013e6135b4565b606091505b5060008151036135f0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000600161365a84613a8e565b01905060008167ffffffffffffffff811115613679576136786142fa565b5b6040519080825280601f01601f1916602001820160405280156136ab5781602001600182028036833780820191505090505b509050600082602001820190505b60011561370e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161370257613701614baf565b5b049450600085036136b9575b819350505050919050565b60008082905060005b84518110156137835760008582815181106137405761373f614d86565b5b602002602001015190508083116137625761375b8382613be1565b925061376f565b61376c8184613be1565b92505b50808061377b90614db5565b915050613722565b508091505092915050565b6137988383613bf8565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461382657600080549050600083820390505b6137d860008683806001019450866134fb565b61380e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106137c557816000541461382357600080fd5b50505b505050565b600033905090565b60009392505050565b6000613847836131b3565b9050600081905060008061385a8661327f565b9150915084156138c35761387681846138716130ef565b6132a6565b6138c25761388b836138866130ef565b612ce0565b6138c1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6138d18360008860016132ea565b80156138dc57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061398483613941856000886132f0565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717613318565b600460008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851603613a0a5760006001870190506000600460008381526020019081526020016000205403613a08576000548114613a07578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a74836000886001613343565b600160008154809291906001019190505550505050505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613aec577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381613ae257613ae1614baf565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613b29576d04ee2d6d415b85acef81000000008381613b1f57613b1e614baf565b5b0492506020810190505b662386f26fc100008310613b5857662386f26fc100008381613b4e57613b4d614baf565b5b0492506010810190505b6305f5e1008310613b81576305f5e1008381613b7757613b76614baf565b5b0492506008810190505b6127108310613ba6576127108381613b9c57613b9b614baf565b5b0492506004810190505b60648310613bc95760648381613bbf57613bbe614baf565b5b0492506002810190505b600a8310613bd8576001810190505b80915050919050565b600082600052816020526040600020905092915050565b60008054905060008203613c38576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613c4560008483856132ea565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613cbc83613cad60008660006132f0565b613cb685613db3565b17613318565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613d5d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613d22565b5060008203613d98576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613dae6000848385613343565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b613dea81613dd7565b8114613df557600080fd5b50565b600081359050613e0781613de1565b92915050565b600060208284031215613e2357613e22613dcd565b5b6000613e3184828501613df8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e6582613e3a565b9050919050565b613e7581613e5a565b82525050565b6000602082019050613e906000830184613e6c565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613ecb81613e96565b8114613ed657600080fd5b50565b600081359050613ee881613ec2565b92915050565b600060208284031215613f0457613f03613dcd565b5b6000613f1284828501613ed9565b91505092915050565b60008115159050919050565b613f3081613f1b565b82525050565b6000602082019050613f4b6000830184613f27565b92915050565b613f5a81613e5a565b8114613f6557600080fd5b50565b600081359050613f7781613f51565b92915050565b600060208284031215613f9357613f92613dcd565b5b6000613fa184828501613f68565b91505092915050565b613fb381613dd7565b82525050565b6000602082019050613fce6000830184613faa565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561400e578082015181840152602081019050613ff3565b60008484015250505050565b6000601f19601f8301169050919050565b600061403682613fd4565b6140408185613fdf565b9350614050818560208601613ff0565b6140598161401a565b840191505092915050565b6000602082019050818103600083015261407e818461402b565b905092915050565b6000806040838503121561409d5761409c613dcd565b5b60006140ab85828601613f68565b92505060206140bc85828601613df8565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126140eb576140ea6140c6565b5b8235905067ffffffffffffffff811115614108576141076140cb565b5b602083019150836020820283011115614124576141236140d0565b5b9250929050565b60008060006040848603121561414457614143613dcd565b5b600061415286828701613f68565b935050602084013567ffffffffffffffff81111561417357614172613dd2565b5b61417f868287016140d5565b92509250509250925092565b6000806000604084860312156141a4576141a3613dcd565b5b60006141b286828701613df8565b935050602084013567ffffffffffffffff8111156141d3576141d2613dd2565b5b6141df868287016140d5565b92509250509250925092565b6141f481613f1b565b81146141ff57600080fd5b50565b600081359050614211816141eb565b92915050565b60006020828403121561422d5761422c613dcd565b5b600061423b84828501614202565b91505092915050565b60008060006060848603121561425d5761425c613dcd565b5b600061426b86828701613f68565b935050602061427c86828701613f68565b925050604061428d86828701613df8565b9150509250925092565b6000819050919050565b6142aa81614297565b81146142b557600080fd5b50565b6000813590506142c7816142a1565b92915050565b6000602082840312156142e3576142e2613dcd565b5b60006142f1848285016142b8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6143328261401a565b810181811067ffffffffffffffff82111715614351576143506142fa565b5b80604052505050565b6000614364613dc3565b90506143708282614329565b919050565b600067ffffffffffffffff8211156143905761438f6142fa565b5b602082029050602081019050919050565b60006143b46143af84614375565b61435a565b905080838252602082019050602084028301858111156143d7576143d66140d0565b5b835b8181101561440057806143ec8882613f68565b8452602084019350506020810190506143d9565b5050509392505050565b600082601f83011261441f5761441e6140c6565b5b813561442f8482602086016143a1565b91505092915050565b60006020828403121561444e5761444d613dcd565b5b600082013567ffffffffffffffff81111561446c5761446b613dd2565b5b6144788482850161440a565b91505092915050565b600080fd5b600067ffffffffffffffff8211156144a1576144a06142fa565b5b6144aa8261401a565b9050602081019050919050565b82818337600083830152505050565b60006144d96144d484614486565b61435a565b9050828152602081018484840111156144f5576144f4614481565b5b6145008482856144b7565b509392505050565b600082601f83011261451d5761451c6140c6565b5b813561452d8482602086016144c6565b91505092915050565b60006020828403121561454c5761454b613dcd565b5b600082013567ffffffffffffffff81111561456a57614569613dd2565b5b61457684828501614508565b91505092915050565b6000806040838503121561459657614595613dcd565b5b60006145a485828601613f68565b92505060206145b585828601614202565b9150509250929050565b6145c881614297565b82525050565b60006020820190506145e360008301846145bf565b92915050565b600067ffffffffffffffff821115614604576146036142fa565b5b61460d8261401a565b9050602081019050919050565b600061462d614628846145e9565b61435a565b90508281526020810184848401111561464957614648614481565b5b6146548482856144b7565b509392505050565b600082601f830112614671576146706140c6565b5b813561468184826020860161461a565b91505092915050565b600080600080608085870312156146a4576146a3613dcd565b5b60006146b287828801613f68565b94505060206146c387828801613f68565b93505060406146d487828801613df8565b925050606085013567ffffffffffffffff8111156146f5576146f4613dd2565b5b6147018782880161465c565b91505092959194509250565b6000806040838503121561472457614723613dcd565b5b600061473285828601613f68565b925050602061474385828601613f68565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061479457607f821691505b6020821081036147a7576147a661474d565b5b50919050565b60008160601b9050919050565b60006147c5826147ad565b9050919050565b60006147d7826147ba565b9050919050565b6147ef6147ea82613e5a565b6147cc565b82525050565b600061480182846147de565b60148201915081905092915050565b7f544845204d41474943204d494e5420484153204e4f542053544152544544205960008201527f4554000000000000000000000000000000000000000000000000000000000000602082015250565b600061486c602283613fdf565b915061487782614810565b604082019050919050565b6000602082019050818103600083015261489b8161485f565b9050919050565b7f594f55522057414c4c4554204953204e4f542057484954454c49535445440000600082015250565b60006148d8601e83613fdf565b91506148e3826148a2565b602082019050919050565b60006020820190508181036000830152614907816148cb565b9050919050565b7f4f4e4c592032204e454f50485954455320414c4c4f574544205045522054524160008201527f4e53414354494f4e000000000000000000000000000000000000000000000000602082015250565b600061496a602883613fdf565b91506149758261490e565b604082019050919050565b600060208201905081810360008301526149998161495d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149da82613dd7565b91506149e583613dd7565b92508282019050808211156149fd576149fc6149a0565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000614a39600983613fdf565b9150614a4482614a03565b602082019050919050565b60006020820190508181036000830152614a6881614a2c565b9050919050565b7f4f4e4c592032204e454f50485954455320414c4c4f574544205045522057414c60008201527f4c45540000000000000000000000000000000000000000000000000000000000602082015250565b6000614acb602383613fdf565b9150614ad682614a6f565b604082019050919050565b60006020820190508181036000830152614afa81614abe565b9050919050565b6000614b0c82613dd7565b9150614b1783613dd7565b9250828202614b2581613dd7565b91508282048414831517614b3c57614b3b6149a0565b5b5092915050565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b6000614b79601683613fdf565b9150614b8482614b43565b602082019050919050565b60006020820190508181036000830152614ba881614b6c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614be982613dd7565b9150614bf483613dd7565b925082614c0457614c03614baf565b5b828204905092915050565b6000614c1a82613dd7565b9150614c2583613dd7565b9250828203905081811115614c3d57614c3c6149a0565b5b92915050565b6000604082019050614c586000830185613e6c565b614c656020830184613e6c565b9392505050565b600081519050614c7b816141eb565b92915050565b600060208284031215614c9757614c96613dcd565b5b6000614ca584828501614c6c565b91505092915050565b7f6275726e696e672064697361626c656400000000000000000000000000000000600082015250565b6000614ce4601083613fdf565b9150614cef82614cae565b602082019050919050565b60006020820190508181036000830152614d1381614cd7565b9050919050565b7f6275726e2063616c6c6572206973206e6f7420617070726f7665640000000000600082015250565b6000614d50601b83613fdf565b9150614d5b82614d1a565b602082019050919050565b60006020820190508181036000830152614d7f81614d43565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614dc082613dd7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614df257614df16149a0565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614e5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614e22565b614e698683614e22565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614ea6614ea1614e9c84613dd7565b614e81565b613dd7565b9050919050565b6000819050919050565b614ec083614e8b565b614ed4614ecc82614ead565b848454614e2f565b825550505050565b600090565b614ee9614edc565b614ef4818484614eb7565b505050565b5b81811015614f1857614f0d600082614ee1565b600181019050614efa565b5050565b601f821115614f5d57614f2e81614dfd565b614f3784614e12565b81016020851015614f46578190505b614f5a614f5285614e12565b830182614ef9565b50505b505050565b600082821c905092915050565b6000614f8060001984600802614f62565b1980831691505092915050565b6000614f998383614f6f565b9150826002028217905092915050565b614fb282613fd4565b67ffffffffffffffff811115614fcb57614fca6142fa565b5b614fd5825461477c565b614fe0828285614f1c565b600060209050601f8311600181146150135760008415615001578287015190505b61500b8582614f8d565b865550615073565b601f19841661502186614dfd565b60005b8281101561504957848901518255600182019150602085019450602081019050615024565b868310156150665784890151615062601f891682614f6f565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b60006150b1600f83613fdf565b91506150bc8261507b565b602082019050919050565b600060208201905081810360008301526150e0816150a4565b9050919050565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b600061511d601783613fdf565b9150615128826150e7565b602082019050919050565b6000602082019050818103600083015261514c81615110565b9050919050565b7f4f4e4c592035204e454f50485954455320414c4c4f574544205045522054524160008201527f4e53414354494f4e000000000000000000000000000000000000000000000000602082015250565b60006151af602883613fdf565b91506151ba82615153565b604082019050919050565b600060208201905081810360008301526151de816151a2565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615241602f83613fdf565b915061524c826151e5565b604082019050919050565b6000602082019050818103600083015261527081615234565b9050919050565b600081905092915050565b6000815461528f8161477c565b6152998186615277565b945060018216600081146152b457600181146152c9576152fc565b60ff19831686528115158202860193506152fc565b6152d285614dfd565b60005b838110156152f4578154818901526001820191506020810190506152d5565b838801955050505b50505092915050565b600061531082613fd4565b61531a8185615277565b935061532a818560208601613ff0565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061536c600583615277565b915061537782615336565b600582019050919050565b600061538e8285615282565b915061539a8284615305565b91506153a58261535f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061540d602683613fdf565b9150615418826153b1565b604082019050919050565b6000602082019050818103600083015261543c81615400565b9050919050565b7f6d617820706572207472616e73616374696f6e20310000000000000000000000600082015250565b6000615479601583613fdf565b915061548482615443565b602082019050919050565b600060208201905081810360008301526154a88161546c565b9050919050565b7f47656e6573697320436f6c6c656374696f6e20536f6c64206f75740000000000600082015250565b60006154e5601b83613fdf565b91506154f0826154af565b602082019050919050565b60006020820190508181036000830152615514816154d8565b9050919050565b7f4f4e4c5920312047454e45534953204e454f504859544520414c4c4f5745442060008201527f5045522057414c4c455400000000000000000000000000000000000000000000602082015250565b6000615577602a83613fdf565b91506155828261551b565b604082019050919050565b600060208201905081810360008301526155a68161556a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006155e3602083613fdf565b91506155ee826155ad565b602082019050919050565b60006020820190508181036000830152615612816155d6565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615675602c83613fdf565b915061568082615619565b604082019050919050565b600060208201905081810360008301526156a481615668565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006156d2826156ab565b6156dc81856156b6565b93506156ec818560208601613ff0565b6156f58161401a565b840191505092915050565b60006080820190506157156000830187613e6c565b6157226020830186613e6c565b61572f6040830185613faa565b818103606083015261574181846156c7565b905095945050505050565b60008151905061575b81613ec2565b92915050565b60006020828403121561577757615776613dcd565b5b60006157858482850161574c565b9150509291505056fea2646970667358221220390ac488151c4d50df5d2d22bdf5e8694923ad2747ef14039f184308950e226e64736f6c63430008110033
Deployed Bytecode
0x6080604052600436106102fe5760003560e01c80637ff9b59611610190578063ab275ef0116100dc578063c244c71011610095578063cdf4e8e71161006f578063cdf4e8e714610b63578063e985e9c514610ba0578063f2fde38b14610bdd578063fca3c86714610c06576102fe565b8063c244c71014610ac0578063c504a95014610afd578063c87b56dd14610b26576102fe565b8063ab275ef0146109cc578063b88d4fde146109f7578063ba6dd6f014610a13578063bbb33a9a14610a3e578063c18ccfbf14610a7b578063c1f2612314610a97576102fe565b806395d89b4111610149578063a0bcfc7f11610123578063a0bcfc7f14610912578063a22cb4651461093b578063a731fa2814610964578063aa98e0c6146109a1576102fe565b806395d89b411461087f57806395ea5e67146108aa5780639ce98ef2146108d5576102fe565b80637ff9b596146107835780638154ecee146107ae57806388bb4321146107d75780638a0d041f146108005780638b240efa146108295780638da5cb5b14610854576102fe565b806323b872dd1161024f57806361950aeb116102085780636cee9d23116101e25780636cee9d23146106dd57806370a0823114610706578063715018a6146107435780637c8255db1461075a576102fe565b806361950aeb1461064a5780636352211e146106755780636c0360eb146106b2576102fe565b806323b872dd1461057e5780633ac594041461059a5780633ccfd60b146105c357806342842e0e146105da57806342966c68146105f65780634b980d671461061f576102fe565b8063095ea7b3116102bc5780631ba5aacc116102965780631ba5aacc146104d15780631c16521c146104ed5780631d1021a01461052a578063230a9b8d14610553576102fe565b8063095ea7b31461044d5780630d1d420f1461046957806318160ddd146104a6576102fe565b806280f6d51461030357806301ffc9a7146103405780630345e3cb1461037d57806306fdde03146103ba57806307ebec27146103e5578063081812fc14610410575b600080fd5b34801561030f57600080fd5b5061032a60048036038101906103259190613e0d565b610c2f565b6040516103379190613e7b565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190613eee565b610c62565b6040516103749190613f36565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f9190613f7d565b610cf4565b6040516103b19190613fb9565b60405180910390f35b3480156103c657600080fd5b506103cf610d0c565b6040516103dc9190614064565b60405180910390f35b3480156103f157600080fd5b506103fa610d9e565b6040516104079190613f36565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613e0d565b610db1565b6040516104449190613e7b565b60405180910390f35b61046760048036038101906104629190614086565b610e30565b005b34801561047557600080fd5b50610490600480360381019061048b919061412b565b610f74565b60405161049d9190613f36565b60405180910390f35b3480156104b257600080fd5b506104bb611004565b6040516104c89190613fb9565b60405180910390f35b6104eb60048036038101906104e6919061418b565b61101b565b005b3480156104f957600080fd5b50610514600480360381019061050f9190613f7d565b61146d565b6040516105219190613fb9565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c9190614217565b611485565b005b34801561055f57600080fd5b506105686114aa565b6040516105759190613fb9565b60405180910390f35b61059860048036038101906105939190614244565b6114b0565b005b3480156105a657600080fd5b506105c160048036038101906105bc91906142cd565b611cb6565b005b3480156105cf57600080fd5b506105d8611cc8565b005b6105f460048036038101906105ef9190614244565b611d20565b005b34801561060257600080fd5b5061061d60048036038101906106189190613e0d565b611f22565b005b34801561062b57600080fd5b50610634612018565b6040516106419190613fb9565b60405180910390f35b34801561065657600080fd5b5061065f61201e565b60405161066c9190613f36565b60405180910390f35b34801561068157600080fd5b5061069c60048036038101906106979190613e0d565b612031565b6040516106a99190613e7b565b60405180910390f35b3480156106be57600080fd5b506106c7612043565b6040516106d49190614064565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190614217565b6120d1565b005b34801561071257600080fd5b5061072d60048036038101906107289190613f7d565b6120f6565b60405161073a9190613fb9565b60405180910390f35b34801561074f57600080fd5b506107586121ae565b005b34801561076657600080fd5b50610781600480360381019061077c9190614438565b6121c2565b005b34801561078f57600080fd5b5061079861226a565b6040516107a59190613fb9565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d09190613e0d565b612270565b005b3480156107e357600080fd5b506107fe60048036038101906107f99190614217565b612282565b005b34801561080c57600080fd5b5061082760048036038101906108229190614217565b6122a7565b005b34801561083557600080fd5b5061083e6122cc565b60405161084b9190613fb9565b60405180910390f35b34801561086057600080fd5b506108696122d2565b6040516108769190613e7b565b60405180910390f35b34801561088b57600080fd5b506108946122fc565b6040516108a19190614064565b60405180910390f35b3480156108b657600080fd5b506108bf61238e565b6040516108cc9190613f36565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f79190613e0d565b6123a1565b6040516109099190613f36565b60405180910390f35b34801561091e57600080fd5b5061093960048036038101906109349190614536565b6123c1565b005b34801561094757600080fd5b50610962600480360381019061095d919061457f565b6123dc565b005b34801561097057600080fd5b5061098b60048036038101906109869190613f7d565b6124e7565b6040516109989190613fb9565b60405180910390f35b3480156109ad57600080fd5b506109b66124ff565b6040516109c391906145ce565b60405180910390f35b3480156109d857600080fd5b506109e1612505565b6040516109ee91906145ce565b60405180910390f35b610a116004803603810190610a0c919061468a565b61250b565b005b348015610a1f57600080fd5b50610a286127b2565b604051610a359190613f36565b60405180910390f35b348015610a4a57600080fd5b50610a656004803603810190610a60919061412b565b6127c5565b604051610a729190613f36565b60405180910390f35b610a956004803603810190610a909190613e0d565b612855565b005b348015610aa357600080fd5b50610abe6004803603810190610ab99190613e0d565b612a3d565b005b348015610acc57600080fd5b50610ae76004803603810190610ae29190613f7d565b612aec565b604051610af49190613f36565b60405180910390f35b348015610b0957600080fd5b50610b246004803603810190610b1f91906142cd565b612b0c565b005b348015610b3257600080fd5b50610b4d6004803603810190610b489190613e0d565b612b1e565b604051610b5a9190614064565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b859190613f7d565b612bc6565b604051610b979190613fb9565b60405180910390f35b348015610bac57600080fd5b50610bc76004803603810190610bc2919061470d565b612ce0565b604051610bd49190613f36565b60405180910390f35b348015610be957600080fd5b50610c046004803603810190610bff9190613f7d565b612d74565b005b348015610c1257600080fd5b50610c2d6004803603810190610c28919061418b565b612df7565b005b60126020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cbd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ced5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60106020528060005260406000206000915090505481565b606060028054610d1b9061477c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d479061477c565b8015610d945780601f10610d6957610100808354040283529160200191610d94565b820191906000526020600020905b815481529060010190602001808311610d7757829003601f168201915b5050505050905090565b600a60039054906101000a900460ff1681565b6000610dbc82613090565b610df2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e3b82612031565b90508073ffffffffffffffffffffffffffffffffffffffff16610e5c6130ef565b73ffffffffffffffffffffffffffffffffffffffff1614610ebf57610e8881610e836130ef565b612ce0565b610ebe576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610fea838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5486604051602001610fcf91906147f5565b604051602081830303815290604052805190602001206130f7565b15610ff85760019050610ffd565b600090505b9392505050565b600061100e61310e565b6001546000540303905090565b600061102633612bc6565b905060011515600a60019054906101000a900460ff1615151461107e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107590614882565b60405180910390fd5b6110f2838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b54336040516020016110d791906147f5565b604051602081830303815290604052805190602001206130f7565b611131576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611128906148ee565b60405180910390fd5b601654841115611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90614980565b60405180910390fd5b61271084611182611004565b61118c91906149cf565b11156111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490614a4f565b60405180910390fd5b60165484601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461121b91906149cf565b111561125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390614ae1565b60405180910390fd5b6000810361131957836009546112729190614b01565b3410156112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90614b8f565b60405180910390fd5b6112be3385613117565b83601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461130d91906149cf565b92505081905550611467565b600a6009546113289190614bde565b846009546113369190614b01565b6113409190614c0f565b341015611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137990614b8f565b60405180910390fd5b61138c3385613117565b83601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113db91906149cf565b925050819055506001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016014600083815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50505050565b600f6020528060005260406000206000915090505481565b61148d613135565b80600a60036101000a81548160ff02191690831515021790555050565b60165481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611992573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361183457600061151d836131b3565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611584576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806115908561327f565b915091506115a681886115a16130ef565b6132a6565b6115f2576115bb876115b66130ef565b612ce0565b6115f1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603611658576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61166587878760016132ea565b801561167057600082555b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061173e8661171a8989876132f0565b7c020000000000000000000000000000000000000000000000000000000017613318565b600460008781526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036117c457600060018601905060006004600083815260200190815260200160002054036117c25760005481146117c1578360046000838152602001908152602001600020819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461182c8787876001613343565b505050611cb0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161187d929190614c43565b602060405180830381865afa15801561189a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118be9190614c81565b801561195057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161190e929190614c43565b602060405180830381865afa15801561192b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194f9190614c81565b5b61199157336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016119889190613e7b565b60405180910390fd5b5b600061199d836131b3565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a04576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611a108561327f565b91509150611a268188611a216130ef565b6132a6565b611a7257611a3b87611a366130ef565b612ce0565b611a71576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603611ad8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ae587878760016132ea565b8015611af057600082555b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611bbe86611b9a8989876132f0565b7c020000000000000000000000000000000000000000000000000000000017613318565b600460008781526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611c445760006001860190506000600460008381526020019081526020016000205403611c42576000548114611c41578360046000838152602001908152602001600020819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cac8787876001613343565b5050505b50505050565b611cbe613135565b80600c8190555050565b611cd0613135565b611cd86122d2565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611d1d573d6000803e3d6000fd5b50565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611f00573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611da257611d9d8484846040518060200160405280600081525061250b565b611f1c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611deb929190614c43565b602060405180830381865afa158015611e08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2c9190614c81565b8015611ebe57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611e7c929190614c43565b602060405180830381865afa158015611e99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ebd9190614c81565b5b611eff57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611ef69190613e7b565b60405180910390fd5b5b611f1b8484846040518060200160405280600081525061250b565b5b50505050565b600a60039054906101000a900460ff16611f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6890614cfa565b60405180910390fd5b611f7b3382613349565b611fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb190614d66565b60405180910390fd5b611fc381613427565b336012600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b600a60009054906101000a900460ff1681565b600061203c826131b3565b9050919050565b600e80546120509061477c565b80601f016020809104026020016040519081016040528092919081815260200182805461207c9061477c565b80156120c95780601f1061209e576101008083540402835291602001916120c9565b820191906000526020600020905b8154815290600101906020018083116120ac57829003601f168201915b505050505081565b6120d9613135565b80600a60026101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361215d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6121b6613135565b6121c06000613435565b565b6121ca613135565b61271081516121d7611004565b6121e191906149cf565b1115612222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221990614a4f565b60405180910390fd5b60005b81518110156122665761225382828151811061224457612243614d86565b5b60200260200101516001613117565b808061225e90614db5565b915050612225565b5050565b60095481565b612278613135565b8060098190555050565b61228a613135565b80600a60016101000a81548160ff02191690831515021790555050565b6122af613135565b80600a60006101000a81548160ff02191690831515021790555050565b60175481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461230b9061477c565b80601f01602080910402602001604051908101604052809291908181526020018280546123379061477c565b80156123845780601f1061235957610100808354040283529160200191612384565b820191906000526020600020905b81548152906001019060200180831161236757829003601f168201915b5050505050905090565b600a60029054906101000a900460ff1681565b60146020528060005260406000206000915054906101000a900460ff1681565b6123c9613135565b80600e90816123d89190614fa9565b5050565b80600760006123e96130ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166124966130ef565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124db9190613f36565b60405180910390a35050565b60116020528060005260406000206000915090505481565b600b5481565b600c5481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561273d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125df576125788585856114b0565b60008473ffffffffffffffffffffffffffffffffffffffff163b146125da576125a3858585856134fb565b6125d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6127ab565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401612628929190614c43565b602060405180830381865afa158015612645573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126699190614c81565b80156126fb57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016126b9929190614c43565b602060405180830381865afa1580156126d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126fa9190614c81565b5b61273c57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016127339190613e7b565b60405180910390fd5b5b6127488585856114b0565b60008473ffffffffffffffffffffffffffffffffffffffff163b146127aa57612773858585856134fb565b6127a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b5050505050565b600a60019054906101000a900460ff1681565b600061283b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b548660405160200161282091906147f5565b604051602081830303815290604052805190602001206130f7565b15612849576001905061284e565b600090505b9392505050565b60011515600a60029054906101000a900460ff161515146128ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a2906150c7565b60405180910390fd5b600081116128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590615133565b60405180910390fd5b612710816128fa611004565b61290491906149cf565b1115612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c90614a4f565b60405180910390fd5b806009546129539190614b01565b341015612995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298c90614b8f565b60405180910390fd5b6015548111156129da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d1906151c5565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a2991906149cf565b92505081905550612a3a3382613117565b50565b612a45613135565b60008111612a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7f90615133565b60405180910390fd5b61271081612a94611004565b612a9e91906149cf565b1115612adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad690614a4f565b60405180910390fd5b612ae93382613117565b50565b60136020528060005260406000206000915054906101000a900460ff1681565b612b14613135565b80600b8190555050565b6060612b2982613090565b612b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5f90615257565b60405180910390fd5b6000600e8054612b779061477c565b905011612b935760405180602001604052806000815250612bbf565b600e612b9e8361364b565b604051602001612baf929190615382565b6040516020818303038152906040525b9050919050565b6000806000905060006107d090506107d0612bdf611004565b1015612bf057612bed611004565b90505b6000600190505b818111612cd5578473ffffffffffffffffffffffffffffffffffffffff16612c1e82612031565b73ffffffffffffffffffffffffffffffffffffffff16148015612c8b5750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612cb557506014600082815260200190815260200160002060009054906101000a900460ff16155b15612cc257809250612cd5565b8080612ccd90614db5565b915050612bf7565b508192505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612d7c613135565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de290615423565b60405180910390fd5b612df481613435565b50565b60011515600a60009054906101000a900460ff16151514612e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4490614882565b60405180910390fd5b612ec1828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5433604051602001612ea691906147f5565b604051602081830303815290604052805190602001206130f7565b612f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef7906148ee565b60405180910390fd5b601754831115612f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3c9061548f565b60405180910390fd5b6107d083612f51611004565b612f5b91906149cf565b1115612f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f93906154fb565b60405180910390fd5b60175483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fea91906149cf565b111561302b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130229061558d565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461307a91906149cf565b9250508190555061308b3384613117565b505050565b60008161309b61310e565b111580156130aa575060005482105b80156130e8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000826131048584613719565b1490509392505050565b60006001905090565b61313182826040518060200160405280600081525061378e565b5050565b61313d61382b565b73ffffffffffffffffffffffffffffffffffffffff1661315b6122d2565b73ffffffffffffffffffffffffffffffffffffffff16146131b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a8906155f9565b60405180910390fd5b565b600080829050806131c261310e565b11613248576000548110156132475760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603613245575b6000810361323b576004600083600190039350838152602001908152602001600020549050613211565b809250505061327a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613307868684613833565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600061335482613090565b613393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338a9061568b565b60405180910390fd5b600061339e83612031565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061340d57508373ffffffffffffffffffffffffffffffffffffffff166133f584610db1565b73ffffffffffffffffffffffffffffffffffffffff16145b8061341e575061341d8185612ce0565b5b91505092915050565b61343281600061383c565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135216130ef565b8786866040518563ffffffff1660e01b81526004016135439493929190615700565b6020604051808303816000875af192505050801561357f57506040513d601f19601f8201168201806040525081019061357c9190615761565b60015b6135f8573d80600081146135af576040519150601f19603f3d011682016040523d82523d6000602084013e6135b4565b606091505b5060008151036135f0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000600161365a84613a8e565b01905060008167ffffffffffffffff811115613679576136786142fa565b5b6040519080825280601f01601f1916602001820160405280156136ab5781602001600182028036833780820191505090505b509050600082602001820190505b60011561370e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161370257613701614baf565b5b049450600085036136b9575b819350505050919050565b60008082905060005b84518110156137835760008582815181106137405761373f614d86565b5b602002602001015190508083116137625761375b8382613be1565b925061376f565b61376c8184613be1565b92505b50808061377b90614db5565b915050613722565b508091505092915050565b6137988383613bf8565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461382657600080549050600083820390505b6137d860008683806001019450866134fb565b61380e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106137c557816000541461382357600080fd5b50505b505050565b600033905090565b60009392505050565b6000613847836131b3565b9050600081905060008061385a8661327f565b9150915084156138c35761387681846138716130ef565b6132a6565b6138c25761388b836138866130ef565b612ce0565b6138c1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6138d18360008860016132ea565b80156138dc57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061398483613941856000886132f0565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717613318565b600460008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851603613a0a5760006001870190506000600460008381526020019081526020016000205403613a08576000548114613a07578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a74836000886001613343565b600160008154809291906001019190505550505050505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613aec577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381613ae257613ae1614baf565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613b29576d04ee2d6d415b85acef81000000008381613b1f57613b1e614baf565b5b0492506020810190505b662386f26fc100008310613b5857662386f26fc100008381613b4e57613b4d614baf565b5b0492506010810190505b6305f5e1008310613b81576305f5e1008381613b7757613b76614baf565b5b0492506008810190505b6127108310613ba6576127108381613b9c57613b9b614baf565b5b0492506004810190505b60648310613bc95760648381613bbf57613bbe614baf565b5b0492506002810190505b600a8310613bd8576001810190505b80915050919050565b600082600052816020526040600020905092915050565b60008054905060008203613c38576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613c4560008483856132ea565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613cbc83613cad60008660006132f0565b613cb685613db3565b17613318565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613d5d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613d22565b5060008203613d98576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613dae6000848385613343565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b613dea81613dd7565b8114613df557600080fd5b50565b600081359050613e0781613de1565b92915050565b600060208284031215613e2357613e22613dcd565b5b6000613e3184828501613df8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e6582613e3a565b9050919050565b613e7581613e5a565b82525050565b6000602082019050613e906000830184613e6c565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613ecb81613e96565b8114613ed657600080fd5b50565b600081359050613ee881613ec2565b92915050565b600060208284031215613f0457613f03613dcd565b5b6000613f1284828501613ed9565b91505092915050565b60008115159050919050565b613f3081613f1b565b82525050565b6000602082019050613f4b6000830184613f27565b92915050565b613f5a81613e5a565b8114613f6557600080fd5b50565b600081359050613f7781613f51565b92915050565b600060208284031215613f9357613f92613dcd565b5b6000613fa184828501613f68565b91505092915050565b613fb381613dd7565b82525050565b6000602082019050613fce6000830184613faa565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561400e578082015181840152602081019050613ff3565b60008484015250505050565b6000601f19601f8301169050919050565b600061403682613fd4565b6140408185613fdf565b9350614050818560208601613ff0565b6140598161401a565b840191505092915050565b6000602082019050818103600083015261407e818461402b565b905092915050565b6000806040838503121561409d5761409c613dcd565b5b60006140ab85828601613f68565b92505060206140bc85828601613df8565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126140eb576140ea6140c6565b5b8235905067ffffffffffffffff811115614108576141076140cb565b5b602083019150836020820283011115614124576141236140d0565b5b9250929050565b60008060006040848603121561414457614143613dcd565b5b600061415286828701613f68565b935050602084013567ffffffffffffffff81111561417357614172613dd2565b5b61417f868287016140d5565b92509250509250925092565b6000806000604084860312156141a4576141a3613dcd565b5b60006141b286828701613df8565b935050602084013567ffffffffffffffff8111156141d3576141d2613dd2565b5b6141df868287016140d5565b92509250509250925092565b6141f481613f1b565b81146141ff57600080fd5b50565b600081359050614211816141eb565b92915050565b60006020828403121561422d5761422c613dcd565b5b600061423b84828501614202565b91505092915050565b60008060006060848603121561425d5761425c613dcd565b5b600061426b86828701613f68565b935050602061427c86828701613f68565b925050604061428d86828701613df8565b9150509250925092565b6000819050919050565b6142aa81614297565b81146142b557600080fd5b50565b6000813590506142c7816142a1565b92915050565b6000602082840312156142e3576142e2613dcd565b5b60006142f1848285016142b8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6143328261401a565b810181811067ffffffffffffffff82111715614351576143506142fa565b5b80604052505050565b6000614364613dc3565b90506143708282614329565b919050565b600067ffffffffffffffff8211156143905761438f6142fa565b5b602082029050602081019050919050565b60006143b46143af84614375565b61435a565b905080838252602082019050602084028301858111156143d7576143d66140d0565b5b835b8181101561440057806143ec8882613f68565b8452602084019350506020810190506143d9565b5050509392505050565b600082601f83011261441f5761441e6140c6565b5b813561442f8482602086016143a1565b91505092915050565b60006020828403121561444e5761444d613dcd565b5b600082013567ffffffffffffffff81111561446c5761446b613dd2565b5b6144788482850161440a565b91505092915050565b600080fd5b600067ffffffffffffffff8211156144a1576144a06142fa565b5b6144aa8261401a565b9050602081019050919050565b82818337600083830152505050565b60006144d96144d484614486565b61435a565b9050828152602081018484840111156144f5576144f4614481565b5b6145008482856144b7565b509392505050565b600082601f83011261451d5761451c6140c6565b5b813561452d8482602086016144c6565b91505092915050565b60006020828403121561454c5761454b613dcd565b5b600082013567ffffffffffffffff81111561456a57614569613dd2565b5b61457684828501614508565b91505092915050565b6000806040838503121561459657614595613dcd565b5b60006145a485828601613f68565b92505060206145b585828601614202565b9150509250929050565b6145c881614297565b82525050565b60006020820190506145e360008301846145bf565b92915050565b600067ffffffffffffffff821115614604576146036142fa565b5b61460d8261401a565b9050602081019050919050565b600061462d614628846145e9565b61435a565b90508281526020810184848401111561464957614648614481565b5b6146548482856144b7565b509392505050565b600082601f830112614671576146706140c6565b5b813561468184826020860161461a565b91505092915050565b600080600080608085870312156146a4576146a3613dcd565b5b60006146b287828801613f68565b94505060206146c387828801613f68565b93505060406146d487828801613df8565b925050606085013567ffffffffffffffff8111156146f5576146f4613dd2565b5b6147018782880161465c565b91505092959194509250565b6000806040838503121561472457614723613dcd565b5b600061473285828601613f68565b925050602061474385828601613f68565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061479457607f821691505b6020821081036147a7576147a661474d565b5b50919050565b60008160601b9050919050565b60006147c5826147ad565b9050919050565b60006147d7826147ba565b9050919050565b6147ef6147ea82613e5a565b6147cc565b82525050565b600061480182846147de565b60148201915081905092915050565b7f544845204d41474943204d494e5420484153204e4f542053544152544544205960008201527f4554000000000000000000000000000000000000000000000000000000000000602082015250565b600061486c602283613fdf565b915061487782614810565b604082019050919050565b6000602082019050818103600083015261489b8161485f565b9050919050565b7f594f55522057414c4c4554204953204e4f542057484954454c49535445440000600082015250565b60006148d8601e83613fdf565b91506148e3826148a2565b602082019050919050565b60006020820190508181036000830152614907816148cb565b9050919050565b7f4f4e4c592032204e454f50485954455320414c4c4f574544205045522054524160008201527f4e53414354494f4e000000000000000000000000000000000000000000000000602082015250565b600061496a602883613fdf565b91506149758261490e565b604082019050919050565b600060208201905081810360008301526149998161495d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149da82613dd7565b91506149e583613dd7565b92508282019050808211156149fd576149fc6149a0565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000614a39600983613fdf565b9150614a4482614a03565b602082019050919050565b60006020820190508181036000830152614a6881614a2c565b9050919050565b7f4f4e4c592032204e454f50485954455320414c4c4f574544205045522057414c60008201527f4c45540000000000000000000000000000000000000000000000000000000000602082015250565b6000614acb602383613fdf565b9150614ad682614a6f565b604082019050919050565b60006020820190508181036000830152614afa81614abe565b9050919050565b6000614b0c82613dd7565b9150614b1783613dd7565b9250828202614b2581613dd7565b91508282048414831517614b3c57614b3b6149a0565b5b5092915050565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b6000614b79601683613fdf565b9150614b8482614b43565b602082019050919050565b60006020820190508181036000830152614ba881614b6c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614be982613dd7565b9150614bf483613dd7565b925082614c0457614c03614baf565b5b828204905092915050565b6000614c1a82613dd7565b9150614c2583613dd7565b9250828203905081811115614c3d57614c3c6149a0565b5b92915050565b6000604082019050614c586000830185613e6c565b614c656020830184613e6c565b9392505050565b600081519050614c7b816141eb565b92915050565b600060208284031215614c9757614c96613dcd565b5b6000614ca584828501614c6c565b91505092915050565b7f6275726e696e672064697361626c656400000000000000000000000000000000600082015250565b6000614ce4601083613fdf565b9150614cef82614cae565b602082019050919050565b60006020820190508181036000830152614d1381614cd7565b9050919050565b7f6275726e2063616c6c6572206973206e6f7420617070726f7665640000000000600082015250565b6000614d50601b83613fdf565b9150614d5b82614d1a565b602082019050919050565b60006020820190508181036000830152614d7f81614d43565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614dc082613dd7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614df257614df16149a0565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614e5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614e22565b614e698683614e22565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614ea6614ea1614e9c84613dd7565b614e81565b613dd7565b9050919050565b6000819050919050565b614ec083614e8b565b614ed4614ecc82614ead565b848454614e2f565b825550505050565b600090565b614ee9614edc565b614ef4818484614eb7565b505050565b5b81811015614f1857614f0d600082614ee1565b600181019050614efa565b5050565b601f821115614f5d57614f2e81614dfd565b614f3784614e12565b81016020851015614f46578190505b614f5a614f5285614e12565b830182614ef9565b50505b505050565b600082821c905092915050565b6000614f8060001984600802614f62565b1980831691505092915050565b6000614f998383614f6f565b9150826002028217905092915050565b614fb282613fd4565b67ffffffffffffffff811115614fcb57614fca6142fa565b5b614fd5825461477c565b614fe0828285614f1c565b600060209050601f8311600181146150135760008415615001578287015190505b61500b8582614f8d565b865550615073565b601f19841661502186614dfd565b60005b8281101561504957848901518255600182019150602085019450602081019050615024565b868310156150665784890151615062601f891682614f6f565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b60006150b1600f83613fdf565b91506150bc8261507b565b602082019050919050565b600060208201905081810360008301526150e0816150a4565b9050919050565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b600061511d601783613fdf565b9150615128826150e7565b602082019050919050565b6000602082019050818103600083015261514c81615110565b9050919050565b7f4f4e4c592035204e454f50485954455320414c4c4f574544205045522054524160008201527f4e53414354494f4e000000000000000000000000000000000000000000000000602082015250565b60006151af602883613fdf565b91506151ba82615153565b604082019050919050565b600060208201905081810360008301526151de816151a2565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615241602f83613fdf565b915061524c826151e5565b604082019050919050565b6000602082019050818103600083015261527081615234565b9050919050565b600081905092915050565b6000815461528f8161477c565b6152998186615277565b945060018216600081146152b457600181146152c9576152fc565b60ff19831686528115158202860193506152fc565b6152d285614dfd565b60005b838110156152f4578154818901526001820191506020810190506152d5565b838801955050505b50505092915050565b600061531082613fd4565b61531a8185615277565b935061532a818560208601613ff0565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061536c600583615277565b915061537782615336565b600582019050919050565b600061538e8285615282565b915061539a8284615305565b91506153a58261535f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061540d602683613fdf565b9150615418826153b1565b604082019050919050565b6000602082019050818103600083015261543c81615400565b9050919050565b7f6d617820706572207472616e73616374696f6e20310000000000000000000000600082015250565b6000615479601583613fdf565b915061548482615443565b602082019050919050565b600060208201905081810360008301526154a88161546c565b9050919050565b7f47656e6573697320436f6c6c656374696f6e20536f6c64206f75740000000000600082015250565b60006154e5601b83613fdf565b91506154f0826154af565b602082019050919050565b60006020820190508181036000830152615514816154d8565b9050919050565b7f4f4e4c5920312047454e45534953204e454f504859544520414c4c4f5745442060008201527f5045522057414c4c455400000000000000000000000000000000000000000000602082015250565b6000615577602a83613fdf565b91506155828261551b565b604082019050919050565b600060208201905081810360008301526155a68161556a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006155e3602083613fdf565b91506155ee826155ad565b602082019050919050565b60006020820190508181036000830152615612816155d6565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615675602c83613fdf565b915061568082615619565b604082019050919050565b600060208201905081810360008301526156a481615668565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006156d2826156ab565b6156dc81856156b6565b93506156ec818560208601613ff0565b6156f58161401a565b840191505092915050565b60006080820190506157156000830187613e6c565b6157226020830186613e6c565b61572f6040830185613faa565b818103606083015261574181846156c7565b905095945050505050565b60008151905061575b81613ec2565b92915050565b60006020828403121561577757615776613dcd565b5b60006157858482850161574c565b9150509291505056fea2646970667358221220390ac488151c4d50df5d2d22bdf5e8694923ad2747ef14039f184308950e226e64736f6c63430008110033
Deployed Bytecode Sourcemap
498:6984:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1220:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9474:639:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1102:53:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10376:100:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;842:31:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16867:218:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16300:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4383:316:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6127:323:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2145:1200:13;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1045:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6639:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1439:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20865:2850:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6860:99:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7373:106;;;;;;;;;;;;;:::i;:::-;;23811:218:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6969:300:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1379:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;715:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11769:152:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1017:21:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6524:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7311:233:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1884:103:11;;;;;;;;;;;;;:::i;:::-;;5509:238:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;591:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7276:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6309:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6413:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1505:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1236:87:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10552:104:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;797:38:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1327:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6211:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17425:234:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1162:51:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;880:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;921:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24627:432:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;756:34:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4055:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1627:510;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5278:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1270:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6751:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5905:298;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4709:561;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17816:164:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2142:201:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3354:691:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1220:43;;;;;;;;;;;;;;;;;;;;;;:::o;9474:639:2:-;9559:4;9898:10;9883:25;;:11;:25;;;;:102;;;;9975:10;9960:25;;:11;:25;;;;9883:102;:179;;;;10052:10;10037:25;;:11;:25;;;;9883:179;9863:199;;9474:639;;;:::o;1102:53:13:-;;;;;;;;;;;;;;;;;:::o;10376:100:2:-;10430:13;10463:5;10456:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10376:100;:::o;842:31:13:-;;;;;;;;;;;;;:::o;16867:218:2:-;16943:7;16968:16;16976:7;16968;:16::i;:::-;16963:64;;16993:34;;;;;;;;;;;;;;16963:64;17047:15;:24;17063:7;17047:24;;;;;;;;;;;:30;;;;;;;;;;;;17040:37;;16867:218;;;:::o;16300:408::-;16389:13;16405:16;16413:7;16405;:16::i;:::-;16389:32;;16461:5;16438:28;;:19;:17;:19::i;:::-;:28;;;16434:175;;16486:44;16503:5;16510:19;:17;:19::i;:::-;16486:16;:44::i;:::-;16481:128;;16558:35;;;;;;;;;;;;;;16481:128;16434:175;16654:2;16621:15;:24;16637:7;16621:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16692:7;16688:2;16672:28;;16681:5;16672:28;;;;;;;;;;;;16378:330;16300:408;;:::o;4383:316:13:-;4484:4;4504:92;4523:11;;4504:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4535:17;;4580:13;4563:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;4553:42;;;;;;4504:18;:92::i;:::-;4501:183;;;4629:4;4622:11;;;;4501:183;4677:5;4670:12;;4383:316;;;;;;:::o;6127:323:2:-;6188:7;6416:15;:13;:15::i;:::-;6401:12;;6385:13;;:28;:46;6378:53;;6127:323;:::o;2145:1200:13:-;2241:21;2263:27;2279:10;2263:15;:27::i;:::-;2241:49;;2327:4;2309:22;;:14;;;;;;;;;;;:22;;;2301:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;2389:91;2408:11;;2389:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2420:19;;2467:10;2450:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;2440:39;;;;;;2389:18;:91::i;:::-;2381:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;2543:19;;2533:6;:29;;2525:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;659:5;2642:6;2626:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;2618:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;2739:19;;2728:6;2696:18;:30;2715:10;2696:30;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;2695:63;;2687:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;2830:1;2812:16;:19;2809:529;;2887:6;2874:10;;:19;;;;:::i;:::-;2861:9;:32;;2853:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2931:29;2941:10;2953:6;2931:9;:29::i;:::-;3005:6;2971:18;:30;2990:10;2971:30;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;2809:529;;;3103:2;3092:10;;:13;;;;:::i;:::-;3083:6;3070:10;;:19;;;;:::i;:::-;3069:37;;;;:::i;:::-;3056:9;:50;;3048:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;3144:29;3154:10;3166:6;3144:9;:29::i;:::-;3218:6;3184:18;:30;3203:10;3184:30;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;3268:4;3235:18;:30;3254:10;3235:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;3320:4;3283:16;:34;3300:16;3283:34;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;2809:529;2229:1116;2145:1200;;;:::o;1045:50::-;;;;;;;;;;;;;;;;;:::o;6639:104::-;1122:13:11;:11;:13::i;:::-;6729:6:13::1;6713:13;;:22;;;;;;;;;;;;;;;;;;6639:104:::0;:::o;1439:35::-;;;;:::o;20865:2850:2:-;21016:4;1475:1:10;310:42;1429:43;;;:47;1425:683;;;1712:10;1704:18;;:4;:18;;;1700:82;;21032:27:2::1;21062;21081:7;21062:18;:27::i;:::-;21032:57;;21147:4;21106:45;;21122:19;21106:45;;;21102:86;;21160:28;;;;;;;;;;;;;;21102:86;21202:27;21231:23:::0;21258:35:::1;21285:7;21258:26;:35::i;:::-;21201:92;;;;21393:68;21418:15;21435:4;21441:19;:17;:19::i;:::-;21393:24;:68::i;:::-;21388:180;;21481:43;21498:4;21504:19;:17;:19::i;:::-;21481:16;:43::i;:::-;21476:92;;21533:35;;;;;;;;;;;;;;21476:92;21388:180;21599:1;21585:16;;:2;:16;;::::0;21581:52:::1;;21610:23;;;;;;;;;;;;;;21581:52;21646:43;21668:4;21674:2;21678:7;21687:1;21646:21;:43::i;:::-;21782:15;21779:160;;;21922:1;21901:19;21894:30;21779:160;22319:18;:24;22338:4;22319:24;;;;;;;;;;;;;;;;22317:26;;;;;;;;;;;;22388:18;:22;22407:2;22388:22;;;;;;;;;;;;;;;;22386:24;;;;;;;;;;;22710:146;22747:2;22796:45;22811:4;22817:2;22821:19;22796:14;:45::i;:::-;2526:8;22768:73;22710:18;:146::i;:::-;22681:17;:26;22699:7;22681:26;;;;;;;;;;;:175;;;;23027:1;2526:8;22976:19;:47;:52:::0;22972:627:::1;;23049:19;23081:1;23071:7;:11;23049:33;;23238:1;23204:17;:30;23222:11;23204:30;;;;;;;;;;;;:35:::0;23200:384:::1;;23342:13;;23327:11;:28;23323:242;;23522:19;23489:17;:30;23507:11;23489:30;;;;;;;;;;;:52;;;;23323:242;23200:384;23030:569;22972:627;23646:7;23642:2;23627:27;;23636:4;23627:27;;;;;;;;;;;;23665:42;23686:4;23692:2;23696:7;23705:1;23665:20;:42::i;:::-;21021:2694;;;1761:7:10::0;;1700:82;310:42;1839:40;;;1888:4;1895:10;1839:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:156;;;;;310:42;1934:40;;;1983:4;1990;1934:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1839:156;1795:303;;2072:10;2053:30;;;;;;;;;;;:::i;:::-;;;;;;;;1795:303;1425:683;21032:27:2::1;21062;21081:7;21062:18;:27::i;:::-;21032:57;;21147:4;21106:45;;21122:19;21106:45;;;21102:86;;21160:28;;;;;;;;;;;;;;21102:86;21202:27;21231:23:::0;21258:35:::1;21285:7;21258:26;:35::i;:::-;21201:92;;;;21393:68;21418:15;21435:4;21441:19;:17;:19::i;:::-;21393:24;:68::i;:::-;21388:180;;21481:43;21498:4;21504:19;:17;:19::i;:::-;21481:16;:43::i;:::-;21476:92;;21533:35;;;;;;;;;;;;;;21476:92;21388:180;21599:1;21585:16;;:2;:16;;::::0;21581:52:::1;;21610:23;;;;;;;;;;;;;;21581:52;21646:43;21668:4;21674:2;21678:7;21687:1;21646:21;:43::i;:::-;21782:15;21779:160;;;21922:1;21901:19;21894:30;21779:160;22319:18;:24;22338:4;22319:24;;;;;;;;;;;;;;;;22317:26;;;;;;;;;;;;22388:18;:22;22407:2;22388:22;;;;;;;;;;;;;;;;22386:24;;;;;;;;;;;22710:146;22747:2;22796:45;22811:4;22817:2;22821:19;22796:14;:45::i;:::-;2526:8;22768:73;22710:18;:146::i;:::-;22681:17;:26;22699:7;22681:26;;;;;;;;;;;:175;;;;23027:1;2526:8;22976:19;:47;:52:::0;22972:627:::1;;23049:19;23081:1;23071:7;:11;23049:33;;23238:1;23204:17;:30;23222:11;23204:30;;;;;;;;;;;;:35:::0;23200:384:::1;;23342:13;;23327:11;:28;23323:242;;23522:19;23489:17;:30;23507:11;23489:30;;;;;;;;;;;:52;;;;23323:242;23200:384;23030:569;22972:627;23646:7;23642:2;23627:27;;23636:4;23627:27;;;;;;;;;;;;23665:42;23686:4;23692:2;23696:7;23705:1;23665:20;:42::i;:::-;21021:2694;;;20865:2850:::0;;;;;:::o;6860:99:13:-;1122:13:11;:11;:13::i;:::-;6944:10:13::1;6924:17;:30;;;;6860:99:::0;:::o;7373:106::-;1122:13:11;:11;:13::i;:::-;7431:7:13::1;:5;:7::i;:::-;7423:25;;:48;7449:21;7423:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;7373:106::o:0;23811:218:2:-;23966:4;1475:1:10;310:42;1429:43;;;:47;1425:683;;;1712:10;1704:18;;:4;:18;;;1700:82;;23982:39:2::1;23999:4;24005:2;24009:7;23982:39;;;;;;;;;;;::::0;:16:::1;:39::i;:::-;1761:7:10::0;;1700:82;310:42;1839:40;;;1888:4;1895:10;1839:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:156;;;;;310:42;1934:40;;;1983:4;1990;1934:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1839:156;1795:303;;2072:10;2053:30;;;;;;;;;;;:::i;:::-;;;;;;;;1795:303;1425:683;23982:39:2::1;23999:4;24005:2;24009:7;23982:39;;;;;;;;;;;::::0;:16:::1;:39::i;:::-;23811:218:::0;;;;;:::o;6969:300:13:-;7034:13;;;;;;;;;;;7026:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;7101:39;7120:10;7132:7;7101:18;:39::i;:::-;7079:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;7206:14;7212:7;7206:5;:14::i;:::-;7251:10;7231:8;:17;7240:7;7231:17;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;6969:300;:::o;1379:33::-;;;;:::o;715:34::-;;;;;;;;;;;;;:::o;11769:152:2:-;11841:7;11884:27;11903:7;11884:18;:27::i;:::-;11861:52;;11769:152;;;:::o;1017:21:13:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6524:108::-;1122:13:11;:11;:13::i;:::-;6618:6:13::1;6597:18;;:27;;;;;;;;;;;;;;;;;;6524:108:::0;:::o;7311:233:2:-;7383:7;7424:1;7407:19;;:5;:19;;;7403:60;;7435:28;;;;;;;;;;;;;;7403:60;1470:13;7481:18;:25;7500:5;7481:25;;;;;;;;;;;;;;;;:55;7474:62;;7311:233;;;:::o;1884:103:11:-;1122:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;:::-;1884:103::o:0;5509:238:13:-;1122:13:11;:11;:13::i;:::-;659:5:13::1;5606:8;:15;5590:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;5582:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;5663:6;5659:80;5679:8;:15;5675:1;:19;5659:80;;;5714:25;5724:8;5733:1;5724:11;;;;;;;;:::i;:::-;;;;;;;;5737:1;5714:9;:25::i;:::-;5696:3;;;;;:::i;:::-;;;;5659:80;;;;5509:238:::0;:::o;591:35::-;;;;:::o;7276:89::-;1122:13:11;:11;:13::i;:::-;7355:2:13::1;7342:10;:15;;;;7276:89:::0;:::o;6309:98::-;1122:13:11;:11;:13::i;:::-;6393:6:13::1;6376:14;;:23;;;;;;;;;;;;;;;;;;6309:98:::0;:::o;6413:105::-;1122:13:11;:11;:13::i;:::-;6504:6:13::1;6487:14;;:23;;;;;;;;;;;;;;;;;;6413:105:::0;:::o;1505:29::-;;;;:::o;1236:87:11:-;1282:7;1309:6;;;;;;;;;;;1302:13;;1236:87;:::o;10552:104:2:-;10608:13;10641:7;10634:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10552:104;:::o;797:38:13:-;;;;;;;;;;;;;:::o;1327:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;6211:92::-;1122:13:11;:11;:13::i;:::-;6291:4:13::1;6281:7;:14;;;;;;:::i;:::-;;6211:92:::0;:::o;17425:234:2:-;17572:8;17520:18;:39;17539:19;:17;:19::i;:::-;17520:39;;;;;;;;;;;;;;;:49;17560:8;17520:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17632:8;17596:55;;17611:19;:17;:19::i;:::-;17596:55;;;17642:8;17596:55;;;;;;:::i;:::-;;;;;;;;17425:234;;:::o;1162:51:13:-;;;;;;;;;;;;;;;;;:::o;880:34::-;;;;:::o;921:32::-;;;;:::o;24627:432:2:-;24811:4;1475:1:10;310:42;1429:43;;;:47;1425:683;;;1712:10;1704:18;;:4;:18;;;1700:82;;24827:31:2::1;24840:4;24846:2;24850:7;24827:12;:31::i;:::-;24891:1;24873:2;:14;;;:19;24869:183;;24912:56;24943:4;24949:2;24953:7;24962:5;24912:30;:56::i;:::-;24907:145;;24996:40;;;;;;;;;;;;;;24907:145;24869:183;1761:7:10::0;;1700:82;310:42;1839:40;;;1888:4;1895:10;1839:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:156;;;;;310:42;1934:40;;;1983:4;1990;1934:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1839:156;1795:303;;2072:10;2053:30;;;;;;;;;;;:::i;:::-;;;;;;;;1795:303;1425:683;24827:31:2::1;24840:4;24846:2;24850:7;24827:12;:31::i;:::-;24891:1;24873:2;:14;;;:19;24869:183;;24912:56;24943:4;24949:2;24953:7;24962:5;24912:30;:56::i;:::-;24907:145;;24996:40;;;;;;;;;;;;;;24907:145;24869:183;24627:432:::0;;;;;;:::o;756:34:13:-;;;;;;;;;;;;;:::o;4055:320::-;4158:4;4178:94;4197:11;;4178:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4209:19;;4256:13;4239:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;4229:42;;;;;;4178:18;:94::i;:::-;4175:185;;;4305:4;4298:11;;;;4175:185;4353:5;4346:12;;4055:320;;;;;;:::o;1627:510::-;1716:4;1694:26;;:18;;;;;;;;;;;:26;;;1686:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1768:1;1759:6;:10;1751:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;659:5;1832:6;1816:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;1808:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;1910:6;1897:10;;:19;;;;:::i;:::-;1884:9;:32;;1876:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1972:17;;1962:6;:27;;1954:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;2080:6;2049:15;:27;2065:10;2049:27;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;2101:29;2111:10;2123:6;2101:9;:29::i;:::-;1627:510;:::o;5278:223::-;1122:13:11;:11;:13::i;:::-;5356:1:13::1;5347:6;:10;5339:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;659:5;5420:6;5404:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;5396:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;5464:29;5474:10;5486:6;5464:9;:29::i;:::-;5278:223:::0;:::o;1270:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;6751:103::-;1122:13:11;:11;:13::i;:::-;6839:10:13::1;6817:19;:32;;;;6751:103:::0;:::o;5905:298::-;5978:13;6012:16;6020:7;6012;:16::i;:::-;6004:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;6124:1;6106:7;6100:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;6152:7;6161:18;:7;:16;:18::i;:::-;6135:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6100:95;6093:102;;5905:298;;;:::o;4709:561::-;4778:4;4799:10;4810:1;4799:12;;4826:13;704:4;4826:31;;704:4;4875:13;:11;:13::i;:::-;:30;4872:90;;;4933:13;:11;:13::i;:::-;4924:22;;4872:90;4980:6;4987:1;4980:8;;4976:256;4993:8;4990:1;:11;4976:256;;5053:13;5041:25;;:10;5049:1;5041:7;:10::i;:::-;:25;;;:63;;;;;5071:18;:33;5090:13;5071:33;;;;;;;;;;;;;;;;;;;;;;;;;5070:34;5041:63;:87;;;;;5109:16;:19;5126:1;5109:19;;;;;;;;;;;;;;;;;;;;;5108:20;5041:87;5038:179;;;5172:1;5166:7;;5194:5;;5038:179;5003:3;;;;;:::i;:::-;;;;4976:256;;;;5249:5;5242:12;;;;4709:561;;;:::o;17816:164:2:-;17913:4;17937:18;:25;17956:5;17937:25;;;;;;;;;;;;;;;:35;17963:8;17937:35;;;;;;;;;;;;;;;;;;;;;;;;;17930:42;;17816:164;;;;:::o;2142:201:11:-;1122:13;:11;:13::i;:::-;2251:1:::1;2231:22;;:8;:22;;::::0;2223:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2307:28;2326:8;2307:18;:28::i;:::-;2142:201:::0;:::o;3354:691:13:-;3466:4;3448:22;;:14;;;;;;;;;;;:22;;;3440:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3527:89;3546:11;;3527:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3558:17;;3603:10;3586:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;3576:39;;;;;;3527:18;:89::i;:::-;3519:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;3679:13;;3669:6;:23;;3661:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;704:4;3753:6;3737:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:41;;3729:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;3872:13;;3861:6;3831:16;:28;3848:10;3831:28;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;3830:55;;3822:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3987:6;3955:16;:28;3972:10;3955:28;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;4008:29;4018:10;4030:6;4008:9;:29::i;:::-;3354:691;;;:::o;18238:282:2:-;18303:4;18359:7;18340:15;:13;:15::i;:::-;:26;;:66;;;;;18393:13;;18383:7;:23;18340:66;:153;;;;;18492:1;2246:8;18444:17;:26;18462:7;18444:26;;;;;;;;;;;;:44;:49;18340:153;18320:173;;18238:282;;;:::o;40980:105::-;41040:7;41067:10;41060:17;;40980:105;:::o;1094:190:6:-;1219:4;1272;1243:25;1256:5;1263:4;1243:12;:25::i;:::-;:33;1236:40;;1094:190;;;;;:::o;5643:92:2:-;5699:7;5726:1;5719:8;;5643:92;:::o;34812:112::-;34889:27;34899:2;34903:8;34889:27;;;;;;;;;;;;:9;:27::i;:::-;34812:112;;:::o;1401:132:11:-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1401:132::o;12924:1275:2:-;12991:7;13011:12;13026:7;13011:22;;13094:4;13075:15;:13;:15::i;:::-;:23;13071:1061;;13128:13;;13121:4;:20;13117:1015;;;13166:14;13183:17;:23;13201:4;13183:23;;;;;;;;;;;;13166:40;;13300:1;2246:8;13272:6;:24;:29;13268:845;;13937:113;13954:1;13944:6;:11;13937:113;;13997:17;:25;14015:6;;;;;;;13997:25;;;;;;;;;;;;13988:34;;13937:113;;;14083:6;14076:13;;;;;;13268:845;13143:989;13117:1015;13071:1061;14160:31;;;;;;;;;;;;;;12924:1275;;;;:::o;19401:485::-;19503:27;19532:23;19573:38;19614:15;:24;19630:7;19614:24;;;;;;;;;;;19573:65;;19791:18;19768:41;;19848:19;19842:26;19823:45;;19753:126;19401:485;;;:::o;18629:659::-;18778:11;18943:16;18936:5;18932:28;18923:37;;19103:16;19092:9;19088:32;19075:45;;19253:15;19242:9;19239:30;19231:5;19220:9;19217:20;19214:56;19204:66;;18629:659;;;;;:::o;25721:159::-;;;;;:::o;40289:311::-;40424:7;40444:16;2650:3;40470:19;:41;;40444:68;;2650:3;40538:31;40549:4;40555:2;40559:9;40538:10;:31::i;:::-;40530:40;;:62;;40523:69;;;40289:311;;;;;:::o;14747:450::-;14827:14;14995:16;14988:5;14984:28;14975:37;;15172:5;15158:11;15133:23;15129:41;15126:52;15119:5;15116:63;15106:73;;14747:450;;;;:::o;26545:158::-;;;;;:::o;20510:349::-;20603:4;20628:16;20636:7;20628;:16::i;:::-;20620:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20704:13;20720:24;20736:7;20720:15;:24::i;:::-;20704:40;;20774:5;20763:16;;:7;:16;;;:51;;;;20807:7;20783:31;;:20;20795:7;20783:11;:20::i;:::-;:31;;;20763:51;:87;;;;20818:32;20835:5;20842:7;20818:16;:32::i;:::-;20763:87;20755:96;;;20510:349;;;;:::o;35191:89::-;35251:21;35257:7;35266:5;35251;:21::i;:::-;35191:89;:::o;2503:191:11:-;2577:16;2596:6;;;;;;;;;;;2577:25;;2622:8;2613:6;;:17;;;;;;;;;;;;;;;;;;2677:8;2646:40;;2667:8;2646:40;;;;;;;;;;;;2566:128;2503:191;:::o;27143:716:2:-;27306:4;27352:2;27327:45;;;27373:19;:17;:19::i;:::-;27394:4;27400:7;27409:5;27327:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;27323:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27627:1;27610:6;:13;:18;27606:235;;27656:40;;;;;;;;;;;;;;27606:235;27799:6;27793:13;27784:6;27780:2;27776:15;27769:38;27323:529;27496:54;;;27486:64;;;:6;:64;;;;27479:71;;;27143:716;;;;;;:::o;427::14:-;483:13;534:14;571:1;551:17;562:5;551:10;:17::i;:::-;:21;534:38;;587:20;621:6;610:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587:41;;643:11;772:6;768:2;764:15;756:6;752:28;745:35;;809:288;816:4;809:288;;;841:5;;;;;;;;983:8;978:2;971:5;967:14;962:30;957:3;949:44;1039:2;1030:11;;;;;;:::i;:::-;;;;;1073:1;1064:5;:10;809:288;1060:21;809:288;1118:6;1111:13;;;;;427:716;;;:::o;1645:675:6:-;1728:7;1748:20;1771:4;1748:27;;1791:9;1786:497;1810:5;:12;1806:1;:16;1786:497;;;1844:20;1867:5;1873:1;1867:8;;;;;;;;:::i;:::-;;;;;;;;1844:31;;1910:12;1894;:28;1890:382;;2037:42;2052:12;2066;2037:14;:42::i;:::-;2022:57;;1890:382;;;2214:42;2229:12;2243;2214:14;:42::i;:::-;2199:57;;1890:382;1829:454;1824:3;;;;;:::i;:::-;;;;1786:497;;;;2300:12;2293:19;;;1645:675;;;;:::o;34039:689:2:-;34170:19;34176:2;34180:8;34170:5;:19::i;:::-;34249:1;34231:2;:14;;;:19;34227:483;;34271:11;34285:13;;34271:27;;34317:13;34339:8;34333:3;:14;34317:30;;34366:233;34397:62;34436:1;34440:2;34444:7;;;;;;34453:5;34397:30;:62::i;:::-;34392:167;;34495:40;;;;;;;;;;;;;;34392:167;34594:3;34586:5;:11;34366:233;;34681:3;34664:13;;:20;34660:34;;34686:8;;;34660:34;34252:458;;34227:483;34039:689;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;39990:147:2:-;40127:6;39990:147;;;;;:::o;35509:3081::-;35589:27;35619;35638:7;35619:18;:27::i;:::-;35589:57;;35659:12;35690:19;35659:52;;35725:27;35754:23;35781:35;35808:7;35781:26;:35::i;:::-;35724:92;;;;35833:13;35829:316;;;35954:68;35979:15;35996:4;36002:19;:17;:19::i;:::-;35954:24;:68::i;:::-;35949:184;;36046:43;36063:4;36069:19;:17;:19::i;:::-;36046:16;:43::i;:::-;36041:92;;36098:35;;;;;;;;;;;;;;36041:92;35949:184;35829:316;36157:51;36179:4;36193:1;36197:7;36206:1;36157:21;:51::i;:::-;36301:15;36298:160;;;36441:1;36420:19;36413:30;36298:160;37119:1;1735:3;37089:1;:26;;37088:32;37060:18;:24;37079:4;37060:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;37387:176;37424:4;37495:53;37510:4;37524:1;37528:19;37495:14;:53::i;:::-;2526:8;2246;37448:43;37447:101;37387:18;:176::i;:::-;37358:17;:26;37376:7;37358:26;;;;;;;;;;;:205;;;;37734:1;2526:8;37683:19;:47;:52;37679:627;;37756:19;37788:1;37778:7;:11;37756:33;;37945:1;37911:17;:30;37929:11;37911:30;;;;;;;;;;;;:35;37907:384;;38049:13;;38034:11;:28;38030:242;;38229:19;38196:17;:30;38214:11;38196:30;;;;;;;;;;;:52;;;;38030:242;37907:384;37737:569;37679:627;38361:7;38357:1;38334:35;;38343:4;38334:35;;;;;;;;;;;;38380:50;38401:4;38415:1;38419:7;38428:1;38380:20;:50::i;:::-;38557:12;;:14;;;;;;;;;;;;;35578:3012;;;;35509:3081;;:::o;10146:922:7:-;10199:7;10219:14;10236:1;10219:18;;10286:6;10277:5;:15;10273:102;;10322:6;10313:15;;;;;;:::i;:::-;;;;;10357:2;10347:12;;;;10273:102;10402:6;10393:5;:15;10389:102;;10438:6;10429:15;;;;;;:::i;:::-;;;;;10473:2;10463:12;;;;10389:102;10518:6;10509:5;:15;10505:102;;10554:6;10545:15;;;;;;:::i;:::-;;;;;10589:2;10579:12;;;;10505:102;10634:5;10625;:14;10621:99;;10669:5;10660:14;;;;;;:::i;:::-;;;;;10703:1;10693:11;;;;10621:99;10747:5;10738;:14;10734:99;;10782:5;10773:14;;;;;;:::i;:::-;;;;;10816:1;10806:11;;;;10734:99;10860:5;10851;:14;10847:99;;10895:5;10886:14;;;;;;:::i;:::-;;;;;10929:1;10919:11;;;;10847:99;10973:5;10964;:14;10960:66;;11009:1;10999:11;;;;10960:66;11054:6;11047:13;;;10146:922;;;:::o;2328:224:6:-;2396:13;2459:1;2453:4;2446:15;2488:1;2482:4;2475:15;2529:4;2523;2513:21;2504:30;;2328:224;;;;:::o;28321:2966:2:-;28394:20;28417:13;;28394:36;;28457:1;28445:8;:13;28441:44;;28467:18;;;;;;;;;;;;;;28441:44;28498:61;28528:1;28532:2;28536:12;28550:8;28498:21;:61::i;:::-;29042:1;1608:2;29012:1;:26;;29011:32;28999:8;:45;28973:18;:22;28992:2;28973:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;29321:139;29358:2;29412:33;29435:1;29439:2;29443:1;29412:14;:33::i;:::-;29379:30;29400:8;29379:20;:30::i;:::-;:66;29321:18;:139::i;:::-;29287:17;:31;29305:12;29287:31;;;;;;;;;;;:173;;;;29477:16;29508:11;29537:8;29522:12;:23;29508:37;;30058:16;30054:2;30050:25;30038:37;;30430:12;30390:8;30349:1;30287:25;30228:1;30167;30140:335;30801:1;30787:12;30783:20;30741:346;30842:3;30833:7;30830:16;30741:346;;31060:7;31050:8;31047:1;31020:25;31017:1;31014;31009:59;30895:1;30886:7;30882:15;30871:26;;30741:346;;;30745:77;31132:1;31120:8;:13;31116:45;;31142:19;;;;;;;;;;;;;;31116:45;31194:3;31178:13;:19;;;;28747:2462;;31219:60;31248:1;31252:2;31256:12;31270:8;31219:20;:60::i;:::-;28383:2904;28321:2966;;:::o;15299:324::-;15369:14;15602:1;15592:8;15589:15;15563:24;15559:46;15549:56;;15299:324;;;:::o;7:75:15:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:126::-;1062:7;1102:42;1095:5;1091:54;1080:65;;1025:126;;;:::o;1157:96::-;1194:7;1223:24;1241:5;1223:24;:::i;:::-;1212:35;;1157:96;;;:::o;1259:118::-;1346:24;1364:5;1346:24;:::i;:::-;1341:3;1334:37;1259:118;;:::o;1383:222::-;1476:4;1514:2;1503:9;1499:18;1491:26;;1527:71;1595:1;1584:9;1580:17;1571:6;1527:71;:::i;:::-;1383:222;;;;:::o;1611:149::-;1647:7;1687:66;1680:5;1676:78;1665:89;;1611:149;;;:::o;1766:120::-;1838:23;1855:5;1838:23;:::i;:::-;1831:5;1828:34;1818:62;;1876:1;1873;1866:12;1818:62;1766:120;:::o;1892:137::-;1937:5;1975:6;1962:20;1953:29;;1991:32;2017:5;1991:32;:::i;:::-;1892:137;;;;:::o;2035:327::-;2093:6;2142:2;2130:9;2121:7;2117:23;2113:32;2110:119;;;2148:79;;:::i;:::-;2110:119;2268:1;2293:52;2337:7;2328:6;2317:9;2313:22;2293:52;:::i;:::-;2283:62;;2239:116;2035:327;;;;:::o;2368:90::-;2402:7;2445:5;2438:13;2431:21;2420:32;;2368:90;;;:::o;2464:109::-;2545:21;2560:5;2545:21;:::i;:::-;2540:3;2533:34;2464:109;;:::o;2579:210::-;2666:4;2704:2;2693:9;2689:18;2681:26;;2717:65;2779:1;2768:9;2764:17;2755:6;2717:65;:::i;:::-;2579:210;;;;:::o;2795:122::-;2868:24;2886:5;2868:24;:::i;:::-;2861:5;2858:35;2848:63;;2907:1;2904;2897:12;2848:63;2795:122;:::o;2923:139::-;2969:5;3007:6;2994:20;2985:29;;3023:33;3050:5;3023:33;:::i;:::-;2923:139;;;;:::o;3068:329::-;3127:6;3176:2;3164:9;3155:7;3151:23;3147:32;3144:119;;;3182:79;;:::i;:::-;3144:119;3302:1;3327:53;3372:7;3363:6;3352:9;3348:22;3327:53;:::i;:::-;3317:63;;3273:117;3068:329;;;;:::o;3403:118::-;3490:24;3508:5;3490:24;:::i;:::-;3485:3;3478:37;3403:118;;:::o;3527:222::-;3620:4;3658:2;3647:9;3643:18;3635:26;;3671:71;3739:1;3728:9;3724:17;3715:6;3671:71;:::i;:::-;3527:222;;;;:::o;3755:99::-;3807:6;3841:5;3835:12;3825:22;;3755:99;;;:::o;3860:169::-;3944:11;3978:6;3973:3;3966:19;4018:4;4013:3;4009:14;3994:29;;3860:169;;;;:::o;4035:246::-;4116:1;4126:113;4140:6;4137:1;4134:13;4126:113;;;4225:1;4220:3;4216:11;4210:18;4206:1;4201:3;4197:11;4190:39;4162:2;4159:1;4155:10;4150:15;;4126:113;;;4273:1;4264:6;4259:3;4255:16;4248:27;4097:184;4035:246;;;:::o;4287:102::-;4328:6;4379:2;4375:7;4370:2;4363:5;4359:14;4355:28;4345:38;;4287:102;;;:::o;4395:377::-;4483:3;4511:39;4544:5;4511:39;:::i;:::-;4566:71;4630:6;4625:3;4566:71;:::i;:::-;4559:78;;4646:65;4704:6;4699:3;4692:4;4685:5;4681:16;4646:65;:::i;:::-;4736:29;4758:6;4736:29;:::i;:::-;4731:3;4727:39;4720:46;;4487:285;4395:377;;;;:::o;4778:313::-;4891:4;4929:2;4918:9;4914:18;4906:26;;4978:9;4972:4;4968:20;4964:1;4953:9;4949:17;4942:47;5006:78;5079:4;5070:6;5006:78;:::i;:::-;4998:86;;4778:313;;;;:::o;5097:474::-;5165:6;5173;5222:2;5210:9;5201:7;5197:23;5193:32;5190:119;;;5228:79;;:::i;:::-;5190:119;5348:1;5373:53;5418:7;5409:6;5398:9;5394:22;5373:53;:::i;:::-;5363:63;;5319:117;5475:2;5501:53;5546:7;5537:6;5526:9;5522:22;5501:53;:::i;:::-;5491:63;;5446:118;5097:474;;;;;:::o;5577:117::-;5686:1;5683;5676:12;5700:117;5809:1;5806;5799:12;5823:117;5932:1;5929;5922:12;5963:568;6036:8;6046:6;6096:3;6089:4;6081:6;6077:17;6073:27;6063:122;;6104:79;;:::i;:::-;6063:122;6217:6;6204:20;6194:30;;6247:18;6239:6;6236:30;6233:117;;;6269:79;;:::i;:::-;6233:117;6383:4;6375:6;6371:17;6359:29;;6437:3;6429:4;6421:6;6417:17;6407:8;6403:32;6400:41;6397:128;;;6444:79;;:::i;:::-;6397:128;5963:568;;;;;:::o;6537:704::-;6632:6;6640;6648;6697:2;6685:9;6676:7;6672:23;6668:32;6665:119;;;6703:79;;:::i;:::-;6665:119;6823:1;6848:53;6893:7;6884:6;6873:9;6869:22;6848:53;:::i;:::-;6838:63;;6794:117;6978:2;6967:9;6963:18;6950:32;7009:18;7001:6;6998:30;6995:117;;;7031:79;;:::i;:::-;6995:117;7144:80;7216:7;7207:6;7196:9;7192:22;7144:80;:::i;:::-;7126:98;;;;6921:313;6537:704;;;;;:::o;7247:::-;7342:6;7350;7358;7407:2;7395:9;7386:7;7382:23;7378:32;7375:119;;;7413:79;;:::i;:::-;7375:119;7533:1;7558:53;7603:7;7594:6;7583:9;7579:22;7558:53;:::i;:::-;7548:63;;7504:117;7688:2;7677:9;7673:18;7660:32;7719:18;7711:6;7708:30;7705:117;;;7741:79;;:::i;:::-;7705:117;7854:80;7926:7;7917:6;7906:9;7902:22;7854:80;:::i;:::-;7836:98;;;;7631:313;7247:704;;;;;:::o;7957:116::-;8027:21;8042:5;8027:21;:::i;:::-;8020:5;8017:32;8007:60;;8063:1;8060;8053:12;8007:60;7957:116;:::o;8079:133::-;8122:5;8160:6;8147:20;8138:29;;8176:30;8200:5;8176:30;:::i;:::-;8079:133;;;;:::o;8218:323::-;8274:6;8323:2;8311:9;8302:7;8298:23;8294:32;8291:119;;;8329:79;;:::i;:::-;8291:119;8449:1;8474:50;8516:7;8507:6;8496:9;8492:22;8474:50;:::i;:::-;8464:60;;8420:114;8218:323;;;;:::o;8547:619::-;8624:6;8632;8640;8689:2;8677:9;8668:7;8664:23;8660:32;8657:119;;;8695:79;;:::i;:::-;8657:119;8815:1;8840:53;8885:7;8876:6;8865:9;8861:22;8840:53;:::i;:::-;8830:63;;8786:117;8942:2;8968:53;9013:7;9004:6;8993:9;8989:22;8968:53;:::i;:::-;8958:63;;8913:118;9070:2;9096:53;9141:7;9132:6;9121:9;9117:22;9096:53;:::i;:::-;9086:63;;9041:118;8547:619;;;;;:::o;9172:77::-;9209:7;9238:5;9227:16;;9172:77;;;:::o;9255:122::-;9328:24;9346:5;9328:24;:::i;:::-;9321:5;9318:35;9308:63;;9367:1;9364;9357:12;9308:63;9255:122;:::o;9383:139::-;9429:5;9467:6;9454:20;9445:29;;9483:33;9510:5;9483:33;:::i;:::-;9383:139;;;;:::o;9528:329::-;9587:6;9636:2;9624:9;9615:7;9611:23;9607:32;9604:119;;;9642:79;;:::i;:::-;9604:119;9762:1;9787:53;9832:7;9823:6;9812:9;9808:22;9787:53;:::i;:::-;9777:63;;9733:117;9528:329;;;;:::o;9863:180::-;9911:77;9908:1;9901:88;10008:4;10005:1;9998:15;10032:4;10029:1;10022:15;10049:281;10132:27;10154:4;10132:27;:::i;:::-;10124:6;10120:40;10262:6;10250:10;10247:22;10226:18;10214:10;10211:34;10208:62;10205:88;;;10273:18;;:::i;:::-;10205:88;10313:10;10309:2;10302:22;10092:238;10049:281;;:::o;10336:129::-;10370:6;10397:20;;:::i;:::-;10387:30;;10426:33;10454:4;10446:6;10426:33;:::i;:::-;10336:129;;;:::o;10471:311::-;10548:4;10638:18;10630:6;10627:30;10624:56;;;10660:18;;:::i;:::-;10624:56;10710:4;10702:6;10698:17;10690:25;;10770:4;10764;10760:15;10752:23;;10471:311;;;:::o;10805:710::-;10901:5;10926:81;10942:64;10999:6;10942:64;:::i;:::-;10926:81;:::i;:::-;10917:90;;11027:5;11056:6;11049:5;11042:21;11090:4;11083:5;11079:16;11072:23;;11143:4;11135:6;11131:17;11123:6;11119:30;11172:3;11164:6;11161:15;11158:122;;;11191:79;;:::i;:::-;11158:122;11306:6;11289:220;11323:6;11318:3;11315:15;11289:220;;;11398:3;11427:37;11460:3;11448:10;11427:37;:::i;:::-;11422:3;11415:50;11494:4;11489:3;11485:14;11478:21;;11365:144;11349:4;11344:3;11340:14;11333:21;;11289:220;;;11293:21;10907:608;;10805:710;;;;;:::o;11538:370::-;11609:5;11658:3;11651:4;11643:6;11639:17;11635:27;11625:122;;11666:79;;:::i;:::-;11625:122;11783:6;11770:20;11808:94;11898:3;11890:6;11883:4;11875:6;11871:17;11808:94;:::i;:::-;11799:103;;11615:293;11538:370;;;;:::o;11914:539::-;11998:6;12047:2;12035:9;12026:7;12022:23;12018:32;12015:119;;;12053:79;;:::i;:::-;12015:119;12201:1;12190:9;12186:17;12173:31;12231:18;12223:6;12220:30;12217:117;;;12253:79;;:::i;:::-;12217:117;12358:78;12428:7;12419:6;12408:9;12404:22;12358:78;:::i;:::-;12348:88;;12144:302;11914:539;;;;:::o;12459:117::-;12568:1;12565;12558:12;12582:308;12644:4;12734:18;12726:6;12723:30;12720:56;;;12756:18;;:::i;:::-;12720:56;12794:29;12816:6;12794:29;:::i;:::-;12786:37;;12878:4;12872;12868:15;12860:23;;12582:308;;;:::o;12896:146::-;12993:6;12988:3;12983;12970:30;13034:1;13025:6;13020:3;13016:16;13009:27;12896:146;;;:::o;13048:425::-;13126:5;13151:66;13167:49;13209:6;13167:49;:::i;:::-;13151:66;:::i;:::-;13142:75;;13240:6;13233:5;13226:21;13278:4;13271:5;13267:16;13316:3;13307:6;13302:3;13298:16;13295:25;13292:112;;;13323:79;;:::i;:::-;13292:112;13413:54;13460:6;13455:3;13450;13413:54;:::i;:::-;13132:341;13048:425;;;;;:::o;13493:340::-;13549:5;13598:3;13591:4;13583:6;13579:17;13575:27;13565:122;;13606:79;;:::i;:::-;13565:122;13723:6;13710:20;13748:79;13823:3;13815:6;13808:4;13800:6;13796:17;13748:79;:::i;:::-;13739:88;;13555:278;13493:340;;;;:::o;13839:509::-;13908:6;13957:2;13945:9;13936:7;13932:23;13928:32;13925:119;;;13963:79;;:::i;:::-;13925:119;14111:1;14100:9;14096:17;14083:31;14141:18;14133:6;14130:30;14127:117;;;14163:79;;:::i;:::-;14127:117;14268:63;14323:7;14314:6;14303:9;14299:22;14268:63;:::i;:::-;14258:73;;14054:287;13839:509;;;;:::o;14354:468::-;14419:6;14427;14476:2;14464:9;14455:7;14451:23;14447:32;14444:119;;;14482:79;;:::i;:::-;14444:119;14602:1;14627:53;14672:7;14663:6;14652:9;14648:22;14627:53;:::i;:::-;14617:63;;14573:117;14729:2;14755:50;14797:7;14788:6;14777:9;14773:22;14755:50;:::i;:::-;14745:60;;14700:115;14354:468;;;;;:::o;14828:118::-;14915:24;14933:5;14915:24;:::i;:::-;14910:3;14903:37;14828:118;;:::o;14952:222::-;15045:4;15083:2;15072:9;15068:18;15060:26;;15096:71;15164:1;15153:9;15149:17;15140:6;15096:71;:::i;:::-;14952:222;;;;:::o;15180:307::-;15241:4;15331:18;15323:6;15320:30;15317:56;;;15353:18;;:::i;:::-;15317:56;15391:29;15413:6;15391:29;:::i;:::-;15383:37;;15475:4;15469;15465:15;15457:23;;15180:307;;;:::o;15493:423::-;15570:5;15595:65;15611:48;15652:6;15611:48;:::i;:::-;15595:65;:::i;:::-;15586:74;;15683:6;15676:5;15669:21;15721:4;15714:5;15710:16;15759:3;15750:6;15745:3;15741:16;15738:25;15735:112;;;15766:79;;:::i;:::-;15735:112;15856:54;15903:6;15898:3;15893;15856:54;:::i;:::-;15576:340;15493:423;;;;;:::o;15935:338::-;15990:5;16039:3;16032:4;16024:6;16020:17;16016:27;16006:122;;16047:79;;:::i;:::-;16006:122;16164:6;16151:20;16189:78;16263:3;16255:6;16248:4;16240:6;16236:17;16189:78;:::i;:::-;16180:87;;15996:277;15935:338;;;;:::o;16279:943::-;16374:6;16382;16390;16398;16447:3;16435:9;16426:7;16422:23;16418:33;16415:120;;;16454:79;;:::i;:::-;16415:120;16574:1;16599:53;16644:7;16635:6;16624:9;16620:22;16599:53;:::i;:::-;16589:63;;16545:117;16701:2;16727:53;16772:7;16763:6;16752:9;16748:22;16727:53;:::i;:::-;16717:63;;16672:118;16829:2;16855:53;16900:7;16891:6;16880:9;16876:22;16855:53;:::i;:::-;16845:63;;16800:118;16985:2;16974:9;16970:18;16957:32;17016:18;17008:6;17005:30;17002:117;;;17038:79;;:::i;:::-;17002:117;17143:62;17197:7;17188:6;17177:9;17173:22;17143:62;:::i;:::-;17133:72;;16928:287;16279:943;;;;;;;:::o;17228:474::-;17296:6;17304;17353:2;17341:9;17332:7;17328:23;17324:32;17321:119;;;17359:79;;:::i;:::-;17321:119;17479:1;17504:53;17549:7;17540:6;17529:9;17525:22;17504:53;:::i;:::-;17494:63;;17450:117;17606:2;17632:53;17677:7;17668:6;17657:9;17653:22;17632:53;:::i;:::-;17622:63;;17577:118;17228:474;;;;;:::o;17708:180::-;17756:77;17753:1;17746:88;17853:4;17850:1;17843:15;17877:4;17874:1;17867:15;17894:320;17938:6;17975:1;17969:4;17965:12;17955:22;;18022:1;18016:4;18012:12;18043:18;18033:81;;18099:4;18091:6;18087:17;18077:27;;18033:81;18161:2;18153:6;18150:14;18130:18;18127:38;18124:84;;18180:18;;:::i;:::-;18124:84;17945:269;17894:320;;;:::o;18220:94::-;18253:8;18301:5;18297:2;18293:14;18272:35;;18220:94;;;:::o;18320:::-;18359:7;18388:20;18402:5;18388:20;:::i;:::-;18377:31;;18320:94;;;:::o;18420:100::-;18459:7;18488:26;18508:5;18488:26;:::i;:::-;18477:37;;18420:100;;;:::o;18526:157::-;18631:45;18651:24;18669:5;18651:24;:::i;:::-;18631:45;:::i;:::-;18626:3;18619:58;18526:157;;:::o;18689:256::-;18801:3;18816:75;18887:3;18878:6;18816:75;:::i;:::-;18916:2;18911:3;18907:12;18900:19;;18936:3;18929:10;;18689:256;;;;:::o;18951:221::-;19091:34;19087:1;19079:6;19075:14;19068:58;19160:4;19155:2;19147:6;19143:15;19136:29;18951:221;:::o;19178:366::-;19320:3;19341:67;19405:2;19400:3;19341:67;:::i;:::-;19334:74;;19417:93;19506:3;19417:93;:::i;:::-;19535:2;19530:3;19526:12;19519:19;;19178:366;;;:::o;19550:419::-;19716:4;19754:2;19743:9;19739:18;19731:26;;19803:9;19797:4;19793:20;19789:1;19778:9;19774:17;19767:47;19831:131;19957:4;19831:131;:::i;:::-;19823:139;;19550:419;;;:::o;19975:180::-;20115:32;20111:1;20103:6;20099:14;20092:56;19975:180;:::o;20161:366::-;20303:3;20324:67;20388:2;20383:3;20324:67;:::i;:::-;20317:74;;20400:93;20489:3;20400:93;:::i;:::-;20518:2;20513:3;20509:12;20502:19;;20161:366;;;:::o;20533:419::-;20699:4;20737:2;20726:9;20722:18;20714:26;;20786:9;20780:4;20776:20;20772:1;20761:9;20757:17;20750:47;20814:131;20940:4;20814:131;:::i;:::-;20806:139;;20533:419;;;:::o;20958:227::-;21098:34;21094:1;21086:6;21082:14;21075:58;21167:10;21162:2;21154:6;21150:15;21143:35;20958:227;:::o;21191:366::-;21333:3;21354:67;21418:2;21413:3;21354:67;:::i;:::-;21347:74;;21430:93;21519:3;21430:93;:::i;:::-;21548:2;21543:3;21539:12;21532:19;;21191:366;;;:::o;21563:419::-;21729:4;21767:2;21756:9;21752:18;21744:26;;21816:9;21810:4;21806:20;21802:1;21791:9;21787:17;21780:47;21844:131;21970:4;21844:131;:::i;:::-;21836:139;;21563:419;;;:::o;21988:180::-;22036:77;22033:1;22026:88;22133:4;22130:1;22123:15;22157:4;22154:1;22147:15;22174:191;22214:3;22233:20;22251:1;22233:20;:::i;:::-;22228:25;;22267:20;22285:1;22267:20;:::i;:::-;22262:25;;22310:1;22307;22303:9;22296:16;;22331:3;22328:1;22325:10;22322:36;;;22338:18;;:::i;:::-;22322:36;22174:191;;;;:::o;22371:159::-;22511:11;22507:1;22499:6;22495:14;22488:35;22371:159;:::o;22536:365::-;22678:3;22699:66;22763:1;22758:3;22699:66;:::i;:::-;22692:73;;22774:93;22863:3;22774:93;:::i;:::-;22892:2;22887:3;22883:12;22876:19;;22536:365;;;:::o;22907:419::-;23073:4;23111:2;23100:9;23096:18;23088:26;;23160:9;23154:4;23150:20;23146:1;23135:9;23131:17;23124:47;23188:131;23314:4;23188:131;:::i;:::-;23180:139;;22907:419;;;:::o;23332:222::-;23472:34;23468:1;23460:6;23456:14;23449:58;23541:5;23536:2;23528:6;23524:15;23517:30;23332:222;:::o;23560:366::-;23702:3;23723:67;23787:2;23782:3;23723:67;:::i;:::-;23716:74;;23799:93;23888:3;23799:93;:::i;:::-;23917:2;23912:3;23908:12;23901:19;;23560:366;;;:::o;23932:419::-;24098:4;24136:2;24125:9;24121:18;24113:26;;24185:9;24179:4;24175:20;24171:1;24160:9;24156:17;24149:47;24213:131;24339:4;24213:131;:::i;:::-;24205:139;;23932:419;;;:::o;24357:410::-;24397:7;24420:20;24438:1;24420:20;:::i;:::-;24415:25;;24454:20;24472:1;24454:20;:::i;:::-;24449:25;;24509:1;24506;24502:9;24531:30;24549:11;24531:30;:::i;:::-;24520:41;;24710:1;24701:7;24697:15;24694:1;24691:22;24671:1;24664:9;24644:83;24621:139;;24740:18;;:::i;:::-;24621:139;24405:362;24357:410;;;;:::o;24773:172::-;24913:24;24909:1;24901:6;24897:14;24890:48;24773:172;:::o;24951:366::-;25093:3;25114:67;25178:2;25173:3;25114:67;:::i;:::-;25107:74;;25190:93;25279:3;25190:93;:::i;:::-;25308:2;25303:3;25299:12;25292:19;;24951:366;;;:::o;25323:419::-;25489:4;25527:2;25516:9;25512:18;25504:26;;25576:9;25570:4;25566:20;25562:1;25551:9;25547:17;25540:47;25604:131;25730:4;25604:131;:::i;:::-;25596:139;;25323:419;;;:::o;25748:180::-;25796:77;25793:1;25786:88;25893:4;25890:1;25883:15;25917:4;25914:1;25907:15;25934:185;25974:1;25991:20;26009:1;25991:20;:::i;:::-;25986:25;;26025:20;26043:1;26025:20;:::i;:::-;26020:25;;26064:1;26054:35;;26069:18;;:::i;:::-;26054:35;26111:1;26108;26104:9;26099:14;;25934:185;;;;:::o;26125:194::-;26165:4;26185:20;26203:1;26185:20;:::i;:::-;26180:25;;26219:20;26237:1;26219:20;:::i;:::-;26214:25;;26263:1;26260;26256:9;26248:17;;26287:1;26281:4;26278:11;26275:37;;;26292:18;;:::i;:::-;26275:37;26125:194;;;;:::o;26325:332::-;26446:4;26484:2;26473:9;26469:18;26461:26;;26497:71;26565:1;26554:9;26550:17;26541:6;26497:71;:::i;:::-;26578:72;26646:2;26635:9;26631:18;26622:6;26578:72;:::i;:::-;26325:332;;;;;:::o;26663:137::-;26717:5;26748:6;26742:13;26733:22;;26764:30;26788:5;26764:30;:::i;:::-;26663:137;;;;:::o;26806:345::-;26873:6;26922:2;26910:9;26901:7;26897:23;26893:32;26890:119;;;26928:79;;:::i;:::-;26890:119;27048:1;27073:61;27126:7;27117:6;27106:9;27102:22;27073:61;:::i;:::-;27063:71;;27019:125;26806:345;;;;:::o;27157:166::-;27297:18;27293:1;27285:6;27281:14;27274:42;27157:166;:::o;27329:366::-;27471:3;27492:67;27556:2;27551:3;27492:67;:::i;:::-;27485:74;;27568:93;27657:3;27568:93;:::i;:::-;27686:2;27681:3;27677:12;27670:19;;27329:366;;;:::o;27701:419::-;27867:4;27905:2;27894:9;27890:18;27882:26;;27954:9;27948:4;27944:20;27940:1;27929:9;27925:17;27918:47;27982:131;28108:4;27982:131;:::i;:::-;27974:139;;27701:419;;;:::o;28126:177::-;28266:29;28262:1;28254:6;28250:14;28243:53;28126:177;:::o;28309:366::-;28451:3;28472:67;28536:2;28531:3;28472:67;:::i;:::-;28465:74;;28548:93;28637:3;28548:93;:::i;:::-;28666:2;28661:3;28657:12;28650:19;;28309:366;;;:::o;28681:419::-;28847:4;28885:2;28874:9;28870:18;28862:26;;28934:9;28928:4;28924:20;28920:1;28909:9;28905:17;28898:47;28962:131;29088:4;28962:131;:::i;:::-;28954:139;;28681:419;;;:::o;29106:180::-;29154:77;29151:1;29144:88;29251:4;29248:1;29241:15;29275:4;29272:1;29265:15;29292:233;29331:3;29354:24;29372:5;29354:24;:::i;:::-;29345:33;;29400:66;29393:5;29390:77;29387:103;;29470:18;;:::i;:::-;29387:103;29517:1;29510:5;29506:13;29499:20;;29292:233;;;:::o;29531:141::-;29580:4;29603:3;29595:11;;29626:3;29623:1;29616:14;29660:4;29657:1;29647:18;29639:26;;29531:141;;;:::o;29678:93::-;29715:6;29762:2;29757;29750:5;29746:14;29742:23;29732:33;;29678:93;;;:::o;29777:107::-;29821:8;29871:5;29865:4;29861:16;29840:37;;29777:107;;;;:::o;29890:393::-;29959:6;30009:1;29997:10;29993:18;30032:97;30062:66;30051:9;30032:97;:::i;:::-;30150:39;30180:8;30169:9;30150:39;:::i;:::-;30138:51;;30222:4;30218:9;30211:5;30207:21;30198:30;;30271:4;30261:8;30257:19;30250:5;30247:30;30237:40;;29966:317;;29890:393;;;;;:::o;30289:60::-;30317:3;30338:5;30331:12;;30289:60;;;:::o;30355:142::-;30405:9;30438:53;30456:34;30465:24;30483:5;30465:24;:::i;:::-;30456:34;:::i;:::-;30438:53;:::i;:::-;30425:66;;30355:142;;;:::o;30503:75::-;30546:3;30567:5;30560:12;;30503:75;;;:::o;30584:269::-;30694:39;30725:7;30694:39;:::i;:::-;30755:91;30804:41;30828:16;30804:41;:::i;:::-;30796:6;30789:4;30783:11;30755:91;:::i;:::-;30749:4;30742:105;30660:193;30584:269;;;:::o;30859:73::-;30904:3;30859:73;:::o;30938:189::-;31015:32;;:::i;:::-;31056:65;31114:6;31106;31100:4;31056:65;:::i;:::-;30991:136;30938:189;;:::o;31133:186::-;31193:120;31210:3;31203:5;31200:14;31193:120;;;31264:39;31301:1;31294:5;31264:39;:::i;:::-;31237:1;31230:5;31226:13;31217:22;;31193:120;;;31133:186;;:::o;31325:543::-;31426:2;31421:3;31418:11;31415:446;;;31460:38;31492:5;31460:38;:::i;:::-;31544:29;31562:10;31544:29;:::i;:::-;31534:8;31530:44;31727:2;31715:10;31712:18;31709:49;;;31748:8;31733:23;;31709:49;31771:80;31827:22;31845:3;31827:22;:::i;:::-;31817:8;31813:37;31800:11;31771:80;:::i;:::-;31430:431;;31415:446;31325:543;;;:::o;31874:117::-;31928:8;31978:5;31972:4;31968:16;31947:37;;31874:117;;;;:::o;31997:169::-;32041:6;32074:51;32122:1;32118:6;32110:5;32107:1;32103:13;32074:51;:::i;:::-;32070:56;32155:4;32149;32145:15;32135:25;;32048:118;31997:169;;;;:::o;32171:295::-;32247:4;32393:29;32418:3;32412:4;32393:29;:::i;:::-;32385:37;;32455:3;32452:1;32448:11;32442:4;32439:21;32431:29;;32171:295;;;;:::o;32471:1395::-;32588:37;32621:3;32588:37;:::i;:::-;32690:18;32682:6;32679:30;32676:56;;;32712:18;;:::i;:::-;32676:56;32756:38;32788:4;32782:11;32756:38;:::i;:::-;32841:67;32901:6;32893;32887:4;32841:67;:::i;:::-;32935:1;32959:4;32946:17;;32991:2;32983:6;32980:14;33008:1;33003:618;;;;33665:1;33682:6;33679:77;;;33731:9;33726:3;33722:19;33716:26;33707:35;;33679:77;33782:67;33842:6;33835:5;33782:67;:::i;:::-;33776:4;33769:81;33638:222;32973:887;;33003:618;33055:4;33051:9;33043:6;33039:22;33089:37;33121:4;33089:37;:::i;:::-;33148:1;33162:208;33176:7;33173:1;33170:14;33162:208;;;33255:9;33250:3;33246:19;33240:26;33232:6;33225:42;33306:1;33298:6;33294:14;33284:24;;33353:2;33342:9;33338:18;33325:31;;33199:4;33196:1;33192:12;33187:17;;33162:208;;;33398:6;33389:7;33386:19;33383:179;;;33456:9;33451:3;33447:19;33441:26;33499:48;33541:4;33533:6;33529:17;33518:9;33499:48;:::i;:::-;33491:6;33484:64;33406:156;33383:179;33608:1;33604;33596:6;33592:14;33588:22;33582:4;33575:36;33010:611;;;32973:887;;32563:1303;;;32471:1395;;:::o;33872:165::-;34012:17;34008:1;34000:6;33996:14;33989:41;33872:165;:::o;34043:366::-;34185:3;34206:67;34270:2;34265:3;34206:67;:::i;:::-;34199:74;;34282:93;34371:3;34282:93;:::i;:::-;34400:2;34395:3;34391:12;34384:19;;34043:366;;;:::o;34415:419::-;34581:4;34619:2;34608:9;34604:18;34596:26;;34668:9;34662:4;34658:20;34654:1;34643:9;34639:17;34632:47;34696:131;34822:4;34696:131;:::i;:::-;34688:139;;34415:419;;;:::o;34840:173::-;34980:25;34976:1;34968:6;34964:14;34957:49;34840:173;:::o;35019:366::-;35161:3;35182:67;35246:2;35241:3;35182:67;:::i;:::-;35175:74;;35258:93;35347:3;35258:93;:::i;:::-;35376:2;35371:3;35367:12;35360:19;;35019:366;;;:::o;35391:419::-;35557:4;35595:2;35584:9;35580:18;35572:26;;35644:9;35638:4;35634:20;35630:1;35619:9;35615:17;35608:47;35672:131;35798:4;35672:131;:::i;:::-;35664:139;;35391:419;;;:::o;35816:227::-;35956:34;35952:1;35944:6;35940:14;35933:58;36025:10;36020:2;36012:6;36008:15;36001:35;35816:227;:::o;36049:366::-;36191:3;36212:67;36276:2;36271:3;36212:67;:::i;:::-;36205:74;;36288:93;36377:3;36288:93;:::i;:::-;36406:2;36401:3;36397:12;36390:19;;36049:366;;;:::o;36421:419::-;36587:4;36625:2;36614:9;36610:18;36602:26;;36674:9;36668:4;36664:20;36660:1;36649:9;36645:17;36638:47;36702:131;36828:4;36702:131;:::i;:::-;36694:139;;36421:419;;;:::o;36846:234::-;36986:34;36982:1;36974:6;36970:14;36963:58;37055:17;37050:2;37042:6;37038:15;37031:42;36846:234;:::o;37086:366::-;37228:3;37249:67;37313:2;37308:3;37249:67;:::i;:::-;37242:74;;37325:93;37414:3;37325:93;:::i;:::-;37443:2;37438:3;37434:12;37427:19;;37086:366;;;:::o;37458:419::-;37624:4;37662:2;37651:9;37647:18;37639:26;;37711:9;37705:4;37701:20;37697:1;37686:9;37682:17;37675:47;37739:131;37865:4;37739:131;:::i;:::-;37731:139;;37458:419;;;:::o;37883:148::-;37985:11;38022:3;38007:18;;37883:148;;;;:::o;38061:874::-;38164:3;38201:5;38195:12;38230:36;38256:9;38230:36;:::i;:::-;38282:89;38364:6;38359:3;38282:89;:::i;:::-;38275:96;;38402:1;38391:9;38387:17;38418:1;38413:166;;;;38593:1;38588:341;;;;38380:549;;38413:166;38497:4;38493:9;38482;38478:25;38473:3;38466:38;38559:6;38552:14;38545:22;38537:6;38533:35;38528:3;38524:45;38517:52;;38413:166;;38588:341;38655:38;38687:5;38655:38;:::i;:::-;38715:1;38729:154;38743:6;38740:1;38737:13;38729:154;;;38817:7;38811:14;38807:1;38802:3;38798:11;38791:35;38867:1;38858:7;38854:15;38843:26;;38765:4;38762:1;38758:12;38753:17;;38729:154;;;38912:6;38907:3;38903:16;38896:23;;38595:334;;38380:549;;38168:767;;38061:874;;;;:::o;38941:390::-;39047:3;39075:39;39108:5;39075:39;:::i;:::-;39130:89;39212:6;39207:3;39130:89;:::i;:::-;39123:96;;39228:65;39286:6;39281:3;39274:4;39267:5;39263:16;39228:65;:::i;:::-;39318:6;39313:3;39309:16;39302:23;;39051:280;38941:390;;;;:::o;39337:155::-;39477:7;39473:1;39465:6;39461:14;39454:31;39337:155;:::o;39498:400::-;39658:3;39679:84;39761:1;39756:3;39679:84;:::i;:::-;39672:91;;39772:93;39861:3;39772:93;:::i;:::-;39890:1;39885:3;39881:11;39874:18;;39498:400;;;:::o;39904:695::-;40182:3;40204:92;40292:3;40283:6;40204:92;:::i;:::-;40197:99;;40313:95;40404:3;40395:6;40313:95;:::i;:::-;40306:102;;40425:148;40569:3;40425:148;:::i;:::-;40418:155;;40590:3;40583:10;;39904:695;;;;;:::o;40605:225::-;40745:34;40741:1;40733:6;40729:14;40722:58;40814:8;40809:2;40801:6;40797:15;40790:33;40605:225;:::o;40836:366::-;40978:3;40999:67;41063:2;41058:3;40999:67;:::i;:::-;40992:74;;41075:93;41164:3;41075:93;:::i;:::-;41193:2;41188:3;41184:12;41177:19;;40836:366;;;:::o;41208:419::-;41374:4;41412:2;41401:9;41397:18;41389:26;;41461:9;41455:4;41451:20;41447:1;41436:9;41432:17;41425:47;41489:131;41615:4;41489:131;:::i;:::-;41481:139;;41208:419;;;:::o;41633:171::-;41773:23;41769:1;41761:6;41757:14;41750:47;41633:171;:::o;41810:366::-;41952:3;41973:67;42037:2;42032:3;41973:67;:::i;:::-;41966:74;;42049:93;42138:3;42049:93;:::i;:::-;42167:2;42162:3;42158:12;42151:19;;41810:366;;;:::o;42182:419::-;42348:4;42386:2;42375:9;42371:18;42363:26;;42435:9;42429:4;42425:20;42421:1;42410:9;42406:17;42399:47;42463:131;42589:4;42463:131;:::i;:::-;42455:139;;42182:419;;;:::o;42607:177::-;42747:29;42743:1;42735:6;42731:14;42724:53;42607:177;:::o;42790:366::-;42932:3;42953:67;43017:2;43012:3;42953:67;:::i;:::-;42946:74;;43029:93;43118:3;43029:93;:::i;:::-;43147:2;43142:3;43138:12;43131:19;;42790:366;;;:::o;43162:419::-;43328:4;43366:2;43355:9;43351:18;43343:26;;43415:9;43409:4;43405:20;43401:1;43390:9;43386:17;43379:47;43443:131;43569:4;43443:131;:::i;:::-;43435:139;;43162:419;;;:::o;43587:229::-;43727:34;43723:1;43715:6;43711:14;43704:58;43796:12;43791:2;43783:6;43779:15;43772:37;43587:229;:::o;43822:366::-;43964:3;43985:67;44049:2;44044:3;43985:67;:::i;:::-;43978:74;;44061:93;44150:3;44061:93;:::i;:::-;44179:2;44174:3;44170:12;44163:19;;43822:366;;;:::o;44194:419::-;44360:4;44398:2;44387:9;44383:18;44375:26;;44447:9;44441:4;44437:20;44433:1;44422:9;44418:17;44411:47;44475:131;44601:4;44475:131;:::i;:::-;44467:139;;44194:419;;;:::o;44619:182::-;44759:34;44755:1;44747:6;44743:14;44736:58;44619:182;:::o;44807:366::-;44949:3;44970:67;45034:2;45029:3;44970:67;:::i;:::-;44963:74;;45046:93;45135:3;45046:93;:::i;:::-;45164:2;45159:3;45155:12;45148:19;;44807:366;;;:::o;45179:419::-;45345:4;45383:2;45372:9;45368:18;45360:26;;45432:9;45426:4;45422:20;45418:1;45407:9;45403:17;45396:47;45460:131;45586:4;45460:131;:::i;:::-;45452:139;;45179:419;;;:::o;45604:231::-;45744:34;45740:1;45732:6;45728:14;45721:58;45813:14;45808:2;45800:6;45796:15;45789:39;45604:231;:::o;45841:366::-;45983:3;46004:67;46068:2;46063:3;46004:67;:::i;:::-;45997:74;;46080:93;46169:3;46080:93;:::i;:::-;46198:2;46193:3;46189:12;46182:19;;45841:366;;;:::o;46213:419::-;46379:4;46417:2;46406:9;46402:18;46394:26;;46466:9;46460:4;46456:20;46452:1;46441:9;46437:17;46430:47;46494:131;46620:4;46494:131;:::i;:::-;46486:139;;46213:419;;;:::o;46638:98::-;46689:6;46723:5;46717:12;46707:22;;46638:98;;;:::o;46742:168::-;46825:11;46859:6;46854:3;46847:19;46899:4;46894:3;46890:14;46875:29;;46742:168;;;;:::o;46916:373::-;47002:3;47030:38;47062:5;47030:38;:::i;:::-;47084:70;47147:6;47142:3;47084:70;:::i;:::-;47077:77;;47163:65;47221:6;47216:3;47209:4;47202:5;47198:16;47163:65;:::i;:::-;47253:29;47275:6;47253:29;:::i;:::-;47248:3;47244:39;47237:46;;47006:283;46916:373;;;;:::o;47295:640::-;47490:4;47528:3;47517:9;47513:19;47505:27;;47542:71;47610:1;47599:9;47595:17;47586:6;47542:71;:::i;:::-;47623:72;47691:2;47680:9;47676:18;47667:6;47623:72;:::i;:::-;47705;47773:2;47762:9;47758:18;47749:6;47705:72;:::i;:::-;47824:9;47818:4;47814:20;47809:2;47798:9;47794:18;47787:48;47852:76;47923:4;47914:6;47852:76;:::i;:::-;47844:84;;47295:640;;;;;;;:::o;47941:141::-;47997:5;48028:6;48022:13;48013:22;;48044:32;48070:5;48044:32;:::i;:::-;47941:141;;;;:::o;48088:349::-;48157:6;48206:2;48194:9;48185:7;48181:23;48177:32;48174:119;;;48212:79;;:::i;:::-;48174:119;48332:1;48357:63;48412:7;48403:6;48392:9;48388:22;48357:63;:::i;:::-;48347:73;;48303:127;48088:349;;;;:::o
Swarm Source
ipfs://390ac488151c4d50df5d2d22bdf5e8694923ad2747ef14039f184308950e226e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.