Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
1,498 BYORD
Holders
619
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 BYORDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Byord
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-28 */ // SPDX-License-Identifier: MIT //....########..##....##..#######..########..########..... //....##.....##..##..##..##.....##.##.....##.##.....##.... //....##.....##...####...##.....##.##.....##.##.....##.... //....########.....##....##.....##.########..##.....##.... //....##.....##....##....##.....##.##...##...##.....##.... //....##.....##....##....##.....##.##....##..##.....##.... //....########.....##.....#######..##.....##.########..... pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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 ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File erc721a/contracts/[email protected] // MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); } // File erc721a/contracts/extensions/[email protected] // MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721AQueryable compliant contract. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File @openzeppelin/contracts/token/ERC721/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/utils/[email protected] // MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // 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; } } // File @openzeppelin/contracts/utils/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File erc721a/contracts/[email protected] // MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File erc721a/contracts/extensions/[email protected] // MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _currentIndex) { return ownership; } ownership = _ownerships[tokenId]; if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _currentIndex; // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, _currentIndex)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File @openzeppelin/contracts/access/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) 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. */ 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 Merklee 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) } } } // File @openzeppelin/contracts/security/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File contracts/Byord.sol // MIT pragma solidity >=0.8.9 <0.9.0; interface RDIERC721 { event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); function balanceOf(address owner) external view returns (uint256 balance); function ownerOf(uint256 tokenId) external view returns (address owner); function safeTransferFrom( address from, address to, uint256 tokenId ) external; function transferFrom( address from, address to, uint256 tokenId ) external; function approve(address to, uint256 tokenId) external; function getApproved(uint256 tokenId) external view returns (address operator); function setApprovalForAll(address operator, bool _approved) external; function isApprovedForAll(address owner, address operator) external view returns (bool); function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; function walletOfOwner(address _owner) external view returns (uint256[] memory); } contract Byord is ERC721AQueryable, Ownable, ReentrancyGuard { using Strings for uint256; RDIERC721 public rdc; address public _signer; bytes32 public merkleRoot; bytes32 public honorariesMerkleRoot; bytes32 public waitListMerkleRoot; mapping(uint256 => bool) public genesisClaimed; mapping(address => uint256) public mintedForAddress; mapping(address => uint256) public honoraryAddressMinted; string public uriPrefix = ''; string public uriSuffix = '.json'; uint256 public cost=200000000000000000; uint256 public maxListSupply=2801; uint256 public maxClaimingSupply=2001; uint256 public maxHonorarySupply=201; uint256 public maxSupply=5001; uint256 public maxMintAmountPerTx=3; uint256 public maxMintAmountPerAddress=3; uint256 public honoraryIndex; uint256 public claimedIndex; uint256 public listIndex; uint256 public openIndex; bool public paused = true; bool public allowListMintEnabled = true; bool public waitListMintEnabled = false; bool public honoraryListMintEnabled = true; bool public openSaleEnabled = false; bool public claimingEnabled = false; constructor( address _genesisContract ) ERC721A("BYORD", "BYORD") { rdc=RDIERC721(_genesisContract); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount < maxMintAmountPerTx, 'Invalid mint amount!'); require(totalSupply() + _mintAmount < maxSupply, 'Max supply exceeded!'); _; } modifier mintPriceCompliance(uint256 _mintAmount) { require(msg.value >= cost * _mintAmount, 'Insufficient funds!'); _; } function merkleMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { require(!paused, 'The contract is paused!'); require(allowListMintEnabled||waitListMintEnabled, 'The sale is not enabled!'); // Verify whitelist requirements require(listIndex + _mintAmount < maxListSupply, 'Max supply exceeded!'); uint256 alreadyMintedPlusMintAmount=mintedForAddress[_msgSender()]+_mintAmount; require(alreadyMintedPlusMintAmount<maxMintAmountPerAddress,'Max Amount per Address exceeded!!'); bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); bytes32 root=allowListMintEnabled?merkleRoot:waitListMerkleRoot; require(MerkleProof.verify(_merkleProof, root, leaf), 'Invalid proof!'); mintedForAddress[_msgSender()]=alreadyMintedPlusMintAmount; listIndex= listIndex+_mintAmount; _safeMint(_msgSender(), _mintAmount); } function honoraryMint(uint256 _mintAmount, bytes calldata signature, uint256 maxAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { require(!paused, 'The contract is paused!'); require(honoraryListMintEnabled, 'The honoraries sale is not enabled!'); require(honoraryIndex+_mintAmount<maxHonorarySupply,'Max Honoraries reserved supply exceeded!'); require(verifyQuant(_msgSender(), maxAmount, signature), 'Parameters not valid'); uint256 minted=honoraryAddressMinted[_msgSender()]; uint256 mintedPlusAmount=minted+_mintAmount; require(mintedPlusAmount<maxAmount,'max Amount For Honoraries exceeded'); honoraryAddressMinted[_msgSender()]=mintedPlusAmount; honoraryIndex+=_mintAmount; _safeMint(_msgSender(), _mintAmount); } function claim(uint256[] calldata ownedGenesis) public { require(!paused, 'The contract is paused!'); require(claimingEnabled, 'The claiming is not enabled!'); uint ownedLength=ownedGenesis.length; require(ownedLength>0, 'No genesis tokens owned!'); for (uint i = 0; i < ownedLength; i++) { uint256 tokenId=ownedGenesis[i]; require(rdc.ownerOf(tokenId)==_msgSender(),'Not owned Token'); require(genesisClaimed[tokenId]!=true,'Some tokens are already claimed'); genesisClaimed[tokenId]=true; } require(claimedIndex + ownedLength < maxClaimingSupply, 'Max claiming supply exceeded!'); claimedIndex= claimedIndex+ownedLength; _safeMint(_msgSender(), ownedLength); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { require(!paused, 'The contract is paused!'); require(openSaleEnabled, 'The open sale is not enabled!'); //max for buy is 3000, 2800 are initially reserved for lists, 200 for honoraries. //whatever remain from list sales and honoraries become available for public uint256 maxOpenSupply=((2800-listIndex)+ (200-honoraryIndex))+1; require( openIndex+ _mintAmount < maxOpenSupply, 'Max opensale available supply exceeded!'); uint256 alreadyMintedPlusMintAmount=mintedForAddress[_msgSender()]+_mintAmount; require(alreadyMintedPlusMintAmount<maxMintAmountPerAddress,'Max Amount per Address exceeded!!'); mintedForAddress[_msgSender()]=alreadyMintedPlusMintAmount; openIndex= openIndex+_mintAmount; _safeMint(_msgSender(), _mintAmount); } function unclaimedToOwner() public onlyOwner { uint256 unclaimed=(maxClaimingSupply-1)-claimedIndex; if(unclaimed>0){ claimedIndex=claimedIndex+unclaimed; _safeMint(_msgSender(), unclaimed); } } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function isTokenAlreadyClaimed(uint tokenId) public view returns(bool){ return genesisClaimed[tokenId]; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ''; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setMaxMintAmountPerAddress(uint256 _maxMintAmountPerAddress) public onlyOwner { maxMintAmountPerAddress = _maxMintAmountPerAddress; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function setHonorariesMerkleRoot(bytes32 _merkleRoot) public onlyOwner { honorariesMerkleRoot = _merkleRoot; } function setWaitListMerkleRoot(bytes32 _merkleRoot) public onlyOwner { waitListMerkleRoot = _merkleRoot; } function setAllowListMintEnabled(bool _state) public onlyOwner { allowListMintEnabled = _state; } function setWaitListMintEnabled(bool _state) public onlyOwner { waitListMintEnabled = _state; } function setHonoraryListMintEnabled(bool _state) public onlyOwner { honoraryListMintEnabled = _state; } // function setOpenSaleMintEnabled(bool _state) public onlyOwner { openSaleEnabled = _state; } function setClaimingEnabled(bool _state) public onlyOwner { claimingEnabled = _state; } function setRdc(address _genesisContract) public onlyOwner { rdc=RDIERC721(_genesisContract); } function setSigner(address _newSigner) public onlyOwner { _signer=_newSigner; } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } //-------------------------- Signature verification --------------------------------------// function getMessageHashQuant( address _to, uint _amount ) public pure returns (bytes32) { return keccak256(abi.encodePacked(_to, _amount)); } function getEthSignedMessageHash(bytes32 _messageHash) public pure returns (bytes32) { return keccak256( abi.encodePacked("\x19Ethereum Signed Message:\n32", _messageHash) ); } function verifyQuant( address _to, uint _amount, bytes memory signature ) public view returns (bool) { bytes32 messageHash = getMessageHashQuant(_to, _amount); bytes32 ethSignedMessageHash = getEthSignedMessageHash(messageHash); return recoverSigner(ethSignedMessageHash, signature) == _signer; } function recoverSigner(bytes32 _ethSignedMessageHash, bytes memory _signature) public pure returns (address) { (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature); return ecrecover(_ethSignedMessageHash, v, r, s); } function splitSignature(bytes memory sig) public pure returns ( bytes32 r, bytes32 s, uint8 v ) { require(sig.length == 65, "invalid signature length"); assembly { r := mload(add(sig, 32)) s := mload(add(sig, 64)) v := byte(0, mload(add(sig, 96))) } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_genesisContract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"_signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ownedGenesis","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"genesisClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_messageHash","type":"bytes32"}],"name":"getEthSignedMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"getMessageHashQuant","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"honorariesMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"honoraryAddressMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"honoraryIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"honoraryListMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"maxAmount","type":"uint256"}],"name":"honoraryMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isTokenAlreadyClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"listIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxClaimingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHonorarySupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxListSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"merkleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedForAddress","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":"openIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rdc","outputs":[{"internalType":"contract RDIERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_ethSignedMessageHash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setAllowListMintEnabled","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":"bool","name":"_state","type":"bool"}],"name":"setClaimingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setHonorariesMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setHonoraryListMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerAddress","type":"uint256"}],"name":"setMaxMintAmountPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOpenSaleMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_genesisContract","type":"address"}],"name":"setRdc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newSigner","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWaitListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWaitListMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unclaimedToOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"verifyQuant","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"waitListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"waitListMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b91601291620001a3565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91601391620001a3565b506702c68af0bb140000601455610af16015556107d160165560c960175561138960185560036019819055601a55601f805465ffffffffffff191663010001011790553480156200009a57600080fd5b5060405162003fc438038062003fc4833981016040819052620000bd9162000249565b604080518082018252600580825264109653d49160da1b602080840182815285518087019096529285528401528151919291620000fd91600291620001a3565b50805162000113906003906020840190620001a3565b5050600160005550620001263362000151565b6001600955600a80546001600160a01b0319166001600160a01b0392909216919091179055620002b8565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b1906200027b565b90600052602060002090601f016020900481019282620001d5576000855562000220565b82601f10620001f057805160ff191683800117855562000220565b8280016001018555821562000220579182015b828111156200022057825182559160200191906001019062000203565b506200022e92915062000232565b5090565b5b808211156200022e576000815560010162000233565b6000602082840312156200025c57600080fd5b81516001600160a01b03811681146200027457600080fd5b9392505050565b600181811c908216806200029057607f821691505b60208210811415620002b257634e487b7160e01b600052602260045260246000fd5b50919050565b613cfc80620002c86000396000f3fe6080604052600436106104475760003560e01c80636c19e78311610234578063a22cb4651161012e578063c23dc68f116100b6578063e1653f181161007a578063e1653f1814610cf0578063e985e9c514610d10578063f2fde38b14610d59578063f4492d7e14610d79578063fa54080114610d9957600080fd5b8063c23dc68f14610c57578063c87b56dd14610c84578063ca29e8c814610ca4578063d5abeb0114610cc4578063dcdc419214610cda57600080fd5b8063b071401b116100fd578063b071401b14610baa578063b6c7288814610bca578063b88d4fde14610bea578063bdd87f8014610c0a578063c0216e3c14610c2a57600080fd5b8063a22cb46514610b09578063a36d2cbf14610b29578063a7bb580314610b59578063ac53264f14610b9757600080fd5b80638f3ee3ab116101bc57806397aba7f91161018057806397aba7f914610a8057806399a2557a14610aa05780639c73815814610ac05780639f83115414610ad6578063a0712d6814610af657600080fd5b80638f3ee3ab146109fe57806391a548f914610a1e57806394354fd014610a3457806395d89b4114610a4a5780639627875714610a5f57600080fd5b80637cb64759116102035780637cb64759146109515780637ec4a659146109715780638462151c146109915780638bdadd29146109be5780638da5cb5b146109e057600080fd5b80636c19e783146108cc57806370a08231146108ec578063715018a61461090c57806373b0f1191461092157600080fd5b80633c32a3cd116103455780635697f53e116102cd5780635c975abb116102915780635c975abb1461083d57806362b99ad4146108575780636352211e1461086c5780636503a36c1461088c5780636ba4c138146108ac57600080fd5b80635697f53e146107ae57806357563197146107ce5780635bbb2177146107e45780635bf0b668146108115780635c41d75e1461082757600080fd5b806344707b591161031457806344707b59146107315780634495b7601461075057806344a0d68a146107665780635503a0e814610786578063566e41051461079b57600080fd5b80633c32a3cd146106d15780633c9a6e35146106e65780633ccfd60b146106fc57806342842e0e1461071157600080fd5b806313faede6116103d35780631c3b106d116103975780631c3b106d1461062e57806323b872dd1461065b5780632eb4a7ab1461067b5780633aa9d9cb146106915780633b49b89b146106b157600080fd5b806313faede61461059a57806316ba10e0146105b057806316c38b3c146105d057806318160ddd146105f0578063195429031461060e57600080fd5b806307e10d471161041a57806307e10d47146104e7578063081812fc146104fd57806308344bdd14610535578063095ea7b3146105555780630e141a9b1461057757600080fd5b806301ffc9a71461044c578063037b57b714610481578063047063bf146104a157806306fdde03146104c5575b600080fd5b34801561045857600080fd5b5061046c61046736600461321e565b610db9565b60405190151581526020015b60405180910390f35b34801561048d57600080fd5b50601f5461046c9062010000900460ff1681565b3480156104ad57600080fd5b506104b7601e5481565b604051908152602001610478565b3480156104d157600080fd5b506104da610e0b565b6040516104789190613293565b3480156104f357600080fd5b506104b7600e5481565b34801561050957600080fd5b5061051d6105183660046132a6565b610e9d565b6040516001600160a01b039091168152602001610478565b34801561054157600080fd5b50600a5461051d906001600160a01b031681565b34801561056157600080fd5b506105756105703660046132d4565b610ee1565b005b34801561058357600080fd5b50601f5461046c9065010000000000900460ff1681565b3480156105a657600080fd5b506104b760145481565b3480156105bc57600080fd5b506105756105cb36600461339d565b610f68565b3480156105dc57600080fd5b506105756105eb3660046133fa565b610fb2565b3480156105fc57600080fd5b506104b7600154600054036000190190565b34801561061a57600080fd5b506105756106293660046133fa565b610fef565b34801561063a57600080fd5b506104b7610649366004613415565b60106020526000908152604090205481565b34801561066757600080fd5b50610575610676366004613432565b611033565b34801561068757600080fd5b506104b7600c5481565b34801561069d57600080fd5b506105756106ac3660046133fa565b61103e565b3480156106bd57600080fd5b506105756106cc3660046133fa565b611086565b3480156106dd57600080fd5b506105756110cc565b3480156106f257600080fd5b506104b7600d5481565b34801561070857600080fd5b5061057561113b565b34801561071d57600080fd5b5061057561072c366004613432565b611236565b34801561073d57600080fd5b50601f5461046c90610100900460ff1681565b34801561075c57600080fd5b506104b760165481565b34801561077257600080fd5b506105756107813660046132a6565b611251565b34801561079257600080fd5b506104da611280565b6105756107a93660046134be565b61130e565b3480156107ba57600080fd5b506105756107c93660046132a6565b6115b1565b3480156107da57600080fd5b506104b760175481565b3480156107f057600080fd5b506108046107ff366004613509565b6115e0565b60405161047891906135ae565b34801561081d57600080fd5b506104b7601b5481565b34801561083357600080fd5b506104b7601a5481565b34801561084957600080fd5b50601f5461046c9060ff1681565b34801561086357600080fd5b506104da6116a6565b34801561087857600080fd5b5061051d6108873660046132a6565b6116b3565b34801561089857600080fd5b506105756108a73660046132a6565b6116c5565b3480156108b857600080fd5b506105756108c7366004613618565b6116f4565b3480156108d857600080fd5b506105756108e7366004613415565b6119bf565b3480156108f857600080fd5b506104b7610907366004613415565b611a0b565b34801561091857600080fd5b50610575611a59565b34801561092d57600080fd5b5061046c61093c3660046132a6565b600f6020526000908152604090205460ff1681565b34801561095d57600080fd5b5061057561096c3660046132a6565b611a8f565b34801561097d57600080fd5b5061057561098c36600461339d565b611abe565b34801561099d57600080fd5b506109b16109ac366004613415565b611afb565b6040516104789190613659565b3480156109ca57600080fd5b50601f5461046c90640100000000900460ff1681565b3480156109ec57600080fd5b506008546001600160a01b031661051d565b348015610a0a57600080fd5b50610575610a193660046132a6565b611c48565b348015610a2a57600080fd5b506104b760155481565b348015610a4057600080fd5b506104b760195481565b348015610a5657600080fd5b506104da611c77565b348015610a6b57600080fd5b50601f5461046c906301000000900460ff1681565b348015610a8c57600080fd5b5061051d610a9b3660046136b1565b611c86565b348015610aac57600080fd5b506109b1610abb3660046136f7565b611d05565b348015610acc57600080fd5b506104b7601d5481565b348015610ae257600080fd5b50610575610af13660046133fa565b611ecb565b610575610b043660046132a6565b611f15565b348015610b1557600080fd5b50610575610b2436600461372c565b61213f565b348015610b3557600080fd5b5061046c610b443660046132a6565b6000908152600f602052604090205460ff1690565b348015610b6557600080fd5b50610b79610b74366004613761565b6121d5565b60408051938452602084019290925260ff1690820152606001610478565b610575610ba5366004613795565b612249565b348015610bb657600080fd5b50610575610bc53660046132a6565b612506565b348015610bd657600080fd5b50610575610be53660046133fa565b612535565b348015610bf657600080fd5b50610575610c05366004613816565b612581565b348015610c1657600080fd5b50610575610c25366004613415565b6125cb565b348015610c3657600080fd5b506104b7610c45366004613415565b60116020526000908152604090205481565b348015610c6357600080fd5b50610c77610c723660046132a6565b612617565b6040516104789190613881565b348015610c9057600080fd5b506104da610c9f3660046132a6565b6126d1565b348015610cb057600080fd5b50600b5461051d906001600160a01b031681565b348015610cd057600080fd5b506104b760185481565b348015610ce657600080fd5b506104b7601c5481565b348015610cfc57600080fd5b5061046c610d0b3660046138b6565b61279e565b348015610d1c57600080fd5b5061046c610d2b36600461390e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610d6557600080fd5b50610575610d74366004613415565b6127e5565b348015610d8557600080fd5b506104b7610d943660046132d4565b61287d565b348015610da557600080fd5b506104b7610db43660046132a6565b6128c4565b60006001600160e01b031982166380ac58cd60e01b1480610dea57506001600160e01b03198216635b5e139f60e01b145b80610e0557506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610e1a90613947565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4690613947565b8015610e935780601f10610e6857610100808354040283529160200191610e93565b820191906000526020600020905b815481529060010190602001808311610e7657829003601f168201915b5050505050905090565b6000610ea882612917565b610ec5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610eec826116b3565b9050806001600160a01b0316836001600160a01b03161415610f215760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610f5857610f3b8133610d2b565b610f58576040516367d9dca160e11b815260040160405180910390fd5b610f63838383612950565b505050565b6008546001600160a01b03163314610f9b5760405162461bcd60e51b8152600401610f9290613982565b60405180910390fd5b8051610fae90601390602084019061316f565b5050565b6008546001600160a01b03163314610fdc5760405162461bcd60e51b8152600401610f9290613982565b601f805460ff1916911515919091179055565b6008546001600160a01b031633146110195760405162461bcd60e51b8152600401610f9290613982565b601f80549115156101000261ff0019909216919091179055565b610f638383836129ac565b6008546001600160a01b031633146110685760405162461bcd60e51b8152600401610f9290613982565b601f805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b031633146110b05760405162461bcd60e51b8152600401610f9290613982565b601f8054911515620100000262ff000019909216919091179055565b6008546001600160a01b031633146110f65760405162461bcd60e51b8152600401610f9290613982565b6000601c54600160165461110a91906139cd565b61111491906139cd565b905080156111385780601c5461112a91906139e4565b601c55611138335b82612b97565b50565b6008546001600160a01b031633146111655760405162461bcd60e51b8152600401610f9290613982565b600260095414156111b85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f92565b600260095560006111d16008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461121b576040519150601f19603f3d011682016040523d82523d6000602084013e611220565b606091505b505090508061122e57600080fd5b506001600955565b610f6383838360405180602001604052806000815250612581565b6008546001600160a01b0316331461127b5760405162461bcd60e51b8152600401610f9290613982565b601455565b6013805461128d90613947565b80601f01602080910402602001604051908101604052809291908181526020018280546112b990613947565b80156113065780601f106112db57610100808354040283529160200191611306565b820191906000526020600020905b8154815290600101906020018083116112e957829003601f168201915b505050505081565b82600081118015611320575060195481105b61133c5760405162461bcd60e51b8152600401610f92906139fc565b60185481611351600154600054036000190190565b61135b91906139e4565b106113785760405162461bcd60e51b8152600401610f9290613a2a565b83806014546113879190613a58565b3410156113a65760405162461bcd60e51b8152600401610f9290613a77565b601f5460ff16156113c95760405162461bcd60e51b8152600401610f9290613aa4565b601f54610100900460ff16806113e75750601f5462010000900460ff165b6114335760405162461bcd60e51b815260206004820152601860248201527f5468652073616c65206973206e6f7420656e61626c65642100000000000000006044820152606401610f92565b60155485601d5461144491906139e4565b106114615760405162461bcd60e51b8152600401610f9290613a2a565b3360009081526010602052604081205461147c9087906139e4565b9050601a54811061149f5760405162461bcd60e51b8152600401610f9290613adb565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506000601f60019054906101000a900460ff166114f657600e546114fa565b600c545b905061153c878780806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250859250869150612bb19050565b6115795760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610f92565b336000908152601060205260409020839055601d546115999089906139e4565b601d556115a7335b89612b97565b5050505050505050565b6008546001600160a01b031633146115db5760405162461bcd60e51b8152600401610f9290613982565b601a55565b80516060906000816001600160401b038111156115ff576115ff613300565b60405190808252806020026020018201604052801561164a57816020015b604080516060810182526000808252602080830182905292820152825260001990920191018161161d5790505b50905060005b82811461169e5761167985828151811061166c5761166c613b1c565b6020026020010151612617565b82828151811061168b5761168b613b1c565b6020908102919091010152600101611650565b509392505050565b6012805461128d90613947565b60006116be82612bc7565b5192915050565b6008546001600160a01b031633146116ef5760405162461bcd60e51b8152600401610f9290613982565b600e55565b601f5460ff16156117175760405162461bcd60e51b8152600401610f9290613aa4565b601f5465010000000000900460ff166117725760405162461bcd60e51b815260206004820152601c60248201527f54686520636c61696d696e67206973206e6f7420656e61626c656421000000006044820152606401610f92565b80806117c05760405162461bcd60e51b815260206004820152601860248201527f4e6f2067656e6573697320746f6b656e73206f776e65642100000000000000006044820152606401610f92565b60005b818110156119465760008484838181106117df576117df613b1c565b9050602002013590506117ef3390565b600a546040516331a9108f60e11b8152600481018490526001600160a01b039283169290911690636352211e9060240160206040518083038186803b15801561183757600080fd5b505afa15801561184b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186f9190613b32565b6001600160a01b0316146118b75760405162461bcd60e51b815260206004820152600f60248201526e2737ba1037bbb732b2102a37b5b2b760891b6044820152606401610f92565b6000818152600f602052604090205460ff1615156001141561191b5760405162461bcd60e51b815260206004820152601f60248201527f536f6d6520746f6b656e732061726520616c726561647920636c61696d6564006044820152606401610f92565b6000908152600f60205260409020805460ff191660011790558061193e81613b4f565b9150506117c3565b5060165481601c5461195891906139e4565b106119a55760405162461bcd60e51b815260206004820152601d60248201527f4d617820636c61696d696e6720737570706c79206578636565646564210000006044820152606401610f92565b80601c546119b391906139e4565b601c55610f6333611132565b6008546001600160a01b031633146119e95760405162461bcd60e51b8152600401610f9290613982565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216611a34576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314611a835760405162461bcd60e51b8152600401610f9290613982565b611a8d6000612ce9565b565b6008546001600160a01b03163314611ab95760405162461bcd60e51b8152600401610f9290613982565b600c55565b6008546001600160a01b03163314611ae85760405162461bcd60e51b8152600401610f9290613982565b8051610fae90601290602084019061316f565b60606000806000611b0b85611a0b565b90506000816001600160401b03811115611b2757611b27613300565b604051908082528060200260200182016040528015611b50578160200160208202803683370190505b509050611b76604080516060810182526000808252602082018190529181019190915290565b60015b838614611c3c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250611bdf57611c34565b81516001600160a01b031615611bf457815194505b876001600160a01b0316856001600160a01b03161415611c345780838780600101985081518110611c2757611c27613b1c565b6020026020010181815250505b600101611b79565b50909695505050505050565b6008546001600160a01b03163314611c725760405162461bcd60e51b8152600401610f9290613982565b600d55565b606060038054610e1a90613947565b600080600080611c95856121d5565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa158015611cf0573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6060818310611d2757604051631960ccad60e11b815260040160405180910390fd5b600080546001851015611d3957600194505b80841115611d45578093505b6000611d5087611a0b565b905084861015611d6f5785850381811015611d69578091505b50611d73565b5060005b6000816001600160401b03811115611d8d57611d8d613300565b604051908082528060200260200182016040528015611db6578160200160208202803683370190505b50905081611dc9579350611ec492505050565b6000611dd488612617565b905060008160400151611de5575080515b885b888114158015611df75750848714155b15611eb857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529350611e5b57611eb0565b82516001600160a01b031615611e7057825191505b8a6001600160a01b0316826001600160a01b03161415611eb05780848880600101995081518110611ea357611ea3613b1c565b6020026020010181815250505b600101611de7565b50505092835250909150505b9392505050565b6008546001600160a01b03163314611ef55760405162461bcd60e51b8152600401610f9290613982565b601f80549115156401000000000264ff0000000019909216919091179055565b80600081118015611f27575060195481105b611f435760405162461bcd60e51b8152600401610f92906139fc565b60185481611f58600154600054036000190190565b611f6291906139e4565b10611f7f5760405162461bcd60e51b8152600401610f9290613a2a565b8180601454611f8e9190613a58565b341015611fad5760405162461bcd60e51b8152600401610f9290613a77565b601f5460ff1615611fd05760405162461bcd60e51b8152600401610f9290613aa4565b601f54640100000000900460ff1661202a5760405162461bcd60e51b815260206004820152601d60248201527f546865206f70656e2073616c65206973206e6f7420656e61626c6564210000006044820152606401610f92565b6000601b5460c861203b91906139cd565b601d5461204a90610af06139cd565b61205491906139e4565b61205f9060016139e4565b90508084601e5461207091906139e4565b106120cd5760405162461bcd60e51b815260206004820152602760248201527f4d6178206f70656e73616c6520617661696c61626c6520737570706c792065786044820152666365656465642160c81b6064820152608401610f92565b336000908152601060205260408120546120e89086906139e4565b9050601a54811061210b5760405162461bcd60e51b8152600401610f9290613adb565b336000908152601060205260409020819055601e5461212b9086906139e4565b601e556121383386612b97565b5050505050565b6001600160a01b0382163314156121695760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000806000835160411461222b5760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610f92565b50505060208101516040820151606090920151909260009190911a90565b8360008111801561225b575060195481105b6122775760405162461bcd60e51b8152600401610f92906139fc565b6018548161228c600154600054036000190190565b61229691906139e4565b106122b35760405162461bcd60e51b8152600401610f9290613a2a565b84806014546122c29190613a58565b3410156122e15760405162461bcd60e51b8152600401610f9290613a77565b601f5460ff16156123045760405162461bcd60e51b8152600401610f9290613aa4565b601f546301000000900460ff166123695760405162461bcd60e51b815260206004820152602360248201527f54686520686f6e6f7261726965732073616c65206973206e6f7420656e61626c60448201526265642160e81b6064820152608401610f92565b60175486601b5461237a91906139e4565b106123d85760405162461bcd60e51b815260206004820152602860248201527f4d617820486f6e6f72617269657320726573657276656420737570706c792065604482015267786365656465642160c01b6064820152608401610f92565b612419338487878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061279e92505050565b61245c5760405162461bcd60e51b815260206004820152601460248201527314185c985b595d195c9cc81b9bdd081d985b1a5960621b6044820152606401610f92565b336000908152601160205260408120549061247788836139e4565b90508481106124d35760405162461bcd60e51b815260206004820152602260248201527f6d617820416d6f756e7420466f7220486f6e6f72617269657320657863656564604482015261195960f21b6064820152608401610f92565b336000908152601160205260408120829055601b80548a92906124f79084906139e4565b909155506115a79050336115a1565b6008546001600160a01b031633146125305760405162461bcd60e51b8152600401610f9290613982565b601955565b6008546001600160a01b0316331461255f5760405162461bcd60e51b8152600401610f9290613982565b601f8054911515650100000000000265ff000000000019909216919091179055565b61258c8484846129ac565b6001600160a01b0383163b156125c5576125a884848484612d3b565b6125c5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146125f55760405162461bcd60e51b8152600401610f9290613982565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281019290925290600183108061265d57506000548310155b156126685792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906126c85792915050565b611ec483612bc7565b60606126dc82612917565b6127405760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610f92565b600061274a612e33565b9050600081511161276a5760405180602001604052806000815250611ec4565b8061277484612e42565b601360405160200161278893929190613b6a565b6040516020818303038152906040529392505050565b6000806127ab858561287d565b905060006127b8826128c4565b600b549091506001600160a01b03166127d18286611c86565b6001600160a01b0316149695505050505050565b6008546001600160a01b0316331461280f5760405162461bcd60e51b8152600401610f9290613982565b6001600160a01b0381166128745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f92565b61113881612ce9565b6040516bffffffffffffffffffffffff19606084901b1660208201526034810182905260009060540160405160208183030381529060405280519060200120905092915050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b60008160011115801561292b575060005482105b8015610e05575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006129b782612bc7565b9050836001600160a01b031681600001516001600160a01b0316146129ee5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480612a0c5750612a0c8533610d2b565b80612a27575033612a1c84610e9d565b6001600160a01b0316145b905080612a4757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416612a6e57604051633a954ecd60e21b815260040160405180910390fd5b612a7a60008487612950565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116612b4e576000548214612b4e57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612138565b610fae828260405180602001604052806000815250612f3f565b600082612bbe8584613103565b14949350505050565b60408051606081018252600080825260208201819052918101919091528180600111612cd057600054811015612cd057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290612cce5780516001600160a01b031615612c65579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612cc9579392505050565b612c65565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612d70903390899088908890600401613c2e565b602060405180830381600087803b158015612d8a57600080fd5b505af1925050508015612dba575060408051601f3d908101601f19168201909252612db791810190613c6b565b60015b612e15573d808015612de8576040519150601f19603f3d011682016040523d82523d6000602084013e612ded565b606091505b508051612e0d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060128054610e1a90613947565b606081612e665750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612e905780612e7a81613b4f565b9150612e899050600a83613c9e565b9150612e6a565b6000816001600160401b03811115612eaa57612eaa613300565b6040519080825280601f01601f191660200182016040528015612ed4576020820181803683370190505b5090505b8415612e2b57612ee96001836139cd565b9150612ef6600a86613cb2565b612f019060306139e4565b60f81b818381518110612f1657612f16613b1c565b60200101906001600160f81b031916908160001a905350612f38600a86613c9e565b9450612ed8565b6000546001600160a01b038416612f6857604051622e076360e81b815260040160405180910390fd5b82612f865760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156130ae575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46130776000878480600101955087612d3b565b613094576040516368d2bf6b60e11b815260040160405180910390fd5b80821061302c5782600054146130a957600080fd5b6130f3565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106130af575b5060009081556125c59085838684565b600081815b845181101561169e57600085828151811061312557613125613b1c565b6020026020010151905080831161314b576000838152602082905260409020925061315c565b600081815260208490526040902092505b508061316781613b4f565b915050613108565b82805461317b90613947565b90600052602060002090601f01602090048101928261319d57600085556131e3565b82601f106131b657805160ff19168380011785556131e3565b828001600101855582156131e3579182015b828111156131e35782518255916020019190600101906131c8565b506131ef9291506131f3565b5090565b5b808211156131ef57600081556001016131f4565b6001600160e01b03198116811461113857600080fd5b60006020828403121561323057600080fd5b8135611ec481613208565b60005b8381101561325657818101518382015260200161323e565b838111156125c55750506000910152565b6000815180845261327f81602086016020860161323b565b601f01601f19169290920160200192915050565b602081526000611ec46020830184613267565b6000602082840312156132b857600080fd5b5035919050565b6001600160a01b038116811461113857600080fd5b600080604083850312156132e757600080fd5b82356132f2816132bf565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561333e5761333e613300565b604052919050565b60006001600160401b0383111561335f5761335f613300565b613372601f8401601f1916602001613316565b905082815283838301111561338657600080fd5b828260208301376000602084830101529392505050565b6000602082840312156133af57600080fd5b81356001600160401b038111156133c557600080fd5b8201601f810184136133d657600080fd5b612e2b84823560208401613346565b803580151581146133f557600080fd5b919050565b60006020828403121561340c57600080fd5b611ec4826133e5565b60006020828403121561342757600080fd5b8135611ec4816132bf565b60008060006060848603121561344757600080fd5b8335613452816132bf565b92506020840135613462816132bf565b929592945050506040919091013590565b60008083601f84011261348557600080fd5b5081356001600160401b0381111561349c57600080fd5b6020830191508360208260051b85010111156134b757600080fd5b9250929050565b6000806000604084860312156134d357600080fd5b8335925060208401356001600160401b038111156134f057600080fd5b6134fc86828701613473565b9497909650939450505050565b6000602080838503121561351c57600080fd5b82356001600160401b038082111561353357600080fd5b818501915085601f83011261354757600080fd5b81358181111561355957613559613300565b8060051b915061356a848301613316565b818152918301840191848101908884111561358457600080fd5b938501935b838510156135a257843582529385019390850190613589565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611c3c5761360583855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b92840192606092909201916001016135ca565b6000806020838503121561362b57600080fd5b82356001600160401b0381111561364157600080fd5b61364d85828601613473565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b81811015611c3c57835183529284019291840191600101613675565b600082601f8301126136a257600080fd5b611ec483833560208501613346565b600080604083850312156136c457600080fd5b8235915060208301356001600160401b038111156136e157600080fd5b6136ed85828601613691565b9150509250929050565b60008060006060848603121561370c57600080fd5b8335613717816132bf565b95602085013595506040909401359392505050565b6000806040838503121561373f57600080fd5b823561374a816132bf565b9150613758602084016133e5565b90509250929050565b60006020828403121561377357600080fd5b81356001600160401b0381111561378957600080fd5b612e2b84828501613691565b600080600080606085870312156137ab57600080fd5b8435935060208501356001600160401b03808211156137c957600080fd5b818701915087601f8301126137dd57600080fd5b8135818111156137ec57600080fd5b8860208285010111156137fe57600080fd5b95986020929092019750949560400135945092505050565b6000806000806080858703121561382c57600080fd5b8435613837816132bf565b93506020850135613847816132bf565b92506040850135915060608501356001600160401b0381111561386957600080fd5b61387587828801613691565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610e05565b6000806000606084860312156138cb57600080fd5b83356138d6816132bf565b92506020840135915060408401356001600160401b038111156138f857600080fd5b61390486828701613691565b9150509250925092565b6000806040838503121561392157600080fd5b823561392c816132bf565b9150602083013561393c816132bf565b809150509250929050565b600181811c9082168061395b57607f821691505b6020821081141561397c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156139df576139df6139b7565b500390565b600082198211156139f7576139f76139b7565b500190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000816000190483118215151615613a7257613a726139b7565b500290565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b60208082526021908201527f4d617820416d6f756e74207065722041646472657373206578636565646564216040820152602160f81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215613b4457600080fd5b8151611ec4816132bf565b6000600019821415613b6357613b636139b7565b5060010190565b600084516020613b7d8285838a0161323b565b855191840191613b908184848a0161323b565b8554920191600090600181811c9080831680613bad57607f831692505b858310811415613bcb57634e487b7160e01b85526022600452602485fd5b808015613bdf5760018114613bf057613c1d565b60ff19851688528388019550613c1d565b60008b81526020902060005b85811015613c155781548a820152908401908801613bfc565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613c6190830184613267565b9695505050505050565b600060208284031215613c7d57600080fd5b8151611ec481613208565b634e487b7160e01b600052601260045260246000fd5b600082613cad57613cad613c88565b500490565b600082613cc157613cc1613c88565b50069056fea264697066735822122042055fb511119c700a2dbaea4901304e7406d918bb53ae39b57fbfb3fd1df2b964736f6c63430008090033000000000000000000000000a5e25b44b01e09b7455851838c76cde68d13e29f
Deployed Bytecode
0x6080604052600436106104475760003560e01c80636c19e78311610234578063a22cb4651161012e578063c23dc68f116100b6578063e1653f181161007a578063e1653f1814610cf0578063e985e9c514610d10578063f2fde38b14610d59578063f4492d7e14610d79578063fa54080114610d9957600080fd5b8063c23dc68f14610c57578063c87b56dd14610c84578063ca29e8c814610ca4578063d5abeb0114610cc4578063dcdc419214610cda57600080fd5b8063b071401b116100fd578063b071401b14610baa578063b6c7288814610bca578063b88d4fde14610bea578063bdd87f8014610c0a578063c0216e3c14610c2a57600080fd5b8063a22cb46514610b09578063a36d2cbf14610b29578063a7bb580314610b59578063ac53264f14610b9757600080fd5b80638f3ee3ab116101bc57806397aba7f91161018057806397aba7f914610a8057806399a2557a14610aa05780639c73815814610ac05780639f83115414610ad6578063a0712d6814610af657600080fd5b80638f3ee3ab146109fe57806391a548f914610a1e57806394354fd014610a3457806395d89b4114610a4a5780639627875714610a5f57600080fd5b80637cb64759116102035780637cb64759146109515780637ec4a659146109715780638462151c146109915780638bdadd29146109be5780638da5cb5b146109e057600080fd5b80636c19e783146108cc57806370a08231146108ec578063715018a61461090c57806373b0f1191461092157600080fd5b80633c32a3cd116103455780635697f53e116102cd5780635c975abb116102915780635c975abb1461083d57806362b99ad4146108575780636352211e1461086c5780636503a36c1461088c5780636ba4c138146108ac57600080fd5b80635697f53e146107ae57806357563197146107ce5780635bbb2177146107e45780635bf0b668146108115780635c41d75e1461082757600080fd5b806344707b591161031457806344707b59146107315780634495b7601461075057806344a0d68a146107665780635503a0e814610786578063566e41051461079b57600080fd5b80633c32a3cd146106d15780633c9a6e35146106e65780633ccfd60b146106fc57806342842e0e1461071157600080fd5b806313faede6116103d35780631c3b106d116103975780631c3b106d1461062e57806323b872dd1461065b5780632eb4a7ab1461067b5780633aa9d9cb146106915780633b49b89b146106b157600080fd5b806313faede61461059a57806316ba10e0146105b057806316c38b3c146105d057806318160ddd146105f0578063195429031461060e57600080fd5b806307e10d471161041a57806307e10d47146104e7578063081812fc146104fd57806308344bdd14610535578063095ea7b3146105555780630e141a9b1461057757600080fd5b806301ffc9a71461044c578063037b57b714610481578063047063bf146104a157806306fdde03146104c5575b600080fd5b34801561045857600080fd5b5061046c61046736600461321e565b610db9565b60405190151581526020015b60405180910390f35b34801561048d57600080fd5b50601f5461046c9062010000900460ff1681565b3480156104ad57600080fd5b506104b7601e5481565b604051908152602001610478565b3480156104d157600080fd5b506104da610e0b565b6040516104789190613293565b3480156104f357600080fd5b506104b7600e5481565b34801561050957600080fd5b5061051d6105183660046132a6565b610e9d565b6040516001600160a01b039091168152602001610478565b34801561054157600080fd5b50600a5461051d906001600160a01b031681565b34801561056157600080fd5b506105756105703660046132d4565b610ee1565b005b34801561058357600080fd5b50601f5461046c9065010000000000900460ff1681565b3480156105a657600080fd5b506104b760145481565b3480156105bc57600080fd5b506105756105cb36600461339d565b610f68565b3480156105dc57600080fd5b506105756105eb3660046133fa565b610fb2565b3480156105fc57600080fd5b506104b7600154600054036000190190565b34801561061a57600080fd5b506105756106293660046133fa565b610fef565b34801561063a57600080fd5b506104b7610649366004613415565b60106020526000908152604090205481565b34801561066757600080fd5b50610575610676366004613432565b611033565b34801561068757600080fd5b506104b7600c5481565b34801561069d57600080fd5b506105756106ac3660046133fa565b61103e565b3480156106bd57600080fd5b506105756106cc3660046133fa565b611086565b3480156106dd57600080fd5b506105756110cc565b3480156106f257600080fd5b506104b7600d5481565b34801561070857600080fd5b5061057561113b565b34801561071d57600080fd5b5061057561072c366004613432565b611236565b34801561073d57600080fd5b50601f5461046c90610100900460ff1681565b34801561075c57600080fd5b506104b760165481565b34801561077257600080fd5b506105756107813660046132a6565b611251565b34801561079257600080fd5b506104da611280565b6105756107a93660046134be565b61130e565b3480156107ba57600080fd5b506105756107c93660046132a6565b6115b1565b3480156107da57600080fd5b506104b760175481565b3480156107f057600080fd5b506108046107ff366004613509565b6115e0565b60405161047891906135ae565b34801561081d57600080fd5b506104b7601b5481565b34801561083357600080fd5b506104b7601a5481565b34801561084957600080fd5b50601f5461046c9060ff1681565b34801561086357600080fd5b506104da6116a6565b34801561087857600080fd5b5061051d6108873660046132a6565b6116b3565b34801561089857600080fd5b506105756108a73660046132a6565b6116c5565b3480156108b857600080fd5b506105756108c7366004613618565b6116f4565b3480156108d857600080fd5b506105756108e7366004613415565b6119bf565b3480156108f857600080fd5b506104b7610907366004613415565b611a0b565b34801561091857600080fd5b50610575611a59565b34801561092d57600080fd5b5061046c61093c3660046132a6565b600f6020526000908152604090205460ff1681565b34801561095d57600080fd5b5061057561096c3660046132a6565b611a8f565b34801561097d57600080fd5b5061057561098c36600461339d565b611abe565b34801561099d57600080fd5b506109b16109ac366004613415565b611afb565b6040516104789190613659565b3480156109ca57600080fd5b50601f5461046c90640100000000900460ff1681565b3480156109ec57600080fd5b506008546001600160a01b031661051d565b348015610a0a57600080fd5b50610575610a193660046132a6565b611c48565b348015610a2a57600080fd5b506104b760155481565b348015610a4057600080fd5b506104b760195481565b348015610a5657600080fd5b506104da611c77565b348015610a6b57600080fd5b50601f5461046c906301000000900460ff1681565b348015610a8c57600080fd5b5061051d610a9b3660046136b1565b611c86565b348015610aac57600080fd5b506109b1610abb3660046136f7565b611d05565b348015610acc57600080fd5b506104b7601d5481565b348015610ae257600080fd5b50610575610af13660046133fa565b611ecb565b610575610b043660046132a6565b611f15565b348015610b1557600080fd5b50610575610b2436600461372c565b61213f565b348015610b3557600080fd5b5061046c610b443660046132a6565b6000908152600f602052604090205460ff1690565b348015610b6557600080fd5b50610b79610b74366004613761565b6121d5565b60408051938452602084019290925260ff1690820152606001610478565b610575610ba5366004613795565b612249565b348015610bb657600080fd5b50610575610bc53660046132a6565b612506565b348015610bd657600080fd5b50610575610be53660046133fa565b612535565b348015610bf657600080fd5b50610575610c05366004613816565b612581565b348015610c1657600080fd5b50610575610c25366004613415565b6125cb565b348015610c3657600080fd5b506104b7610c45366004613415565b60116020526000908152604090205481565b348015610c6357600080fd5b50610c77610c723660046132a6565b612617565b6040516104789190613881565b348015610c9057600080fd5b506104da610c9f3660046132a6565b6126d1565b348015610cb057600080fd5b50600b5461051d906001600160a01b031681565b348015610cd057600080fd5b506104b760185481565b348015610ce657600080fd5b506104b7601c5481565b348015610cfc57600080fd5b5061046c610d0b3660046138b6565b61279e565b348015610d1c57600080fd5b5061046c610d2b36600461390e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610d6557600080fd5b50610575610d74366004613415565b6127e5565b348015610d8557600080fd5b506104b7610d943660046132d4565b61287d565b348015610da557600080fd5b506104b7610db43660046132a6565b6128c4565b60006001600160e01b031982166380ac58cd60e01b1480610dea57506001600160e01b03198216635b5e139f60e01b145b80610e0557506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610e1a90613947565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4690613947565b8015610e935780601f10610e6857610100808354040283529160200191610e93565b820191906000526020600020905b815481529060010190602001808311610e7657829003601f168201915b5050505050905090565b6000610ea882612917565b610ec5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610eec826116b3565b9050806001600160a01b0316836001600160a01b03161415610f215760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610f5857610f3b8133610d2b565b610f58576040516367d9dca160e11b815260040160405180910390fd5b610f63838383612950565b505050565b6008546001600160a01b03163314610f9b5760405162461bcd60e51b8152600401610f9290613982565b60405180910390fd5b8051610fae90601390602084019061316f565b5050565b6008546001600160a01b03163314610fdc5760405162461bcd60e51b8152600401610f9290613982565b601f805460ff1916911515919091179055565b6008546001600160a01b031633146110195760405162461bcd60e51b8152600401610f9290613982565b601f80549115156101000261ff0019909216919091179055565b610f638383836129ac565b6008546001600160a01b031633146110685760405162461bcd60e51b8152600401610f9290613982565b601f805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b031633146110b05760405162461bcd60e51b8152600401610f9290613982565b601f8054911515620100000262ff000019909216919091179055565b6008546001600160a01b031633146110f65760405162461bcd60e51b8152600401610f9290613982565b6000601c54600160165461110a91906139cd565b61111491906139cd565b905080156111385780601c5461112a91906139e4565b601c55611138335b82612b97565b50565b6008546001600160a01b031633146111655760405162461bcd60e51b8152600401610f9290613982565b600260095414156111b85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f92565b600260095560006111d16008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461121b576040519150601f19603f3d011682016040523d82523d6000602084013e611220565b606091505b505090508061122e57600080fd5b506001600955565b610f6383838360405180602001604052806000815250612581565b6008546001600160a01b0316331461127b5760405162461bcd60e51b8152600401610f9290613982565b601455565b6013805461128d90613947565b80601f01602080910402602001604051908101604052809291908181526020018280546112b990613947565b80156113065780601f106112db57610100808354040283529160200191611306565b820191906000526020600020905b8154815290600101906020018083116112e957829003601f168201915b505050505081565b82600081118015611320575060195481105b61133c5760405162461bcd60e51b8152600401610f92906139fc565b60185481611351600154600054036000190190565b61135b91906139e4565b106113785760405162461bcd60e51b8152600401610f9290613a2a565b83806014546113879190613a58565b3410156113a65760405162461bcd60e51b8152600401610f9290613a77565b601f5460ff16156113c95760405162461bcd60e51b8152600401610f9290613aa4565b601f54610100900460ff16806113e75750601f5462010000900460ff165b6114335760405162461bcd60e51b815260206004820152601860248201527f5468652073616c65206973206e6f7420656e61626c65642100000000000000006044820152606401610f92565b60155485601d5461144491906139e4565b106114615760405162461bcd60e51b8152600401610f9290613a2a565b3360009081526010602052604081205461147c9087906139e4565b9050601a54811061149f5760405162461bcd60e51b8152600401610f9290613adb565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506000601f60019054906101000a900460ff166114f657600e546114fa565b600c545b905061153c878780806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250859250869150612bb19050565b6115795760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610f92565b336000908152601060205260409020839055601d546115999089906139e4565b601d556115a7335b89612b97565b5050505050505050565b6008546001600160a01b031633146115db5760405162461bcd60e51b8152600401610f9290613982565b601a55565b80516060906000816001600160401b038111156115ff576115ff613300565b60405190808252806020026020018201604052801561164a57816020015b604080516060810182526000808252602080830182905292820152825260001990920191018161161d5790505b50905060005b82811461169e5761167985828151811061166c5761166c613b1c565b6020026020010151612617565b82828151811061168b5761168b613b1c565b6020908102919091010152600101611650565b509392505050565b6012805461128d90613947565b60006116be82612bc7565b5192915050565b6008546001600160a01b031633146116ef5760405162461bcd60e51b8152600401610f9290613982565b600e55565b601f5460ff16156117175760405162461bcd60e51b8152600401610f9290613aa4565b601f5465010000000000900460ff166117725760405162461bcd60e51b815260206004820152601c60248201527f54686520636c61696d696e67206973206e6f7420656e61626c656421000000006044820152606401610f92565b80806117c05760405162461bcd60e51b815260206004820152601860248201527f4e6f2067656e6573697320746f6b656e73206f776e65642100000000000000006044820152606401610f92565b60005b818110156119465760008484838181106117df576117df613b1c565b9050602002013590506117ef3390565b600a546040516331a9108f60e11b8152600481018490526001600160a01b039283169290911690636352211e9060240160206040518083038186803b15801561183757600080fd5b505afa15801561184b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186f9190613b32565b6001600160a01b0316146118b75760405162461bcd60e51b815260206004820152600f60248201526e2737ba1037bbb732b2102a37b5b2b760891b6044820152606401610f92565b6000818152600f602052604090205460ff1615156001141561191b5760405162461bcd60e51b815260206004820152601f60248201527f536f6d6520746f6b656e732061726520616c726561647920636c61696d6564006044820152606401610f92565b6000908152600f60205260409020805460ff191660011790558061193e81613b4f565b9150506117c3565b5060165481601c5461195891906139e4565b106119a55760405162461bcd60e51b815260206004820152601d60248201527f4d617820636c61696d696e6720737570706c79206578636565646564210000006044820152606401610f92565b80601c546119b391906139e4565b601c55610f6333611132565b6008546001600160a01b031633146119e95760405162461bcd60e51b8152600401610f9290613982565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216611a34576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314611a835760405162461bcd60e51b8152600401610f9290613982565b611a8d6000612ce9565b565b6008546001600160a01b03163314611ab95760405162461bcd60e51b8152600401610f9290613982565b600c55565b6008546001600160a01b03163314611ae85760405162461bcd60e51b8152600401610f9290613982565b8051610fae90601290602084019061316f565b60606000806000611b0b85611a0b565b90506000816001600160401b03811115611b2757611b27613300565b604051908082528060200260200182016040528015611b50578160200160208202803683370190505b509050611b76604080516060810182526000808252602082018190529181019190915290565b60015b838614611c3c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250611bdf57611c34565b81516001600160a01b031615611bf457815194505b876001600160a01b0316856001600160a01b03161415611c345780838780600101985081518110611c2757611c27613b1c565b6020026020010181815250505b600101611b79565b50909695505050505050565b6008546001600160a01b03163314611c725760405162461bcd60e51b8152600401610f9290613982565b600d55565b606060038054610e1a90613947565b600080600080611c95856121d5565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa158015611cf0573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6060818310611d2757604051631960ccad60e11b815260040160405180910390fd5b600080546001851015611d3957600194505b80841115611d45578093505b6000611d5087611a0b565b905084861015611d6f5785850381811015611d69578091505b50611d73565b5060005b6000816001600160401b03811115611d8d57611d8d613300565b604051908082528060200260200182016040528015611db6578160200160208202803683370190505b50905081611dc9579350611ec492505050565b6000611dd488612617565b905060008160400151611de5575080515b885b888114158015611df75750848714155b15611eb857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529350611e5b57611eb0565b82516001600160a01b031615611e7057825191505b8a6001600160a01b0316826001600160a01b03161415611eb05780848880600101995081518110611ea357611ea3613b1c565b6020026020010181815250505b600101611de7565b50505092835250909150505b9392505050565b6008546001600160a01b03163314611ef55760405162461bcd60e51b8152600401610f9290613982565b601f80549115156401000000000264ff0000000019909216919091179055565b80600081118015611f27575060195481105b611f435760405162461bcd60e51b8152600401610f92906139fc565b60185481611f58600154600054036000190190565b611f6291906139e4565b10611f7f5760405162461bcd60e51b8152600401610f9290613a2a565b8180601454611f8e9190613a58565b341015611fad5760405162461bcd60e51b8152600401610f9290613a77565b601f5460ff1615611fd05760405162461bcd60e51b8152600401610f9290613aa4565b601f54640100000000900460ff1661202a5760405162461bcd60e51b815260206004820152601d60248201527f546865206f70656e2073616c65206973206e6f7420656e61626c6564210000006044820152606401610f92565b6000601b5460c861203b91906139cd565b601d5461204a90610af06139cd565b61205491906139e4565b61205f9060016139e4565b90508084601e5461207091906139e4565b106120cd5760405162461bcd60e51b815260206004820152602760248201527f4d6178206f70656e73616c6520617661696c61626c6520737570706c792065786044820152666365656465642160c81b6064820152608401610f92565b336000908152601060205260408120546120e89086906139e4565b9050601a54811061210b5760405162461bcd60e51b8152600401610f9290613adb565b336000908152601060205260409020819055601e5461212b9086906139e4565b601e556121383386612b97565b5050505050565b6001600160a01b0382163314156121695760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000806000835160411461222b5760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610f92565b50505060208101516040820151606090920151909260009190911a90565b8360008111801561225b575060195481105b6122775760405162461bcd60e51b8152600401610f92906139fc565b6018548161228c600154600054036000190190565b61229691906139e4565b106122b35760405162461bcd60e51b8152600401610f9290613a2a565b84806014546122c29190613a58565b3410156122e15760405162461bcd60e51b8152600401610f9290613a77565b601f5460ff16156123045760405162461bcd60e51b8152600401610f9290613aa4565b601f546301000000900460ff166123695760405162461bcd60e51b815260206004820152602360248201527f54686520686f6e6f7261726965732073616c65206973206e6f7420656e61626c60448201526265642160e81b6064820152608401610f92565b60175486601b5461237a91906139e4565b106123d85760405162461bcd60e51b815260206004820152602860248201527f4d617820486f6e6f72617269657320726573657276656420737570706c792065604482015267786365656465642160c01b6064820152608401610f92565b612419338487878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061279e92505050565b61245c5760405162461bcd60e51b815260206004820152601460248201527314185c985b595d195c9cc81b9bdd081d985b1a5960621b6044820152606401610f92565b336000908152601160205260408120549061247788836139e4565b90508481106124d35760405162461bcd60e51b815260206004820152602260248201527f6d617820416d6f756e7420466f7220486f6e6f72617269657320657863656564604482015261195960f21b6064820152608401610f92565b336000908152601160205260408120829055601b80548a92906124f79084906139e4565b909155506115a79050336115a1565b6008546001600160a01b031633146125305760405162461bcd60e51b8152600401610f9290613982565b601955565b6008546001600160a01b0316331461255f5760405162461bcd60e51b8152600401610f9290613982565b601f8054911515650100000000000265ff000000000019909216919091179055565b61258c8484846129ac565b6001600160a01b0383163b156125c5576125a884848484612d3b565b6125c5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146125f55760405162461bcd60e51b8152600401610f9290613982565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281019290925290600183108061265d57506000548310155b156126685792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906126c85792915050565b611ec483612bc7565b60606126dc82612917565b6127405760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610f92565b600061274a612e33565b9050600081511161276a5760405180602001604052806000815250611ec4565b8061277484612e42565b601360405160200161278893929190613b6a565b6040516020818303038152906040529392505050565b6000806127ab858561287d565b905060006127b8826128c4565b600b549091506001600160a01b03166127d18286611c86565b6001600160a01b0316149695505050505050565b6008546001600160a01b0316331461280f5760405162461bcd60e51b8152600401610f9290613982565b6001600160a01b0381166128745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f92565b61113881612ce9565b6040516bffffffffffffffffffffffff19606084901b1660208201526034810182905260009060540160405160208183030381529060405280519060200120905092915050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b60008160011115801561292b575060005482105b8015610e05575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006129b782612bc7565b9050836001600160a01b031681600001516001600160a01b0316146129ee5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480612a0c5750612a0c8533610d2b565b80612a27575033612a1c84610e9d565b6001600160a01b0316145b905080612a4757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416612a6e57604051633a954ecd60e21b815260040160405180910390fd5b612a7a60008487612950565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116612b4e576000548214612b4e57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612138565b610fae828260405180602001604052806000815250612f3f565b600082612bbe8584613103565b14949350505050565b60408051606081018252600080825260208201819052918101919091528180600111612cd057600054811015612cd057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290612cce5780516001600160a01b031615612c65579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612cc9579392505050565b612c65565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612d70903390899088908890600401613c2e565b602060405180830381600087803b158015612d8a57600080fd5b505af1925050508015612dba575060408051601f3d908101601f19168201909252612db791810190613c6b565b60015b612e15573d808015612de8576040519150601f19603f3d011682016040523d82523d6000602084013e612ded565b606091505b508051612e0d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060128054610e1a90613947565b606081612e665750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612e905780612e7a81613b4f565b9150612e899050600a83613c9e565b9150612e6a565b6000816001600160401b03811115612eaa57612eaa613300565b6040519080825280601f01601f191660200182016040528015612ed4576020820181803683370190505b5090505b8415612e2b57612ee96001836139cd565b9150612ef6600a86613cb2565b612f019060306139e4565b60f81b818381518110612f1657612f16613b1c565b60200101906001600160f81b031916908160001a905350612f38600a86613c9e565b9450612ed8565b6000546001600160a01b038416612f6857604051622e076360e81b815260040160405180910390fd5b82612f865760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156130ae575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46130776000878480600101955087612d3b565b613094576040516368d2bf6b60e11b815260040160405180910390fd5b80821061302c5782600054146130a957600080fd5b6130f3565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106130af575b5060009081556125c59085838684565b600081815b845181101561169e57600085828151811061312557613125613b1c565b6020026020010151905080831161314b576000838152602082905260409020925061315c565b600081815260208490526040902092505b508061316781613b4f565b915050613108565b82805461317b90613947565b90600052602060002090601f01602090048101928261319d57600085556131e3565b82601f106131b657805160ff19168380011785556131e3565b828001600101855582156131e3579182015b828111156131e35782518255916020019190600101906131c8565b506131ef9291506131f3565b5090565b5b808211156131ef57600081556001016131f4565b6001600160e01b03198116811461113857600080fd5b60006020828403121561323057600080fd5b8135611ec481613208565b60005b8381101561325657818101518382015260200161323e565b838111156125c55750506000910152565b6000815180845261327f81602086016020860161323b565b601f01601f19169290920160200192915050565b602081526000611ec46020830184613267565b6000602082840312156132b857600080fd5b5035919050565b6001600160a01b038116811461113857600080fd5b600080604083850312156132e757600080fd5b82356132f2816132bf565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561333e5761333e613300565b604052919050565b60006001600160401b0383111561335f5761335f613300565b613372601f8401601f1916602001613316565b905082815283838301111561338657600080fd5b828260208301376000602084830101529392505050565b6000602082840312156133af57600080fd5b81356001600160401b038111156133c557600080fd5b8201601f810184136133d657600080fd5b612e2b84823560208401613346565b803580151581146133f557600080fd5b919050565b60006020828403121561340c57600080fd5b611ec4826133e5565b60006020828403121561342757600080fd5b8135611ec4816132bf565b60008060006060848603121561344757600080fd5b8335613452816132bf565b92506020840135613462816132bf565b929592945050506040919091013590565b60008083601f84011261348557600080fd5b5081356001600160401b0381111561349c57600080fd5b6020830191508360208260051b85010111156134b757600080fd5b9250929050565b6000806000604084860312156134d357600080fd5b8335925060208401356001600160401b038111156134f057600080fd5b6134fc86828701613473565b9497909650939450505050565b6000602080838503121561351c57600080fd5b82356001600160401b038082111561353357600080fd5b818501915085601f83011261354757600080fd5b81358181111561355957613559613300565b8060051b915061356a848301613316565b818152918301840191848101908884111561358457600080fd5b938501935b838510156135a257843582529385019390850190613589565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611c3c5761360583855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b92840192606092909201916001016135ca565b6000806020838503121561362b57600080fd5b82356001600160401b0381111561364157600080fd5b61364d85828601613473565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b81811015611c3c57835183529284019291840191600101613675565b600082601f8301126136a257600080fd5b611ec483833560208501613346565b600080604083850312156136c457600080fd5b8235915060208301356001600160401b038111156136e157600080fd5b6136ed85828601613691565b9150509250929050565b60008060006060848603121561370c57600080fd5b8335613717816132bf565b95602085013595506040909401359392505050565b6000806040838503121561373f57600080fd5b823561374a816132bf565b9150613758602084016133e5565b90509250929050565b60006020828403121561377357600080fd5b81356001600160401b0381111561378957600080fd5b612e2b84828501613691565b600080600080606085870312156137ab57600080fd5b8435935060208501356001600160401b03808211156137c957600080fd5b818701915087601f8301126137dd57600080fd5b8135818111156137ec57600080fd5b8860208285010111156137fe57600080fd5b95986020929092019750949560400135945092505050565b6000806000806080858703121561382c57600080fd5b8435613837816132bf565b93506020850135613847816132bf565b92506040850135915060608501356001600160401b0381111561386957600080fd5b61387587828801613691565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610e05565b6000806000606084860312156138cb57600080fd5b83356138d6816132bf565b92506020840135915060408401356001600160401b038111156138f857600080fd5b61390486828701613691565b9150509250925092565b6000806040838503121561392157600080fd5b823561392c816132bf565b9150602083013561393c816132bf565b809150509250929050565b600181811c9082168061395b57607f821691505b6020821081141561397c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156139df576139df6139b7565b500390565b600082198211156139f7576139f76139b7565b500190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000816000190483118215151615613a7257613a726139b7565b500290565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b60208082526021908201527f4d617820416d6f756e74207065722041646472657373206578636565646564216040820152602160f81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215613b4457600080fd5b8151611ec4816132bf565b6000600019821415613b6357613b636139b7565b5060010190565b600084516020613b7d8285838a0161323b565b855191840191613b908184848a0161323b565b8554920191600090600181811c9080831680613bad57607f831692505b858310811415613bcb57634e487b7160e01b85526022600452602485fd5b808015613bdf5760018114613bf057613c1d565b60ff19851688528388019550613c1d565b60008b81526020902060005b85811015613c155781548a820152908401908801613bfc565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613c6190830184613267565b9695505050505050565b600060208284031215613c7d57600080fd5b8151611ec481613208565b634e487b7160e01b600052601260045260246000fd5b600082613cad57613cad613c88565b500490565b600082613cc157613cc1613c88565b50069056fea264697066735822122042055fb511119c700a2dbaea4901304e7406d918bb53ae39b57fbfb3fd1df2b964736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a5e25b44b01e09b7455851838c76cde68d13e29f
-----Decoded View---------------
Arg [0] : _genesisContract (address): 0xa5e25b44B01e09b7455851838c76cde68D13e29F
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5e25b44b01e09b7455851838c76cde68d13e29f
Deployed Bytecode Sourcemap
63172:9634:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28838:305;;;;;;;;;;-1:-1:-1;28838:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28838:305:0;;;;;;;;64169:39;;;;;;;;;;-1:-1:-1;64169:39:0;;;;;;;;;;;64064:24;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;64064:24:0;592:177:1;31953:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;63396:33::-;;;;;;;;;;;;;;;;33457:204;;;;;;;;;;-1:-1:-1;33457:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2056:32:1;;;2038:51;;2026:2;2011:18;33457:204:0;1892:203:1;63274:20:0;;;;;;;;;;-1:-1:-1;63274:20:0;;;;-1:-1:-1;;;;;63274:20:0;;;33019:372;;;;;;;;;;-1:-1:-1;33019:372:0;;;;;:::i;:::-;;:::i;:::-;;64300:35;;;;;;;;;;-1:-1:-1;64300:35:0;;;;;;;;;;;63681:38;;;;;;;;;;;;;;;;69617:100;;;;;;;;;;-1:-1:-1;69617:100:0;;;;;:::i;:::-;;:::i;69723:77::-;;;;;;;;;;-1:-1:-1;69723:77:0;;;;;:::i;:::-;;:::i;28078:312::-;;;;;;;;;;;;68624:1;28341:12;28131:7;28325:13;:28;-1:-1:-1;;28325:46:0;;28078:312;70154:105;;;;;;;;;;-1:-1:-1;70154:105:0;;;;;:::i;:::-;;:::i;63489:51::-;;;;;;;;;;-1:-1:-1;63489:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;34322:170;;;;;;;;;;-1:-1:-1;34322:170:0;;;;;:::i;:::-;;:::i;63326:25::-;;;;;;;;;;;;;;;;70372:111;;;;;;;;;;-1:-1:-1;70372:111:0;;;;;:::i;:::-;;:::i;70265:103::-;;;;;;;;;;-1:-1:-1;70265:103:0;;;;;:::i;:::-;;:::i;68292:238::-;;;;;;;;;;;;;:::i;63356:35::-;;;;;;;;;;;;;;;;70901:156;;;;;;;;;;;;;:::i;34563:185::-;;;;;;;;;;-1:-1:-1;34563:185:0;;;;;:::i;:::-;;:::i;64125:39::-;;;;;;;;;;-1:-1:-1;64125:39:0;;;;;;;;;;;63762:37;;;;;;;;;;;;;;;;69137:74;;;;;;;;;;-1:-1:-1;69137:74:0;;;;;:::i;:::-;;:::i;63641:33::-;;;;;;;;;;;;;:::i;64843:960::-;;;;;;:::i;:::-;;:::i;69353:150::-;;;;;;;;;;-1:-1:-1;69353:150:0;;;;;:::i;:::-;;:::i;63804:36::-;;;;;;;;;;;;;;;;49184:468;;;;;;;;;;-1:-1:-1;49184:468:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;63970:28::-;;;;;;;;;;;;;;;;63925:40;;;;;;;;;;;;;;;;64095:25;;;;;;;;;;-1:-1:-1;64095:25:0;;;;;;;;63608:28;;;;;;;;;;;;;:::i;31761:125::-;;;;;;;;;;-1:-1:-1;31761:125:0;;;;;:::i;:::-;;:::i;70034:114::-;;;;;;;;;;-1:-1:-1;70034:114:0;;;;;:::i;:::-;;:::i;66631:742::-;;;;;;;;;;-1:-1:-1;66631:742:0;;;;;:::i;:::-;;:::i;70808:87::-;;;;;;;;;;-1:-1:-1;70808:87:0;;;;;:::i;:::-;;:::i;29207:206::-;;;;;;;;;;-1:-1:-1;29207:206:0;;;;;:::i;:::-;;:::i;55621:103::-;;;;;;;;;;;;;:::i;63438:46::-;;;;;;;;;;-1:-1:-1;63438:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;69806:98;;;;;;;;;;-1:-1:-1;69806:98:0;;;;;:::i;:::-;;:::i;69511:100::-;;;;;;;;;;-1:-1:-1;69511:100:0;;;;;:::i;:::-;;:::i;52998:891::-;;;;;;;;;;-1:-1:-1;52998:891:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;64260:35::-;;;;;;;;;;-1:-1:-1;64260:35:0;;;;;;;;;;;54970:87;;;;;;;;;;-1:-1:-1;55043:6:0;;-1:-1:-1;;;;;55043:6:0;54970:87;;69910:118;;;;;;;;;;-1:-1:-1;69910:118:0;;;;;:::i;:::-;;:::i;63724:33::-;;;;;;;;;;;;;;;;63885:35;;;;;;;;;;;;;;;;32122:104;;;;;;;;;;;;;:::i;64213:42::-;;;;;;;;;;-1:-1:-1;64213:42:0;;;;;;;;;;;72104:281;;;;;;;;;;-1:-1:-1;72104:281:0;;;;;:::i;:::-;;:::i;50042:2507::-;;;;;;;;;;-1:-1:-1;50042:2507:0;;;;;:::i;:::-;;:::i;64035:24::-;;;;;;;;;;;;;;;;70493:99;;;;;;;;;;-1:-1:-1;70493:99:0;;;;;:::i;:::-;;:::i;67379:905::-;;;;;;:::i;:::-;;:::i;33733:287::-;;;;;;;;;;-1:-1:-1;33733:287:0;;;;;:::i;:::-;;:::i;68637:113::-;;;;;;;;;;-1:-1:-1;68637:113:0;;;;;:::i;:::-;68702:4;68721:23;;;:14;:23;;;;;;;;;68637:113;72393:408;;;;;;;;;;-1:-1:-1;72393:408:0;;;;;:::i;:::-;;:::i;:::-;;;;11082:25:1;;;11138:2;11123:18;;11116:34;;;;11198:4;11186:17;11166:18;;;11159:45;11070:2;11055:18;72393:408:0;10884:326:1;65813:810:0;;;;;;:::i;:::-;;:::i;69217:130::-;;;;;;;;;;-1:-1:-1;69217:130:0;;;;;:::i;:::-;;:::i;70598:95::-;;;;;;;;;;-1:-1:-1;70598:95:0;;;;;:::i;:::-;;:::i;34819:370::-;;;;;;;;;;-1:-1:-1;34819:370:0;;;;;:::i;:::-;;:::i;70699:103::-;;;;;;;;;;-1:-1:-1;70699:103:0;;;;;:::i;:::-;;:::i;63545:56::-;;;;;;;;;;-1:-1:-1;63545:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;48607:418;;;;;;;;;;-1:-1:-1;48607:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;68758:373::-;;;;;;;;;;-1:-1:-1;68758:373:0;;;;;:::i;:::-;;:::i;63299:22::-;;;;;;;;;;-1:-1:-1;63299:22:0;;;;-1:-1:-1;;;;;63299:22:0;;;63847:29;;;;;;;;;;;;;;;;64003:27;;;;;;;;;;;;;;;;71734:362;;;;;;;;;;-1:-1:-1;71734:362:0;;;;;:::i;:::-;;:::i;34091:164::-;;;;;;;;;;-1:-1:-1;34091:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34212:25:0;;;34188:4;34212:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34091:164;55879:201;;;;;;;;;;-1:-1:-1;55879:201:0;;;;;:::i;:::-;;:::i;71267:178::-;;;;;;;;;;-1:-1:-1;71267:178:0;;;;;:::i;:::-;;:::i;71457:267::-;;;;;;;;;;-1:-1:-1;71457:267:0;;;;;:::i;:::-;;:::i;28838:305::-;28940:4;-1:-1:-1;;;;;;28977:40:0;;-1:-1:-1;;;28977:40:0;;:105;;-1:-1:-1;;;;;;;29034:48:0;;-1:-1:-1;;;29034:48:0;28977:105;:158;;;-1:-1:-1;;;;;;;;;;25922:40:0;;;29099:36;28957:178;28838:305;-1:-1:-1;;28838:305:0:o;31953:100::-;32007:13;32040:5;32033:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31953:100;:::o;33457:204::-;33525:7;33550:16;33558:7;33550;:16::i;:::-;33545:64;;33575:34;;-1:-1:-1;;;33575:34:0;;;;;;;;;;;33545:64;-1:-1:-1;33629:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33629:24:0;;33457:204::o;33019:372::-;33092:13;33108:24;33124:7;33108:15;:24::i;:::-;33092:40;;33153:5;-1:-1:-1;;;;;33147:11:0;:2;-1:-1:-1;;;;;33147:11:0;;33143:48;;;33167:24;;-1:-1:-1;;;33167:24:0;;;;;;;;;;;33143:48;22664:10;-1:-1:-1;;;;;33208:21:0;;;33204:139;;33235:37;33252:5;22664:10;34091:164;:::i;33235:37::-;33231:112;;33296:35;;-1:-1:-1;;;33296:35:0;;;;;;;;;;;33231:112;33355:28;33364:2;33368:7;33377:5;33355:8;:28::i;:::-;33081:310;33019:372;;:::o;69617:100::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;;;;;;;;;69689:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;69617:100:::0;:::o;69723:77::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;69779:6:::1;:15:::0;;-1:-1:-1;;69779:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;69723:77::o;70154:105::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;70224:20:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;70224:29:0;;::::1;::::0;;;::::1;::::0;;70154:105::o;34322:170::-;34456:28;34466:4;34472:2;34476:7;34456:9;:28::i;70372:111::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;70445:23:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;70445:32:0;;::::1;::::0;;;::::1;::::0;;70372:111::o;70265:103::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;70334:19:::1;:28:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;70334:28:0;;::::1;::::0;;;::::1;::::0;;70265:103::o;68292:238::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;68346:17:::1;68386:12;;68383:1;68365:17;;:19;;;;:::i;:::-;68364:34;;;;:::i;:::-;68346:52:::0;-1:-1:-1;68410:11:0;;68407:118:::1;;68461:9;68448:12;;:22;;;;:::i;:::-;68435:12;:35:::0;68481:34:::1;22664:10:::0;68491:12:::1;68505:9;68481;:34::i;:::-;68337:193;68292:238::o:0;70901:156::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;60667:1:::1;61265:7;;:19;;61257:63;;;::::0;-1:-1:-1;;;61257:63:0;;15151:2:1;61257:63:0::1;::::0;::::1;15133:21:1::0;15190:2;15170:18;;;15163:30;15229:33;15209:18;;;15202:61;15280:18;;61257:63:0::1;14949:355:1::0;61257:63:0::1;60667:1;61398:7;:18:::0;70963:7:::2;70984;55043:6:::0;;-1:-1:-1;;;;;55043:6:0;;54970:87;70984:7:::2;-1:-1:-1::0;;;;;70976:21:0::2;71005;70976:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70962:69;;;71046:2;71038:11;;;::::0;::::2;;-1:-1:-1::0;60623:1:0::1;61577:7;:22:::0;70901:156::o;34563:185::-;34701:39;34718:4;34724:2;34728:7;34701:39;;;;;;;;;;;;:16;:39::i;69137:74::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;69193:4:::1;:12:::0;69137:74::o;63641:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64843:960::-;64947:11;64538:1;64524:11;:15;:51;;;;;64557:18;;64543:11;:32;64524:51;64516:84;;;;-1:-1:-1;;;64516:84:0;;;;;;;:::i;:::-;64645:9;;64631:11;64615:13;68624:1;28341:12;28131:7;28325:13;:28;-1:-1:-1;;28325:46:0;;28078:312;64615:13;:27;;;;:::i;:::-;:39;64607:72;;;;-1:-1:-1;;;64607:72:0;;;;;;;:::i;:::-;64980:11:::1;64784;64777:4;;:18;;;;:::i;:::-;64764:9;:31;;64756:63;;;;-1:-1:-1::0;;;64756:63:0::1;;;;;;;:::i;:::-;65009:6:::2;::::0;::::2;;65008:7;65000:43;;;;-1:-1:-1::0;;;65000:43:0::2;;;;;;;:::i;:::-;65058:20;::::0;::::2;::::0;::::2;;;::::0;:41:::2;;-1:-1:-1::0;65080:19:0::2;::::0;;;::::2;;;65058:41;65050:78;;;::::0;-1:-1:-1;;;65050:78:0;;17292:2:1;65050:78:0::2;::::0;::::2;17274:21:1::0;17331:2;17311:18;;;17304:30;17370:26;17350:18;;;17343:54;17414:18;;65050:78:0::2;17090:348:1::0;65050:78:0::2;65209:13;;65195:11;65183:9;;:23;;;;:::i;:::-;:39;65175:72;;;;-1:-1:-1::0;;;65175:72:0::2;;;;;;;:::i;:::-;22664:10:::0;65256:35:::2;65292:30:::0;;;:16:::2;:30;::::0;;;;;:42:::2;::::0;65323:11;;65292:42:::2;:::i;:::-;65256:78;;65377:23;;65349:27;:51;65341:96;;;;-1:-1:-1::0;;;65341:96:0::2;;;;;;;:::i;:::-;65469:30;::::0;-1:-1:-1;;22664:10:0;17994:2:1;17990:15;17986:53;65469:30:0::2;::::0;::::2;17974:66:1::0;65444:12:0::2;::::0;18056::1;;65469:30:0::2;;;;;;;;;;;;65459:41;;;;;;65444:56;;65507:12;65520:20;;;;;;;;;;;:50;;65552:18;;65520:50;;;65541:10;;65520:50;65507:63;;65585:44;65604:12;;65585:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;65618:4:0;;-1:-1:-1;65624:4:0;;-1:-1:-1;65585:18:0::2;::::0;-1:-1:-1;65585:44:0:i:2;:::-;65577:71;;;::::0;-1:-1:-1;;;65577:71:0;;18281:2:1;65577:71:0::2;::::0;::::2;18263:21:1::0;18320:2;18300:18;;;18293:30;-1:-1:-1;;;18339:18:1;;;18332:44;18393:18;;65577:71:0::2;18079:338:1::0;65577:71:0::2;22664:10:::0;65657:30:::2;::::0;;;:16:::2;:30;::::0;;;;:58;;;65733:9:::2;::::0;:21:::2;::::0;65743:11;;65733:21:::2;:::i;:::-;65722:9;:32:::0;65761:36:::2;22664:10:::0;65771:12:::2;65785:11;65761:9;:36::i;:::-;64993:810;;;64686:1:::1;64843:960:::0;;;;:::o;69353:150::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;69447:23:::1;:50:::0;69353:150::o;49184:468::-;49359:15;;49273:23;;49334:22;49359:15;-1:-1:-1;;;;;49426:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;49426:36:0;;-1:-1:-1;;49426:36:0;;;;;;;;;;;;49389:73;;49482:9;49477:125;49498:14;49493:1;:19;49477:125;;49554:32;49574:8;49583:1;49574:11;;;;;;;;:::i;:::-;;;;;;;49554:19;:32::i;:::-;49538:10;49549:1;49538:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;49514:3;;49477:125;;;-1:-1:-1;49623:10:0;49184:468;-1:-1:-1;;;49184:468:0:o;63608:28::-;;;;;;;:::i;31761:125::-;31825:7;31852:21;31865:7;31852:12;:21::i;:::-;:26;;31761:125;-1:-1:-1;;31761:125:0:o;70034:114::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;70110:18:::1;:32:::0;70034:114::o;66631:742::-;66702:6;;;;66701:7;66693:43;;;;-1:-1:-1;;;66693:43:0;;;;;;;:::i;:::-;66753:15;;;;;;;66745:56;;;;-1:-1:-1;;;66745:56:0;;18756:2:1;66745:56:0;;;18738:21:1;18795:2;18775:18;;;18768:30;18834;18814:18;;;18807:58;18882:18;;66745:56:0;18554:352:1;66745:56:0;66825:12;66859:13;66851:50;;;;-1:-1:-1;;;66851:50:0;;19113:2:1;66851:50:0;;;19095:21:1;19152:2;19132:18;;;19125:30;19191:26;19171:18;;;19164:54;19235:18;;66851:50:0;18911:348:1;66851:50:0;66913:6;66908:275;66929:11;66925:1;:15;66908:275;;;66956:15;66972:12;;66985:1;66972:15;;;;;;;:::i;:::-;;;;;;;66956:31;;67026:12;22664:10;;22584:98;67026:12;67004:3;;:20;;-1:-1:-1;;;67004:20:0;;;;;738:25:1;;;-1:-1:-1;;;;;67004:34:0;;;;:3;;;;:11;;711:18:1;;67004:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;67004:34:0;;66996:61;;;;-1:-1:-1;;;66996:61:0;;19722:2:1;66996:61:0;;;19704:21:1;19761:2;19741:18;;;19734:30;-1:-1:-1;;;19780:18:1;;;19773:45;19835:18;;66996:61:0;19520:339:1;66996:61:0;67074:23;;;;:14;:23;;;;;;;;:29;;:23;:29;;67066:72;;;;-1:-1:-1;;;67066:72:0;;20066:2:1;67066:72:0;;;20048:21:1;20105:2;20085:18;;;20078:30;20144:33;20124:18;;;20117:61;20195:18;;67066:72:0;19864:355:1;67066:72:0;67147:23;;;;:14;:23;;;;;:28;;-1:-1:-1;;67147:28:0;67171:4;67147:28;;;66942:3;;;;:::i;:::-;;;;66908:275;;;;67228:17;;67214:11;67199:12;;:26;;;;:::i;:::-;:46;67191:88;;;;-1:-1:-1;;;67191:88:0;;20566:2:1;67191:88:0;;;20548:21:1;20605:2;20585:18;;;20578:30;20644:31;20624:18;;;20617:59;20693:18;;67191:88:0;20364:353:1;67191:88:0;67313:11;67300:12;;:24;;;;:::i;:::-;67286:12;:38;67331:36;22664:10;67341:12;22584:98;70808:87;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;70871:7:::1;:18:::0;;-1:-1:-1;;;;;;70871:18:0::1;-1:-1:-1::0;;;;;70871:18:0;;;::::1;::::0;;;::::1;::::0;;70808:87::o;29207:206::-;29271:7;-1:-1:-1;;;;;29295:19:0;;29291:60;;29323:28;;-1:-1:-1;;;29323:28:0;;;;;;;;;;;29291:60;-1:-1:-1;;;;;;29377:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29377:27:0;;29207:206::o;55621:103::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;55686:30:::1;55713:1;55686:18;:30::i;:::-;55621:103::o:0;69806:98::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;69874:10:::1;:24:::0;69806:98::o;69511:100::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;69583:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;52998:891::-:0;53068:16;53122:19;53156:25;53196:22;53221:16;53231:5;53221:9;:16::i;:::-;53196:41;;53252:25;53294:14;-1:-1:-1;;;;;53280:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53280:29:0;;53252:57;;53324:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;53324:31:0;68624:1;53370:471;53419:14;53404:11;:29;53370:471;;53471:14;;;;:11;:14;;;;;;;;;53459:26;;;;;;;;;-1:-1:-1;;;;;53459:26:0;;;;-1:-1:-1;;;53459:26:0;;-1:-1:-1;;;;;53459:26:0;;;;;;;;-1:-1:-1;;;53459:26:0;;;;;;;;;;;;;;;;-1:-1:-1;53504:73:0;;53549:8;;53504:73;53599:14;;-1:-1:-1;;;;;53599:28:0;;53595:111;;53672:14;;;-1:-1:-1;53595:111:0;53749:5;-1:-1:-1;;;;;53728:26:0;:17;-1:-1:-1;;;;;53728:26:0;;53724:102;;;53805:1;53779:8;53788:13;;;;;;53779:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;53724:102;53435:3;;53370:471;;;-1:-1:-1;53862:8:0;;52998:891;-1:-1:-1;;;;;;52998:891:0:o;69910:118::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;69988:20:::1;:34:::0;69910:118::o;32122:104::-;32178:13;32211:7;32204:14;;;;;:::i;72104:281::-;72231:7;72257:9;72268;72279:7;72290:26;72305:10;72290:14;:26::i;:::-;72336:41;;;;;;;;;;;;20949:25:1;;;21022:4;21010:17;;20990:18;;;20983:45;;;;21044:18;;;21037:34;;;21087:18;;;21080:34;;;72256:60:0;;-1:-1:-1;72256:60:0;;-1:-1:-1;72256:60:0;-1:-1:-1;72336:41:0;;20921:19:1;;72336:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;72336:41:0;;-1:-1:-1;;72336:41:0;;;72104:281;-1:-1:-1;;;;;;;72104:281:0:o;50042:2507::-;50177:16;50244:4;50235:5;:13;50231:45;;50257:19;;-1:-1:-1;;;50257:19:0;;;;;;;;;;;50231:45;50291:19;50345:13;;68624:1;50436:5;:23;50432:87;;;68624:1;50480:23;;50432:87;50599:9;50592:4;:16;50588:73;;;50636:9;50629:16;;50588:73;50675:25;50703:16;50713:5;50703:9;:16::i;:::-;50675:44;;50897:4;50889:5;:12;50885:278;;;50944:12;;;50979:31;;;50975:111;;;51055:11;51035:31;;50975:111;50903:198;50885:278;;;-1:-1:-1;51146:1:0;50885:278;51177:25;51219:17;-1:-1:-1;;;;;51205:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51205:32:0;-1:-1:-1;51177:60:0;-1:-1:-1;51256:22:0;51252:78;;51306:8;-1:-1:-1;51299:15:0;;-1:-1:-1;;;51299:15:0;51252:78;51474:31;51508:26;51528:5;51508:19;:26::i;:::-;51474:60;;51549:25;51794:9;:16;;;51789:92;;-1:-1:-1;51851:14:0;;51789:92;51912:5;51895:477;51924:4;51919:1;:9;;:45;;;;;51947:17;51932:11;:32;;51919:45;51895:477;;;52002:14;;;;:11;:14;;;;;;;;;51990:26;;;;;;;;;-1:-1:-1;;;;;51990:26:0;;;;-1:-1:-1;;;51990:26:0;;-1:-1:-1;;;;;51990:26:0;;;;;;;;-1:-1:-1;;;51990:26:0;;;;;;;;;;;;;;;;-1:-1:-1;52035:73:0;;52080:8;;52035:73;52130:14;;-1:-1:-1;;;;;52130:28:0;;52126:111;;52203:14;;;-1:-1:-1;52126:111:0;52280:5;-1:-1:-1;;;;;52259:26:0;:17;-1:-1:-1;;;;;52259:26:0;;52255:102;;;52336:1;52310:8;52319:13;;;;;;52310:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;52255:102;51966:3;;51895:477;;;-1:-1:-1;;;52457:29:0;;;-1:-1:-1;52464:8:0;;-1:-1:-1;;50042:2507:0;;;;;;:::o;70493:99::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;70562:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;70562:24:0;;::::1;::::0;;;::::1;::::0;;70493:99::o;67379:905::-;67444:11;64538:1;64524:11;:15;:51;;;;;64557:18;;64543:11;:32;64524:51;64516:84;;;;-1:-1:-1;;;64516:84:0;;;;;;;:::i;:::-;64645:9;;64631:11;64615:13;68624:1;28341:12;28131:7;28325:13;:28;-1:-1:-1;;28325:46:0;;28078:312;64615:13;:27;;;;:::i;:::-;:39;64607:72;;;;-1:-1:-1;;;64607:72:0;;;;;;;:::i;:::-;67477:11:::1;64784;64777:4;;:18;;;;:::i;:::-;64764:9;:31;;64756:63;;;;-1:-1:-1::0;;;64756:63:0::1;;;;;;;:::i;:::-;67506:6:::2;::::0;::::2;;67505:7;67497:43;;;;-1:-1:-1::0;;;67497:43:0::2;;;;;;;:::i;:::-;67555:15;::::0;;;::::2;;;67547:57;;;::::0;-1:-1:-1;;;67547:57:0;;21327:2:1;67547:57:0::2;::::0;::::2;21309:21:1::0;21366:2;21346:18;;;21339:30;21405:31;21385:18;;;21378:59;21454:18;;67547:57:0::2;21125:353:1::0;67547:57:0::2;67780:21;67826:13;;67822:3;:17;;;;:::i;:::-;67809:9;::::0;67804:14:::2;::::0;:4:::2;:14;:::i;:::-;67803:37;;;;:::i;:::-;67802:41;::::0;67842:1:::2;67802:41;:::i;:::-;67780:63;;67884:13;67870:11;67859:9;;:22;;;;:::i;:::-;:38;67850:91;;;::::0;-1:-1:-1;;;67850:91:0;;21685:2:1;67850:91:0::2;::::0;::::2;21667:21:1::0;21724:2;21704:18;;;21697:30;21763:34;21743:18;;;21736:62;-1:-1:-1;;;21814:18:1;;;21807:37;21861:19;;67850:91:0::2;21483:403:1::0;67850:91:0::2;22664:10:::0;67950:35:::2;67986:30:::0;;;:16:::2;:30;::::0;;;;;:42:::2;::::0;68017:11;;67986:42:::2;:::i;:::-;67950:78;;68071:23;;68043:27;:51;68035:96;;;;-1:-1:-1::0;;;68035:96:0::2;;;;;;;:::i;:::-;22664:10:::0;68138:30:::2;::::0;;;:16:::2;:30;::::0;;;;:58;;;68214:9:::2;::::0;:21:::2;::::0;68224:11;;68214:21:::2;:::i;:::-;68203:9;:32:::0;68242:36:::2;22664:10:::0;68266:11:::2;68242:9;:36::i;:::-;67490:794;;64686:1:::1;67379:905:::0;;:::o;33733:287::-;-1:-1:-1;;;;;33832:24:0;;22664:10;33832:24;33828:54;;;33865:17;;-1:-1:-1;;;33865:17:0;;;;;;;;;;;33828:54;22664:10;33895:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33895:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33895:53:0;;;;;;;;;;33964:48;;540:41:1;;;33895:42:0;;22664:10;33964:48;;513:18:1;33964:48:0;;;;;;;33733:287;;:::o;72393:408::-;72497:9;72521;72545:7;72588:3;:10;72602:2;72588:16;72580:53;;;;-1:-1:-1;;;72580:53:0;;22093:2:1;72580:53:0;;;22075:21:1;22132:2;22112:18;;;22105:30;22171:26;22151:18;;;22144:54;22215:18;;72580:53:0;21891:348:1;72580:53:0;-1:-1:-1;;;72692:2:0;72683:12;;72677:19;72730:2;72721:12;;72715:19;72776:2;72767:12;;;72761:19;72677;;72758:1;72753:28;;;;;72393:408::o;65813:810::-;65931:11;64538:1;64524:11;:15;:51;;;;;64557:18;;64543:11;:32;64524:51;64516:84;;;;-1:-1:-1;;;64516:84:0;;;;;;;:::i;:::-;64645:9;;64631:11;64615:13;68624:1;28341:12;28131:7;28325:13;:28;-1:-1:-1;;28325:46:0;;28078:312;64615:13;:27;;;;:::i;:::-;:39;64607:72;;;;-1:-1:-1;;;64607:72:0;;;;;;;:::i;:::-;65964:11:::1;64784;64777:4;;:18;;;;:::i;:::-;64764:9;:31;;64756:63;;;;-1:-1:-1::0;;;64756:63:0::1;;;;;;;:::i;:::-;65993:6:::2;::::0;::::2;;65992:7;65984:43;;;;-1:-1:-1::0;;;65984:43:0::2;;;;;;;:::i;:::-;66042:23;::::0;;;::::2;;;66034:71;;;::::0;-1:-1:-1;;;66034:71:0;;22446:2:1;66034:71:0::2;::::0;::::2;22428:21:1::0;22485:2;22465:18;;;22458:30;22524:34;22504:18;;;22497:62;-1:-1:-1;;;22575:18:1;;;22568:33;22618:19;;66034:71:0::2;22244:399:1::0;66034:71:0::2;66148:17;;66136:11;66122:13;;:25;;;;:::i;:::-;:43;66114:95;;;::::0;-1:-1:-1;;;66114:95:0;;22850:2:1;66114:95:0::2;::::0;::::2;22832:21:1::0;22889:2;22869:18;;;22862:30;22928:34;22908:18;;;22901:62;-1:-1:-1;;;22979:18:1;;;22972:38;23027:19;;66114:95:0::2;22648:404:1::0;66114:95:0::2;66224:47;22664:10:::0;66250:9:::2;66261;;66224:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;66224:11:0::2;::::0;-1:-1:-1;;;66224:47:0:i:2;:::-;66216:80;;;::::0;-1:-1:-1;;;66216:80:0;;23259:2:1;66216:80:0::2;::::0;::::2;23241:21:1::0;23298:2;23278:18;;;23271:30;-1:-1:-1;;;23317:18:1;;;23310:50;23377:18;;66216:80:0::2;23057:344:1::0;66216:80:0::2;22664:10:::0;66303:14:::2;66318:35:::0;;;:21:::2;:35;::::0;;;;;;66385:18:::2;66392:11:::0;66318:35;66385:18:::2;:::i;:::-;66360:43;;66435:9;66418:16;:26;66410:72;;;::::0;-1:-1:-1;;;66410:72:0;;23608:2:1;66410:72:0::2;::::0;::::2;23590:21:1::0;23647:2;23627:18;;;23620:30;23686:34;23666:18;;;23659:62;-1:-1:-1;;;23737:18:1;;;23730:32;23779:19;;66410:72:0::2;23406:398:1::0;66410:72:0::2;22664:10:::0;66489:35:::2;::::0;;;:21:::2;:35;::::0;;;;:52;;;66548:13:::2;:26:::0;;66563:11;;66489:35;66548:26:::2;::::0;66563:11;;66548:26:::2;:::i;:::-;::::0;;;-1:-1:-1;66581:36:0::2;::::0;-1:-1:-1;22664:10:0;66591:12:::2;22584:98:::0;69217:130;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;69301:18:::1;:40:::0;69217:130::o;70598:95::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;70663:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;70663:24:0;;::::1;::::0;;;::::1;::::0;;70598:95::o;34819:370::-;34986:28;34996:4;35002:2;35006:7;34986:9;:28::i;:::-;-1:-1:-1;;;;;35029:13:0;;14916:19;:23;35025:157;;35050:56;35081:4;35087:2;35091:7;35100:5;35050:30;:56::i;:::-;35046:136;;35130:40;;-1:-1:-1;;;35130:40:0;;;;;;;;;;;35046:136;34819:370;;;;:::o;70699:103::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;70765:3:::1;:31:::0;;-1:-1:-1;;;;;;70765:31:0::1;-1:-1:-1::0;;;;;70765:31:0;;;::::1;::::0;;;::::1;::::0;;70699:103::o;48607:418::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68624:1:0;48763:25;;;:53;;;48803:13;;48792:7;:24;;48763:53;48759:102;;;48840:9;48607:418;-1:-1:-1;;48607:418:0:o;48759:102::-;-1:-1:-1;48883:20:0;;;;:11;:20;;;;;;;;;48871:32;;;;;;;;;-1:-1:-1;;;;;48871:32:0;;;;-1:-1:-1;;;48871:32:0;;-1:-1:-1;;;;;48871:32:0;;;;;;;;-1:-1:-1;;;48871:32:0;;;;;;;;;;;;;;;;48914:65;;48958:9;48607:418;-1:-1:-1;;48607:418:0:o;48914:65::-;48996:21;49009:7;48996:12;:21::i;68758:373::-;68832:13;68862:17;68870:8;68862:7;:17::i;:::-;68854:77;;;;-1:-1:-1;;;68854:77:0;;24011:2:1;68854:77:0;;;23993:21:1;24050:2;24030:18;;;24023:30;24089:34;24069:18;;;24062:62;-1:-1:-1;;;24140:18:1;;;24133:45;24195:19;;68854:77:0;23809:411:1;68854:77:0;68940:28;68971:10;:8;:10::i;:::-;68940:41;;69026:1;69001:14;68995:28;:32;:130;;;;;;;;;;;;;;;;;69063:14;69079:19;:8;:17;:19::i;:::-;69100:9;69046:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68988:137;68758:373;-1:-1:-1;;;68758:373:0:o;71734:362::-;71861:4;71878:19;71900:33;71920:3;71925:7;71900:19;:33::i;:::-;71878:55;;71944:28;71975:36;71999:11;71975:23;:36::i;:::-;72081:7;;71944:67;;-1:-1:-1;;;;;;72081:7:0;72031:46;71944:67;72067:9;72031:13;:46::i;:::-;-1:-1:-1;;;;;72031:57:0;;;71734:362;-1:-1:-1;;;;;;71734:362:0:o;55879:201::-;55043:6;;-1:-1:-1;;;;;55043:6:0;22664:10;55190:23;55182:68;;;;-1:-1:-1;;;55182:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55968:22:0;::::1;55960:73;;;::::0;-1:-1:-1;;;55960:73:0;;26085:2:1;55960:73:0::1;::::0;::::1;26067:21:1::0;26124:2;26104:18;;;26097:30;26163:34;26143:18;;;26136:62;-1:-1:-1;;;26214:18:1;;;26207:36;26260:19;;55960:73:0::1;25883:402:1::0;55960:73:0::1;56044:28;56063:8;56044:18;:28::i;71267:178::-:0;71406:30;;-1:-1:-1;;26467:2:1;26463:15;;;26459:53;71406:30:0;;;26447:66:1;26529:12;;;26522:28;;;71369:7:0;;26566:12:1;;71406:30:0;;;;;;;;;;;;71396:41;;;;;;71389:48;;71267:178;;;;:::o;71457:267::-;71635:66;;26831::1;71635::0;;;26819:79:1;26914:12;;;26907:28;;;71560:7:0;;26951:12:1;;71635:66:0;;;;;;;;;;;;71607:109;;;;;;71587:129;;71457:267;;;:::o;35444:174::-;35501:4;35544:7;68624:1;35525:26;;:53;;;;;35565:13;;35555:7;:23;35525:53;:85;;;;-1:-1:-1;;35583:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35583:27:0;;;;35582:28;;35444:174::o;44666:196::-;44781:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44781:29:0;-1:-1:-1;;;;;44781:29:0;;;;;;;;;44826:28;;44781:24;;44826:28;;;;;;;44666:196;;;:::o;39614:2130::-;39729:35;39767:21;39780:7;39767:12;:21::i;:::-;39729:59;;39827:4;-1:-1:-1;;;;;39805:26:0;:13;:18;;;-1:-1:-1;;;;;39805:26:0;;39801:67;;39840:28;;-1:-1:-1;;;39840:28:0;;;;;;;;;;;39801:67;39881:22;22664:10;-1:-1:-1;;;;;39907:20:0;;;;:73;;-1:-1:-1;39944:36:0;39961:4;22664:10;34091:164;:::i;39944:36::-;39907:126;;;-1:-1:-1;22664:10:0;39997:20;40009:7;39997:11;:20::i;:::-;-1:-1:-1;;;;;39997:36:0;;39907:126;39881:153;;40052:17;40047:66;;40078:35;;-1:-1:-1;;;40078:35:0;;;;;;;;;;;40047:66;-1:-1:-1;;;;;40128:16:0;;40124:52;;40153:23;;-1:-1:-1;;;40153:23:0;;;;;;;;;;;40124:52;40297:35;40314:1;40318:7;40327:4;40297:8;:35::i;:::-;-1:-1:-1;;;;;40628:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40628:31:0;;;-1:-1:-1;;;;;40628:31:0;;;-1:-1:-1;;40628:31:0;;;;;;;40674:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40674:29:0;;;;;;;;;;;40754:20;;;:11;:20;;;;;;40789:18;;-1:-1:-1;;;;;;40822:49:0;;;;-1:-1:-1;;;40855:15:0;40822:49;;;;;;;;;;41145:11;;41205:24;;;;;41248:13;;40754:20;;41205:24;;41248:13;41244:384;;41458:13;;41443:11;:28;41439:174;;41496:20;;41565:28;;;;-1:-1:-1;;;;;41539:54:0;-1:-1:-1;;;41539:54:0;-1:-1:-1;;;;;;41539:54:0;;;-1:-1:-1;;;;;41496:20:0;;41539:54;;;;41439:174;40603:1036;;;41675:7;41671:2;-1:-1:-1;;;;;41656:27:0;41665:4;-1:-1:-1;;;;;41656:27:0;;;;;;;;;;;41694:42;34819:370;35702:104;35771:27;35781:2;35785:8;35771:27;;;;;;;;;;;;:9;:27::i;57375:190::-;57500:4;57553;57524:25;57537:5;57544:4;57524:12;:25::i;:::-;:33;;57375:190;-1:-1:-1;;;;57375:190:0:o;30588:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30699:7:0;;68624:1;30748:23;30744:888;;30784:13;;30777:4;:20;30773:859;;;30818:31;30852:17;;;:11;:17;;;;;;;;;30818:51;;;;;;;;;-1:-1:-1;;;;;30818:51:0;;;;-1:-1:-1;;;30818:51:0;;-1:-1:-1;;;;;30818:51:0;;;;;;;;-1:-1:-1;;;30818:51:0;;;;;;;;;;;;;;30888:729;;30938:14;;-1:-1:-1;;;;;30938:28:0;;30934:101;;31002:9;30588:1111;-1:-1:-1;;;30588:1111:0:o;30934:101::-;-1:-1:-1;;;31377:6:0;31422:17;;;;:11;:17;;;;;;;;;31410:29;;;;;;;;;-1:-1:-1;;;;;31410:29:0;;;;;-1:-1:-1;;;31410:29:0;;-1:-1:-1;;;;;31410:29:0;;;;;;;;-1:-1:-1;;;31410:29:0;;;;;;;;;;;;;31470:28;31466:109;;31538:9;30588:1111;-1:-1:-1;;;30588:1111:0:o;31466:109::-;31337:261;;;30799:833;30773:859;31660:31;;-1:-1:-1;;;31660:31:0;;;;;;;;;;;56240:191;56333:6;;;-1:-1:-1;;;;;56350:17:0;;;-1:-1:-1;;;;;;56350:17:0;;;;;;;56383:40;;56333:6;;;56350:17;56333:6;;56383:40;;56314:16;;56383:40;56303:128;56240:191;:::o;45354:667::-;45538:72;;-1:-1:-1;;;45538:72:0;;45517:4;;-1:-1:-1;;;;;45538:36:0;;;;;:72;;22664:10;;45589:4;;45595:7;;45604:5;;45538:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45538:72:0;;;;;;;;-1:-1:-1;;45538:72:0;;;;;;;;;;;;:::i;:::-;;;45534:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45772:13:0;;45768:235;;45818:40;;-1:-1:-1;;;45818:40:0;;;;;;;;;;;45768:235;45961:6;45955:13;45946:6;45942:2;45938:15;45931:38;45534:480;-1:-1:-1;;;;;;45657:55:0;-1:-1:-1;;;45657:55:0;;-1:-1:-1;45534:480:0;45354:667;;;;;;:::o;71063:104::-;71123:13;71152:9;71145:16;;;;;:::i;23177:723::-;23233:13;23454:10;23450:53;;-1:-1:-1;;23481:10:0;;;;;;;;;;;;-1:-1:-1;;;23481:10:0;;;;;23177:723::o;23450:53::-;23528:5;23513:12;23569:78;23576:9;;23569:78;;23602:8;;;;:::i;:::-;;-1:-1:-1;23625:10:0;;-1:-1:-1;23633:2:0;23625:10;;:::i;:::-;;;23569:78;;;23657:19;23689:6;-1:-1:-1;;;;;23679:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23679:17:0;;23657:39;;23707:154;23714:10;;23707:154;;23741:11;23751:1;23741:11;;:::i;:::-;;-1:-1:-1;23810:10:0;23818:2;23810:5;:10;:::i;:::-;23797:24;;:2;:24;:::i;:::-;23784:39;;23767:6;23774;23767:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;23767:56:0;;;;;;;;-1:-1:-1;23838:11:0;23847:2;23838:11;;:::i;:::-;;;23707:154;;36179:1749;36302:20;36325:13;-1:-1:-1;;;;;36353:16:0;;36349:48;;36378:19;;-1:-1:-1;;;36378:19:0;;;;;;;;;;;36349:48;36412:13;36408:44;;36434:18;;-1:-1:-1;;;36434:18:0;;;;;;;;;;;36408:44;-1:-1:-1;;;;;36803:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36862:49:0;;-1:-1:-1;;;;;36803:44:0;;;;;;;36862:49;;;;-1:-1:-1;;36803:44:0;;;;;;36862:49;;;;;;;;;;;;;;;;36928:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36978:66:0;;;-1:-1:-1;;;37028:15:0;36978:66;;;;;;;;;;;;;36928:25;;37125:23;;;;14916:19;:23;37165:631;;37205:313;37236:38;;37261:12;;-1:-1:-1;;;;;37236:38:0;;;37253:1;;37236:38;;37253:1;;37236:38;37302:69;37341:1;37345:2;37349:14;;;;;;37365:5;37302:30;:69::i;:::-;37297:174;;37407:40;;-1:-1:-1;;;37407:40:0;;;;;;;;;;;37297:174;37513:3;37498:12;:18;37205:313;;37599:12;37582:13;;:29;37578:43;;37613:8;;;37578:43;37165:631;;;37662:119;37693:40;;37718:14;;;;;-1:-1:-1;;;;;37693:40:0;;;37710:1;;37693:40;;37710:1;;37693:40;37776:3;37761:12;:18;37662:119;;37165:631;-1:-1:-1;37810:13:0;:28;;;37860:60;;37893:2;37897:12;37911:8;37860:60;:::i;57927:675::-;58010:7;58053:4;58010:7;58068:497;58092:5;:12;58088:1;:16;58068:497;;;58126:20;58149:5;58155:1;58149:8;;;;;;;;:::i;:::-;;;;;;;58126:31;;58192:12;58176;:28;58172:382;;58678:13;58728:15;;;58764:4;58757:15;;;58811:4;58795:21;;58304:57;;58172:382;;;58678:13;58728:15;;;58764:4;58757:15;;;58811:4;58795:21;;58481:57;;58172:382;-1:-1:-1;58106:3:0;;;;:::i;:::-;;;;58068:497;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1707:180::-;1766:6;1819:2;1807:9;1798:7;1794:23;1790:32;1787:52;;;1835:1;1832;1825:12;1787:52;-1:-1:-1;1858:23:1;;1707:180;-1:-1:-1;1707:180:1:o;2326:131::-;-1:-1:-1;;;;;2401:31:1;;2391:42;;2381:70;;2447:1;2444;2437:12;2462:315;2530:6;2538;2591:2;2579:9;2570:7;2566:23;2562:32;2559:52;;;2607:1;2604;2597:12;2559:52;2646:9;2633:23;2665:31;2690:5;2665:31;:::i;:::-;2715:5;2767:2;2752:18;;;;2739:32;;-1:-1:-1;;;2462:315:1:o;2782:127::-;2843:10;2838:3;2834:20;2831:1;2824:31;2874:4;2871:1;2864:15;2898:4;2895:1;2888:15;2914:275;2985:2;2979:9;3050:2;3031:13;;-1:-1:-1;;3027:27:1;3015:40;;-1:-1:-1;;;;;3070:34:1;;3106:22;;;3067:62;3064:88;;;3132:18;;:::i;:::-;3168:2;3161:22;2914:275;;-1:-1:-1;2914:275:1:o;3194:407::-;3259:5;-1:-1:-1;;;;;3285:6:1;3282:30;3279:56;;;3315:18;;:::i;:::-;3353:57;3398:2;3377:15;;-1:-1:-1;;3373:29:1;3404:4;3369:40;3353:57;:::i;:::-;3344:66;;3433:6;3426:5;3419:21;3473:3;3464:6;3459:3;3455:16;3452:25;3449:45;;;3490:1;3487;3480:12;3449:45;3539:6;3534:3;3527:4;3520:5;3516:16;3503:43;3593:1;3586:4;3577:6;3570:5;3566:18;3562:29;3555:40;3194:407;;;;;:::o;3606:451::-;3675:6;3728:2;3716:9;3707:7;3703:23;3699:32;3696:52;;;3744:1;3741;3734:12;3696:52;3784:9;3771:23;-1:-1:-1;;;;;3809:6:1;3806:30;3803:50;;;3849:1;3846;3839:12;3803:50;3872:22;;3925:4;3917:13;;3913:27;-1:-1:-1;3903:55:1;;3954:1;3951;3944:12;3903:55;3977:74;4043:7;4038:2;4025:16;4020:2;4016;4012:11;3977:74;:::i;4062:160::-;4127:20;;4183:13;;4176:21;4166:32;;4156:60;;4212:1;4209;4202:12;4156:60;4062:160;;;:::o;4227:180::-;4283:6;4336:2;4324:9;4315:7;4311:23;4307:32;4304:52;;;4352:1;4349;4342:12;4304:52;4375:26;4391:9;4375:26;:::i;4412:247::-;4471:6;4524:2;4512:9;4503:7;4499:23;4495:32;4492:52;;;4540:1;4537;4530:12;4492:52;4579:9;4566:23;4598:31;4623:5;4598:31;:::i;4664:456::-;4741:6;4749;4757;4810:2;4798:9;4789:7;4785:23;4781:32;4778:52;;;4826:1;4823;4816:12;4778:52;4865:9;4852:23;4884:31;4909:5;4884:31;:::i;:::-;4934:5;-1:-1:-1;4991:2:1;4976:18;;4963:32;5004:33;4963:32;5004:33;:::i;:::-;4664:456;;5056:7;;-1:-1:-1;;;5110:2:1;5095:18;;;;5082:32;;4664:456::o;5125:367::-;5188:8;5198:6;5252:3;5245:4;5237:6;5233:17;5229:27;5219:55;;5270:1;5267;5260:12;5219:55;-1:-1:-1;5293:20:1;;-1:-1:-1;;;;;5325:30:1;;5322:50;;;5368:1;5365;5358:12;5322:50;5405:4;5397:6;5393:17;5381:29;;5465:3;5458:4;5448:6;5445:1;5441:14;5433:6;5429:27;5425:38;5422:47;5419:67;;;5482:1;5479;5472:12;5419:67;5125:367;;;;;:::o;5497:505::-;5592:6;5600;5608;5661:2;5649:9;5640:7;5636:23;5632:32;5629:52;;;5677:1;5674;5667:12;5629:52;5713:9;5700:23;5690:33;;5774:2;5763:9;5759:18;5746:32;-1:-1:-1;;;;;5793:6:1;5790:30;5787:50;;;5833:1;5830;5823:12;5787:50;5872:70;5934:7;5925:6;5914:9;5910:22;5872:70;:::i;:::-;5497:505;;5961:8;;-1:-1:-1;5846:96:1;;-1:-1:-1;;;;5497:505:1:o;6007:946::-;6091:6;6122:2;6165;6153:9;6144:7;6140:23;6136:32;6133:52;;;6181:1;6178;6171:12;6133:52;6221:9;6208:23;-1:-1:-1;;;;;6291:2:1;6283:6;6280:14;6277:34;;;6307:1;6304;6297:12;6277:34;6345:6;6334:9;6330:22;6320:32;;6390:7;6383:4;6379:2;6375:13;6371:27;6361:55;;6412:1;6409;6402:12;6361:55;6448:2;6435:16;6470:2;6466;6463:10;6460:36;;;6476:18;;:::i;:::-;6522:2;6519:1;6515:10;6505:20;;6545:28;6569:2;6565;6561:11;6545:28;:::i;:::-;6607:15;;;6677:11;;;6673:20;;;6638:12;;;;6705:19;;;6702:39;;;6737:1;6734;6727:12;6702:39;6761:11;;;;6781:142;6797:6;6792:3;6789:15;6781:142;;;6863:17;;6851:30;;6814:12;;;;6901;;;;6781:142;;;6942:5;6007:946;-1:-1:-1;;;;;;;;6007:946:1:o;7241:722::-;7474:2;7526:21;;;7596:13;;7499:18;;;7618:22;;;7445:4;;7474:2;7697:15;;;;7671:2;7656:18;;;7445:4;7740:197;7754:6;7751:1;7748:13;7740:197;;;7803:52;7851:3;7842:6;7836:13;7042:12;;-1:-1:-1;;;;;7038:38:1;7026:51;;7130:4;7119:16;;;7113:23;-1:-1:-1;;;;;7109:48:1;7093:14;;;7086:72;7221:4;7210:16;;;7204:23;7197:31;7190:39;7174:14;;7167:63;6958:278;7803:52;7912:15;;;;7884:4;7875:14;;;;;7776:1;7769:9;7740:197;;8153:437;8239:6;8247;8300:2;8288:9;8279:7;8275:23;8271:32;8268:52;;;8316:1;8313;8306:12;8268:52;8356:9;8343:23;-1:-1:-1;;;;;8381:6:1;8378:30;8375:50;;;8421:1;8418;8411:12;8375:50;8460:70;8522:7;8513:6;8502:9;8498:22;8460:70;:::i;:::-;8549:8;;8434:96;;-1:-1:-1;8153:437:1;-1:-1:-1;;;;8153:437:1:o;8595:632::-;8766:2;8818:21;;;8888:13;;8791:18;;;8910:22;;;8737:4;;8766:2;8989:15;;;;8963:2;8948:18;;;8737:4;9032:169;9046:6;9043:1;9040:13;9032:169;;;9107:13;;9095:26;;9176:15;;;;9141:12;;;;9068:1;9061:9;9032:169;;9232:221;9274:5;9327:3;9320:4;9312:6;9308:17;9304:27;9294:55;;9345:1;9342;9335:12;9294:55;9367:80;9443:3;9434:6;9421:20;9414:4;9406:6;9402:17;9367:80;:::i;9458:388::-;9535:6;9543;9596:2;9584:9;9575:7;9571:23;9567:32;9564:52;;;9612:1;9609;9602:12;9564:52;9648:9;9635:23;9625:33;;9709:2;9698:9;9694:18;9681:32;-1:-1:-1;;;;;9728:6:1;9725:30;9722:50;;;9768:1;9765;9758:12;9722:50;9791:49;9832:7;9823:6;9812:9;9808:22;9791:49;:::i;:::-;9781:59;;;9458:388;;;;;:::o;9851:383::-;9928:6;9936;9944;9997:2;9985:9;9976:7;9972:23;9968:32;9965:52;;;10013:1;10010;10003:12;9965:52;10052:9;10039:23;10071:31;10096:5;10071:31;:::i;:::-;10121:5;10173:2;10158:18;;10145:32;;-1:-1:-1;10224:2:1;10209:18;;;10196:32;;9851:383;-1:-1:-1;;;9851:383:1:o;10239:315::-;10304:6;10312;10365:2;10353:9;10344:7;10340:23;10336:32;10333:52;;;10381:1;10378;10371:12;10333:52;10420:9;10407:23;10439:31;10464:5;10439:31;:::i;:::-;10489:5;-1:-1:-1;10513:35:1;10544:2;10529:18;;10513:35;:::i;:::-;10503:45;;10239:315;;;;;:::o;10559:320::-;10627:6;10680:2;10668:9;10659:7;10655:23;10651:32;10648:52;;;10696:1;10693;10686:12;10648:52;10736:9;10723:23;-1:-1:-1;;;;;10761:6:1;10758:30;10755:50;;;10801:1;10798;10791:12;10755:50;10824:49;10865:7;10856:6;10845:9;10841:22;10824:49;:::i;11215:727::-;11303:6;11311;11319;11327;11380:2;11368:9;11359:7;11355:23;11351:32;11348:52;;;11396:1;11393;11386:12;11348:52;11432:9;11419:23;11409:33;;11493:2;11482:9;11478:18;11465:32;-1:-1:-1;;;;;11557:2:1;11549:6;11546:14;11543:34;;;11573:1;11570;11563:12;11543:34;11611:6;11600:9;11596:22;11586:32;;11656:7;11649:4;11645:2;11641:13;11637:27;11627:55;;11678:1;11675;11668:12;11627:55;11718:2;11705:16;11744:2;11736:6;11733:14;11730:34;;;11760:1;11757;11750:12;11730:34;11805:7;11800:2;11791:6;11787:2;11783:15;11779:24;11776:37;11773:57;;;11826:1;11823;11816:12;11773:57;11215:727;;11857:2;11849:11;;;;;-1:-1:-1;11879:6:1;;11932:2;11917:18;11904:32;;-1:-1:-1;11215:727:1;-1:-1:-1;;;11215:727:1:o;11947:665::-;12042:6;12050;12058;12066;12119:3;12107:9;12098:7;12094:23;12090:33;12087:53;;;12136:1;12133;12126:12;12087:53;12175:9;12162:23;12194:31;12219:5;12194:31;:::i;:::-;12244:5;-1:-1:-1;12301:2:1;12286:18;;12273:32;12314:33;12273:32;12314:33;:::i;:::-;12366:7;-1:-1:-1;12420:2:1;12405:18;;12392:32;;-1:-1:-1;12475:2:1;12460:18;;12447:32;-1:-1:-1;;;;;12491:30:1;;12488:50;;;12534:1;12531;12524:12;12488:50;12557:49;12598:7;12589:6;12578:9;12574:22;12557:49;:::i;:::-;12547:59;;;11947:665;;;;;;;:::o;12617:265::-;7042:12;;-1:-1:-1;;;;;7038:38:1;7026:51;;7130:4;7119:16;;;7113:23;-1:-1:-1;;;;;7109:48:1;7093:14;;;7086:72;7221:4;7210:16;;;7204:23;7197:31;7190:39;7174:14;;;7167:63;12813:2;12798:18;;12825:51;6958:278;12887:523;12973:6;12981;12989;13042:2;13030:9;13021:7;13017:23;13013:32;13010:52;;;13058:1;13055;13048:12;13010:52;13097:9;13084:23;13116:31;13141:5;13116:31;:::i;:::-;13166:5;-1:-1:-1;13218:2:1;13203:18;;13190:32;;-1:-1:-1;13273:2:1;13258:18;;13245:32;-1:-1:-1;;;;;13289:30:1;;13286:50;;;13332:1;13329;13322:12;13286:50;13355:49;13396:7;13387:6;13376:9;13372:22;13355:49;:::i;:::-;13345:59;;;12887:523;;;;;:::o;13415:388::-;13483:6;13491;13544:2;13532:9;13523:7;13519:23;13515:32;13512:52;;;13560:1;13557;13550:12;13512:52;13599:9;13586:23;13618:31;13643:5;13618:31;:::i;:::-;13668:5;-1:-1:-1;13725:2:1;13710:18;;13697:32;13738:33;13697:32;13738:33;:::i;:::-;13790:7;13780:17;;;13415:388;;;;;:::o;13808:380::-;13887:1;13883:12;;;;13930;;;13951:61;;14005:4;13997:6;13993:17;13983:27;;13951:61;14058:2;14050:6;14047:14;14027:18;14024:38;14021:161;;;14104:10;14099:3;14095:20;14092:1;14085:31;14139:4;14136:1;14129:15;14167:4;14164:1;14157:15;14021:161;;13808:380;;;:::o;14193:356::-;14395:2;14377:21;;;14414:18;;;14407:30;14473:34;14468:2;14453:18;;14446:62;14540:2;14525:18;;14193:356::o;14554:127::-;14615:10;14610:3;14606:20;14603:1;14596:31;14646:4;14643:1;14636:15;14670:4;14667:1;14660:15;14686:125;14726:4;14754:1;14751;14748:8;14745:34;;;14759:18;;:::i;:::-;-1:-1:-1;14796:9:1;;14686:125::o;14816:128::-;14856:3;14887:1;14883:6;14880:1;14877:13;14874:39;;;14893:18;;:::i;:::-;-1:-1:-1;14929:9:1;;14816:128::o;15519:344::-;15721:2;15703:21;;;15760:2;15740:18;;;15733:30;-1:-1:-1;;;15794:2:1;15779:18;;15772:50;15854:2;15839:18;;15519:344::o;15868:::-;16070:2;16052:21;;;16109:2;16089:18;;;16082:30;-1:-1:-1;;;16143:2:1;16128:18;;16121:50;16203:2;16188:18;;15868:344::o;16217:168::-;16257:7;16323:1;16319;16315:6;16311:14;16308:1;16305:21;16300:1;16293:9;16286:17;16282:45;16279:71;;;16330:18;;:::i;:::-;-1:-1:-1;16370:9:1;;16217:168::o;16390:343::-;16592:2;16574:21;;;16631:2;16611:18;;;16604:30;-1:-1:-1;;;16665:2:1;16650:18;;16643:49;16724:2;16709:18;;16390:343::o;16738:347::-;16940:2;16922:21;;;16979:2;16959:18;;;16952:30;17018:25;17013:2;16998:18;;16991:53;17076:2;17061:18;;16738:347::o;17443:397::-;17645:2;17627:21;;;17684:2;17664:18;;;17657:30;17723:34;17718:2;17703:18;;17696:62;-1:-1:-1;;;17789:2:1;17774:18;;17767:31;17830:3;17815:19;;17443:397::o;18422:127::-;18483:10;18478:3;18474:20;18471:1;18464:31;18514:4;18511:1;18504:15;18538:4;18535:1;18528:15;19264:251;19334:6;19387:2;19375:9;19366:7;19362:23;19358:32;19355:52;;;19403:1;19400;19393:12;19355:52;19435:9;19429:16;19454:31;19479:5;19454:31;:::i;20224:135::-;20263:3;-1:-1:-1;;20284:17:1;;20281:43;;;20304:18;;:::i;:::-;-1:-1:-1;20351:1:1;20340:13;;20224:135::o;24351:1527::-;24575:3;24613:6;24607:13;24639:4;24652:51;24696:6;24691:3;24686:2;24678:6;24674:15;24652:51;:::i;:::-;24766:13;;24725:16;;;;24788:55;24766:13;24725:16;24810:15;;;24788:55;:::i;:::-;24932:13;;24865:20;;;24905:1;;24992;25014:18;;;;25067;;;;25094:93;;25172:4;25162:8;25158:19;25146:31;;25094:93;25235:2;25225:8;25222:16;25202:18;25199:40;25196:167;;;-1:-1:-1;;;25262:33:1;;25318:4;25315:1;25308:15;25348:4;25269:3;25336:17;25196:167;25379:18;25406:110;;;;25530:1;25525:328;;;;25372:481;;25406:110;-1:-1:-1;;25441:24:1;;25427:39;;25486:20;;;;-1:-1:-1;25406:110:1;;25525:328;24298:1;24291:14;;;24335:4;24322:18;;25620:1;25634:169;25648:8;25645:1;25642:15;25634:169;;;25730:14;;25715:13;;;25708:37;25773:16;;;;25665:10;;25634:169;;;25638:3;;25834:8;25827:5;25823:20;25816:27;;25372:481;-1:-1:-1;25869:3:1;;24351:1527;-1:-1:-1;;;;;;;;;;;24351:1527:1:o;26974:489::-;-1:-1:-1;;;;;27243:15:1;;;27225:34;;27295:15;;27290:2;27275:18;;27268:43;27342:2;27327:18;;27320:34;;;27390:3;27385:2;27370:18;;27363:31;;;27168:4;;27411:46;;27437:19;;27429:6;27411:46;:::i;:::-;27403:54;26974:489;-1:-1:-1;;;;;;26974:489:1:o;27468:249::-;27537:6;27590:2;27578:9;27569:7;27565:23;27561:32;27558:52;;;27606:1;27603;27596:12;27558:52;27638:9;27632:16;27657:30;27681:5;27657:30;:::i;27722:127::-;27783:10;27778:3;27774:20;27771:1;27764:31;27814:4;27811:1;27804:15;27838:4;27835:1;27828:15;27854:120;27894:1;27920;27910:35;;27925:18;;:::i;:::-;-1:-1:-1;27959:9:1;;27854:120::o;27979:112::-;28011:1;28037;28027:35;;28042:18;;:::i;:::-;-1:-1:-1;28076:9:1;;27979:112::o
Swarm Source
ipfs://42055fb511119c700a2dbaea4901304e7406d918bb53ae39b57fbfb3fd1df2b9
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.