ETH Price: $2,600.75 (-2.24%)
Gas: 1 Gwei

Token

.ethereum Name Service (.ethereum)
 

Overview

Max Total Supply

1,004 .ethereum

Holders

539

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 .ethereum
0x4920B0fEcEA26ca1339d7e98382C2620d59ec762
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EthNameDomains

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-24
*/

// File: https://github.com/aahilhamza/ERC721A/blob/main/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external payable;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: https://github.com/aahilhamza/ERC721A/blob/main/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 internal _currentIndex;
    mapping(uint => string) public tokenIDandAddress;
    mapping(string => uint) public tokenAddressandID;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId)) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// 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: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // 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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/EthNameDomains.sol


pragma solidity >=0.7.0 <0.9.0;







contract EthNameDomains is ERC721A, Ownable, ReentrancyGuard {

    /// ERRORS ///
    error NotOwner();
    error InvalidName();

    error SaleInactive();
    error InsufficientFunds();
    error AlreadyClaimedAllowlist();

    error InvalidProof();
    error InexistantToken();

    using Strings for uint256;
    uint256 public PRICE = 15000000000000000;
    uint256 public REF = 20;
    uint256 public REF_OWNER = 30;
    uint256 public REF_DISCOUNT = 20;
    uint256 public SUBDOMAIN_FEE = 10;
    uint256 private MAX_CHAR = 20;

    uint32 SALE_START_TIME = 1666625220;
    string private domain = ".ethereum";
    string private BASE_URI = "https://metadata.ethname.domains/";

    bool public IS_SALE_ACTIVE = true;

    mapping(uint => string[]) public categories;

    mapping(string => address) public resolveAddress;
    mapping(address => string) public primaryAddress;
    mapping(string => bool) public subDomains_publicSale;
    mapping(string => uint) public subDomains_cost;
    mapping(string => mapping(string => string)) public nameData;
    mapping(address => bool) public allowListMints;
    
    bytes32 public merkleRoot;
    bytes32 public internalRoot;

    constructor() ERC721A(".ethereum Name Service", ".ethereum") payable {
        _register("ethereum");
        _register("ens");
        _register("vitalik");
    }

    function register(string memory name, address referrer)
        public
        payable
        nameCompliance(name)
    {   
        if (!IS_SALE_ACTIVE) revert SaleInactive();

        bool isRef = referrer != address(0);
        uint256 finalPrice = PRICE;
        uint256 reward;

        unchecked {
            if (isRef) {
                if (bytes(primaryAddress[referrer]).length > 0)
                    reward = PRICE * REF_OWNER/ 100;
                else
                    reward = PRICE * REF / 100;
                finalPrice = PRICE * (100 - REF_DISCOUNT) / 100;
            }

            if (msg.value < finalPrice) revert InsufficientFunds();
            payable(referrer).transfer(reward);
        }

        _register(name);
    }

    function registerSubdomain(string memory name, string memory subName)
        public
        payable
    {   
        if (!IS_SALE_ACTIVE) revert SaleInactive();

        string memory subDomain = string(abi.encodePacked(subName, '.', name));
        if (!validName(subName) || !validName(name) || tokenAddressandID[subDomain] != 0) 
            revert InvalidName();

        TokenOwnership memory ownership = _ownershipOf(tokenAddressandID[name]);
        if (ownership.addr != msg.sender) {
            if (!subDomains_publicSale[name]) revert SaleInactive();
            if (msg.value < subDomains_cost[name]) revert InsufficientFunds();
            payable(ownership.addr).transfer(msg.value * (100 - SUBDOMAIN_FEE) / 100);
        }
        
        _register(subDomain);
    }

    function registerAllowlist(string memory name, bytes32[] calldata merkleProof)
        public
        nameCompliance(name)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        if (!MerkleProof.verify(merkleProof, merkleRoot, leaf)) revert InvalidProof();

        if (allowListMints[msg.sender]) revert AlreadyClaimedAllowlist();
        allowListMints[msg.sender] = true;
        
        _register(name);
    }

    function registerInternal(string memory name, bytes32[] calldata merkleProof)
        public
        nameCompliance(name)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        if (!MerkleProof.verify(merkleProof, internalRoot, leaf)) revert InvalidProof();
        
        _register(name);
    }

    function validName(string memory _name) public view returns(bool) {
        bytes memory b = bytes(_name);

        unchecked {
            if (b.length > MAX_CHAR || b.length < 1) 
                return false;

            for(uint i; i < b.length; ++i) {
                bytes1 char = b[i];

                if(!(char >= 0x30 && char <= 0x39) && !(char >= 0x61 && char <= 0x7A) && (char != 0x5F) && (char != 0x2D)) // 0-9, a-z, _, -
                    return false;
            }
        }
        return true;
    }

    function isRegisterable(string memory _name) public view returns(bool) {
        return tokenAddressandID[_name] == 0 && validName(_name);
    }

    function _register(string memory name) internal {
        tokenIDandAddress[_currentIndex] = name;
        tokenAddressandID[name] = _currentIndex;
        resolveAddress[name] = msg.sender;
        _safeMint(msg.sender, 1);
    }

    /// GETTERS ///

    function getUserData(string memory name, string calldata field) public view returns(string memory) {
        return nameData[name][field];
    }

    function getNameOwner(string memory name) public view returns(address) {
        uint256 id = tokenAddressandID[name];
        return ownerOf(id);
    }

    function getCategory(uint256 categoryId) public view returns(string[] memory) {
        return categories[categoryId];
    }

    function lastAddresses(uint256 count)
        public
        view
        returns (string[] memory)
    {
        uint256 total = totalSupply();
        string[] memory lastAddr = new string[](count);
        uint256 currentId = total - count;
        uint256 ownedTokenIndex = 0;
        require(currentId >= 0, "Invalid");
        while (total > currentId) {
            lastAddr[ownedTokenIndex] = string(abi.encodePacked(tokenIDandAddress[total], domain));
            ownedTokenIndex++;
        total--;
        }

        return lastAddr;
    }

    function walletOfOwnerName(address _owner)
        public
        view
        returns (string[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        string[] memory ownedTokenIds = new string[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount) {
        address currentTokenOwner = ownerOf(currentTokenId);

        if (currentTokenOwner == _owner) {
            ownedTokenIds[ownedTokenIndex] = string(abi.encodePacked(tokenIDandAddress[currentTokenId], domain));

            ownedTokenIndex++;
        }

        currentTokenId++;
        }

        return ownedTokenIds;
    }


    /// SETTERS ///

    function setBaseURI(string memory customBaseURI_) external onlyOwner {
        BASE_URI = customBaseURI_;
    }

    function setMaxCharSize(uint256 maxCharSize_) external onlyOwner {
        MAX_CHAR = maxCharSize_;
    }

    function setPrice(uint256 price) external onlyOwner {
        PRICE = price;
    }

    function toggleSaleStatus() external onlyOwner {
        IS_SALE_ACTIVE = !IS_SALE_ACTIVE;
    }

    function addCategories(uint256[] memory newCategories) external onlyOwner {
        for (uint i; i < newCategories.length; ++i) {
            string[] memory dataField;
            categories[newCategories[i]] = dataField;
        }
    }

    function setRefSettings(uint ref,uint ref_owner, uint ref_discount, uint subdomains_fee) external onlyOwner {
        REF = ref;
        REF_OWNER = ref_owner;
        REF_DISCOUNT = ref_discount;
        SUBDOMAIN_FEE = subdomains_fee;
    }

    function namediff(uint256 tokenId , string calldata newName) external onlyOwner {
        tokenIDandAddress[tokenId] = newName;
        tokenAddressandID[newName] = tokenId;
    }

    function setMerkleRoot(bytes32 _newMerkleRoot) external onlyOwner {
        merkleRoot = _newMerkleRoot;
    }

    function setInternalRoot(bytes32 _newMerkleRoot) external onlyOwner {
        internalRoot = _newMerkleRoot;
    }
    
    function setSaleStartTime(uint32 time) external onlyOwner {
        SALE_START_TIME = time;
    }

    function setPrimaryAddress(string calldata name) external {
        if (resolveAddress[name] != msg.sender) revert NotOwner();
        primaryAddress[msg.sender] = name;
    }

    function setUserData(string calldata name, string[] calldata fields, string[] memory data) external ownershipCompliance(name) {
        for(uint i; i < fields.length; ++i) {
            nameData[name][fields[i]] = data[i];
        }
    }

    function setUserCategory(string calldata name, uint categoryId) external ownershipCompliance(name) {
        categories[categoryId].push(name);
    }

    function setAddress(string calldata name, address newResolve) external ownershipCompliance(name) {
        bytes memory result = bytes(primaryAddress[resolveAddress[name]]);
        if (keccak256(result) == keccak256(bytes(name))) {
            primaryAddress[resolveAddress[name]] = "";
        }
        resolveAddress[name] = newResolve;
    }

    function setSubdomainSaleActive(string calldata name, bool isActive, uint256 customPrice)
        public
        ownershipCompliance(name)
    {
        subDomains_cost[name] = customPrice;
        subDomains_publicSale[name] = isActive;
    }

    /// MODIFIERS ///

    modifier ownershipCompliance(string memory name) {
        TokenOwnership memory ownership = _ownershipOf(tokenAddressandID[name]);
        if (ownership.addr != msg.sender) revert NotOwner();
        _;
    }

    modifier nameCompliance(string memory name) {
        if (block.timestamp < SALE_START_TIME) revert SaleInactive();
        if (!isRegisterable(name)) revert InvalidName();
        _;
    }

    function _startTokenId()
        internal
        view
        virtual
        override returns (uint256) 
    {
        return 1;
    }

    function _baseURI()
        internal 
        view 
        virtual
        override returns (string memory)
    {
        return BASE_URI;
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual override {
        super._beforeTokenTransfers(from, to, startTokenId, quantity);
        resolveAddress[tokenIDandAddress[startTokenId]] = to;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        return string(abi.encodePacked(_baseURI(), _tokenId.toString(), '/', tokenIDandAddress[_tokenId]));
    }

    /// PAYOUT ///

    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        payable(0x7CdB864677d9fD4057dd77Be0868e7B82B18CE93).transfer(balance * 50/100);
        payable(0x944245C6561Cb4A9BCA276EEEc6F34d386BDbd56).transfer(balance * 50/100);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"AlreadyClaimedAllowlist","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InexistantToken","type":"error"},{"inputs":[],"name":"InsufficientFunds","type":"error"},{"inputs":[],"name":"InvalidName","type":"error"},{"inputs":[],"name":"InvalidProof","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotOwner","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SaleInactive","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REF","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REF_DISCOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REF_OWNER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUBDOMAIN_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"newCategories","type":"uint256[]"}],"name":"addCategories","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowListMints","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":"payable","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":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"categories","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"categoryId","type":"uint256"}],"name":"getCategory","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"getNameOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"field","type":"string"}],"name":"getUserData","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"internalRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"isRegisterable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"lastAddresses","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"string","name":"","type":"string"}],"name":"nameData","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"newName","type":"string"}],"name":"namediff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"primaryAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"address","name":"referrer","type":"address"}],"name":"register","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"registerAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"registerInternal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"subName","type":"string"}],"name":"registerSubdomain","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"resolveAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"address","name":"newResolve","type":"address"}],"name":"setAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"setInternalRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxCharSize_","type":"uint256"}],"name":"setMaxCharSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"setPrimaryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ref","type":"uint256"},{"internalType":"uint256","name":"ref_owner","type":"uint256"},{"internalType":"uint256","name":"ref_discount","type":"uint256"},{"internalType":"uint256","name":"subdomains_fee","type":"uint256"}],"name":"setRefSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"time","type":"uint32"}],"name":"setSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"bool","name":"isActive","type":"bool"},{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setSubdomainSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"categoryId","type":"uint256"}],"name":"setUserCategory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string[]","name":"fields","type":"string[]"},{"internalType":"string[]","name":"data","type":"string[]"}],"name":"setUserData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"subDomains_cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"subDomains_publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"tokenAddressandID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIDandAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"validName","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwnerName","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

66354a6ba7a18000600c556014600d819055601e600e55600f819055600a6010556011556012805463ffffffff1916636356aec417905560c060405260096080819052682e657468657265756d60b81b60a0908152620000639160139190620005a1565b5060405180606001604052806021815260200162004e996021913980516200009491601491602090910190620005a1565b506015805460ff19166001179055604080518082018252601681527f2e657468657265756d204e616d652053657276696365000000000000000000006020808301918252835180850190945260098452682e657468657265756d60b81b9084015281519192916200010891600491620005a1565b5080516200011e906005906020840190620005a1565b50506001600055506200013133620001b4565b6001600b55604080518082019091526008815267657468657265756d60c01b6020820152620001609062000206565b604080518082019091526003815262656e7360e81b6020820152620001859062000206565b604080518082019091526007815266766974616c696b60c81b6020820152620001ae9062000206565b620007fe565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008054815260016020908152604090912082516200022892840190620005a1565b506000546002826040516200023e91906200067a565b908152602001604051809103902081905550336017826040516200026391906200067a565b90815260405190819003602001902080546001600160a01b03929092166001600160a01b03199092169190911790556200029f336001620002a2565b50565b620002c4828260405180602001604052806000815250620002c860201b60201c565b5050565b620002d483836200033f565b6001600160a01b0383163b156200033a576000548281035b6001810190620003029060009087908662000427565b62000320576040516368d2bf6b60e11b815260040160405180910390fd5b818110620002ec5781600054146200033757600080fd5b50505b505050565b60005481620003615760405163b562e8dd60e01b815260040160405180910390fd5b62000370600084838562000528565b6001600160a01b03831660008181526007602090815260408083208054680100000000000000018802019055848352600690915281206001851460e11b4260a01b1783179055828401908390839060008051602062004eba8339815191528180a4600183015b818114620003ff578083600060008051602062004eba833981519152600080a4600101620003d6565b50816200041e57604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200045e9033908990889088906004016200073c565b602060405180830381600087803b1580156200047957600080fd5b505af1925050508015620004ac575060408051601f3d908101601f19168201909252620004a99181019062000647565b60015b6200050b573d808015620004dd576040519150601f19603f3d011682016040523d82523d6000602084013e620004e2565b606091505b50805162000503576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b62000541848484846200059b60201b620021a91760201c565b8260176001600085815260200190815260200160002060405162000566919062000698565b90815260405190819003602001902080546001600160a01b03929092166001600160a01b031990921691909117905550505050565b50505050565b828054620005af90620007c1565b90600052602060002090601f016020900481019282620005d357600085556200061e565b82601f10620005ee57805160ff19168380011785556200061e565b828001600101855582156200061e579182015b828111156200061e57825182559160200191906001019062000601565b506200062c92915062000630565b5090565b5b808211156200062c576000815560010162000631565b6000602082840312156200065a57600080fd5b81516001600160e01b0319811681146200067357600080fd5b9392505050565b600082516200068e81846020870162000792565b9190910192915050565b600080835481600182811c915080831680620006b557607f831692505b6020808410821415620006d657634e487b7160e01b86526022600452602486fd5b818015620006ed5760018114620006ff576200072e565b60ff198616895284890196506200072e565b60008a81526020902060005b86811015620007265781548b8201529085019083016200070b565b505084890196505b509498975050505050505050565b600060018060a01b0380871683528086166020840152508360408301526080606083015282518060808401526200077b8160a085016020870162000792565b601f01601f19169190910160a00195945050505050565b60005b83811015620007af57818101518382015260200162000795565b838111156200059b5750506000910152565b600181811c90821680620007d657607f821691505b60208210811415620007f857634e487b7160e01b600052602260045260246000fd5b50919050565b61468b806200080e6000396000f3fe6080604052600436106103a25760003560e01c80638699e738116101e7578063b88d4fde1161010d578063e74a37f8116100a0578063f2fde38b1161006f578063f2fde38b14610b3f578063f3052d2614610b5f578063f54d368914610b7f578063f990f91a14610b9f57600080fd5b8063e74a37f814610a89578063e985e9c514610aa9578063ef8633ef14610aff578063f17b392714610b1f57600080fd5b8063d6bc2c7f116100dc578063d6bc2c7f146109f1578063d7d6c48514610a29578063e2bc750814610a49578063e42fa3f314610a6957600080fd5b8063b88d4fde1461097e578063c6fbf9a914610991578063c87b56dd146109b1578063c9e9c7eb146109d157600080fd5b806395d89b4111610185578063ad45a3ed11610154578063ad45a3ed146108dd578063afd800c5146108f0578063b6c6e69214610910578063b816aa8a1461095e57600080fd5b806395d89b41146108725780639b2ea4bd146108875780639ca34569146108a7578063a22cb465146108bd57600080fd5b80638da5cb5b116101c15780638da5cb5b146107d75780638e96de271461080257806390ad4bdf1461082257806391b7f5ed1461085257600080fd5b80638699e7381461078b5780638b8dd5fd146107ab5780638d859f3e146107c157600080fd5b80632eb4a7ab116102cc578063698c62c51161026a57806376d02b711161023957806376d02b71146106f65780637a921a1a146107105780637cb64759146107305780637d8f4ca31461075057600080fd5b8063698c62c5146106815780636e32e499146106a157806370a08231146106c1578063715018a6146106e157600080fd5b806342842e0e116102a657806342842e0e1461060e57806355f804b3146106215780635acf6139146106415780636352211e1461066157600080fd5b80632eb4a7ab146105b65780632f7758cd146105cc5780633ccfd60b146105f957600080fd5b8063095ea7b3116103445780631e59c529116103135780631e59c5291461055057806323b872dd1461056357806327b972f9146105765780632accb37c1461059657600080fd5b8063095ea7b3146104b45780630d6eec78146104c757806311d07f78146104ff57806318160ddd1461051557600080fd5b8063066034fc11610380578063066034fc1461041357806306fdde0314610437578063081812fc1461045957806308d841391461049e57600080fd5b806301595266146103a757806301ffc9a7146103c9578063049c5c49146103fe575b600080fd5b3480156103b357600080fd5b506103c76103c2366004613ff6565b610bbf565b005b3480156103d557600080fd5b506103e96103e4366004613b42565b610bfe565b60405190151581526020015b60405180910390f35b34801561040a57600080fd5b506103c7610ce3565b34801561041f57600080fd5b50610429600d5481565b6040519081526020016103f5565b34801561044357600080fd5b5061044c610d1d565b6040516103f591906142fe565b34801561046557600080fd5b50610479610474366004613b29565b610daf565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103f5565b3480156104aa57600080fd5b5061042960105481565b6103c76104c2366004613a62565b610e19565b3480156104d357600080fd5b506104296104e2366004613dc0565b805160208183018101805160028252928201919093012091525481565b34801561050b57600080fd5b50610429600f5481565b34801561052157600080fd5b50600354600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01610429565b6103c761055e366004613df5565b610f04565b6103c7610571366004613980565b611105565b34801561058257600080fd5b50610479610591366004613dc0565b611397565b3480156105a257600080fd5b506103c76105b1366004613d74565b6113cb565b3480156105c257600080fd5b50610429601d5481565b3480156105d857600080fd5b506105ec6105e7366004613b29565b6114a7565b6040516103f5919061427e565b34801561060557600080fd5b506103c76115c4565b6103c761061c366004613980565b6116f7565b34801561062d57600080fd5b506103c761063c366004613dc0565b611717565b34801561064d57600080fd5b506103c761065c366004613b29565b611736565b34801561066d57600080fd5b5061047961067c366004613b29565b611743565b34801561068d57600080fd5b506103c761069c366004613d18565b61174e565b3480156106ad57600080fd5b5061044c6106bc366004613b29565b61186b565b3480156106cd57600080fd5b506104296106dc366004613932565b611905565b3480156106ed57600080fd5b506103c7611987565b34801561070257600080fd5b506015546103e99060ff1681565b34801561071c57600080fd5b506103e961072b366004613dc0565b61199b565b34801561073c57600080fd5b506103c761074b366004613b29565b611bd8565b34801561075c57600080fd5b506103e961076b366004613dc0565b805160208183018101805160198252928201919093012091525460ff1681565b34801561079757600080fd5b5061044c6107a6366004613932565b611be5565b3480156107b757600080fd5b50610429601e5481565b3480156107cd57600080fd5b50610429600c5481565b3480156107e357600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff16610479565b34801561080e57600080fd5b5061044c61081d366004613eff565b611bfe565b34801561082e57600080fd5b506103e961083d366004613932565b601c6020526000908152604090205460ff1681565b34801561085e57600080fd5b506103c761086d366004613b29565b611c3f565b34801561087e57600080fd5b5061044c611c4c565b34801561089357600080fd5b506103c76108a2366004613bbe565b611c5b565b3480156108b357600080fd5b50610429600e5481565b3480156108c957600080fd5b506103c76108d8366004613a38565b611ed7565b6103c76108eb366004613eff565b611f6e565b3480156108fc57600080fd5b506103c761090b366004613fc4565b6121af565b34801561091c57600080fd5b5061047961092b366004613dc0565b805160208183018101805160178252928201919093012091525473ffffffffffffffffffffffffffffffffffffffff1681565b34801561096a57600080fd5b5061044c610979366004613fa2565b6121cb565b6103c761098c3660046139bc565b612203565b34801561099d57600080fd5b506103c76109ac366004613b7c565b61226d565b3480156109bd57600080fd5b5061044c6109cc366004613b29565b61230d565b3480156109dd57600080fd5b506103e96109ec366004613dc0565b6123ec565b3480156109fd57600080fd5b50610429610a0c366004613dc0565b8051602081830181018051601a8252928201919093012091525481565b348015610a3557600080fd5b506103c7610a44366004613f63565b612420565b348015610a5557600080fd5b5061044c610a64366004613ea3565b61246a565b348015610a7557600080fd5b506103c7610a84366004613e3a565b61253a565b348015610a9557600080fd5b506103c7610aa4366004613a8c565b612712565b348015610ab557600080fd5b506103e9610ac436600461394d565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610b0b57600080fd5b506103c7610b1a366004613c12565b61277b565b348015610b2b57600080fd5b506103c7610b3a366004613e3a565b6128cd565b348015610b4b57600080fd5b506103c7610b5a366004613932565b612a1c565b348015610b6b57600080fd5b506105ec610b7a366004613b29565b612ad3565b348015610b8b57600080fd5b506103c7610b9a366004613b29565b612bbf565b348015610bab57600080fd5b506105ec610bba366004613932565b612bcc565b610bc7612cea565b601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001663ffffffff92909216919091179055565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161480610c9157507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b80610cdd57507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b610ceb612cea565b601580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b606060048054610d2c906144ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610d58906144ca565b8015610da55780601f10610d7a57610100808354040283529160200191610da5565b820191906000526020600020905b815481529060010190602001808311610d8857829003601f168201915b5050505050905090565b6000610dba82612d6b565b610df0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526008602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610e2482611743565b90503373ffffffffffffffffffffffffffffffffffffffff821614610e8357610e4d8133610ac4565b610e83576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526008602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b601254829063ffffffff16421015610f48576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f51816123ec565b610f87576040517f430f13b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60155460ff16610fc3576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5473ffffffffffffffffffffffffffffffffffffffff831615801591906000906110765773ffffffffffffffffffffffffffffffffffffffff851660009081526018602052604081208054611019906144ca565b9050111561103f576064600e54600c5402816110375761103761459a565b049050611059565b6064600d54600c5402816110555761105561459a565b0490505b6064600f54606403600c5402816110725761107261459a565b0491505b813410156110b0576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff86169082156108fc029083906000818181858888f193505050501580156110f3573d6000803e3d6000fd5b506110fd86612db9565b505050505050565b600061111082612e6f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611177576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260086020526040902080543380821473ffffffffffffffffffffffffffffffffffffffff8816909114176111ea576111b48633610ac4565b6111ea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516611237576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112448686866001612f28565b801561124f57600082555b73ffffffffffffffffffffffffffffffffffffffff86811660009081526007602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600660205260409020557c0200000000000000000000000000000000000000000000000000000000831661133757600184016000818152600660205260409020546113355760005481146113355760008181526006602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110fd565b6000806002836040516113aa9190614147565b90815260200160405180910390205490506113c481611743565b9392505050565b82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525060405190935061142b925060029150611417908590614147565b908152602001604051809103902054612fa5565b805190915073ffffffffffffffffffffffffffffffffffffffff16331461147e576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008381526016602090815260408220805460018101825590835291206110fd910186866135fa565b600354600080546060927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff910301908367ffffffffffffffff8111156114ef576114ef6145f8565b60405190808252806020026020018201604052801561152257816020015b606081526020019060019003908161150d5790505b50905060006115318584614452565b90506000611543565b60405180910390fd5b818411156115ba57600084815260016020908152604091829020915161156d92916013910161422a565b60405160208183030381529060405283828151811061158e5761158e6145c9565b602002602001018190525080806115a49061451e565b91505083806115b290614495565b945050611543565b5090949350505050565b6115cc612cea565b6002600b541415611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161153a565b6002600b5547737cdb864677d9fd4057dd77be0868e7b82b18ce936108fc6064611664846032614415565b61166e9190614401565b6040518115909202916000818181858888f19350505050158015611696573d6000803e3d6000fd5b5073944245c6561cb4a9bca276eeec6f34d386bdbd566108fc60646116bc846032614415565b6116c69190614401565b6040518115909202916000818181858888f193505050501580156116ee573d6000803e3d6000fd5b50506001600b55565b61171283838360405180602001604052806000815250612203565b505050565b61171f612cea565b805161173290601490602084019061369c565b5050565b61173e612cea565b601155565b6000610cdd82612e6f565b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525060405190935061179a925060029150611417908590614147565b805190915073ffffffffffffffffffffffffffffffffffffffff1633146117ed576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82601a8787604051611800929190614137565b9081526020016040518091039020819055508360198787604051611825929190614137565b90815260405190819003602001902080549115157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00909216919091179055505050505050565b60016020526000908152604090208054611884906144ca565b80601f01602080910402602001604051908101604052809291908181526020018280546118b0906144ca565b80156118fd5780601f106118d2576101008083540402835291602001916118fd565b820191906000526020600020905b8154815290600101906020018083116118e057829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216611954576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205467ffffffffffffffff1690565b61198f612cea565b6119996000613043565b565b6011548151600091839111806119b2575060018151105b156119c05750600092915050565b60005b8151811015611bce5760008282815181106119e0576119e06145c9565b01602001517fff000000000000000000000000000000000000000000000000000000000000001690507f30000000000000000000000000000000000000000000000000000000000000008110801590611a7b57507f39000000000000000000000000000000000000000000000000000000000000007fff00000000000000000000000000000000000000000000000000000000000000821611155b158015611b1957507f61000000000000000000000000000000000000000000000000000000000000007fff00000000000000000000000000000000000000000000000000000000000000821610801590611b1757507f7a000000000000000000000000000000000000000000000000000000000000007fff00000000000000000000000000000000000000000000000000000000000000821611155b155b8015611b6757507f5f000000000000000000000000000000000000000000000000000000000000007fff00000000000000000000000000000000000000000000000000000000000000821614155b8015611bb557507f2d000000000000000000000000000000000000000000000000000000000000007fff00000000000000000000000000000000000000000000000000000000000000821614155b15611bc557506000949350505050565b506001016119c3565b5060019392505050565b611be0612cea565b601d55565b60186020526000908152604090208054611884906144ca565b8151602081840181018051601b82529282019482019490942091909352815180830184018051928152908401929093019190912091528054611884906144ca565b611c47612cea565b600c55565b606060058054610d2c906144ca565b82828080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250604051909350611ca7925060029150611417908590614147565b805190915073ffffffffffffffffffffffffffffffffffffffff163314611cfa576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006018600060178888604051611d12929190614137565b90815260408051602092819003830190205473ffffffffffffffffffffffffffffffffffffffff16835290820192909252016000208054611d52906144ca565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7e906144ca565b8015611dcb5780601f10611da057610100808354040283529160200191611dcb565b820191906000526020600020905b815481529060010190602001808311611dae57829003601f168201915b505050505090508585604051611de2929190614137565b604051809103902081805190602001201415611e6857604051806020016040528060008152506018600060178989604051611e1e929190614137565b90815260408051602092819003830190205473ffffffffffffffffffffffffffffffffffffffff1683528282019390935291016000208251611e66939192919091019061369c565b505b8360178787604051611e7b929190614137565b908152604051908190036020019020805473ffffffffffffffffffffffffffffffffffffffff929092167fffffffffffffffffffffffff0000000000000000000000000000000000000000909216919091179055505050505050565b33600081815260096020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60155460ff16611faa576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008183604051602001611fbf9291906141c6565b6040516020818303038152906040529050611fd98261199b565b1580611feb5750611fe98361199b565b155b8061201557506002816040516120019190614147565b908152602001604051809103902054600014155b1561204c576040517f430f13b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006120616002856040516114179190614147565b805190915073ffffffffffffffffffffffffffffffffffffffff1633146121a0576019846040516120929190614147565b9081526040519081900360200190205460ff166120db576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601a846040516120eb9190614147565b908152602001604051809103902054341015612133576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000015173ffffffffffffffffffffffffffffffffffffffff166108fc606460105460646121629190614452565b61216c9034614415565b6121769190614401565b6040518115909202916000818181858888f1935050505015801561219e573d6000803e3d6000fd5b505b6121a982612db9565b50505050565b6121b7612cea565b600d93909355600e91909155600f55601055565b601660205281600052604060002081815481106121e757600080fd5b90600052602060002001600091509150508054611884906144ca565b61220e848484611105565b73ffffffffffffffffffffffffffffffffffffffff83163b156121a957612237848484846130ba565b6121a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1660178383604051612296929190614137565b9081526040519081900360200190205473ffffffffffffffffffffffffffffffffffffffff16146122f3576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526018602052604090206117129083836135fa565b606061231882612d6b565b6123a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161153a565b6123ac613240565b6123b58361324f565b60008481526001602090815260409182902091516123d69493929101614163565b6040516020818303038152906040529050919050565b60006002826040516123fe9190614147565b9081526020016040518091039020546000148015610cdd5750610cdd8261199b565b612428612cea565b60008381526001602052604090206124419083836135fa565b508260028383604051612455929190614137565b90815260405190819003602001902055505050565b6060601b8460405161247c9190614147565b9081526020016040518091039020838360405161249a929190614137565b908152602001604051809103902080546124b3906144ca565b80601f01602080910402602001604051908101604052809291908181526020018280546124df906144ca565b801561252c5780601f106125015761010080835404028352916020019161252c565b820191906000526020600020905b81548152906001019060200180831161250f57829003601f168201915b505050505090509392505050565b601254839063ffffffff1642101561257e576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612587816123ec565b6125bd576040517f430f13b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015260009060340160405160208183030381529060405280519060200120905061264a84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601d549150849050613381565b612680576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152601c602052604090205460ff16156126ca576040517f3d2d8d4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152601c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905561270b85612db9565b5050505050565b61271a612cea565b60005b8151811015611732576060806016600085858151811061273f5761273f6145c9565b602002602001015181526020019081526020016000209080519060200190612768929190613710565b5050806127749061451e565b905061271d565b84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052506040519093506127c7925060029150611417908590614147565b805190915073ffffffffffffffffffffffffffffffffffffffff16331461281a576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b848110156128c357838181518110612837576128376145c9565b6020026020010151601b8989604051612851929190614137565b9081526020016040518091039020878784818110612871576128716145c9565b90506020028101906128839190614311565b604051612891929190614137565b908152602001604051809103902090805190602001906128b292919061369c565b506128bc8161451e565b905061281d565b5050505050505050565b601254839063ffffffff16421015612911576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61291a816123ec565b612950576040517f430f13b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201526000906034016040516020818303038152906040528051906020012090506129dd84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601e549150849050613381565b612a13576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61270b85612db9565b612a24612cea565b73ffffffffffffffffffffffffffffffffffffffff8116612ac7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161153a565b612ad081613043565b50565b606060166000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b82821015612bb4578382906000526020600020018054612b27906144ca565b80601f0160208091040260200160405190810160405280929190818152602001828054612b53906144ca565b8015612ba05780601f10612b7557610100808354040283529160200191612ba0565b820191906000526020600020905b815481529060010190602001808311612b8357829003601f168201915b505050505081526020019060010190612b08565b505050509050919050565b612bc7612cea565b601e55565b60606000612bd983611905565b905060008167ffffffffffffffff811115612bf657612bf66145f8565b604051908082528060200260200182016040528015612c2957816020015b6060815260200190600190039081612c145790505b509050600160005b838110156115ba576000612c4483611743565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cd7576000838152600160209081526040918290209151612c9c92916013910161422a565b604051602081830303815290604052848381518110612cbd57612cbd6145c9565b60200260200101819052508180612cd39061451e565b9250505b82612ce18161451e565b93505050612c31565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161153a565b600081600111158015612d7f575060005482105b8015610cdd5750506000908152600660205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6000805481526001602090815260409091208251612dd99284019061369c565b50600054600282604051612ded9190614147565b90815260200160405180910390208190555033601782604051612e109190614147565b908152604051908190036020019020805473ffffffffffffffffffffffffffffffffffffffff929092167fffffffffffffffffffffffff0000000000000000000000000000000000000000909216919091179055612ad0336001613397565b60008180600111612ef657600054811015612ef6576000818152600660205260409020547c01000000000000000000000000000000000000000000000000000000008116612ef4575b806113c457507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600081815260066020526040902054612eb8565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82601760016000858152602001908152602001600020604051612f4b919061421e565b908152604051908190036020019020805473ffffffffffffffffffffffffffffffffffffffff929092167fffffffffffffffffffffffff000000000000000000000000000000000000000090921691909117905550505050565b604080516080810182526000808252602082018190529181018290526060810191909152610cdd612fd583612e6f565b6040805160808101825273ffffffffffffffffffffffffffffffffffffffff8316815260a083901c67ffffffffffffffff1660208201527c0100000000000000000000000000000000000000000000000000000000831615159181019190915260e89190911c606082015290565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061311590339089908890889060040161423f565b602060405180830381600087803b15801561312f57600080fd5b505af192505050801561317d575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261317a91810190613b5f565b60015b6131f1573d8080156131ab576040519150601f19603f3d011682016040523d82523d6000602084013e6131b0565b606091505b5080516131e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b606060148054610d2c906144ca565b60608161328f57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156132b957806132a38161451e565b91506132b29050600a83614401565b9150613293565b60008167ffffffffffffffff8111156132d4576132d46145f8565b6040519080825280601f01601f1916602001820160405280156132fe576020820181803683370190505b5090505b841561323857613313600183614452565b9150613320600a86614557565b61332b9060306143e9565b60f81b818381518110613340576133406145c9565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061337a600a86614401565b9450613302565b60008261338e85846133b1565b14949350505050565b6117328282604051806020016040528060008152506133fe565b600081815b84518110156133f6576133e2828683815181106133d5576133d56145c9565b602002602001015161348a565b9150806133ee8161451e565b9150506133b6565b509392505050565b61340883836134b6565b73ffffffffffffffffffffffffffffffffffffffff83163b15611712576000548281035b61343f60008683806001019450866130ba565b613475576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061342c57816000541461270b57600080fd5b60008183106134a65760008281526020849052604090206113c4565b5060009182526020526040902090565b600054816134f0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134fd6000848385612f28565b73ffffffffffffffffffffffffffffffffffffffff831660008181526007602090815260408083208054680100000000000000018802019055848352600690915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146135b957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101613581565b50816135f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b828054613606906144ca565b90600052602060002090601f016020900481019282613628576000855561368c565b82601f1061365f578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082351617855561368c565b8280016001018555821561368c579182015b8281111561368c578235825591602001919060010190613671565b50613698929150613769565b5090565b8280546136a8906144ca565b90600052602060002090601f0160209004810192826136ca576000855561368c565b82601f106136e357805160ff191683800117855561368c565b8280016001018555821561368c579182015b8281111561368c5782518255916020019190600101906136f5565b82805482825590600052602060002090810192821561375d579160200282015b8281111561375d578251805161374d91849160209091019061369c565b5091602001919060010190613730565b5061369892915061377e565b5b80821115613698576000815560010161376a565b80821115613698576000613792828261379b565b5060010161377e565b5080546137a7906144ca565b6000825580601f106137b7575050565b601f016020900490600052602060002090810190612ad09190613769565b600067ffffffffffffffff8311156137ef576137ef6145f8565b61382060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f86011601614376565b905082815283838301111561383457600080fd5b828260208301376000602084830101529392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461386f57600080fd5b919050565b60008083601f84011261388657600080fd5b50813567ffffffffffffffff81111561389e57600080fd5b6020830191508360208260051b85010111156138b957600080fd5b9250929050565b8035801515811461386f57600080fd5b60008083601f8401126138e257600080fd5b50813567ffffffffffffffff8111156138fa57600080fd5b6020830191508360208285010111156138b957600080fd5b600082601f83011261392357600080fd5b6113c4838335602085016137d5565b60006020828403121561394457600080fd5b6113c48261384b565b6000806040838503121561396057600080fd5b6139698361384b565b91506139776020840161384b565b90509250929050565b60008060006060848603121561399557600080fd5b61399e8461384b565b92506139ac6020850161384b565b9150604084013590509250925092565b600080600080608085870312156139d257600080fd5b6139db8561384b565b93506139e96020860161384b565b925060408501359150606085013567ffffffffffffffff811115613a0c57600080fd5b8501601f81018713613a1d57600080fd5b613a2c878235602084016137d5565b91505092959194509250565b60008060408385031215613a4b57600080fd5b613a548361384b565b9150613977602084016138c0565b60008060408385031215613a7557600080fd5b613a7e8361384b565b946020939093013593505050565b60006020808385031215613a9f57600080fd5b823567ffffffffffffffff811115613ab657600080fd5b8301601f81018513613ac757600080fd5b8035613ada613ad5826143c5565b614376565b80828252848201915084840188868560051b8701011115613afa57600080fd5b600094505b83851015613b1d578035835260019490940193918501918501613aff565b50979650505050505050565b600060208284031215613b3b57600080fd5b5035919050565b600060208284031215613b5457600080fd5b81356113c481614627565b600060208284031215613b7157600080fd5b81516113c481614627565b60008060208385031215613b8f57600080fd5b823567ffffffffffffffff811115613ba657600080fd5b613bb2858286016138d0565b90969095509350505050565b600080600060408486031215613bd357600080fd5b833567ffffffffffffffff811115613bea57600080fd5b613bf6868287016138d0565b9094509250613c0990506020850161384b565b90509250925092565b600080600080600060608688031215613c2a57600080fd5b67ffffffffffffffff8087351115613c4157600080fd5b613c4e88883589016138d0565b909650945060208781013582811115613c6657600080fd5b613c728a828b01613874565b909650945050604088013582811115613c8a57600080fd5b8801601f81018a13613c9b57600080fd5b8035613ca9613ad5826143c5565b8082825284820191508484018d868560051b8701011115613cc957600080fd5b60005b84811015613d03578782351115613ce257600080fd5b613cf18f888435890101613912565b84529286019290860190600101613ccc565b50508096505050505050509295509295909350565b60008060008060608587031215613d2e57600080fd5b843567ffffffffffffffff811115613d4557600080fd5b613d51878288016138d0565b9095509350613d649050602086016138c0565b9396929550929360400135925050565b600080600060408486031215613d8957600080fd5b833567ffffffffffffffff811115613da057600080fd5b613dac868287016138d0565b909790965060209590950135949350505050565b600060208284031215613dd257600080fd5b813567ffffffffffffffff811115613de957600080fd5b61323884828501613912565b60008060408385031215613e0857600080fd5b823567ffffffffffffffff811115613e1f57600080fd5b613e2b85828601613912565b9250506139776020840161384b565b600080600060408486031215613e4f57600080fd5b833567ffffffffffffffff80821115613e6757600080fd5b613e7387838801613912565b94506020860135915080821115613e8957600080fd5b50613e9686828701613874565b9497909650939450505050565b600080600060408486031215613eb857600080fd5b833567ffffffffffffffff80821115613ed057600080fd5b613edc87838801613912565b94506020860135915080821115613ef257600080fd5b50613e96868287016138d0565b60008060408385031215613f1257600080fd5b823567ffffffffffffffff80821115613f2a57600080fd5b613f3686838701613912565b93506020850135915080821115613f4c57600080fd5b50613f5985828601613912565b9150509250929050565b600080600060408486031215613f7857600080fd5b83359250602084013567ffffffffffffffff811115613f9657600080fd5b613e96868287016138d0565b60008060408385031215613fb557600080fd5b50508035926020909101359150565b60008060008060808587031215613fda57600080fd5b5050823594602084013594506040840135936060013592509050565b60006020828403121561400857600080fd5b813563ffffffff811681146113c457600080fd5b60008151808452614034816020860160208601614469565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b8054600090600181811c908083168061408057607f831692505b60208084108214156140bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b8180156140cf57600181146140fe5761412b565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0086168952848901965061412b565b60008881526020902060005b868110156141235781548b82015290850190830161410a565b505084890196505b50505050505092915050565b8183823760009101908152919050565b60008251614159818460208701614469565b9190910192915050565b60008451614175818460208901614469565b845190830190614189818360208901614469565b7f2f0000000000000000000000000000000000000000000000000000000000000091019081526141bc6001820185614066565b9695505050505050565b600083516141d8818460208801614469565b7f2e000000000000000000000000000000000000000000000000000000000000009083019081528351614212816001840160208801614469565b01600101949350505050565b60006113c48284614066565b60006132386142398386614066565b84614066565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526141bc608083018461401c565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156142f1577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08886030184526142df85835161401c565b945092850192908501906001016142a5565b5092979650505050505050565b6020815260006113c4602083018461401c565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261434657600080fd5b83018035915067ffffffffffffffff82111561436157600080fd5b6020019150368190038213156138b957600080fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156143bd576143bd6145f8565b604052919050565b600067ffffffffffffffff8211156143df576143df6145f8565b5060051b60200190565b600082198211156143fc576143fc61456b565b500190565b6000826144105761441061459a565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561444d5761444d61456b565b500290565b6000828210156144645761446461456b565b500390565b60005b8381101561448457818101518382015260200161446c565b838111156121a95750506000910152565b6000816144a4576144a461456b565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c908216806144de57607f821691505b60208210811415614518577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145505761455061456b565b5060010190565b6000826145665761456661459a565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114612ad057600080fdfea2646970667358221220656b966129fea2aba49436789f225f9a152daa4b02082ff71668f6ee3470bf4764736f6c6343000807003368747470733a2f2f6d657461646174612e6574686e616d652e646f6d61696e732fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106103a25760003560e01c80638699e738116101e7578063b88d4fde1161010d578063e74a37f8116100a0578063f2fde38b1161006f578063f2fde38b14610b3f578063f3052d2614610b5f578063f54d368914610b7f578063f990f91a14610b9f57600080fd5b8063e74a37f814610a89578063e985e9c514610aa9578063ef8633ef14610aff578063f17b392714610b1f57600080fd5b8063d6bc2c7f116100dc578063d6bc2c7f146109f1578063d7d6c48514610a29578063e2bc750814610a49578063e42fa3f314610a6957600080fd5b8063b88d4fde1461097e578063c6fbf9a914610991578063c87b56dd146109b1578063c9e9c7eb146109d157600080fd5b806395d89b4111610185578063ad45a3ed11610154578063ad45a3ed146108dd578063afd800c5146108f0578063b6c6e69214610910578063b816aa8a1461095e57600080fd5b806395d89b41146108725780639b2ea4bd146108875780639ca34569146108a7578063a22cb465146108bd57600080fd5b80638da5cb5b116101c15780638da5cb5b146107d75780638e96de271461080257806390ad4bdf1461082257806391b7f5ed1461085257600080fd5b80638699e7381461078b5780638b8dd5fd146107ab5780638d859f3e146107c157600080fd5b80632eb4a7ab116102cc578063698c62c51161026a57806376d02b711161023957806376d02b71146106f65780637a921a1a146107105780637cb64759146107305780637d8f4ca31461075057600080fd5b8063698c62c5146106815780636e32e499146106a157806370a08231146106c1578063715018a6146106e157600080fd5b806342842e0e116102a657806342842e0e1461060e57806355f804b3146106215780635acf6139146106415780636352211e1461066157600080fd5b80632eb4a7ab146105b65780632f7758cd146105cc5780633ccfd60b146105f957600080fd5b8063095ea7b3116103445780631e59c529116103135780631e59c5291461055057806323b872dd1461056357806327b972f9146105765780632accb37c1461059657600080fd5b8063095ea7b3146104b45780630d6eec78146104c757806311d07f78146104ff57806318160ddd1461051557600080fd5b8063066034fc11610380578063066034fc1461041357806306fdde0314610437578063081812fc1461045957806308d841391461049e57600080fd5b806301595266146103a757806301ffc9a7146103c9578063049c5c49146103fe575b600080fd5b3480156103b357600080fd5b506103c76103c2366004613ff6565b610bbf565b005b3480156103d557600080fd5b506103e96103e4366004613b42565b610bfe565b60405190151581526020015b60405180910390f35b34801561040a57600080fd5b506103c7610ce3565b34801561041f57600080fd5b50610429600d5481565b6040519081526020016103f5565b34801561044357600080fd5b5061044c610d1d565b6040516103f591906142fe565b34801561046557600080fd5b50610479610474366004613b29565b610daf565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103f5565b3480156104aa57600080fd5b5061042960105481565b6103c76104c2366004613a62565b610e19565b3480156104d357600080fd5b506104296104e2366004613dc0565b805160208183018101805160028252928201919093012091525481565b34801561050b57600080fd5b50610429600f5481565b34801561052157600080fd5b50600354600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01610429565b6103c761055e366004613df5565b610f04565b6103c7610571366004613980565b611105565b34801561058257600080fd5b50610479610591366004613dc0565b611397565b3480156105a257600080fd5b506103c76105b1366004613d74565b6113cb565b3480156105c257600080fd5b50610429601d5481565b3480156105d857600080fd5b506105ec6105e7366004613b29565b6114a7565b6040516103f5919061427e565b34801561060557600080fd5b506103c76115c4565b6103c761061c366004613980565b6116f7565b34801561062d57600080fd5b506103c761063c366004613dc0565b611717565b34801561064d57600080fd5b506103c761065c366004613b29565b611736565b34801561066d57600080fd5b5061047961067c366004613b29565b611743565b34801561068d57600080fd5b506103c761069c366004613d18565b61174e565b3480156106ad57600080fd5b5061044c6106bc366004613b29565b61186b565b3480156106cd57600080fd5b506104296106dc366004613932565b611905565b3480156106ed57600080fd5b506103c7611987565b34801561070257600080fd5b506015546103e99060ff1681565b34801561071c57600080fd5b506103e961072b366004613dc0565b61199b565b34801561073c57600080fd5b506103c761074b366004613b29565b611bd8565b34801561075c57600080fd5b506103e961076b366004613dc0565b805160208183018101805160198252928201919093012091525460ff1681565b34801561079757600080fd5b5061044c6107a6366004613932565b611be5565b3480156107b757600080fd5b50610429601e5481565b3480156107cd57600080fd5b50610429600c5481565b3480156107e357600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff16610479565b34801561080e57600080fd5b5061044c61081d366004613eff565b611bfe565b34801561082e57600080fd5b506103e961083d366004613932565b601c6020526000908152604090205460ff1681565b34801561085e57600080fd5b506103c761086d366004613b29565b611c3f565b34801561087e57600080fd5b5061044c611c4c565b34801561089357600080fd5b506103c76108a2366004613bbe565b611c5b565b3480156108b357600080fd5b50610429600e5481565b3480156108c957600080fd5b506103c76108d8366004613a38565b611ed7565b6103c76108eb366004613eff565b611f6e565b3480156108fc57600080fd5b506103c761090b366004613fc4565b6121af565b34801561091c57600080fd5b5061047961092b366004613dc0565b805160208183018101805160178252928201919093012091525473ffffffffffffffffffffffffffffffffffffffff1681565b34801561096a57600080fd5b5061044c610979366004613fa2565b6121cb565b6103c761098c3660046139bc565b612203565b34801561099d57600080fd5b506103c76109ac366004613b7c565b61226d565b3480156109bd57600080fd5b5061044c6109cc366004613b29565b61230d565b3480156109dd57600080fd5b506103e96109ec366004613dc0565b6123ec565b3480156109fd57600080fd5b50610429610a0c366004613dc0565b8051602081830181018051601a8252928201919093012091525481565b348015610a3557600080fd5b506103c7610a44366004613f63565b612420565b348015610a5557600080fd5b5061044c610a64366004613ea3565b61246a565b348015610a7557600080fd5b506103c7610a84366004613e3a565b61253a565b348015610a9557600080fd5b506103c7610aa4366004613a8c565b612712565b348015610ab557600080fd5b506103e9610ac436600461394d565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610b0b57600080fd5b506103c7610b1a366004613c12565b61277b565b348015610b2b57600080fd5b506103c7610b3a366004613e3a565b6128cd565b348015610b4b57600080fd5b506103c7610b5a366004613932565b612a1c565b348015610b6b57600080fd5b506105ec610b7a366004613b29565b612ad3565b348015610b8b57600080fd5b506103c7610b9a366004613b29565b612bbf565b348015610bab57600080fd5b506105ec610bba366004613932565b612bcc565b610bc7612cea565b601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001663ffffffff92909216919091179055565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161480610c9157507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b80610cdd57507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b610ceb612cea565b601580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b606060048054610d2c906144ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610d58906144ca565b8015610da55780601f10610d7a57610100808354040283529160200191610da5565b820191906000526020600020905b815481529060010190602001808311610d8857829003601f168201915b5050505050905090565b6000610dba82612d6b565b610df0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526008602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610e2482611743565b90503373ffffffffffffffffffffffffffffffffffffffff821614610e8357610e4d8133610ac4565b610e83576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526008602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b601254829063ffffffff16421015610f48576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f51816123ec565b610f87576040517f430f13b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60155460ff16610fc3576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5473ffffffffffffffffffffffffffffffffffffffff831615801591906000906110765773ffffffffffffffffffffffffffffffffffffffff851660009081526018602052604081208054611019906144ca565b9050111561103f576064600e54600c5402816110375761103761459a565b049050611059565b6064600d54600c5402816110555761105561459a565b0490505b6064600f54606403600c5402816110725761107261459a565b0491505b813410156110b0576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff86169082156108fc029083906000818181858888f193505050501580156110f3573d6000803e3d6000fd5b506110fd86612db9565b505050505050565b600061111082612e6f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611177576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260086020526040902080543380821473ffffffffffffffffffffffffffffffffffffffff8816909114176111ea576111b48633610ac4565b6111ea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516611237576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112448686866001612f28565b801561124f57600082555b73ffffffffffffffffffffffffffffffffffffffff86811660009081526007602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600660205260409020557c0200000000000000000000000000000000000000000000000000000000831661133757600184016000818152600660205260409020546113355760005481146113355760008181526006602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110fd565b6000806002836040516113aa9190614147565b90815260200160405180910390205490506113c481611743565b9392505050565b82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525060405190935061142b925060029150611417908590614147565b908152602001604051809103902054612fa5565b805190915073ffffffffffffffffffffffffffffffffffffffff16331461147e576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008381526016602090815260408220805460018101825590835291206110fd910186866135fa565b600354600080546060927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff910301908367ffffffffffffffff8111156114ef576114ef6145f8565b60405190808252806020026020018201604052801561152257816020015b606081526020019060019003908161150d5790505b50905060006115318584614452565b90506000611543565b60405180910390fd5b818411156115ba57600084815260016020908152604091829020915161156d92916013910161422a565b60405160208183030381529060405283828151811061158e5761158e6145c9565b602002602001018190525080806115a49061451e565b91505083806115b290614495565b945050611543565b5090949350505050565b6115cc612cea565b6002600b541415611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161153a565b6002600b5547737cdb864677d9fd4057dd77be0868e7b82b18ce936108fc6064611664846032614415565b61166e9190614401565b6040518115909202916000818181858888f19350505050158015611696573d6000803e3d6000fd5b5073944245c6561cb4a9bca276eeec6f34d386bdbd566108fc60646116bc846032614415565b6116c69190614401565b6040518115909202916000818181858888f193505050501580156116ee573d6000803e3d6000fd5b50506001600b55565b61171283838360405180602001604052806000815250612203565b505050565b61171f612cea565b805161173290601490602084019061369c565b5050565b61173e612cea565b601155565b6000610cdd82612e6f565b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525060405190935061179a925060029150611417908590614147565b805190915073ffffffffffffffffffffffffffffffffffffffff1633146117ed576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82601a8787604051611800929190614137565b9081526020016040518091039020819055508360198787604051611825929190614137565b90815260405190819003602001902080549115157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00909216919091179055505050505050565b60016020526000908152604090208054611884906144ca565b80601f01602080910402602001604051908101604052809291908181526020018280546118b0906144ca565b80156118fd5780601f106118d2576101008083540402835291602001916118fd565b820191906000526020600020905b8154815290600101906020018083116118e057829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216611954576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205467ffffffffffffffff1690565b61198f612cea565b6119996000613043565b565b6011548151600091839111806119b2575060018151105b156119c05750600092915050565b60005b8151811015611bce5760008282815181106119e0576119e06145c9565b01602001517fff000000000000000000000000000000000000000000000000000000000000001690507f30000000000000000000000000000000000000000000000000000000000000008110801590611a7b57507f39000000000000000000000000000000000000000000000000000000000000007fff00000000000000000000000000000000000000000000000000000000000000821611155b158015611b1957507f61000000000000000000000000000000000000000000000000000000000000007fff00000000000000000000000000000000000000000000000000000000000000821610801590611b1757507f7a000000000000000000000000000000000000000000000000000000000000007fff00000000000000000000000000000000000000000000000000000000000000821611155b155b8015611b6757507f5f000000000000000000000000000000000000000000000000000000000000007fff00000000000000000000000000000000000000000000000000000000000000821614155b8015611bb557507f2d000000000000000000000000000000000000000000000000000000000000007fff00000000000000000000000000000000000000000000000000000000000000821614155b15611bc557506000949350505050565b506001016119c3565b5060019392505050565b611be0612cea565b601d55565b60186020526000908152604090208054611884906144ca565b8151602081840181018051601b82529282019482019490942091909352815180830184018051928152908401929093019190912091528054611884906144ca565b611c47612cea565b600c55565b606060058054610d2c906144ca565b82828080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250604051909350611ca7925060029150611417908590614147565b805190915073ffffffffffffffffffffffffffffffffffffffff163314611cfa576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006018600060178888604051611d12929190614137565b90815260408051602092819003830190205473ffffffffffffffffffffffffffffffffffffffff16835290820192909252016000208054611d52906144ca565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7e906144ca565b8015611dcb5780601f10611da057610100808354040283529160200191611dcb565b820191906000526020600020905b815481529060010190602001808311611dae57829003601f168201915b505050505090508585604051611de2929190614137565b604051809103902081805190602001201415611e6857604051806020016040528060008152506018600060178989604051611e1e929190614137565b90815260408051602092819003830190205473ffffffffffffffffffffffffffffffffffffffff1683528282019390935291016000208251611e66939192919091019061369c565b505b8360178787604051611e7b929190614137565b908152604051908190036020019020805473ffffffffffffffffffffffffffffffffffffffff929092167fffffffffffffffffffffffff0000000000000000000000000000000000000000909216919091179055505050505050565b33600081815260096020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60155460ff16611faa576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008183604051602001611fbf9291906141c6565b6040516020818303038152906040529050611fd98261199b565b1580611feb5750611fe98361199b565b155b8061201557506002816040516120019190614147565b908152602001604051809103902054600014155b1561204c576040517f430f13b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006120616002856040516114179190614147565b805190915073ffffffffffffffffffffffffffffffffffffffff1633146121a0576019846040516120929190614147565b9081526040519081900360200190205460ff166120db576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601a846040516120eb9190614147565b908152602001604051809103902054341015612133576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000015173ffffffffffffffffffffffffffffffffffffffff166108fc606460105460646121629190614452565b61216c9034614415565b6121769190614401565b6040518115909202916000818181858888f1935050505015801561219e573d6000803e3d6000fd5b505b6121a982612db9565b50505050565b6121b7612cea565b600d93909355600e91909155600f55601055565b601660205281600052604060002081815481106121e757600080fd5b90600052602060002001600091509150508054611884906144ca565b61220e848484611105565b73ffffffffffffffffffffffffffffffffffffffff83163b156121a957612237848484846130ba565b6121a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1660178383604051612296929190614137565b9081526040519081900360200190205473ffffffffffffffffffffffffffffffffffffffff16146122f3576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526018602052604090206117129083836135fa565b606061231882612d6b565b6123a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161153a565b6123ac613240565b6123b58361324f565b60008481526001602090815260409182902091516123d69493929101614163565b6040516020818303038152906040529050919050565b60006002826040516123fe9190614147565b9081526020016040518091039020546000148015610cdd5750610cdd8261199b565b612428612cea565b60008381526001602052604090206124419083836135fa565b508260028383604051612455929190614137565b90815260405190819003602001902055505050565b6060601b8460405161247c9190614147565b9081526020016040518091039020838360405161249a929190614137565b908152602001604051809103902080546124b3906144ca565b80601f01602080910402602001604051908101604052809291908181526020018280546124df906144ca565b801561252c5780601f106125015761010080835404028352916020019161252c565b820191906000526020600020905b81548152906001019060200180831161250f57829003601f168201915b505050505090509392505050565b601254839063ffffffff1642101561257e576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612587816123ec565b6125bd576040517f430f13b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015260009060340160405160208183030381529060405280519060200120905061264a84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601d549150849050613381565b612680576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152601c602052604090205460ff16156126ca576040517f3d2d8d4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152601c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905561270b85612db9565b5050505050565b61271a612cea565b60005b8151811015611732576060806016600085858151811061273f5761273f6145c9565b602002602001015181526020019081526020016000209080519060200190612768929190613710565b5050806127749061451e565b905061271d565b84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052506040519093506127c7925060029150611417908590614147565b805190915073ffffffffffffffffffffffffffffffffffffffff16331461281a576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b848110156128c357838181518110612837576128376145c9565b6020026020010151601b8989604051612851929190614137565b9081526020016040518091039020878784818110612871576128716145c9565b90506020028101906128839190614311565b604051612891929190614137565b908152602001604051809103902090805190602001906128b292919061369c565b506128bc8161451e565b905061281d565b5050505050505050565b601254839063ffffffff16421015612911576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61291a816123ec565b612950576040517f430f13b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201526000906034016040516020818303038152906040528051906020012090506129dd84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601e549150849050613381565b612a13576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61270b85612db9565b612a24612cea565b73ffffffffffffffffffffffffffffffffffffffff8116612ac7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161153a565b612ad081613043565b50565b606060166000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b82821015612bb4578382906000526020600020018054612b27906144ca565b80601f0160208091040260200160405190810160405280929190818152602001828054612b53906144ca565b8015612ba05780601f10612b7557610100808354040283529160200191612ba0565b820191906000526020600020905b815481529060010190602001808311612b8357829003601f168201915b505050505081526020019060010190612b08565b505050509050919050565b612bc7612cea565b601e55565b60606000612bd983611905565b905060008167ffffffffffffffff811115612bf657612bf66145f8565b604051908082528060200260200182016040528015612c2957816020015b6060815260200190600190039081612c145790505b509050600160005b838110156115ba576000612c4483611743565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cd7576000838152600160209081526040918290209151612c9c92916013910161422a565b604051602081830303815290604052848381518110612cbd57612cbd6145c9565b60200260200101819052508180612cd39061451e565b9250505b82612ce18161451e565b93505050612c31565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161153a565b600081600111158015612d7f575060005482105b8015610cdd5750506000908152600660205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6000805481526001602090815260409091208251612dd99284019061369c565b50600054600282604051612ded9190614147565b90815260200160405180910390208190555033601782604051612e109190614147565b908152604051908190036020019020805473ffffffffffffffffffffffffffffffffffffffff929092167fffffffffffffffffffffffff0000000000000000000000000000000000000000909216919091179055612ad0336001613397565b60008180600111612ef657600054811015612ef6576000818152600660205260409020547c01000000000000000000000000000000000000000000000000000000008116612ef4575b806113c457507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600081815260066020526040902054612eb8565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82601760016000858152602001908152602001600020604051612f4b919061421e565b908152604051908190036020019020805473ffffffffffffffffffffffffffffffffffffffff929092167fffffffffffffffffffffffff000000000000000000000000000000000000000090921691909117905550505050565b604080516080810182526000808252602082018190529181018290526060810191909152610cdd612fd583612e6f565b6040805160808101825273ffffffffffffffffffffffffffffffffffffffff8316815260a083901c67ffffffffffffffff1660208201527c0100000000000000000000000000000000000000000000000000000000831615159181019190915260e89190911c606082015290565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061311590339089908890889060040161423f565b602060405180830381600087803b15801561312f57600080fd5b505af192505050801561317d575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261317a91810190613b5f565b60015b6131f1573d8080156131ab576040519150601f19603f3d011682016040523d82523d6000602084013e6131b0565b606091505b5080516131e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b606060148054610d2c906144ca565b60608161328f57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156132b957806132a38161451e565b91506132b29050600a83614401565b9150613293565b60008167ffffffffffffffff8111156132d4576132d46145f8565b6040519080825280601f01601f1916602001820160405280156132fe576020820181803683370190505b5090505b841561323857613313600183614452565b9150613320600a86614557565b61332b9060306143e9565b60f81b818381518110613340576133406145c9565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061337a600a86614401565b9450613302565b60008261338e85846133b1565b14949350505050565b6117328282604051806020016040528060008152506133fe565b600081815b84518110156133f6576133e2828683815181106133d5576133d56145c9565b602002602001015161348a565b9150806133ee8161451e565b9150506133b6565b509392505050565b61340883836134b6565b73ffffffffffffffffffffffffffffffffffffffff83163b15611712576000548281035b61343f60008683806001019450866130ba565b613475576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061342c57816000541461270b57600080fd5b60008183106134a65760008281526020849052604090206113c4565b5060009182526020526040902090565b600054816134f0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134fd6000848385612f28565b73ffffffffffffffffffffffffffffffffffffffff831660008181526007602090815260408083208054680100000000000000018802019055848352600690915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146135b957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101613581565b50816135f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b828054613606906144ca565b90600052602060002090601f016020900481019282613628576000855561368c565b82601f1061365f578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082351617855561368c565b8280016001018555821561368c579182015b8281111561368c578235825591602001919060010190613671565b50613698929150613769565b5090565b8280546136a8906144ca565b90600052602060002090601f0160209004810192826136ca576000855561368c565b82601f106136e357805160ff191683800117855561368c565b8280016001018555821561368c579182015b8281111561368c5782518255916020019190600101906136f5565b82805482825590600052602060002090810192821561375d579160200282015b8281111561375d578251805161374d91849160209091019061369c565b5091602001919060010190613730565b5061369892915061377e565b5b80821115613698576000815560010161376a565b80821115613698576000613792828261379b565b5060010161377e565b5080546137a7906144ca565b6000825580601f106137b7575050565b601f016020900490600052602060002090810190612ad09190613769565b600067ffffffffffffffff8311156137ef576137ef6145f8565b61382060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f86011601614376565b905082815283838301111561383457600080fd5b828260208301376000602084830101529392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461386f57600080fd5b919050565b60008083601f84011261388657600080fd5b50813567ffffffffffffffff81111561389e57600080fd5b6020830191508360208260051b85010111156138b957600080fd5b9250929050565b8035801515811461386f57600080fd5b60008083601f8401126138e257600080fd5b50813567ffffffffffffffff8111156138fa57600080fd5b6020830191508360208285010111156138b957600080fd5b600082601f83011261392357600080fd5b6113c4838335602085016137d5565b60006020828403121561394457600080fd5b6113c48261384b565b6000806040838503121561396057600080fd5b6139698361384b565b91506139776020840161384b565b90509250929050565b60008060006060848603121561399557600080fd5b61399e8461384b565b92506139ac6020850161384b565b9150604084013590509250925092565b600080600080608085870312156139d257600080fd5b6139db8561384b565b93506139e96020860161384b565b925060408501359150606085013567ffffffffffffffff811115613a0c57600080fd5b8501601f81018713613a1d57600080fd5b613a2c878235602084016137d5565b91505092959194509250565b60008060408385031215613a4b57600080fd5b613a548361384b565b9150613977602084016138c0565b60008060408385031215613a7557600080fd5b613a7e8361384b565b946020939093013593505050565b60006020808385031215613a9f57600080fd5b823567ffffffffffffffff811115613ab657600080fd5b8301601f81018513613ac757600080fd5b8035613ada613ad5826143c5565b614376565b80828252848201915084840188868560051b8701011115613afa57600080fd5b600094505b83851015613b1d578035835260019490940193918501918501613aff565b50979650505050505050565b600060208284031215613b3b57600080fd5b5035919050565b600060208284031215613b5457600080fd5b81356113c481614627565b600060208284031215613b7157600080fd5b81516113c481614627565b60008060208385031215613b8f57600080fd5b823567ffffffffffffffff811115613ba657600080fd5b613bb2858286016138d0565b90969095509350505050565b600080600060408486031215613bd357600080fd5b833567ffffffffffffffff811115613bea57600080fd5b613bf6868287016138d0565b9094509250613c0990506020850161384b565b90509250925092565b600080600080600060608688031215613c2a57600080fd5b67ffffffffffffffff8087351115613c4157600080fd5b613c4e88883589016138d0565b909650945060208781013582811115613c6657600080fd5b613c728a828b01613874565b909650945050604088013582811115613c8a57600080fd5b8801601f81018a13613c9b57600080fd5b8035613ca9613ad5826143c5565b8082825284820191508484018d868560051b8701011115613cc957600080fd5b60005b84811015613d03578782351115613ce257600080fd5b613cf18f888435890101613912565b84529286019290860190600101613ccc565b50508096505050505050509295509295909350565b60008060008060608587031215613d2e57600080fd5b843567ffffffffffffffff811115613d4557600080fd5b613d51878288016138d0565b9095509350613d649050602086016138c0565b9396929550929360400135925050565b600080600060408486031215613d8957600080fd5b833567ffffffffffffffff811115613da057600080fd5b613dac868287016138d0565b909790965060209590950135949350505050565b600060208284031215613dd257600080fd5b813567ffffffffffffffff811115613de957600080fd5b61323884828501613912565b60008060408385031215613e0857600080fd5b823567ffffffffffffffff811115613e1f57600080fd5b613e2b85828601613912565b9250506139776020840161384b565b600080600060408486031215613e4f57600080fd5b833567ffffffffffffffff80821115613e6757600080fd5b613e7387838801613912565b94506020860135915080821115613e8957600080fd5b50613e9686828701613874565b9497909650939450505050565b600080600060408486031215613eb857600080fd5b833567ffffffffffffffff80821115613ed057600080fd5b613edc87838801613912565b94506020860135915080821115613ef257600080fd5b50613e96868287016138d0565b60008060408385031215613f1257600080fd5b823567ffffffffffffffff80821115613f2a57600080fd5b613f3686838701613912565b93506020850135915080821115613f4c57600080fd5b50613f5985828601613912565b9150509250929050565b600080600060408486031215613f7857600080fd5b83359250602084013567ffffffffffffffff811115613f9657600080fd5b613e96868287016138d0565b60008060408385031215613fb557600080fd5b50508035926020909101359150565b60008060008060808587031215613fda57600080fd5b5050823594602084013594506040840135936060013592509050565b60006020828403121561400857600080fd5b813563ffffffff811681146113c457600080fd5b60008151808452614034816020860160208601614469565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b8054600090600181811c908083168061408057607f831692505b60208084108214156140bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b8180156140cf57600181146140fe5761412b565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0086168952848901965061412b565b60008881526020902060005b868110156141235781548b82015290850190830161410a565b505084890196505b50505050505092915050565b8183823760009101908152919050565b60008251614159818460208701614469565b9190910192915050565b60008451614175818460208901614469565b845190830190614189818360208901614469565b7f2f0000000000000000000000000000000000000000000000000000000000000091019081526141bc6001820185614066565b9695505050505050565b600083516141d8818460208801614469565b7f2e000000000000000000000000000000000000000000000000000000000000009083019081528351614212816001840160208801614469565b01600101949350505050565b60006113c48284614066565b60006132386142398386614066565b84614066565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526141bc608083018461401c565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156142f1577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08886030184526142df85835161401c565b945092850192908501906001016142a5565b5092979650505050505050565b6020815260006113c4602083018461401c565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261434657600080fd5b83018035915067ffffffffffffffff82111561436157600080fd5b6020019150368190038213156138b957600080fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156143bd576143bd6145f8565b604052919050565b600067ffffffffffffffff8211156143df576143df6145f8565b5060051b60200190565b600082198211156143fc576143fc61456b565b500190565b6000826144105761441061459a565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561444d5761444d61456b565b500290565b6000828210156144645761446461456b565b500390565b60005b8381101561448457818101518382015260200161446c565b838111156121a95750506000910152565b6000816144a4576144a461456b565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c908216806144de57607f821691505b60208210811415614518577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145505761455061456b565b5060010190565b6000826145665761456661459a565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114612ad057600080fdfea2646970667358221220656b966129fea2aba49436789f225f9a152daa4b02082ff71668f6ee3470bf4764736f6c63430008070033

Deployed Bytecode Sourcemap

77832:11002:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85736:99;;;;;;;;;;-1:-1:-1;85736:99:0;;;;;:::i;:::-;;:::i;:::-;;18595:639;;;;;;;;;;-1:-1:-1;18595:639:0;;;;;:::i;:::-;;:::i;:::-;;;19241:14:1;;19234:22;19216:41;;19204:2;19189:18;18595:639:0;;;;;;;;84686:98;;;;;;;;;;;;;:::i;78210:23::-;;;;;;;;;;;;;;;;;;;19414:25:1;;;19402:2;19387:18;78210:23:0;19268:177:1;19497:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25977:218::-;;;;;;;;;;-1:-1:-1;25977:218:0;;;;;:::i;:::-;;:::i;:::-;;;17639:42:1;17627:55;;;17609:74;;17597:2;17582:18;25977:218:0;17463:226:1;78315:33:0;;;;;;;;;;;;;;;;25410:408;;;;;;:::i;:::-;;:::i;12885:48::-;;;;;;;;;;-1:-1:-1;12885:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;78276:32;;;;;;;;;;;;;;;;15248:323;;;;;;;;;;-1:-1:-1;15522:12:0;;15309:7;15506:13;:28;:46;;15248:323;;79232:777;;;;;;:::i;:::-;;:::i;29616:2825::-;;;;;;:::i;:::-;;:::i;82735:155::-;;;;;;;;;;-1:-1:-1;82735:155:0;;;;;:::i;:::-;;:::i;86279:151::-;;;;;;;;;;-1:-1:-1;86279:151:0;;;;;:::i;:::-;;:::i;78989:25::-;;;;;;;;;;;;;;;;83032:567;;;;;;;;;;-1:-1:-1;83032:567:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;88543:286::-;;;;;;;;;;;;;:::i;32537:193::-;;;;;;:::i;:::-;;:::i;84358:113::-;;;;;;;;;;-1:-1:-1;84358:113:0;;;;;:::i;:::-;;:::i;84479:107::-;;;;;;;;;;-1:-1:-1;84479:107:0;;;;;:::i;:::-;;:::i;20879:152::-;;;;;;;;;;-1:-1:-1;20879:152:0;;;;;:::i;:::-;;:::i;86798:249::-;;;;;;;;;;-1:-1:-1;86798:249:0;;;;;:::i;:::-;;:::i;12830:48::-;;;;;;;;;;-1:-1:-1;12830:48:0;;;;;:::i;:::-;;:::i;16432:233::-;;;;;;;;;;-1:-1:-1;16432:233:0;;;;;:::i;:::-;;:::i;76925:103::-;;;;;;;;;;;;;:::i;78547:33::-;;;;;;;;;;-1:-1:-1;78547:33:0;;;;;;;;81618:535;;;;;;;;;;-1:-1:-1;81618:535:0;;;;;:::i;:::-;;:::i;85488:112::-;;;;;;;;;;-1:-1:-1;85488:112:0;;;;;:::i;:::-;;:::i;78751:52::-;;;;;;;;;;-1:-1:-1;78751:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78696:48;;;;;;;;;;-1:-1:-1;78696:48:0;;;;;:::i;:::-;;:::i;79021:27::-;;;;;;;;;;;;;;;;78163:40;;;;;;;;;;;;;;;;76277:87;;;;;;;;;;-1:-1:-1;76350:6:0;;;;76277:87;;78863:60;;;;;;;;;;-1:-1:-1;78863:60:0;;;;;:::i;:::-;;:::i;78930:46::-;;;;;;;;;;-1:-1:-1;78930:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;84594:84;;;;;;;;;;-1:-1:-1;84594:84:0;;;;;:::i;:::-;;:::i;19673:104::-;;;;;;;;;;;;;:::i;86438:352::-;;;;;;;;;;-1:-1:-1;86438:352:0;;;;;:::i;:::-;;:::i;78240:29::-;;;;;;;;;;;;;;;;26535:234;;;;;;;;;;-1:-1:-1;26535:234:0;;;;;:::i;:::-;;:::i;80017:801::-;;;;;;:::i;:::-;;:::i;85043:247::-;;;;;;;;;;-1:-1:-1;85043:247:0;;;;;:::i;:::-;;:::i;78641:48::-;;;;;;;;;;-1:-1:-1;78641:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78589:43;;;;;;;;;;-1:-1:-1;78589:43:0;;;;;:::i;:::-;;:::i;33328:407::-;;;;;;:::i;:::-;;:::i;85843:178::-;;;;;;;;;;-1:-1:-1;85843:178:0;;;;;:::i;:::-;;:::i;88130:383::-;;;;;;;;;;-1:-1:-1;88130:383:0;;;;;:::i;:::-;;:::i;82161:146::-;;;;;;;;;;-1:-1:-1;82161:146:0;;;;;:::i;:::-;;:::i;78810:46::-;;;;;;;;;;-1:-1:-1;78810:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;85298:182;;;;;;;;;;-1:-1:-1;85298:182:0;;;;;:::i;:::-;;:::i;82581:146::-;;;;;;;;;;-1:-1:-1;82581:146:0;;;;;:::i;:::-;;:::i;80826:448::-;;;;;;;;;;-1:-1:-1;80826:448:0;;;;;:::i;:::-;;:::i;84792:243::-;;;;;;;;;;-1:-1:-1;84792:243:0;;;;;:::i;:::-;;:::i;26926:164::-;;;;;;;;;;-1:-1:-1;26926:164:0;;;;;:::i;:::-;27047:25;;;;27023:4;27047:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26926:164;86029:242;;;;;;;;;;-1:-1:-1;86029:242:0;;;;;:::i;:::-;;:::i;81282:328::-;;;;;;;;;;-1:-1:-1;81282:328:0;;;;;:::i;:::-;;:::i;77183:201::-;;;;;;;;;;-1:-1:-1;77183:201:0;;;;;:::i;:::-;;:::i;82898:126::-;;;;;;;;;;-1:-1:-1;82898:126:0;;;;;:::i;:::-;;:::i;85608:116::-;;;;;;;;;;-1:-1:-1;85608:116:0;;;;;:::i;:::-;;:::i;83607:718::-;;;;;;;;;;-1:-1:-1;83607:718:0;;;;;:::i;:::-;;:::i;85736:99::-;76163:13;:11;:13::i;:::-;85805:15:::1;:22:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;85736:99::o;18595:639::-;18680:4;19004:25;;;;;;:102;;-1:-1:-1;19081:25:0;;;;;19004:102;:179;;;-1:-1:-1;19158:25:0;;;;;19004:179;18984:199;18595:639;-1:-1:-1;;18595:639:0:o;84686:98::-;76163:13;:11;:13::i;:::-;84762:14:::1;::::0;;84744:32;;::::1;84762:14;::::0;;::::1;84761:15;84744:32;::::0;;84686:98::o;19497:100::-;19551:13;19584:5;19577:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19497:100;:::o;25977:218::-;26053:7;26078:16;26086:7;26078;:16::i;:::-;26073:64;;26103:34;;;;;;;;;;;;;;26073:64;-1:-1:-1;26157:24:0;;;;:15;:24;;;;;:30;;;;25977:218::o;25410:408::-;25499:13;25515:16;25523:7;25515;:16::i;:::-;25499:32;-1:-1:-1;49743:10:0;25548:28;;;;25544:175;;25596:44;25613:5;49743:10;26926:164;:::i;25596:44::-;25591:128;;25668:35;;;;;;;;;;;;;;25591:128;25731:24;;;;:15;:24;;;;;;:35;;;;;;;;;;;;;;25782:28;;25731:24;;25782:28;;;;;;;25488:330;25410:408;;:::o;79232:777::-;87378:15;;79345:4;;87378:15;;87360;:33;87356:60;;;87402:14;;;;;;;;;;;;;;87356:60;87432:20;87447:4;87432:14;:20::i;:::-;87427:47;;87461:13;;;;;;;;;;;;;;87427:47;79375:14:::1;::::0;::::1;;79370:42;;79398:14;;;;;;;;;;;;;;79370:42;79492:5;::::0;79438:22:::1;::::0;::::1;::::0;;::::1;::::0;79492:5;79425:10:::1;::::0;79560:283:::1;;79600:24;::::0;::::1;79635:1;79600:24:::0;;;:14:::1;:24;::::0;;;;79594:38;;::::1;::::0;::::1;:::i;:::-;;;:42;79590:171;;;79687:3;79676:9;;79668:5;;:17;:22;;;;;:::i;:::-;;79659:31;;79590:171;;;79758:3;79752;;79744:5;;:11;:17;;;;;:::i;:::-;;79735:26;;79590:171;79824:3;79808:12;;79802:3;:18;79793:5;;:28;:34;;;;;:::i;:::-;;79780:47;;79560:283;79875:10;79863:9;:22;79859:54;;;79894:19;;;;;;;;;;;;;;79859:54;79928:34;::::0;:26:::1;::::0;::::1;::::0;:34;::::1;;;::::0;79955:6;;79928:34:::1;::::0;;;79955:6;79928:26;:34;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;79986:15;79996:4;79986:9;:15::i;:::-;79356:653;;;79232:777:::0;;;:::o;29616:2825::-;29758:27;29788;29807:7;29788:18;:27::i;:::-;29758:57;;29873:4;29832:45;;29848:19;29832:45;;;29828:86;;29886:28;;;;;;;;;;;;;;29828:86;29928:27;28724:24;;;:15;:24;;;;;28952:26;;49743:10;28349:30;;;28053:16;28042:28;;28327:20;;;28324:56;30114:180;;30207:43;30224:4;49743:10;26926:164;:::i;30207:43::-;30202:92;;30259:35;;;;;;;;;;;;;;30202:92;30311:16;;;30307:52;;30336:23;;;;;;;;;;;;;;30307:52;30372:43;30394:4;30400:2;30404:7;30413:1;30372:21;:43::i;:::-;30508:15;30505:160;;;30648:1;30627:19;30620:30;30505:160;31045:24;;;;;;;;:18;:24;;;;;;31043:26;;;;;;31114:22;;;;;;;;;31112:24;;-1:-1:-1;31112:24:0;;;24268:11;24243:23;24239:41;24226:63;11536:8;24226:63;31407:26;;;;:17;:26;;;;;:175;11536:8;31702:47;;31698:627;;31807:1;31797:11;;31775:19;31930:30;;;:17;:30;;;;;;31926:384;;32068:13;;32053:11;:28;32049:242;;32215:30;;;;:17;:30;;;;;:52;;;32049:242;31756:569;31698:627;32372:7;32368:2;32353:27;;32362:4;32353:27;;;;;;;;;;;;32391:42;80017:801;82735:155;82797:7;82817:10;82830:17;82848:4;82830:23;;;;;;:::i;:::-;;;;;;;;;;;;;;82817:36;;82871:11;82879:2;82871:7;:11::i;:::-;82864:18;82735:155;-1:-1:-1;;;82735:155:0:o;86279:151::-;86372:4;;87080:213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;87187:23:0;;87080:213;;-1:-1:-1;87174:37:0;;-1:-1:-1;87187:17:0;;-1:-1:-1;87187:23:0;;87205:4;;87187:23;:::i;:::-;;;;;;;;;;;;;;87174:12;:37::i;:::-;87226:14;;87140:71;;-1:-1:-1;87226:28:0;;87244:10;87226:28;87222:51;;87263:10;;;;;;;;;;;;;;87222:51;86389:22:::1;::::0;;;:10:::1;:22;::::0;;;;;;:33;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;::::1;86417:4:::0;;86389:33:::1;:::i;83032:567::-:0;15522:12;;83151:13;15506;;83118:15;;15506:46;:28;;:46;;83231:5;83218:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;83191:46:0;-1:-1:-1;83248:17:0;83268:13;83276:5;83268;:13;:::i;:::-;83248:33;-1:-1:-1;83292:23:0;83330:34;;;;;;;;;;;83390:9;83382:5;:17;83375:189;;;83468:24;;;;:17;:24;;;;;;;;;83451:50;;;;83468:24;83494:6;;83451:50;;:::i;:::-;;;;;;;;;;;;;83416:8;83425:15;83416:25;;;;;;;;:::i;:::-;;;;;;:86;;;;83517:17;;;;;:::i;:::-;;;;83545:7;;;;;:::i;:::-;;;;83375:189;;;-1:-1:-1;83583:8:0;;83032:567;-1:-1:-1;;;;83032:567:0:o;88543:286::-;76163:13;:11;:13::i;:::-;53427:1:::1;54025:7;;:19;;54017:63;;;::::0;::::1;::::0;;21395:2:1;54017:63:0::1;::::0;::::1;21377:21:1::0;21434:2;21414:18;;;21407:30;21473:33;21453:18;;;21446:61;21524:18;;54017:63:0::1;21193:355:1::0;54017:63:0::1;53427:1;54158:7;:18:::0;88622:21:::2;88662:42;88654:78;88728:3;88715:12;88622:21:::0;88725:2:::2;88715:12;:::i;:::-;:16;;;;:::i;:::-;88654:78;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;88751:42:0::2;88743:78;88817:3;88804:12;:7:::0;88814:2:::2;88804:12;:::i;:::-;:16;;;;:::i;:::-;88743:78;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;53383:1:0::1;54337:7;:22:::0;88543:286::o;32537:193::-;32683:39;32700:4;32706:2;32710:7;32683:39;;;;;;;;;;;;:16;:39::i;:::-;32537:193;;;:::o;84358:113::-;76163:13;:11;:13::i;:::-;84438:25;;::::1;::::0;:8:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;84358:113:::0;:::o;84479:107::-;76163:13;:11;:13::i;:::-;84555:8:::1;:23:::0;84479:107::o;20879:152::-;20951:7;20994:27;21013:7;20994:18;:27::i;86798:249::-;86933:4;;87080:213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;87187:23:0;;87080:213;;-1:-1:-1;87174:37:0;;-1:-1:-1;87187:17:0;;-1:-1:-1;87187:23:0;;87205:4;;87187:23;:::i;87174:37::-;87226:14;;87140:71;;-1:-1:-1;87226:28:0;;87244:10;87226:28;87222:51;;87263:10;;;;;;;;;;;;;;87222:51;86979:11:::1;86955:15;86971:4;;86955:21;;;;;;;:::i;:::-;;;;;;;;;;;;;:35;;;;87031:8;87001:21;87023:4;;87001:27;;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:38;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;;;;86798:249:0:o;12830:48::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16432:233::-;16504:7;16528:19;;;16524:60;;16556:28;;;;;;;;;;;;;;16524:60;-1:-1:-1;16602:25:0;;;;;;:18;:25;;;;;;10480:13;16602:55;;16432:233::o;76925:103::-;76163:13;:11;:13::i;:::-;76990:30:::1;77017:1;76990:18;:30::i;:::-;76925:103::o:0;81618:535::-;81777:8;;81766;;81678:4;;81718:5;;81766:19;;:35;;;81800:1;81789;:8;:12;81766:35;81762:71;;;-1:-1:-1;81828:5:0;;81618:535;-1:-1:-1;;81618:535:0:o;81762:71::-;81854:6;81850:263;81866:1;:8;81862:1;:12;81850:263;;;81900:11;81914:1;81916;81914:4;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;81944:12:0;;;;;;:28;;-1:-1:-1;81960:12:0;;;;;;81944:28;81942:31;:66;;;;-1:-1:-1;81979:12:0;;;;;;;;:28;;-1:-1:-1;81995:12:0;;;;;;81979:28;81977:31;81942:66;:84;;;;-1:-1:-1;82013:12:0;;;;;;81942:84;:102;;;;-1:-1:-1;82031:12:0;;;;;;81942:102;81939:158;;;-1:-1:-1;82092:5:0;;81618:535;-1:-1:-1;;;;81618:535:0:o;81939:158::-;-1:-1:-1;81876:3:0;;81850:263;;;-1:-1:-1;82141:4:0;;81618:535;-1:-1:-1;;;81618:535:0:o;85488:112::-;76163:13;:11;:13::i;:::-;85565:10:::1;:27:::0;85488:112::o;78696:48::-;;;;;;;;;;;;;;;;:::i;78863:60::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;84594:84::-;76163:13;:11;:13::i;:::-;84657:5:::1;:13:::0;84594:84::o;19673:104::-;19729:13;19762:7;19755:14;;;;;:::i;86438:352::-;86529:4;;87080:213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;87187:23:0;;87080:213;;-1:-1:-1;87174:37:0;;-1:-1:-1;87187:17:0;;-1:-1:-1;87187:23:0;;87205:4;;87187:23;:::i;87174:37::-;87226:14;;87140:71;;-1:-1:-1;87226:28:0;;87244:10;87226:28;87222:51;;87263:10;;;;;;;;;;;;;;87222:51;86546:19:::1;86574:14;:36;86589:14;86604:4;;86589:20;;;;;;;:::i;:::-;::::0;;;::::1;::::0;;::::1;::::0;;;;;;;;;::::1;;86574:36:::0;;;;::::1;::::0;;;;;-1:-1:-1;86574:36:0;86546:65;;::::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86663:4;;86647:22;;;;;;;:::i;:::-;;;;;;;;86636:6;86626:17;;;;;;:43;86622:117;;;86686:41;;;;;;;;;;;::::0;:14:::1;:36;86701:14;86716:4;;86701:20;;;;;;;:::i;:::-;::::0;;;::::1;::::0;;::::1;::::0;;;;;;;;;::::1;;86686:36:::0;;;;::::1;::::0;;;;;;-1:-1:-1;86686:36:0;:41;;::::1;::::0;:36;;:41;;;::::1;::::0;::::1;:::i;:::-;;86622:117;86772:10;86749:14;86764:4;;86749:20;;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:33;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;;;;86438:352:0:o;26535:234::-;49743:10;26630:39;;;;:18;:39;;;;;;;;;:49;;;;;;;;;;;;:60;;;;;;;;;;;;;26706:55;;19216:41:1;;;26630:49:0;;49743:10;26706:55;;19189:18:1;26706:55:0;;;;;;;26535:234;;:::o;80017:801::-;80144:14;;;;80139:42;;80167:14;;;;;;;;;;;;;;80139:42;80194:23;80244:7;80258:4;80227:36;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80194:70;;80280:18;80290:7;80280:9;:18::i;:::-;80279:19;:39;;;;80303:15;80313:4;80303:9;:15::i;:::-;80302:16;80279:39;:76;;;;80322:17;80340:9;80322:28;;;;;;:::i;:::-;;;;;;;;;;;;;;80354:1;80322:33;;80279:76;80275:116;;;80378:13;;;;;;;;;;;;;;80275:116;80404:31;80438:37;80451:17;80469:4;80451:23;;;;;;:::i;80438:37::-;80490:14;;80404:71;;-1:-1:-1;80490:28:0;;80508:10;80490:28;80486:284;;80540:21;80562:4;80540:27;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;80535:55;;80576:14;;;;;;;;;;;;;;80535:55;80621:15;80637:4;80621:21;;;;;;:::i;:::-;;;;;;;;;;;;;;80609:9;:33;80605:65;;;80651:19;;;;;;;;;;;;;;80605:65;80693:9;:14;;;80685:32;;:73;80754:3;80737:13;;80731:3;:19;;;;:::i;:::-;80718:33;;:9;:33;:::i;:::-;:39;;;;:::i;:::-;80685:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80486:284;80790:20;80800:9;80790;:20::i;:::-;80125:693;;80017:801;;:::o;85043:247::-;76163:13;:11;:13::i;:::-;85162:3:::1;:9:::0;;;;85182::::1;:21:::0;;;;85214:12:::1;:27:::0;85252:13:::1;:30:::0;85043:247::o;78589:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;33328:407::-;33503:31;33516:4;33522:2;33526:7;33503:12;:31::i;:::-;33549:14;;;;:19;33545:183;;33588:56;33619:4;33625:2;33629:7;33638:5;33588:30;:56::i;:::-;33583:145;;33672:40;;;;;;;;;;;;;;85843:178;85940:10;85916:34;;:14;85931:4;;85916:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:34;85912:57;;85959:10;;;;;;;;;;;;;;85912:57;85995:10;85980:26;;;;:14;:26;;;;;:33;;86009:4;;85980:33;:::i;88130:383::-;88249:13;88302:17;88310:8;88302:7;:17::i;:::-;88280:114;;;;;;;20644:2:1;88280:114:0;;;20626:21:1;20683:2;20663:18;;;20656:30;20722:34;20702:18;;;20695:62;20793:17;20773:18;;;20766:45;20828:19;;88280:114:0;20442:411:1;88280:114:0;88438:10;:8;:10::i;:::-;88450:19;:8;:17;:19::i;:::-;88476:27;;;;:17;:27;;;;;;;;;88421:83;;;;;;88476:27;88421:83;;:::i;:::-;;;;;;;;;;;;;88407:98;;88130:383;;;:::o;82161:146::-;82226:4;82250:17;82268:5;82250:24;;;;;;:::i;:::-;;;;;;;;;;;;;;82278:1;82250:29;:49;;;;;82283:16;82293:5;82283:9;:16::i;85298:182::-;76163:13;:11;:13::i;:::-;85389:26:::1;::::0;;;:17:::1;:26;::::0;;;;:36:::1;::::0;85418:7;;85389:36:::1;:::i;:::-;;85465:7;85436:17;85454:7;;85436:26;;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:36;-1:-1:-1;;;85298:182:0:o;82581:146::-;82665:13;82698:8;82707:4;82698:14;;;;;;:::i;:::-;;;;;;;;;;;;;82713:5;;82698:21;;;;;;;:::i;:::-;;;;;;;;;;;;;82691:28;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82581:146;;;;;:::o;80826:448::-;87378:15;;80945:4;;87378:15;;87360;:33;87356:60;;;87402:14;;;;;;;;;;;;;;87356:60;87432:20;87447:4;87432:14;:20::i;:::-;87427:47;;87461:13;;;;;;;;;;;;;;87427:47;80992:28:::1;::::0;14700:66:1;81009:10:0::1;14687:2:1::0;14683:15;14679:88;80992:28:0::1;::::0;::::1;14667:101:1::0;80967:12:0::1;::::0;14784::1;;80992:28:0::1;;;;;;;;;;;;80982:39;;;;;;80967:54;;81037:49;81056:11;;81037:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;81069:10:0::1;::::0;;-1:-1:-1;81081:4:0;;-1:-1:-1;81037:18:0::1;:49::i;:::-;81032:77;;81095:14;;;;;;;;;;;;;;81032:77;81141:10;81126:26;::::0;;;:14:::1;:26;::::0;;;;;::::1;;81122:64;;;81161:25;;;;;;;;;;;;;;81122:64;81212:10;81197:26;::::0;;;:14:::1;:26;::::0;;;;:33;;;::::1;81226:4;81197:33;::::0;;81251:15:::1;81261:4:::0;81251:9:::1;:15::i;:::-;80956:318;80826:448:::0;;;;:::o;84792:243::-;76163:13;:11;:13::i;:::-;84882:6:::1;84877:151;84894:13;:20;84890:1;:24;84877:151;;;84936:25;85007:9;84976:10;:28;84987:13;85001:1;84987:16;;;;;;;;:::i;:::-;;;;;;;84976:28;;;;;;;;;;;:40;;;;;;;;;;;;:::i;:::-;;84921:107;84916:3;;;;:::i;:::-;;;84877:151;;86029:242:::0;86149:4;;87080:213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;87187:23:0;;87080:213;;-1:-1:-1;87174:37:0;;-1:-1:-1;87187:17:0;;-1:-1:-1;87187:23:0;;87205:4;;87187:23;:::i;87174:37::-;87226:14;;87140:71;;-1:-1:-1;87226:28:0;;87244:10;87226:28;87222:51;;87263:10;;;;;;;;;;;;;;87222:51;86170:6:::1;86166:98;86178:17:::0;;::::1;86166:98;;;86245:4;86250:1;86245:7;;;;;;;;:::i;:::-;;;;;;;86217:8;86226:4;;86217:14;;;;;;;:::i;:::-;;;;;;;;;;;;;86232:6;;86239:1;86232:9;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;86217:25;;;;;;;:::i;:::-;;;;;;;;;;;;;:35;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;86197:3:0::1;::::0;::::1;:::i;:::-;;;86166:98;;;;87129:164:::0;86029:242;;;;;;:::o;81282:328::-;87378:15;;81400:4;;87378:15;;87360;:33;87356:60;;;87402:14;;;;;;;;;;;;;;87356:60;87432:20;87447:4;87432:14;:20::i;:::-;87427:47;;87461:13;;;;;;;;;;;;;;87427:47;81447:28:::1;::::0;14700:66:1;81464:10:0::1;14687:2:1::0;14683:15;14679:88;81447:28:0::1;::::0;::::1;14667:101:1::0;81422:12:0::1;::::0;14784::1;;81447:28:0::1;;;;;;;;;;;;81437:39;;;;;;81422:54;;81492:51;81511:11;;81492:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;81524:12:0::1;::::0;;-1:-1:-1;81538:4:0;;-1:-1:-1;81492:18:0::1;:51::i;:::-;81487:79;;81552:14;;;;;;;;;;;;;;81487:79;81587:15;81597:4;81587:9;:15::i;77183:201::-:0;76163:13;:11;:13::i;:::-;77272:22:::1;::::0;::::1;77264:73;;;::::0;::::1;::::0;;19876:2:1;77264:73:0::1;::::0;::::1;19858:21:1::0;19915:2;19895:18;;;19888:30;19954:34;19934:18;;;19927:62;20025:8;20005:18;;;19998:36;20051:19;;77264:73:0::1;19674:402:1::0;77264:73:0::1;77348:28;77367:8;77348:18;:28::i;:::-;77183:201:::0;:::o;82898:126::-;82959:15;82994:10;:22;83005:10;82994:22;;;;;;;;;;;82987:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82898:126;;;:::o;85608:116::-;76163:13;:11;:13::i;:::-;85687:12:::1;:29:::0;85608:116::o;83607:718::-;83698:15;83731:23;83757:17;83767:6;83757:9;:17::i;:::-;83731:43;;83785:29;83830:15;83817:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;83785:61:0;-1:-1:-1;83882:1:0;83857:22;83934:351;83959:15;83941;:33;83934:351;;;83987:25;84015:23;84023:14;84015:7;:23::i;:::-;83987:51;;84076:6;84055:27;;:17;:27;;;84051:194;;;84156:33;;;;:17;:33;;;;;;;;;84139:59;;;;84156:33;84191:6;;84139:59;;:::i;:::-;;;;;;;;;;;;;84099:13;84113:15;84099:30;;;;;;;;:::i;:::-;;;;;;:100;;;;84216:17;;;;;:::i;:::-;;;;84051:194;84257:16;;;;:::i;:::-;;;;83976:309;83934:351;;76442:132;76350:6;;76506:23;76350:6;49743:10;76506:23;76498:68;;;;;;;20283:2:1;76498:68:0;;;20265:21:1;;;20302:18;;;20295:30;20361:34;20341:18;;;20334:62;20413:18;;76498:68:0;20081:356:1;27348:282:0;27413:4;27469:7;87636:1;27450:26;;:66;;;;;27503:13;;27493:7;:23;27450:66;:153;;;;-1:-1:-1;;27554:26:0;;;;:17;:26;;;;;;11256:8;27554:44;:49;;27348:282::o;82315:235::-;82374:32;82392:13;;82374:32;;:17;:32;;;;;;;;:39;;;;;;;;:::i;:::-;;82450:13;;82424:17;82442:4;82424:23;;;;;;:::i;:::-;;;;;;;;;;;;;:39;;;;82497:10;82474:14;82489:4;82474:20;;;;;;:::i;:::-;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;82518:24;82528:10;82474:33;82518:9;:24::i;22034:1275::-;22101:7;22136;;87636:1;22185:23;22181:1061;;22238:13;;22231:4;:20;22227:1015;;;22276:14;22293:23;;;:17;:23;;;;;;11256:8;22382:24;;22378:845;;23047:113;23054:11;23047:113;;-1:-1:-1;23125:6:0;;23107:25;;;;:17;:25;;;;;;23047:113;;22378:845;22253:989;22227:1015;23270:31;;;;;;;;;;;;;;87813:309;88112:2;88062:14;88077:17;:31;88095:12;88077:31;;;;;;;;;;;88062:47;;;;;;:::i;:::-;;;;;;;;;;;;;;:52;;;;;;;;;;;;;;;;;-1:-1:-1;;;;87813:309:0:o;21220:166::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21331:47:0;21350:27;21369:7;21350:18;:27::i;:::-;-1:-1:-1;;;;;;;;23518:41:0;;;;;11139:3;23604:33;;;23570:68;;-1:-1:-1;;;23570:68:0;11256:8;23668:24;;:29;;-1:-1:-1;;;23649:48:0;;;;11660:3;23737:28;;;;-1:-1:-1;;;23708:58:0;-1:-1:-1;23408:366:0;77544:191;77637:6;;;;77654:17;;;;;;;;;;;77687:40;;77637:6;;;77654:17;77637:6;;77687:40;;77618:16;;77687:40;77607:128;77544:191;:::o;35819:716::-;36003:88;;;;;35982:4;;36003:45;;;;;;:88;;49743:10;;36070:4;;36076:7;;36085:5;;36003:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36003:88:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35999:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36286:13:0;;36282:235;;36332:40;;;;;;;;;;;;;;36282:235;36475:6;36469:13;36460:6;36456:2;36452:15;36445:38;35999:529;36162:64;;36172:54;36162:64;;-1:-1:-1;35999:529:0;35819:716;;;;;;:::o;87653:152::-;87751:13;87789:8;87782:15;;;;;:::i;72082:723::-;72138:13;72359:10;72355:53;;-1:-1:-1;;72386:10:0;;;;;;;;;;;;;;;;;;72082:723::o;72355:53::-;72433:5;72418:12;72474:78;72481:9;;72474:78;;72507:8;;;;:::i;:::-;;-1:-1:-1;72530:10:0;;-1:-1:-1;72538:2:0;72530:10;;:::i;:::-;;;72474:78;;;72562:19;72594:6;72584:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72584:17:0;;72562:39;;72612:154;72619:10;;72612:154;;72646:11;72656:1;72646:11;;:::i;:::-;;-1:-1:-1;72715:10:0;72723:2;72715:5;:10;:::i;:::-;72702:24;;:2;:24;:::i;:::-;72689:39;;72672:6;72679;72672:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;72743:11:0;72752:2;72743:11;;:::i;:::-;;;72612:154;;55593:190;55718:4;55771;55742:25;55755:5;55762:4;55742:12;:25::i;:::-;:33;;55593:190;-1:-1:-1;;;;55593:190:0:o;43488:112::-;43565:27;43575:2;43579:8;43565:27;;;;;;;;;;;;:9;:27::i;56460:296::-;56543:7;56586:4;56543:7;56601:118;56625:5;:12;56621:1;:16;56601:118;;;56674:33;56684:12;56698:5;56704:1;56698:8;;;;;;;;:::i;:::-;;;;;;;56674:9;:33::i;:::-;56659:48;-1:-1:-1;56639:3:0;;;;:::i;:::-;;;;56601:118;;;-1:-1:-1;56736:12:0;56460:296;-1:-1:-1;;;56460:296:0:o;42715:689::-;42846:19;42852:2;42856:8;42846:5;:19::i;:::-;42907:14;;;;:19;42903:483;;42947:11;42961:13;43009:14;;;43042:233;43073:62;43112:1;43116:2;43120:7;;;;;;43129:5;43073:30;:62::i;:::-;43068:167;;43171:40;;;;;;;;;;;;;;43068:167;43270:3;43262:5;:11;43042:233;;43357:3;43340:13;;:20;43336:34;;43362:8;;;62667:149;62730:7;62761:1;62757;:5;:51;;62892:13;62986:15;;;63022:4;63015:15;;;63069:4;63053:21;;62757:51;;;-1:-1:-1;62892:13:0;62986:15;;;63022:4;63015:15;63069:4;63053:21;;;62667:149::o;36997:2966::-;37070:20;37093:13;37121;37117:44;;37143:18;;;;;;;;;;;;;;37117:44;37174:61;37204:1;37208:2;37212:12;37226:8;37174:21;:61::i;:::-;37649:22;;;;;;;:18;:22;;;;10618:2;37649:22;;;:71;;37687:32;37675:45;;37649:71;;;37963:31;;;:17;:31;;;;;-1:-1:-1;24699:15:0;;24673:24;24669:46;24268:11;24243:23;24239:41;24236:52;24226:63;;37963:173;;38198:23;;;;37963:31;;37649:22;;38963:25;37649:22;;38816:335;39477:1;39463:12;39459:20;39417:346;39518:3;39509:7;39506:16;39417:346;;39736:7;39726:8;39723:1;39696:25;39693:1;39690;39685:59;39571:1;39558:15;39417:346;;;-1:-1:-1;39796:13:0;39792:45;;39818:19;;;;;;;;;;;;;;39792:45;39854:13;:19;-1:-1:-1;32537:193:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;14:465:1:-;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:116;282:4;213:66;208:2;200:6;196:15;192:88;188:99;172:116;:::i;:::-;163:125;;311:6;304:5;297:21;351:3;342:6;337:3;333:16;330:25;327:45;;;368:1;365;358:12;327:45;417:6;412:3;405:4;398:5;394:16;381:43;471:1;464:4;455:6;448:5;444:18;440:29;433:40;14:465;;;;;:::o;484:196::-;552:20;;612:42;601:54;;591:65;;581:93;;670:1;667;660:12;581:93;484:196;;;:::o;685:367::-;748:8;758:6;812:3;805:4;797:6;793:17;789:27;779:55;;830:1;827;820:12;779:55;-1:-1:-1;853:20:1;;896:18;885:30;;882:50;;;928:1;925;918:12;882:50;965:4;957:6;953:17;941:29;;1025:3;1018:4;1008:6;1005:1;1001:14;993:6;989:27;985:38;982:47;979:67;;;1042:1;1039;1032:12;979:67;685:367;;;;;:::o;1057:160::-;1122:20;;1178:13;;1171:21;1161:32;;1151:60;;1207:1;1204;1197:12;1222:348;1274:8;1284:6;1338:3;1331:4;1323:6;1319:17;1315:27;1305:55;;1356:1;1353;1346:12;1305:55;-1:-1:-1;1379:20:1;;1422:18;1411:30;;1408:50;;;1454:1;1451;1444:12;1408:50;1491:4;1483:6;1479:17;1467:29;;1543:3;1536:4;1527:6;1519;1515:19;1511:30;1508:39;1505:59;;;1560:1;1557;1550:12;1575:221;1618:5;1671:3;1664:4;1656:6;1652:17;1648:27;1638:55;;1689:1;1686;1679:12;1638:55;1711:79;1786:3;1777:6;1764:20;1757:4;1749:6;1745:17;1711:79;:::i;1801:186::-;1860:6;1913:2;1901:9;1892:7;1888:23;1884:32;1881:52;;;1929:1;1926;1919:12;1881:52;1952:29;1971:9;1952:29;:::i;1992:260::-;2060:6;2068;2121:2;2109:9;2100:7;2096:23;2092:32;2089:52;;;2137:1;2134;2127:12;2089:52;2160:29;2179:9;2160:29;:::i;:::-;2150:39;;2208:38;2242:2;2231:9;2227:18;2208:38;:::i;:::-;2198:48;;1992:260;;;;;:::o;2257:328::-;2334:6;2342;2350;2403:2;2391:9;2382:7;2378:23;2374:32;2371:52;;;2419:1;2416;2409:12;2371:52;2442:29;2461:9;2442:29;:::i;:::-;2432:39;;2490:38;2524:2;2513:9;2509:18;2490:38;:::i;:::-;2480:48;;2575:2;2564:9;2560:18;2547:32;2537:42;;2257:328;;;;;:::o;2590:666::-;2685:6;2693;2701;2709;2762:3;2750:9;2741:7;2737:23;2733:33;2730:53;;;2779:1;2776;2769:12;2730:53;2802:29;2821:9;2802:29;:::i;:::-;2792:39;;2850:38;2884:2;2873:9;2869:18;2850:38;:::i;:::-;2840:48;;2935:2;2924:9;2920:18;2907:32;2897:42;;2990:2;2979:9;2975:18;2962:32;3017:18;3009:6;3006:30;3003:50;;;3049:1;3046;3039:12;3003:50;3072:22;;3125:4;3117:13;;3113:27;-1:-1:-1;3103:55:1;;3154:1;3151;3144:12;3103:55;3177:73;3242:7;3237:2;3224:16;3219:2;3215;3211:11;3177:73;:::i;:::-;3167:83;;;2590:666;;;;;;;:::o;3261:254::-;3326:6;3334;3387:2;3375:9;3366:7;3362:23;3358:32;3355:52;;;3403:1;3400;3393:12;3355:52;3426:29;3445:9;3426:29;:::i;:::-;3416:39;;3474:35;3505:2;3494:9;3490:18;3474:35;:::i;3520:254::-;3588:6;3596;3649:2;3637:9;3628:7;3624:23;3620:32;3617:52;;;3665:1;3662;3655:12;3617:52;3688:29;3707:9;3688:29;:::i;:::-;3678:39;3764:2;3749:18;;;;3736:32;;-1:-1:-1;;;3520:254:1:o;3779:901::-;3863:6;3894:2;3937;3925:9;3916:7;3912:23;3908:32;3905:52;;;3953:1;3950;3943:12;3905:52;3993:9;3980:23;4026:18;4018:6;4015:30;4012:50;;;4058:1;4055;4048:12;4012:50;4081:22;;4134:4;4126:13;;4122:27;-1:-1:-1;4112:55:1;;4163:1;4160;4153:12;4112:55;4199:2;4186:16;4222:59;4238:42;4277:2;4238:42;:::i;:::-;4222:59;:::i;:::-;4303:3;4327:2;4322:3;4315:15;4355:2;4350:3;4346:12;4339:19;;4386:2;4382;4378:11;4434:7;4429:2;4423;4420:1;4416:10;4412:2;4408:19;4404:28;4401:41;4398:61;;;4455:1;4452;4445:12;4398:61;4477:1;4468:10;;4487:163;4501:2;4498:1;4495:9;4487:163;;;4558:17;;4546:30;;4519:1;4512:9;;;;;4596:12;;;;4628;;4487:163;;;-1:-1:-1;4669:5:1;3779:901;-1:-1:-1;;;;;;;3779:901:1:o;4685:180::-;4744:6;4797:2;4785:9;4776:7;4772:23;4768:32;4765:52;;;4813:1;4810;4803:12;4765:52;-1:-1:-1;4836:23:1;;4685:180;-1:-1:-1;4685:180:1:o;4870:245::-;4928:6;4981:2;4969:9;4960:7;4956:23;4952:32;4949:52;;;4997:1;4994;4987:12;4949:52;5036:9;5023:23;5055:30;5079:5;5055:30;:::i;5120:249::-;5189:6;5242:2;5230:9;5221:7;5217:23;5213:32;5210:52;;;5258:1;5255;5248:12;5210:52;5290:9;5284:16;5309:30;5333:5;5309:30;:::i;5374:411::-;5445:6;5453;5506:2;5494:9;5485:7;5481:23;5477:32;5474:52;;;5522:1;5519;5512:12;5474:52;5562:9;5549:23;5595:18;5587:6;5584:30;5581:50;;;5627:1;5624;5617:12;5581:50;5666:59;5717:7;5708:6;5697:9;5693:22;5666:59;:::i;:::-;5744:8;;5640:85;;-1:-1:-1;5374:411:1;-1:-1:-1;;;;5374:411:1:o;5790:485::-;5870:6;5878;5886;5939:2;5927:9;5918:7;5914:23;5910:32;5907:52;;;5955:1;5952;5945:12;5907:52;5995:9;5982:23;6028:18;6020:6;6017:30;6014:50;;;6060:1;6057;6050:12;6014:50;6099:59;6150:7;6141:6;6130:9;6126:22;6099:59;:::i;:::-;6177:8;;-1:-1:-1;6073:85:1;-1:-1:-1;6231:38:1;;-1:-1:-1;6265:2:1;6250:18;;6231:38;:::i;:::-;6221:48;;5790:485;;;;;:::o;6280:1634::-;6443:6;6451;6459;6467;6475;6528:2;6516:9;6507:7;6503:23;6499:32;6496:52;;;6544:1;6541;6534:12;6496:52;6567:18;6625:2;6613:9;6600:23;6597:31;6594:51;;;6641:1;6638;6631:12;6594:51;6680:76;6748:7;6735:9;6722:23;6711:9;6707:39;6680:76;:::i;:::-;6775:8;;-1:-1:-1;6802:8:1;-1:-1:-1;6829:2:1;6867:18;;;6854:32;6898:14;;;6895:34;;;6925:1;6922;6915:12;6895:34;6964:70;7026:7;7017:6;7006:9;7002:22;6964:70;:::i;:::-;7053:8;;-1:-1:-1;6938:96:1;-1:-1:-1;;7141:2:1;7126:18;;7113:32;7157:16;;;7154:36;;;7186:1;7183;7176:12;7154:36;7209:24;;7264:4;7256:13;;7252:27;-1:-1:-1;7242:55:1;;7293:1;7290;7283:12;7242:55;7329:2;7316:16;7352:59;7368:42;7407:2;7368:42;:::i;7352:59::-;7433:3;7457:2;7452:3;7445:15;7485:2;7480:3;7476:12;7469:19;;7516:2;7512;7508:11;7564:7;7559:2;7553;7550:1;7546:10;7542:2;7538:19;7534:28;7531:41;7528:61;;;7585:1;7582;7575:12;7528:61;7607:1;7617:267;7631:2;7628:1;7625:9;7617:267;;;7701:2;7695:3;7682:17;7679:25;7676:45;;;7717:1;7714;7707:12;7676:45;7746:63;7801:7;7796:2;7789:3;7776:17;7772:2;7768:26;7764:35;7746:63;:::i;:::-;7734:76;;7830:12;;;;7862;;;;7649:1;7642:9;7617:267;;;7621:3;;7903:5;7893:15;;;;;;;;6280:1634;;;;;;;;:::o;7919:547::-;8005:6;8013;8021;8029;8082:2;8070:9;8061:7;8057:23;8053:32;8050:52;;;8098:1;8095;8088:12;8050:52;8138:9;8125:23;8171:18;8163:6;8160:30;8157:50;;;8203:1;8200;8193:12;8157:50;8242:59;8293:7;8284:6;8273:9;8269:22;8242:59;:::i;:::-;8320:8;;-1:-1:-1;8216:85:1;-1:-1:-1;8374:35:1;;-1:-1:-1;8405:2:1;8390:18;;8374:35;:::i;:::-;7919:547;;;;-1:-1:-1;8364:45:1;;8456:2;8441:18;8428:32;;-1:-1:-1;;7919:547:1:o;8471:479::-;8551:6;8559;8567;8620:2;8608:9;8599:7;8595:23;8591:32;8588:52;;;8636:1;8633;8626:12;8588:52;8676:9;8663:23;8709:18;8701:6;8698:30;8695:50;;;8741:1;8738;8731:12;8695:50;8780:59;8831:7;8822:6;8811:9;8807:22;8780:59;:::i;:::-;8858:8;;8754:85;;-1:-1:-1;8940:2:1;8925:18;;;;8912:32;;8471:479;-1:-1:-1;;;;8471:479:1:o;8955:322::-;9024:6;9077:2;9065:9;9056:7;9052:23;9048:32;9045:52;;;9093:1;9090;9083:12;9045:52;9133:9;9120:23;9166:18;9158:6;9155:30;9152:50;;;9198:1;9195;9188:12;9152:50;9221;9263:7;9254:6;9243:9;9239:22;9221:50;:::i;9282:396::-;9360:6;9368;9421:2;9409:9;9400:7;9396:23;9392:32;9389:52;;;9437:1;9434;9427:12;9389:52;9477:9;9464:23;9510:18;9502:6;9499:30;9496:50;;;9542:1;9539;9532:12;9496:50;9565;9607:7;9598:6;9587:9;9583:22;9565:50;:::i;:::-;9555:60;;;9634:38;9668:2;9657:9;9653:18;9634:38;:::i;9683:658::-;9788:6;9796;9804;9857:2;9845:9;9836:7;9832:23;9828:32;9825:52;;;9873:1;9870;9863:12;9825:52;9913:9;9900:23;9942:18;9983:2;9975:6;9972:14;9969:34;;;9999:1;9996;9989:12;9969:34;10022:50;10064:7;10055:6;10044:9;10040:22;10022:50;:::i;:::-;10012:60;;10125:2;10114:9;10110:18;10097:32;10081:48;;10154:2;10144:8;10141:16;10138:36;;;10170:1;10167;10160:12;10138:36;;10209:72;10273:7;10262:8;10251:9;10247:24;10209:72;:::i;:::-;9683:658;;10300:8;;-1:-1:-1;10183:98:1;;-1:-1:-1;;;;9683:658:1:o;10346:632::-;10436:6;10444;10452;10505:2;10493:9;10484:7;10480:23;10476:32;10473:52;;;10521:1;10518;10511:12;10473:52;10561:9;10548:23;10590:18;10631:2;10623:6;10620:14;10617:34;;;10647:1;10644;10637:12;10617:34;10670:50;10712:7;10703:6;10692:9;10688:22;10670:50;:::i;:::-;10660:60;;10773:2;10762:9;10758:18;10745:32;10729:48;;10802:2;10792:8;10789:16;10786:36;;;10818:1;10815;10808:12;10786:36;;10857:61;10910:7;10899:8;10888:9;10884:24;10857:61;:::i;10983:543::-;11071:6;11079;11132:2;11120:9;11111:7;11107:23;11103:32;11100:52;;;11148:1;11145;11138:12;11100:52;11188:9;11175:23;11217:18;11258:2;11250:6;11247:14;11244:34;;;11274:1;11271;11264:12;11244:34;11297:50;11339:7;11330:6;11319:9;11315:22;11297:50;:::i;:::-;11287:60;;11400:2;11389:9;11385:18;11372:32;11356:48;;11429:2;11419:8;11416:16;11413:36;;;11445:1;11442;11435:12;11413:36;;11468:52;11512:7;11501:8;11490:9;11486:24;11468:52;:::i;:::-;11458:62;;;10983:543;;;;;:::o;11716:479::-;11796:6;11804;11812;11865:2;11853:9;11844:7;11840:23;11836:32;11833:52;;;11881:1;11878;11871:12;11833:52;11917:9;11904:23;11894:33;;11978:2;11967:9;11963:18;11950:32;12005:18;11997:6;11994:30;11991:50;;;12037:1;12034;12027:12;11991:50;12076:59;12127:7;12118:6;12107:9;12103:22;12076:59;:::i;12200:248::-;12268:6;12276;12329:2;12317:9;12308:7;12304:23;12300:32;12297:52;;;12345:1;12342;12335:12;12297:52;-1:-1:-1;;12368:23:1;;;12438:2;12423:18;;;12410:32;;-1:-1:-1;12200:248:1:o;12453:385::-;12539:6;12547;12555;12563;12616:3;12604:9;12595:7;12591:23;12587:33;12584:53;;;12633:1;12630;12623:12;12584:53;-1:-1:-1;;12656:23:1;;;12726:2;12711:18;;12698:32;;-1:-1:-1;12777:2:1;12762:18;;12749:32;;12828:2;12813:18;12800:32;;-1:-1:-1;12453:385:1;-1:-1:-1;12453:385:1:o;12843:276::-;12901:6;12954:2;12942:9;12933:7;12929:23;12925:32;12922:52;;;12970:1;12967;12960:12;12922:52;13009:9;12996:23;13059:10;13052:5;13048:22;13041:5;13038:33;13028:61;;13085:1;13082;13075:12;13124:316;13165:3;13203:5;13197:12;13230:6;13225:3;13218:19;13246:63;13302:6;13295:4;13290:3;13286:14;13279:4;13272:5;13268:16;13246:63;:::i;:::-;13354:2;13342:15;13359:66;13338:88;13329:98;;;;13429:4;13325:109;;13124:316;-1:-1:-1;;13124:316:1:o;13445:1088::-;13530:12;;13495:3;;13585:1;13605:18;;;;13658;;;;13685:61;;13739:4;13731:6;13727:17;13717:27;;13685:61;13765:2;13813;13805:6;13802:14;13782:18;13779:38;13776:218;;;13850:77;13847:1;13840:88;13951:4;13948:1;13941:15;13979:4;13976:1;13969:15;13776:218;14010:18;14037:162;;;;14213:1;14208:319;;;;14003:524;;14037:162;14085:66;14074:9;14070:82;14065:3;14058:95;14182:6;14177:3;14173:16;14166:23;;14037:162;;14208:319;22920:1;22913:14;;;22957:4;22944:18;;14302:1;14316:165;14330:6;14327:1;14324:13;14316:165;;;14408:14;;14395:11;;;14388:35;14451:16;;;;14345:10;;14316:165;;;14320:3;;14510:6;14505:3;14501:16;14494:23;;14003:524;;;;;;;13445:1088;;;;:::o;14807:271::-;14990:6;14982;14977:3;14964:33;14946:3;15016:16;;15041:13;;;15016:16;14807:271;-1:-1:-1;14807:271:1:o;15361:276::-;15492:3;15530:6;15524:13;15546:53;15592:6;15587:3;15580:4;15572:6;15568:17;15546:53;:::i;:::-;15615:16;;;;;15361:276;-1:-1:-1;;15361:276:1:o;15642:713::-;15967:3;16005:6;15999:13;16021:53;16067:6;16062:3;16055:4;16047:6;16043:17;16021:53;:::i;:::-;16137:13;;16096:16;;;;16159:57;16137:13;16096:16;16193:4;16181:17;;16159:57;:::i;:::-;16281:3;16238:20;;16267:18;;;16301:48;16346:1;16335:13;;16327:6;16301:48;:::i;:::-;16294:55;15642:713;-1:-1:-1;;;;;;15642:713:1:o;16360:614::-;16640:3;16678:6;16672:13;16694:53;16740:6;16735:3;16728:4;16720:6;16716:17;16694:53;:::i;:::-;16808:3;16769:16;;;16794:18;;;16837:13;;16859:65;16837:13;16911:1;16900:13;;16893:4;16881:17;;16859:65;:::i;:::-;16944:20;16966:1;16940:28;;16360:614;-1:-1:-1;;;;16360:614:1:o;16979:197::-;17107:3;17132:38;17166:3;17158:6;17132:38;:::i;17181:277::-;17354:3;17379:73;17413:38;17447:3;17439:6;17413:38;:::i;:::-;17405:6;17379:73;:::i;17694:511::-;17888:4;17917:42;17998:2;17990:6;17986:15;17975:9;17968:34;18050:2;18042:6;18038:15;18033:2;18022:9;18018:18;18011:43;;18090:6;18085:2;18074:9;18070:18;18063:34;18133:3;18128:2;18117:9;18113:18;18106:31;18154:45;18194:3;18183:9;18179:19;18171:6;18154:45;:::i;18210:861::-;18372:4;18401:2;18441;18430:9;18426:18;18471:2;18460:9;18453:21;18494:6;18529;18523:13;18560:6;18552;18545:22;18598:2;18587:9;18583:18;18576:25;;18660:2;18650:6;18647:1;18643:14;18632:9;18628:30;18624:39;18610:53;;18698:2;18690:6;18686:15;18719:1;18729:313;18743:6;18740:1;18737:13;18729:313;;;18832:66;18820:9;18812:6;18808:22;18804:95;18799:3;18792:108;18923:39;18955:6;18946;18940:13;18923:39;:::i;:::-;18913:49;-1:-1:-1;19020:12:1;;;;18985:15;;;;18765:1;18758:9;18729:313;;;-1:-1:-1;19059:6:1;;18210:861;-1:-1:-1;;;;;;;18210:861:1:o;19450:219::-;19599:2;19588:9;19581:21;19562:4;19619:44;19659:2;19648:9;19644:18;19636:6;19619:44;:::i;21735:581::-;21813:4;21819:6;21879:11;21866:25;21969:66;21958:8;21942:14;21938:29;21934:102;21914:18;21910:127;21900:155;;22051:1;22048;22041:12;21900:155;22078:33;;22130:20;;;-1:-1:-1;22173:18:1;22162:30;;22159:50;;;22205:1;22202;22195:12;22159:50;22238:4;22226:17;;-1:-1:-1;22269:14:1;22265:27;;;22255:38;;22252:58;;;22306:1;22303;22296:12;22321:334;22392:2;22386:9;22448:2;22438:13;;22453:66;22434:86;22422:99;;22551:18;22536:34;;22572:22;;;22533:62;22530:88;;;22598:18;;:::i;:::-;22634:2;22627:22;22321:334;;-1:-1:-1;22321:334:1:o;22660:182::-;22719:4;22752:18;22744:6;22741:30;22738:56;;;22774:18;;:::i;:::-;-1:-1:-1;22819:1:1;22815:14;22831:4;22811:25;;22660:182::o;22973:128::-;23013:3;23044:1;23040:6;23037:1;23034:13;23031:39;;;23050:18;;:::i;:::-;-1:-1:-1;23086:9:1;;22973:128::o;23106:120::-;23146:1;23172;23162:35;;23177:18;;:::i;:::-;-1:-1:-1;23211:9:1;;23106:120::o;23231:228::-;23271:7;23397:1;23329:66;23325:74;23322:1;23319:81;23314:1;23307:9;23300:17;23296:105;23293:131;;;23404:18;;:::i;:::-;-1:-1:-1;23444:9:1;;23231:228::o;23464:125::-;23504:4;23532:1;23529;23526:8;23523:34;;;23537:18;;:::i;:::-;-1:-1:-1;23574:9:1;;23464:125::o;23594:258::-;23666:1;23676:113;23690:6;23687:1;23684:13;23676:113;;;23766:11;;;23760:18;23747:11;;;23740:39;23712:2;23705:10;23676:113;;;23807:6;23804:1;23801:13;23798:48;;;-1:-1:-1;;23842:1:1;23824:16;;23817:27;23594:258::o;23857:196::-;23896:3;23924:5;23914:39;;23933:18;;:::i;:::-;-1:-1:-1;23980:66:1;23969:78;;23857:196::o;24058:437::-;24137:1;24133:12;;;;24180;;;24201:61;;24255:4;24247:6;24243:17;24233:27;;24201:61;24308:2;24300:6;24297:14;24277:18;24274:38;24271:218;;;24345:77;24342:1;24335:88;24446:4;24443:1;24436:15;24474:4;24471:1;24464:15;24271:218;;24058:437;;;:::o;24500:195::-;24539:3;24570:66;24563:5;24560:77;24557:103;;;24640:18;;:::i;:::-;-1:-1:-1;24687:1:1;24676:13;;24500:195::o;24700:112::-;24732:1;24758;24748:35;;24763:18;;:::i;:::-;-1:-1:-1;24797:9:1;;24700:112::o;24817:184::-;24869:77;24866:1;24859:88;24966:4;24963:1;24956:15;24990:4;24987:1;24980:15;25006:184;25058:77;25055:1;25048:88;25155:4;25152:1;25145:15;25179:4;25176:1;25169:15;25195:184;25247:77;25244:1;25237:88;25344:4;25341:1;25334:15;25368:4;25365:1;25358:15;25384:184;25436:77;25433:1;25426:88;25533:4;25530:1;25523:15;25557:4;25554:1;25547:15;25573:177;25658:66;25651:5;25647:78;25640:5;25637:89;25627:117;;25740:1;25737;25730:12

Swarm Source

ipfs://656b966129fea2aba49436789f225f9a152daa4b02082ff71668f6ee3470bf47
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.