ETH Price: $3,267.64 (+0.20%)
Gas: 2 Gwei

Token

Re:Myth (REMYTH)
 

Overview

Max Total Supply

259 REMYTH

Holders

121

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 REMYTH
0x7e9c268d38da976a1b371ec72cdc83c728177858
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:
ReMyth

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: contracts/OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

// File: contracts/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// File: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

    // ==============================
    //            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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

    /**
     * @dev 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);
}
// File: contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * 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;
    }

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (_addressToUint256(to) == 0) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try 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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/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 v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

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

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: contracts/ReMyth.sol


pragma solidity ^0.8.13;






contract ReMyth is ERC721A, Ownable, DefaultOperatorFilterer {

    using Strings for uint;

    enum Step {
        StandBy,
        WhitelistSale,
        PublicSale,
        SoldOut,
        Reveal
    }

    Step public step;

    string public baseURI;
    string public notRevealedURI;

    uint public MAX_SUPPLY = 3333;
    uint public MAX_TEAM = 133;
    uint public MAX_TX = 3;

    bool private isRevealed = false;

    uint public wl_price = 0.025 ether;
    uint public public_price = 0.03 ether;

    uint public saleStartTime = 1669298400;

    bytes32 public merkleRoot;

    constructor(string memory _baseURI, bytes32 _merkleRoot) ERC721A("Re:Myth", "REMYTH")
    {
        baseURI = _baseURI;
        merkleRoot = _merkleRoot;
    }

    modifier isNotContract() {
        require(tx.origin == msg.sender, "Reentrancy Guard is watching");
        _;
    }

    function getStep() public view returns(Step actualStep) {
        if(block.timestamp < saleStartTime) {
            return Step.StandBy;
        }
        if(block.timestamp >= saleStartTime
        &&block.timestamp < saleStartTime + 30 minutes) {
            return Step.WhitelistSale;
        }
        if(block.timestamp >= saleStartTime + 30 minutes) {
            return Step.PublicSale;
        }
    }

    function teamMint(address _to, uint _quantity) external payable onlyOwner {
        require(totalSupply() + _quantity <= MAX_TEAM, "NFT can't be minted anymore");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "NFT can't be minted anymore");
        _safeMint(_to,  _quantity);
    }

    function whitelistMint(address _account, uint _quantity, bytes32[] calldata _proof) external payable isNotContract {
        require(getStep() == Step.WhitelistSale, "Whitelist Mint is not activated");
        require(isWhiteListed(msg.sender, _proof), "Not whitelisted");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "NFT can't be minted anymore");
        require(_quantity <= MAX_TX, "Exceeded Max per TX");
        require(msg.value >= wl_price * _quantity, "Not enought funds");
        _safeMint(_account, _quantity);
    }

    function publicSaleMint(address _account, uint _quantity) external payable isNotContract {
        require(getStep() == Step.PublicSale, "Public Mint is not activated");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "NFT can't be mint anymore");
        require(_quantity <= MAX_TX, "Exceeded Max per TX");
        require(msg.value >= public_price * _quantity, "Not enought funds");
        _safeMint(_account, _quantity);
    }

    function setBaseUri(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function setSaleStartTime(uint _newSaleStartTime) external onlyOwner {
        saleStartTime = _newSaleStartTime;
    }

    function setMaxSupply(uint _newMAX_SUPPLY) external onlyOwner {
        MAX_SUPPLY = _newMAX_SUPPLY;
    }

    function revealCollection() external onlyOwner {
        isRevealed = true;
    }

    function tokenURI(uint _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "URI query for nonexistent token");
        if(isRevealed == true) {
            return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json"));
        }
        else {
            return string(abi.encodePacked(baseURI, notRevealedURI));
        }
    }

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

    function isWhiteListed(address _account, bytes32[] calldata _proof) internal view returns(bool) {
        return _verify(leaf(_account), _proof);
    }

    function leaf(address _account) internal pure returns(bytes32) {
        return keccak256(abi.encodePacked(_account));
    }

    function _verify(bytes32 _leaf, bytes32[] memory _proof) internal view returns(bool) {
        return MerkleProof.verify(_proof, merkleRoot, _leaf);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function withdraw(uint amount) public onlyOwner {
        payable(msg.sender).transfer(amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TEAM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","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":[],"name":"getStep","outputs":[{"internalType":"enum ReMyth.Step","name":"actualStep","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"public_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMAX_SUPPLY","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSaleStartTime","type":"uint256"}],"name":"setSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"step","outputs":[{"internalType":"enum ReMyth.Step","name":"","type":"uint8"}],"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"payable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wl_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052610d05600b556085600c556003600d556000600e60006101000a81548160ff0219169083151502179055506658d15e17628000600f55666a94d74f43000060105563637f78e06011553480156200005a57600080fd5b5060405162004e6238038062004e62833981810160405281019062000080919062000618565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600781526020017f52653a4d797468000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f52454d59544800000000000000000000000000000000000000000000000000008152508160029081620001149190620008c9565b508060039081620001269190620008c9565b50620001376200037760201b60201c565b60008190555050506200015f620001536200037c60201b60201c565b6200038460201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003545780156200021a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001e0929190620009f5565b600060405180830381600087803b158015620001fb57600080fd5b505af115801562000210573d6000803e3d6000fd5b5050505062000353565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002d4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200029a929190620009f5565b600060405180830381600087803b158015620002b557600080fd5b505af1158015620002ca573d6000803e3d6000fd5b5050505062000352565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200031d919062000a22565b600060405180830381600087803b1580156200033857600080fd5b505af11580156200034d573d6000803e3d6000fd5b505050505b5b5b50508160099081620003679190620008c9565b5080601281905550505062000a3f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004b38262000468565b810181811067ffffffffffffffff82111715620004d557620004d462000479565b5b80604052505050565b6000620004ea6200044a565b9050620004f88282620004a8565b919050565b600067ffffffffffffffff8211156200051b576200051a62000479565b5b620005268262000468565b9050602081019050919050565b60005b838110156200055357808201518184015260208101905062000536565b60008484015250505050565b6000620005766200057084620004fd565b620004de565b90508281526020810184848401111562000595576200059462000463565b5b620005a284828562000533565b509392505050565b600082601f830112620005c257620005c16200045e565b5b8151620005d48482602086016200055f565b91505092915050565b6000819050919050565b620005f281620005dd565b8114620005fe57600080fd5b50565b6000815190506200061281620005e7565b92915050565b6000806040838503121562000632576200063162000454565b5b600083015167ffffffffffffffff81111562000653576200065262000459565b5b6200066185828601620005aa565b9250506020620006748582860162000601565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006d157607f821691505b602082108103620006e757620006e662000689565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000712565b6200075d868362000712565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007aa620007a46200079e8462000775565b6200077f565b62000775565b9050919050565b6000819050919050565b620007c68362000789565b620007de620007d582620007b1565b8484546200071f565b825550505050565b600090565b620007f5620007e6565b62000802818484620007bb565b505050565b5b818110156200082a576200081e600082620007eb565b60018101905062000808565b5050565b601f82111562000879576200084381620006ed565b6200084e8462000702565b810160208510156200085e578190505b620008766200086d8562000702565b83018262000807565b50505b505050565b600082821c905092915050565b60006200089e600019846008026200087e565b1980831691505092915050565b6000620008b983836200088b565b9150826002028217905092915050565b620008d4826200067e565b67ffffffffffffffff811115620008f057620008ef62000479565b5b620008fc8254620006b8565b620009098282856200082e565b600060209050601f8311600181146200094157600084156200092c578287015190505b620009388582620008ab565b865550620009a8565b601f1984166200095186620006ed565b60005b828110156200097b5784890151825560018201915060208501945060208101905062000954565b868310156200099b578489015162000997601f8916826200088b565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009dd82620009b0565b9050919050565b620009ef81620009d0565b82525050565b600060408201905062000a0c6000830185620009e4565b62000a1b6020830184620009e4565b9392505050565b600060208201905062000a396000830184620009e4565b92915050565b6144138062000a4f6000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063a69f6750116100ab578063c87b56dd1161006f578063c87b56dd1461075e578063e25fe1751461079b578063e985e9c5146107c6578063f2fde38b14610803578063f3b2db3f1461082c5761021a565b8063a69f6750146106a7578063ac5ae11b146106d2578063add5a4fa146106ee578063b88d4fde1461070a578063bfe2a08a146107335761021a565b80638da5cb5b116100f25780638da5cb5b146105d457806395d89b41146105ff5780639e5288a01461062a578063a0bcfc7f14610655578063a22cb4651461067e5761021a565b806370a082311461052c578063715018a61461056957806372250380146105805780637cb64759146105ab5761021a565b806332c7189e116101a65780634b11faaf116101755780634b11faaf14610456578063525f8a5c146104725780636352211e1461049b5780636c0360eb146104d85780636f8b44b0146105035761021a565b806332c7189e146103c057806332cb6b0c146103eb57806340d0b4a91461041657806342842e0e1461042d5761021a565b806318160ddd116101ed57806318160ddd146102ed5780631cbaee2d1461031857806323b872dd146103435780632e1a7d4d1461036c5780632eb4a7ab146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612f1a565b610857565b6040516102539190612f62565b60405180910390f35b34801561026857600080fd5b506102716108e9565b60405161027e919061300d565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613065565b61097b565b6040516102bb91906130d3565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061311a565b6109f7565b005b3480156102f957600080fd5b50610302610b9d565b60405161030f9190613169565b60405180910390f35b34801561032457600080fd5b5061032d610bb4565b60405161033a9190613169565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190613184565b610bba565b005b34801561037857600080fd5b50610393600480360381019061038e9190613065565b610d9c565b005b3480156103a157600080fd5b506103aa610e62565b6040516103b791906131f0565b60405180910390f35b3480156103cc57600080fd5b506103d5610e68565b6040516103e29190613169565b60405180910390f35b3480156103f757600080fd5b50610400610e6e565b60405161040d9190613169565b60405180910390f35b34801561042257600080fd5b5061042b610e74565b005b34801561043957600080fd5b50610454600480360381019061044f9190613184565b610f0d565b005b610470600480360381019061046b9190613270565b6110ef565b005b34801561047e57600080fd5b5061049960048036038101906104949190613065565b611311565b005b3480156104a757600080fd5b506104c260048036038101906104bd9190613065565b611397565b6040516104cf91906130d3565b60405180910390f35b3480156104e457600080fd5b506104ed6113a9565b6040516104fa919061300d565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190613065565b611437565b005b34801561053857600080fd5b50610553600480360381019061054e91906132e4565b6114bd565b6040516105609190613169565b60405180910390f35b34801561057557600080fd5b5061057e611551565b005b34801561058c57600080fd5b506105956115d9565b6040516105a2919061300d565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd919061333d565b611667565b005b3480156105e057600080fd5b506105e96116ed565b6040516105f691906130d3565b60405180910390f35b34801561060b57600080fd5b50610614611717565b604051610621919061300d565b60405180910390f35b34801561063657600080fd5b5061063f6117a9565b60405161064c91906133e1565b60405180910390f35b34801561066157600080fd5b5061067c6004803603810190610677919061352c565b61180f565b005b34801561068a57600080fd5b506106a560048036038101906106a091906135a1565b61189e565b005b3480156106b357600080fd5b506106bc611a15565b6040516106c99190613169565b60405180910390f35b6106ec60048036038101906106e7919061311a565b611a1b565b005b6107086004803603810190610703919061311a565b611bf1565b005b34801561071657600080fd5b50610731600480360381019061072c9190613682565b611d29565b005b34801561073f57600080fd5b50610748611f0e565b6040516107559190613169565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190613065565b611f14565b604051610792919061300d565b60405180910390f35b3480156107a757600080fd5b506107b0611fd7565b6040516107bd91906133e1565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190613705565b611fea565b6040516107fa9190612f62565b60405180910390f35b34801561080f57600080fd5b5061082a600480360381019061082591906132e4565b61207e565b005b34801561083857600080fd5b50610841612175565b60405161084e9190613169565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108f890613774565b80601f016020809104026020016040519081016040528092919081815260200182805461092490613774565b80156109715780601f1061094657610100808354040283529160200191610971565b820191906000526020600020905b81548152906001019060200180831161095457829003601f168201915b5050505050905090565b60006109868261217b565b6109bc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a02826121da565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a69576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a886122a6565b73ffffffffffffffffffffffffffffffffffffffff1614610aeb57610ab481610aaf6122a6565b611fea565b610aea576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ba76122ae565b6001546000540303905090565b60115481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d8a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c2c57610c278484846122b3565b610d96565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c759291906137a5565b602060405180830381865afa158015610c92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb691906137e3565b8015610d4857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610d069291906137a5565b602060405180830381865afa158015610d23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4791906137e3565b5b610d8957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d8091906130d3565b60405180910390fd5b5b610d958484846122b3565b5b50505050565b610da46122c3565b73ffffffffffffffffffffffffffffffffffffffff16610dc26116ed565b73ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f9061385c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e5e573d6000803e3d6000fd5b5050565b60125481565b600c5481565b600b5481565b610e7c6122c3565b73ffffffffffffffffffffffffffffffffffffffff16610e9a6116ed565b73ffffffffffffffffffffffffffffffffffffffff1614610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee79061385c565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110dd573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f7f57610f7a8484846122cb565b6110e9565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610fc89291906137a5565b602060405180830381865afa158015610fe5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100991906137e3565b801561109b57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110599291906137a5565b602060405180830381865afa158015611076573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109a91906137e3565b5b6110dc57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110d391906130d3565b60405180910390fd5b5b6110e88484846122cb565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461115d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611154906138c8565b60405180910390fd5b600160048111156111715761117061336a565b5b6111796117a9565b600481111561118b5761118a61336a565b5b146111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290613934565b60405180910390fd5b6111d63383836122eb565b611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c906139a0565b60405180910390fd5b600b5483611221610b9d565b61122b91906139ef565b111561126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613a6f565b60405180910390fd5b600d548311156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890613adb565b60405180910390fd5b82600f546112bf9190613afb565b341015611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f890613b89565b60405180910390fd5b61130b8484612349565b50505050565b6113196122c3565b73ffffffffffffffffffffffffffffffffffffffff166113376116ed565b73ffffffffffffffffffffffffffffffffffffffff161461138d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113849061385c565b60405180910390fd5b8060118190555050565b60006113a2826121da565b9050919050565b600980546113b690613774565b80601f01602080910402602001604051908101604052809291908181526020018280546113e290613774565b801561142f5780601f106114045761010080835404028352916020019161142f565b820191906000526020600020905b81548152906001019060200180831161141257829003601f168201915b505050505081565b61143f6122c3565b73ffffffffffffffffffffffffffffffffffffffff1661145d6116ed565b73ffffffffffffffffffffffffffffffffffffffff16146114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa9061385c565b60405180910390fd5b80600b8190555050565b6000806114c983612367565b03611500576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6115596122c3565b73ffffffffffffffffffffffffffffffffffffffff166115776116ed565b73ffffffffffffffffffffffffffffffffffffffff16146115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c49061385c565b60405180910390fd5b6115d76000612371565b565b600a80546115e690613774565b80601f016020809104026020016040519081016040528092919081815260200182805461161290613774565b801561165f5780601f106116345761010080835404028352916020019161165f565b820191906000526020600020905b81548152906001019060200180831161164257829003601f168201915b505050505081565b61166f6122c3565b73ffffffffffffffffffffffffffffffffffffffff1661168d6116ed565b73ffffffffffffffffffffffffffffffffffffffff16146116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da9061385c565b60405180910390fd5b8060128190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461172690613774565b80601f016020809104026020016040519081016040528092919081815260200182805461175290613774565b801561179f5780601f106117745761010080835404028352916020019161179f565b820191906000526020600020905b81548152906001019060200180831161178257829003601f168201915b5050505050905090565b60006011544210156117be576000905061180c565b60115442101580156117de57506107086011546117db91906139ef565b42105b156117ec576001905061180c565b6107086011546117fc91906139ef565b421061180b576002905061180c565b5b90565b6118176122c3565b73ffffffffffffffffffffffffffffffffffffffff166118356116ed565b73ffffffffffffffffffffffffffffffffffffffff161461188b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118829061385c565b60405180910390fd5b806009908161189a9190613d55565b5050565b6118a66122a6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361190a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119176122a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119c46122a6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a099190612f62565b60405180910390a35050565b60105481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a80906138c8565b60405180910390fd5b60026004811115611a9d57611a9c61336a565b5b611aa56117a9565b6004811115611ab757611ab661336a565b5b14611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee90613e73565b60405180910390fd5b600b5481611b03610b9d565b611b0d91906139ef565b1115611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4590613edf565b60405180910390fd5b600d54811115611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613adb565b60405180910390fd5b80601054611ba19190613afb565b341015611be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bda90613b89565b60405180910390fd5b611bed8282612349565b5050565b611bf96122c3565b73ffffffffffffffffffffffffffffffffffffffff16611c176116ed565b73ffffffffffffffffffffffffffffffffffffffff1614611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c649061385c565b60405180910390fd5b600c5481611c79610b9d565b611c8391906139ef565b1115611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb90613a6f565b60405180910390fd5b600b5481611cd0610b9d565b611cda91906139ef565b1115611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1290613a6f565b60405180910390fd5b611d258282612349565b5050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611efa573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d9c57611d9785858585612437565b611f07565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611de59291906137a5565b602060405180830381865afa158015611e02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2691906137e3565b8015611eb857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611e769291906137a5565b602060405180830381865afa158015611e93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb791906137e3565b5b611ef957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611ef091906130d3565b60405180910390fd5b5b611f0685858585612437565b5b5050505050565b600f5481565b6060611f1f8261217b565b611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5590613f4b565b60405180910390fd5b60011515600e60009054906101000a900460ff16151503611fab576009611f84836124aa565b604051602001611f95929190614076565b6040516020818303038152906040529050611fd2565b6009600a604051602001611fc09291906140a5565b60405160208183030381529060405290505b919050565b600860149054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120866122c3565b73ffffffffffffffffffffffffffffffffffffffff166120a46116ed565b73ffffffffffffffffffffffffffffffffffffffff16146120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f19061385c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612169576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121609061413b565b60405180910390fd5b61217281612371565b50565b600d5481565b6000816121866122ae565b11158015612195575060005482105b80156121d3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806121e96122ae565b1161226f5760005481101561226e5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361226c575b60008103612262576004600083600190039350838152602001908152602001600020549050612238565b80925050506122a1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6122be83838361260a565b505050565b600033905090565b6122e683838360405180602001604052806000815250611d29565b505050565b60006123406122f9856129cf565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506129ff565b90509392505050565b612363828260405180602001604052806000815250612a16565b5050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61244284848461260a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124a45761246d84848484612ca5565b6124a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600082036124f1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612605565b600082905060005b6000821461252357808061250c9061415b565b915050600a8261251c91906141d2565b91506124f9565b60008167ffffffffffffffff81111561253f5761253e613401565b5b6040519080825280601f01601f1916602001820160405280156125715781602001600182028036833780820191505090505b5090505b600085146125fe5760018261258a9190614203565b9150600a856125999190614237565b60306125a591906139ef565b60f81b8183815181106125bb576125ba614268565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125f791906141d2565b9450612575565b8093505050505b919050565b6000612615826121da565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461267c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166126d56122a6565b73ffffffffffffffffffffffffffffffffffffffff1614806127045750612703866126fe6122a6565b611fea565b5b8061274157506127126122a6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061277a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061278586612367565b036127bc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127c98686866001612df5565b60006127d483612367565b14612810576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6128d787612367565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361295f576000600185019050600060046000838152602001908152602001600020540361295d57600054811461295c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129c78686866001612dfb565b505050505050565b6000816040516020016129e291906142df565b604051602081830303815290604052805190602001209050919050565b6000612a0e8260125485612e01565b905092915050565b6000805490506000612a2785612367565b03612a5e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612a98576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612aa56000858386612df5565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612b0a60018514612e18565b901b60a042901b612b1a86612367565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612c1e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bce6000878480600101955087612ca5565b612c04576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612b5f578260005414612c1957600080fd5b612c89565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612c1f575b816000819055505050612c9f6000858386612dfb565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ccb6122a6565b8786866040518563ffffffff1660e01b8152600401612ced949392919061434f565b6020604051808303816000875af1925050508015612d2957506040513d601f19601f82011682018060405250810190612d2691906143b0565b60015b612da2573d8060008114612d59576040519150601f19603f3d011682016040523d82523d6000602084013e612d5e565b606091505b506000815103612d9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600082612e0e8584612e22565b1490509392505050565b6000819050919050565b60008082905060005b8451811015612e8c576000858281518110612e4957612e48614268565b5b60200260200101519050808311612e6b57612e648382612e97565b9250612e78565b612e758184612e97565b92505b508080612e849061415b565b915050612e2b565b508091505092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ef781612ec2565b8114612f0257600080fd5b50565b600081359050612f1481612eee565b92915050565b600060208284031215612f3057612f2f612eb8565b5b6000612f3e84828501612f05565b91505092915050565b60008115159050919050565b612f5c81612f47565b82525050565b6000602082019050612f776000830184612f53565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612fb7578082015181840152602081019050612f9c565b60008484015250505050565b6000601f19601f8301169050919050565b6000612fdf82612f7d565b612fe98185612f88565b9350612ff9818560208601612f99565b61300281612fc3565b840191505092915050565b600060208201905081810360008301526130278184612fd4565b905092915050565b6000819050919050565b6130428161302f565b811461304d57600080fd5b50565b60008135905061305f81613039565b92915050565b60006020828403121561307b5761307a612eb8565b5b600061308984828501613050565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130bd82613092565b9050919050565b6130cd816130b2565b82525050565b60006020820190506130e860008301846130c4565b92915050565b6130f7816130b2565b811461310257600080fd5b50565b600081359050613114816130ee565b92915050565b6000806040838503121561313157613130612eb8565b5b600061313f85828601613105565b925050602061315085828601613050565b9150509250929050565b6131638161302f565b82525050565b600060208201905061317e600083018461315a565b92915050565b60008060006060848603121561319d5761319c612eb8565b5b60006131ab86828701613105565b93505060206131bc86828701613105565b92505060406131cd86828701613050565b9150509250925092565b6000819050919050565b6131ea816131d7565b82525050565b600060208201905061320560008301846131e1565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126132305761322f61320b565b5b8235905067ffffffffffffffff81111561324d5761324c613210565b5b60208301915083602082028301111561326957613268613215565b5b9250929050565b6000806000806060858703121561328a57613289612eb8565b5b600061329887828801613105565b94505060206132a987828801613050565b935050604085013567ffffffffffffffff8111156132ca576132c9612ebd565b5b6132d68782880161321a565b925092505092959194509250565b6000602082840312156132fa576132f9612eb8565b5b600061330884828501613105565b91505092915050565b61331a816131d7565b811461332557600080fd5b50565b60008135905061333781613311565b92915050565b60006020828403121561335357613352612eb8565b5b600061336184828501613328565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600581106133aa576133a961336a565b5b50565b60008190506133bb82613399565b919050565b60006133cb826133ad565b9050919050565b6133db816133c0565b82525050565b60006020820190506133f660008301846133d2565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61343982612fc3565b810181811067ffffffffffffffff8211171561345857613457613401565b5b80604052505050565b600061346b612eae565b90506134778282613430565b919050565b600067ffffffffffffffff82111561349757613496613401565b5b6134a082612fc3565b9050602081019050919050565b82818337600083830152505050565b60006134cf6134ca8461347c565b613461565b9050828152602081018484840111156134eb576134ea6133fc565b5b6134f68482856134ad565b509392505050565b600082601f8301126135135761351261320b565b5b81356135238482602086016134bc565b91505092915050565b60006020828403121561354257613541612eb8565b5b600082013567ffffffffffffffff8111156135605761355f612ebd565b5b61356c848285016134fe565b91505092915050565b61357e81612f47565b811461358957600080fd5b50565b60008135905061359b81613575565b92915050565b600080604083850312156135b8576135b7612eb8565b5b60006135c685828601613105565b92505060206135d78582860161358c565b9150509250929050565b600067ffffffffffffffff8211156135fc576135fb613401565b5b61360582612fc3565b9050602081019050919050565b6000613625613620846135e1565b613461565b905082815260208101848484011115613641576136406133fc565b5b61364c8482856134ad565b509392505050565b600082601f8301126136695761366861320b565b5b8135613679848260208601613612565b91505092915050565b6000806000806080858703121561369c5761369b612eb8565b5b60006136aa87828801613105565b94505060206136bb87828801613105565b93505060406136cc87828801613050565b925050606085013567ffffffffffffffff8111156136ed576136ec612ebd565b5b6136f987828801613654565b91505092959194509250565b6000806040838503121561371c5761371b612eb8565b5b600061372a85828601613105565b925050602061373b85828601613105565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061378c57607f821691505b60208210810361379f5761379e613745565b5b50919050565b60006040820190506137ba60008301856130c4565b6137c760208301846130c4565b9392505050565b6000815190506137dd81613575565b92915050565b6000602082840312156137f9576137f8612eb8565b5b6000613807848285016137ce565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613846602083612f88565b915061385182613810565b602082019050919050565b6000602082019050818103600083015261387581613839565b9050919050565b7f5265656e7472616e6379204775617264206973207761746368696e6700000000600082015250565b60006138b2601c83612f88565b91506138bd8261387c565b602082019050919050565b600060208201905081810360008301526138e1816138a5565b9050919050565b7f57686974656c697374204d696e74206973206e6f742061637469766174656400600082015250565b600061391e601f83612f88565b9150613929826138e8565b602082019050919050565b6000602082019050818103600083015261394d81613911565b9050919050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b600061398a600f83612f88565b915061399582613954565b602082019050919050565b600060208201905081810360008301526139b98161397d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139fa8261302f565b9150613a058361302f565b9250828201905080821115613a1d57613a1c6139c0565b5b92915050565b7f4e46542063616e2774206265206d696e74656420616e796d6f72650000000000600082015250565b6000613a59601b83612f88565b9150613a6482613a23565b602082019050919050565b60006020820190508181036000830152613a8881613a4c565b9050919050565b7f4578636565646564204d61782070657220545800000000000000000000000000600082015250565b6000613ac5601383612f88565b9150613ad082613a8f565b602082019050919050565b60006020820190508181036000830152613af481613ab8565b9050919050565b6000613b068261302f565b9150613b118361302f565b9250828202613b1f8161302f565b91508282048414831517613b3657613b356139c0565b5b5092915050565b7f4e6f7420656e6f756768742066756e6473000000000000000000000000000000600082015250565b6000613b73601183612f88565b9150613b7e82613b3d565b602082019050919050565b60006020820190508181036000830152613ba281613b66565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613c0b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613bce565b613c158683613bce565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613c52613c4d613c488461302f565b613c2d565b61302f565b9050919050565b6000819050919050565b613c6c83613c37565b613c80613c7882613c59565b848454613bdb565b825550505050565b600090565b613c95613c88565b613ca0818484613c63565b505050565b5b81811015613cc457613cb9600082613c8d565b600181019050613ca6565b5050565b601f821115613d0957613cda81613ba9565b613ce384613bbe565b81016020851015613cf2578190505b613d06613cfe85613bbe565b830182613ca5565b50505b505050565b600082821c905092915050565b6000613d2c60001984600802613d0e565b1980831691505092915050565b6000613d458383613d1b565b9150826002028217905092915050565b613d5e82612f7d565b67ffffffffffffffff811115613d7757613d76613401565b5b613d818254613774565b613d8c828285613cc8565b600060209050601f831160018114613dbf5760008415613dad578287015190505b613db78582613d39565b865550613e1f565b601f198416613dcd86613ba9565b60005b82811015613df557848901518255600182019150602085019450602081019050613dd0565b86831015613e125784890151613e0e601f891682613d1b565b8355505b6001600288020188555050505b505050505050565b7f5075626c6963204d696e74206973206e6f742061637469766174656400000000600082015250565b6000613e5d601c83612f88565b9150613e6882613e27565b602082019050919050565b60006020820190508181036000830152613e8c81613e50565b9050919050565b7f4e46542063616e2774206265206d696e7420616e796d6f726500000000000000600082015250565b6000613ec9601983612f88565b9150613ed482613e93565b602082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000613f35601f83612f88565b9150613f4082613eff565b602082019050919050565b60006020820190508181036000830152613f6481613f28565b9050919050565b600081905092915050565b60008154613f8381613774565b613f8d8186613f6b565b94506001821660008114613fa85760018114613fbd57613ff0565b60ff1983168652811515820286019350613ff0565b613fc685613ba9565b60005b83811015613fe857815481890152600182019150602081019050613fc9565b838801955050505b50505092915050565b600061400482612f7d565b61400e8185613f6b565b935061401e818560208601612f99565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614060600583613f6b565b915061406b8261402a565b600582019050919050565b60006140828285613f76565b915061408e8284613ff9565b915061409982614053565b91508190509392505050565b60006140b18285613f76565b91506140bd8284613f76565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614125602683612f88565b9150614130826140c9565b604082019050919050565b6000602082019050818103600083015261415481614118565b9050919050565b60006141668261302f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614198576141976139c0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141dd8261302f565b91506141e88361302f565b9250826141f8576141f76141a3565b5b828204905092915050565b600061420e8261302f565b91506142198361302f565b9250828203905081811115614231576142306139c0565b5b92915050565b60006142428261302f565b915061424d8361302f565b92508261425d5761425c6141a3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160601b9050919050565b60006142af82614297565b9050919050565b60006142c1826142a4565b9050919050565b6142d96142d4826130b2565b6142b6565b82525050565b60006142eb82846142c8565b60148201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000614321826142fa565b61432b8185614305565b935061433b818560208601612f99565b61434481612fc3565b840191505092915050565b600060808201905061436460008301876130c4565b61437160208301866130c4565b61437e604083018561315a565b81810360608301526143908184614316565b905095945050505050565b6000815190506143aa81612eee565b92915050565b6000602082840312156143c6576143c5612eb8565b5b60006143d48482850161439b565b9150509291505056fea2646970667358221220ad74ff735df5f07e070b59e138c97159538acbf2d3f3017b9e685513856b883964736f6c63430008110033000000000000000000000000000000000000000000000000000000000000004019c3e2a0b40021ce3c87b6228baeff303374eb9bdfc9cc08b9c3385f7977c19d0000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5154564d487959566f6a58645a4164576863484c414e4e7a623248663145786445725771366672695a4448530000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806370a0823111610123578063a69f6750116100ab578063c87b56dd1161006f578063c87b56dd1461075e578063e25fe1751461079b578063e985e9c5146107c6578063f2fde38b14610803578063f3b2db3f1461082c5761021a565b8063a69f6750146106a7578063ac5ae11b146106d2578063add5a4fa146106ee578063b88d4fde1461070a578063bfe2a08a146107335761021a565b80638da5cb5b116100f25780638da5cb5b146105d457806395d89b41146105ff5780639e5288a01461062a578063a0bcfc7f14610655578063a22cb4651461067e5761021a565b806370a082311461052c578063715018a61461056957806372250380146105805780637cb64759146105ab5761021a565b806332c7189e116101a65780634b11faaf116101755780634b11faaf14610456578063525f8a5c146104725780636352211e1461049b5780636c0360eb146104d85780636f8b44b0146105035761021a565b806332c7189e146103c057806332cb6b0c146103eb57806340d0b4a91461041657806342842e0e1461042d5761021a565b806318160ddd116101ed57806318160ddd146102ed5780631cbaee2d1461031857806323b872dd146103435780632e1a7d4d1461036c5780632eb4a7ab146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612f1a565b610857565b6040516102539190612f62565b60405180910390f35b34801561026857600080fd5b506102716108e9565b60405161027e919061300d565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613065565b61097b565b6040516102bb91906130d3565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061311a565b6109f7565b005b3480156102f957600080fd5b50610302610b9d565b60405161030f9190613169565b60405180910390f35b34801561032457600080fd5b5061032d610bb4565b60405161033a9190613169565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190613184565b610bba565b005b34801561037857600080fd5b50610393600480360381019061038e9190613065565b610d9c565b005b3480156103a157600080fd5b506103aa610e62565b6040516103b791906131f0565b60405180910390f35b3480156103cc57600080fd5b506103d5610e68565b6040516103e29190613169565b60405180910390f35b3480156103f757600080fd5b50610400610e6e565b60405161040d9190613169565b60405180910390f35b34801561042257600080fd5b5061042b610e74565b005b34801561043957600080fd5b50610454600480360381019061044f9190613184565b610f0d565b005b610470600480360381019061046b9190613270565b6110ef565b005b34801561047e57600080fd5b5061049960048036038101906104949190613065565b611311565b005b3480156104a757600080fd5b506104c260048036038101906104bd9190613065565b611397565b6040516104cf91906130d3565b60405180910390f35b3480156104e457600080fd5b506104ed6113a9565b6040516104fa919061300d565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190613065565b611437565b005b34801561053857600080fd5b50610553600480360381019061054e91906132e4565b6114bd565b6040516105609190613169565b60405180910390f35b34801561057557600080fd5b5061057e611551565b005b34801561058c57600080fd5b506105956115d9565b6040516105a2919061300d565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd919061333d565b611667565b005b3480156105e057600080fd5b506105e96116ed565b6040516105f691906130d3565b60405180910390f35b34801561060b57600080fd5b50610614611717565b604051610621919061300d565b60405180910390f35b34801561063657600080fd5b5061063f6117a9565b60405161064c91906133e1565b60405180910390f35b34801561066157600080fd5b5061067c6004803603810190610677919061352c565b61180f565b005b34801561068a57600080fd5b506106a560048036038101906106a091906135a1565b61189e565b005b3480156106b357600080fd5b506106bc611a15565b6040516106c99190613169565b60405180910390f35b6106ec60048036038101906106e7919061311a565b611a1b565b005b6107086004803603810190610703919061311a565b611bf1565b005b34801561071657600080fd5b50610731600480360381019061072c9190613682565b611d29565b005b34801561073f57600080fd5b50610748611f0e565b6040516107559190613169565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190613065565b611f14565b604051610792919061300d565b60405180910390f35b3480156107a757600080fd5b506107b0611fd7565b6040516107bd91906133e1565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190613705565b611fea565b6040516107fa9190612f62565b60405180910390f35b34801561080f57600080fd5b5061082a600480360381019061082591906132e4565b61207e565b005b34801561083857600080fd5b50610841612175565b60405161084e9190613169565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108f890613774565b80601f016020809104026020016040519081016040528092919081815260200182805461092490613774565b80156109715780601f1061094657610100808354040283529160200191610971565b820191906000526020600020905b81548152906001019060200180831161095457829003601f168201915b5050505050905090565b60006109868261217b565b6109bc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a02826121da565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a69576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a886122a6565b73ffffffffffffffffffffffffffffffffffffffff1614610aeb57610ab481610aaf6122a6565b611fea565b610aea576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ba76122ae565b6001546000540303905090565b60115481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d8a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c2c57610c278484846122b3565b610d96565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c759291906137a5565b602060405180830381865afa158015610c92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb691906137e3565b8015610d4857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610d069291906137a5565b602060405180830381865afa158015610d23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4791906137e3565b5b610d8957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d8091906130d3565b60405180910390fd5b5b610d958484846122b3565b5b50505050565b610da46122c3565b73ffffffffffffffffffffffffffffffffffffffff16610dc26116ed565b73ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f9061385c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e5e573d6000803e3d6000fd5b5050565b60125481565b600c5481565b600b5481565b610e7c6122c3565b73ffffffffffffffffffffffffffffffffffffffff16610e9a6116ed565b73ffffffffffffffffffffffffffffffffffffffff1614610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee79061385c565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110dd573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f7f57610f7a8484846122cb565b6110e9565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610fc89291906137a5565b602060405180830381865afa158015610fe5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100991906137e3565b801561109b57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110599291906137a5565b602060405180830381865afa158015611076573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109a91906137e3565b5b6110dc57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110d391906130d3565b60405180910390fd5b5b6110e88484846122cb565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461115d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611154906138c8565b60405180910390fd5b600160048111156111715761117061336a565b5b6111796117a9565b600481111561118b5761118a61336a565b5b146111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290613934565b60405180910390fd5b6111d63383836122eb565b611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c906139a0565b60405180910390fd5b600b5483611221610b9d565b61122b91906139ef565b111561126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613a6f565b60405180910390fd5b600d548311156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890613adb565b60405180910390fd5b82600f546112bf9190613afb565b341015611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f890613b89565b60405180910390fd5b61130b8484612349565b50505050565b6113196122c3565b73ffffffffffffffffffffffffffffffffffffffff166113376116ed565b73ffffffffffffffffffffffffffffffffffffffff161461138d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113849061385c565b60405180910390fd5b8060118190555050565b60006113a2826121da565b9050919050565b600980546113b690613774565b80601f01602080910402602001604051908101604052809291908181526020018280546113e290613774565b801561142f5780601f106114045761010080835404028352916020019161142f565b820191906000526020600020905b81548152906001019060200180831161141257829003601f168201915b505050505081565b61143f6122c3565b73ffffffffffffffffffffffffffffffffffffffff1661145d6116ed565b73ffffffffffffffffffffffffffffffffffffffff16146114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa9061385c565b60405180910390fd5b80600b8190555050565b6000806114c983612367565b03611500576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6115596122c3565b73ffffffffffffffffffffffffffffffffffffffff166115776116ed565b73ffffffffffffffffffffffffffffffffffffffff16146115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c49061385c565b60405180910390fd5b6115d76000612371565b565b600a80546115e690613774565b80601f016020809104026020016040519081016040528092919081815260200182805461161290613774565b801561165f5780601f106116345761010080835404028352916020019161165f565b820191906000526020600020905b81548152906001019060200180831161164257829003601f168201915b505050505081565b61166f6122c3565b73ffffffffffffffffffffffffffffffffffffffff1661168d6116ed565b73ffffffffffffffffffffffffffffffffffffffff16146116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da9061385c565b60405180910390fd5b8060128190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461172690613774565b80601f016020809104026020016040519081016040528092919081815260200182805461175290613774565b801561179f5780601f106117745761010080835404028352916020019161179f565b820191906000526020600020905b81548152906001019060200180831161178257829003601f168201915b5050505050905090565b60006011544210156117be576000905061180c565b60115442101580156117de57506107086011546117db91906139ef565b42105b156117ec576001905061180c565b6107086011546117fc91906139ef565b421061180b576002905061180c565b5b90565b6118176122c3565b73ffffffffffffffffffffffffffffffffffffffff166118356116ed565b73ffffffffffffffffffffffffffffffffffffffff161461188b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118829061385c565b60405180910390fd5b806009908161189a9190613d55565b5050565b6118a66122a6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361190a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119176122a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119c46122a6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a099190612f62565b60405180910390a35050565b60105481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a80906138c8565b60405180910390fd5b60026004811115611a9d57611a9c61336a565b5b611aa56117a9565b6004811115611ab757611ab661336a565b5b14611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee90613e73565b60405180910390fd5b600b5481611b03610b9d565b611b0d91906139ef565b1115611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4590613edf565b60405180910390fd5b600d54811115611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613adb565b60405180910390fd5b80601054611ba19190613afb565b341015611be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bda90613b89565b60405180910390fd5b611bed8282612349565b5050565b611bf96122c3565b73ffffffffffffffffffffffffffffffffffffffff16611c176116ed565b73ffffffffffffffffffffffffffffffffffffffff1614611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c649061385c565b60405180910390fd5b600c5481611c79610b9d565b611c8391906139ef565b1115611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb90613a6f565b60405180910390fd5b600b5481611cd0610b9d565b611cda91906139ef565b1115611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1290613a6f565b60405180910390fd5b611d258282612349565b5050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611efa573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d9c57611d9785858585612437565b611f07565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611de59291906137a5565b602060405180830381865afa158015611e02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2691906137e3565b8015611eb857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611e769291906137a5565b602060405180830381865afa158015611e93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb791906137e3565b5b611ef957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611ef091906130d3565b60405180910390fd5b5b611f0685858585612437565b5b5050505050565b600f5481565b6060611f1f8261217b565b611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5590613f4b565b60405180910390fd5b60011515600e60009054906101000a900460ff16151503611fab576009611f84836124aa565b604051602001611f95929190614076565b6040516020818303038152906040529050611fd2565b6009600a604051602001611fc09291906140a5565b60405160208183030381529060405290505b919050565b600860149054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120866122c3565b73ffffffffffffffffffffffffffffffffffffffff166120a46116ed565b73ffffffffffffffffffffffffffffffffffffffff16146120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f19061385c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612169576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121609061413b565b60405180910390fd5b61217281612371565b50565b600d5481565b6000816121866122ae565b11158015612195575060005482105b80156121d3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806121e96122ae565b1161226f5760005481101561226e5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361226c575b60008103612262576004600083600190039350838152602001908152602001600020549050612238565b80925050506122a1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6122be83838361260a565b505050565b600033905090565b6122e683838360405180602001604052806000815250611d29565b505050565b60006123406122f9856129cf565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506129ff565b90509392505050565b612363828260405180602001604052806000815250612a16565b5050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61244284848461260a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124a45761246d84848484612ca5565b6124a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600082036124f1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612605565b600082905060005b6000821461252357808061250c9061415b565b915050600a8261251c91906141d2565b91506124f9565b60008167ffffffffffffffff81111561253f5761253e613401565b5b6040519080825280601f01601f1916602001820160405280156125715781602001600182028036833780820191505090505b5090505b600085146125fe5760018261258a9190614203565b9150600a856125999190614237565b60306125a591906139ef565b60f81b8183815181106125bb576125ba614268565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125f791906141d2565b9450612575565b8093505050505b919050565b6000612615826121da565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461267c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166126d56122a6565b73ffffffffffffffffffffffffffffffffffffffff1614806127045750612703866126fe6122a6565b611fea565b5b8061274157506127126122a6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061277a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061278586612367565b036127bc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127c98686866001612df5565b60006127d483612367565b14612810576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6128d787612367565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361295f576000600185019050600060046000838152602001908152602001600020540361295d57600054811461295c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129c78686866001612dfb565b505050505050565b6000816040516020016129e291906142df565b604051602081830303815290604052805190602001209050919050565b6000612a0e8260125485612e01565b905092915050565b6000805490506000612a2785612367565b03612a5e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612a98576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612aa56000858386612df5565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612b0a60018514612e18565b901b60a042901b612b1a86612367565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612c1e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bce6000878480600101955087612ca5565b612c04576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612b5f578260005414612c1957600080fd5b612c89565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612c1f575b816000819055505050612c9f6000858386612dfb565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ccb6122a6565b8786866040518563ffffffff1660e01b8152600401612ced949392919061434f565b6020604051808303816000875af1925050508015612d2957506040513d601f19601f82011682018060405250810190612d2691906143b0565b60015b612da2573d8060008114612d59576040519150601f19603f3d011682016040523d82523d6000602084013e612d5e565b606091505b506000815103612d9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600082612e0e8584612e22565b1490509392505050565b6000819050919050565b60008082905060005b8451811015612e8c576000858281518110612e4957612e48614268565b5b60200260200101519050808311612e6b57612e648382612e97565b9250612e78565b612e758184612e97565b92505b508080612e849061415b565b915050612e2b565b508091505092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ef781612ec2565b8114612f0257600080fd5b50565b600081359050612f1481612eee565b92915050565b600060208284031215612f3057612f2f612eb8565b5b6000612f3e84828501612f05565b91505092915050565b60008115159050919050565b612f5c81612f47565b82525050565b6000602082019050612f776000830184612f53565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612fb7578082015181840152602081019050612f9c565b60008484015250505050565b6000601f19601f8301169050919050565b6000612fdf82612f7d565b612fe98185612f88565b9350612ff9818560208601612f99565b61300281612fc3565b840191505092915050565b600060208201905081810360008301526130278184612fd4565b905092915050565b6000819050919050565b6130428161302f565b811461304d57600080fd5b50565b60008135905061305f81613039565b92915050565b60006020828403121561307b5761307a612eb8565b5b600061308984828501613050565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130bd82613092565b9050919050565b6130cd816130b2565b82525050565b60006020820190506130e860008301846130c4565b92915050565b6130f7816130b2565b811461310257600080fd5b50565b600081359050613114816130ee565b92915050565b6000806040838503121561313157613130612eb8565b5b600061313f85828601613105565b925050602061315085828601613050565b9150509250929050565b6131638161302f565b82525050565b600060208201905061317e600083018461315a565b92915050565b60008060006060848603121561319d5761319c612eb8565b5b60006131ab86828701613105565b93505060206131bc86828701613105565b92505060406131cd86828701613050565b9150509250925092565b6000819050919050565b6131ea816131d7565b82525050565b600060208201905061320560008301846131e1565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126132305761322f61320b565b5b8235905067ffffffffffffffff81111561324d5761324c613210565b5b60208301915083602082028301111561326957613268613215565b5b9250929050565b6000806000806060858703121561328a57613289612eb8565b5b600061329887828801613105565b94505060206132a987828801613050565b935050604085013567ffffffffffffffff8111156132ca576132c9612ebd565b5b6132d68782880161321a565b925092505092959194509250565b6000602082840312156132fa576132f9612eb8565b5b600061330884828501613105565b91505092915050565b61331a816131d7565b811461332557600080fd5b50565b60008135905061333781613311565b92915050565b60006020828403121561335357613352612eb8565b5b600061336184828501613328565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600581106133aa576133a961336a565b5b50565b60008190506133bb82613399565b919050565b60006133cb826133ad565b9050919050565b6133db816133c0565b82525050565b60006020820190506133f660008301846133d2565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61343982612fc3565b810181811067ffffffffffffffff8211171561345857613457613401565b5b80604052505050565b600061346b612eae565b90506134778282613430565b919050565b600067ffffffffffffffff82111561349757613496613401565b5b6134a082612fc3565b9050602081019050919050565b82818337600083830152505050565b60006134cf6134ca8461347c565b613461565b9050828152602081018484840111156134eb576134ea6133fc565b5b6134f68482856134ad565b509392505050565b600082601f8301126135135761351261320b565b5b81356135238482602086016134bc565b91505092915050565b60006020828403121561354257613541612eb8565b5b600082013567ffffffffffffffff8111156135605761355f612ebd565b5b61356c848285016134fe565b91505092915050565b61357e81612f47565b811461358957600080fd5b50565b60008135905061359b81613575565b92915050565b600080604083850312156135b8576135b7612eb8565b5b60006135c685828601613105565b92505060206135d78582860161358c565b9150509250929050565b600067ffffffffffffffff8211156135fc576135fb613401565b5b61360582612fc3565b9050602081019050919050565b6000613625613620846135e1565b613461565b905082815260208101848484011115613641576136406133fc565b5b61364c8482856134ad565b509392505050565b600082601f8301126136695761366861320b565b5b8135613679848260208601613612565b91505092915050565b6000806000806080858703121561369c5761369b612eb8565b5b60006136aa87828801613105565b94505060206136bb87828801613105565b93505060406136cc87828801613050565b925050606085013567ffffffffffffffff8111156136ed576136ec612ebd565b5b6136f987828801613654565b91505092959194509250565b6000806040838503121561371c5761371b612eb8565b5b600061372a85828601613105565b925050602061373b85828601613105565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061378c57607f821691505b60208210810361379f5761379e613745565b5b50919050565b60006040820190506137ba60008301856130c4565b6137c760208301846130c4565b9392505050565b6000815190506137dd81613575565b92915050565b6000602082840312156137f9576137f8612eb8565b5b6000613807848285016137ce565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613846602083612f88565b915061385182613810565b602082019050919050565b6000602082019050818103600083015261387581613839565b9050919050565b7f5265656e7472616e6379204775617264206973207761746368696e6700000000600082015250565b60006138b2601c83612f88565b91506138bd8261387c565b602082019050919050565b600060208201905081810360008301526138e1816138a5565b9050919050565b7f57686974656c697374204d696e74206973206e6f742061637469766174656400600082015250565b600061391e601f83612f88565b9150613929826138e8565b602082019050919050565b6000602082019050818103600083015261394d81613911565b9050919050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b600061398a600f83612f88565b915061399582613954565b602082019050919050565b600060208201905081810360008301526139b98161397d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139fa8261302f565b9150613a058361302f565b9250828201905080821115613a1d57613a1c6139c0565b5b92915050565b7f4e46542063616e2774206265206d696e74656420616e796d6f72650000000000600082015250565b6000613a59601b83612f88565b9150613a6482613a23565b602082019050919050565b60006020820190508181036000830152613a8881613a4c565b9050919050565b7f4578636565646564204d61782070657220545800000000000000000000000000600082015250565b6000613ac5601383612f88565b9150613ad082613a8f565b602082019050919050565b60006020820190508181036000830152613af481613ab8565b9050919050565b6000613b068261302f565b9150613b118361302f565b9250828202613b1f8161302f565b91508282048414831517613b3657613b356139c0565b5b5092915050565b7f4e6f7420656e6f756768742066756e6473000000000000000000000000000000600082015250565b6000613b73601183612f88565b9150613b7e82613b3d565b602082019050919050565b60006020820190508181036000830152613ba281613b66565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613c0b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613bce565b613c158683613bce565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613c52613c4d613c488461302f565b613c2d565b61302f565b9050919050565b6000819050919050565b613c6c83613c37565b613c80613c7882613c59565b848454613bdb565b825550505050565b600090565b613c95613c88565b613ca0818484613c63565b505050565b5b81811015613cc457613cb9600082613c8d565b600181019050613ca6565b5050565b601f821115613d0957613cda81613ba9565b613ce384613bbe565b81016020851015613cf2578190505b613d06613cfe85613bbe565b830182613ca5565b50505b505050565b600082821c905092915050565b6000613d2c60001984600802613d0e565b1980831691505092915050565b6000613d458383613d1b565b9150826002028217905092915050565b613d5e82612f7d565b67ffffffffffffffff811115613d7757613d76613401565b5b613d818254613774565b613d8c828285613cc8565b600060209050601f831160018114613dbf5760008415613dad578287015190505b613db78582613d39565b865550613e1f565b601f198416613dcd86613ba9565b60005b82811015613df557848901518255600182019150602085019450602081019050613dd0565b86831015613e125784890151613e0e601f891682613d1b565b8355505b6001600288020188555050505b505050505050565b7f5075626c6963204d696e74206973206e6f742061637469766174656400000000600082015250565b6000613e5d601c83612f88565b9150613e6882613e27565b602082019050919050565b60006020820190508181036000830152613e8c81613e50565b9050919050565b7f4e46542063616e2774206265206d696e7420616e796d6f726500000000000000600082015250565b6000613ec9601983612f88565b9150613ed482613e93565b602082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000613f35601f83612f88565b9150613f4082613eff565b602082019050919050565b60006020820190508181036000830152613f6481613f28565b9050919050565b600081905092915050565b60008154613f8381613774565b613f8d8186613f6b565b94506001821660008114613fa85760018114613fbd57613ff0565b60ff1983168652811515820286019350613ff0565b613fc685613ba9565b60005b83811015613fe857815481890152600182019150602081019050613fc9565b838801955050505b50505092915050565b600061400482612f7d565b61400e8185613f6b565b935061401e818560208601612f99565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614060600583613f6b565b915061406b8261402a565b600582019050919050565b60006140828285613f76565b915061408e8284613ff9565b915061409982614053565b91508190509392505050565b60006140b18285613f76565b91506140bd8284613f76565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614125602683612f88565b9150614130826140c9565b604082019050919050565b6000602082019050818103600083015261415481614118565b9050919050565b60006141668261302f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614198576141976139c0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141dd8261302f565b91506141e88361302f565b9250826141f8576141f76141a3565b5b828204905092915050565b600061420e8261302f565b91506142198361302f565b9250828203905081811115614231576142306139c0565b5b92915050565b60006142428261302f565b915061424d8361302f565b92508261425d5761425c6141a3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160601b9050919050565b60006142af82614297565b9050919050565b60006142c1826142a4565b9050919050565b6142d96142d4826130b2565b6142b6565b82525050565b60006142eb82846142c8565b60148201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000614321826142fa565b61432b8185614305565b935061433b818560208601612f99565b61434481612fc3565b840191505092915050565b600060808201905061436460008301876130c4565b61437160208301866130c4565b61437e604083018561315a565b81810360608301526143908184614316565b905095945050505050565b6000815190506143aa81612eee565b92915050565b6000602082840312156143c6576143c5612eb8565b5b60006143d48482850161439b565b9150509291505056fea2646970667358221220ad74ff735df5f07e070b59e138c97159538acbf2d3f3017b9e685513856b883964736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000004019c3e2a0b40021ce3c87b6228baeff303374eb9bdfc9cc08b9c3385f7977c19d0000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5154564d487959566f6a58645a4164576863484c414e4e7a623248663145786445725771366672695a4448530000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://QmQTVMHyYVojXdZAdWhcHLANNzb2Hf1ExdErWq6friZDHS
Arg [1] : _merkleRoot (bytes32): 0x19c3e2a0b40021ce3c87b6228baeff303374eb9bdfc9cc08b9c3385f7977c19d

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 19c3e2a0b40021ce3c87b6228baeff303374eb9bdfc9cc08b9c3385f7977c19d
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [3] : 697066733a2f2f516d5154564d487959566f6a58645a4164576863484c414e4e
Arg [4] : 7a623248663145786445725771366672695a4448530000000000000000000000


Deployed Bytecode Sourcemap

51491:4780:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17635:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22658:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24726:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24186:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16689:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52032:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55579:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56165:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52079:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51841:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51805:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54514:83;;;;;;;;;;;;;:::i;:::-;;55750:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53145:548;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54269:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22447:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51740:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54398:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18314:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47916:103;;;;;;;;;;;;;:::i;:::-;;51768:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55006:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47265:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22827:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52412:420;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54155:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25002:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51986:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53701:446;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52840:297;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55929:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51945:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54605:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51715:16;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25381:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48174:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51874:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17635:615;17720:4;18035:10;18020:25;;:11;:25;;;;:102;;;;18112:10;18097:25;;:11;:25;;;;18020:102;:179;;;;18189:10;18174:25;;:11;:25;;;;18020:179;18000:199;;17635:615;;;:::o;22658:100::-;22712:13;22745:5;22738:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22658:100;:::o;24726:204::-;24794:7;24819:16;24827:7;24819;:16::i;:::-;24814:64;;24844:34;;;;;;;;;;;;;;24814:64;24898:15;:24;24914:7;24898:24;;;;;;;;;;;;;;;;;;;;;24891:31;;24726:204;;;:::o;24186:474::-;24259:13;24291:27;24310:7;24291:18;:27::i;:::-;24259:61;;24341:5;24335:11;;:2;:11;;;24331:48;;24355:24;;;;;;;;;;;;;;24331:48;24419:5;24396:28;;:19;:17;:19::i;:::-;:28;;;24392:175;;24444:44;24461:5;24468:19;:17;:19::i;:::-;24444:16;:44::i;:::-;24439:128;;24516:35;;;;;;;;;;;;;;24439:128;24392:175;24606:2;24579:15;:24;24595:7;24579:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;24644:7;24640:2;24624:28;;24633:5;24624:28;;;;;;;;;;;;24248:412;24186:474;;:::o;16689:315::-;16742:7;16970:15;:13;:15::i;:::-;16955:12;;16939:13;;:28;:46;16932:53;;16689:315;:::o;52032:38::-;;;;:::o;55579:163::-;55680:4;3592:1;2406:42;3546:43;;;:47;3542:699;;;3833:10;3825:18;;:4;:18;;;3821:85;;55697:37:::1;55716:4;55722:2;55726:7;55697:18;:37::i;:::-;3884:7:::0;;3821:85;2406:42;3966:40;;;4015:4;4022:10;3966:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2406:42;4062:40;;;4111:4;4118;4062:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3966:157;3920:310;;4203:10;4184:30;;;;;;;;;;;:::i;:::-;;;;;;;;3920:310;3542:699;55697:37:::1;55716:4;55722:2;55726:7;55697:18;:37::i;:::-;55579:163:::0;;;;;:::o;56165:103::-;47496:12;:10;:12::i;:::-;47485:23;;:7;:5;:7::i;:::-;:23;;;47477:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56232:10:::1;56224:28;;:36;56253:6;56224:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;56165:103:::0;:::o;52079:25::-;;;;:::o;51841:26::-;;;;:::o;51805:29::-;;;;:::o;54514:83::-;47496:12;:10;:12::i;:::-;47485:23;;:7;:5;:7::i;:::-;:23;;;47477:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54585:4:::1;54572:10;;:17;;;;;;;;;;;;;;;;;;54514:83::o:0;55750:171::-;55855:4;3592:1;2406:42;3546:43;;;:47;3542:699;;;3833:10;3825:18;;:4;:18;;;3821:85;;55872:41:::1;55895:4;55901:2;55905:7;55872:22;:41::i;:::-;3884:7:::0;;3821:85;2406:42;3966:40;;;4015:4;4022:10;3966:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2406:42;4062:40;;;4111:4;4118;4062:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3966:157;3920:310;;4203:10;4184:30;;;;;;;;;;;:::i;:::-;;;;;;;;3920:310;3542:699;55872:41:::1;55895:4;55901:2;55905:7;55872:22;:41::i;:::-;55750:171:::0;;;;;:::o;53145:548::-;52341:10;52328:23;;:9;:23;;;52320:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;53292:18:::1;53279:31;;;;;;;;:::i;:::-;;:9;:7;:9::i;:::-;:31;;;;;;;;:::i;:::-;;;53271:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;53365:33;53379:10;53391:6;;53365:13;:33::i;:::-;53357:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;53466:10;;53453:9;53437:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;53429:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;53540:6;;53527:9;:19;;53519:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;53613:9;53602:8;;:20;;;;:::i;:::-;53589:9;:33;;53581:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53655:30;53665:8;53675:9;53655;:30::i;:::-;53145:548:::0;;;;:::o;54269:121::-;47496:12;:10;:12::i;:::-;47485:23;;:7;:5;:7::i;:::-;:23;;;47477:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54365:17:::1;54349:13;:33;;;;54269:121:::0;:::o;22447:144::-;22511:7;22554:27;22573:7;22554:18;:27::i;:::-;22531:52;;22447:144;;;:::o;51740:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54398:108::-;47496:12;:10;:12::i;:::-;47485:23;;:7;:5;:7::i;:::-;:23;;;47477:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54484:14:::1;54471:10;:27;;;;54398:108:::0;:::o;18314:234::-;18378:7;18430:1;18402:24;18420:5;18402:17;:24::i;:::-;:29;18398:70;;18440:28;;;;;;;;;;;;;;18398:70;13659:13;18486:18;:25;18505:5;18486:25;;;;;;;;;;;;;;;;:54;18479:61;;18314:234;;;:::o;47916:103::-;47496:12;:10;:12::i;:::-;47485:23;;:7;:5;:7::i;:::-;:23;;;47477:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47981:30:::1;48008:1;47981:18;:30::i;:::-;47916:103::o:0;51768:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55006:106::-;47496:12;:10;:12::i;:::-;47485:23;;:7;:5;:7::i;:::-;:23;;;47477:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55093:11:::1;55080:10;:24;;;;55006:106:::0;:::o;47265:87::-;47311:7;47338:6;;;;;;;;;;;47331:13;;47265:87;:::o;22827:104::-;22883:13;22916:7;22909:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22827:104;:::o;52412:420::-;52451:15;52500:13;;52482:15;:31;52479:82;;;52537:12;52530:19;;;;52479:82;52593:13;;52574:15;:32;;:88;;;;;52652:10;52636:13;;:26;;;;:::i;:::-;52618:15;:44;52574:88;52571:145;;;52686:18;52679:25;;;;52571:145;52764:10;52748:13;;:26;;;;:::i;:::-;52729:15;:45;52726:99;;52798:15;52791:22;;;;52726:99;52412:420;;:::o;54155:106::-;47496:12;:10;:12::i;:::-;47485:23;;:7;:5;:7::i;:::-;:23;;;47477:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54242:11:::1;54232:7;:21;;;;;;:::i;:::-;;54155:106:::0;:::o;25002:308::-;25113:19;:17;:19::i;:::-;25101:31;;:8;:31;;;25097:61;;25141:17;;;;;;;;;;;;;;25097:61;25223:8;25171:18;:39;25190:19;:17;:19::i;:::-;25171:39;;;;;;;;;;;;;;;:49;25211:8;25171:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;25283:8;25247:55;;25262:19;:17;:19::i;:::-;25247:55;;;25293:8;25247:55;;;;;;:::i;:::-;;;;;;;;25002:308;;:::o;51986:37::-;;;;:::o;53701:446::-;52341:10;52328:23;;:9;:23;;;52320:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;53822:15:::1;53809:28;;;;;;;;:::i;:::-;;:9;:7;:9::i;:::-;:28;;;;;;;;:::i;:::-;;;53801:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;53918:10;;53905:9;53889:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;53881:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;53990:6;;53977:9;:19;;53969:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;54067:9;54052:12;;:24;;;;:::i;:::-;54039:9;:37;;54031:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;54109:30;54119:8;54129:9;54109;:30::i;:::-;53701:446:::0;;:::o;52840:297::-;47496:12;:10;:12::i;:::-;47485:23;;:7;:5;:7::i;:::-;:23;;;47477:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52962:8:::1;;52949:9;52933:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:37;;52925:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;53050:10;;53037:9;53021:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;53013:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;53103:26;53113:3;53119:9;53103;:26::i;:::-;52840:297:::0;;:::o;55929:228::-;56080:4;3592:1;2406:42;3546:43;;;:47;3542:699;;;3833:10;3825:18;;:4;:18;;;3821:85;;56102:47:::1;56125:4;56131:2;56135:7;56144:4;56102:22;:47::i;:::-;3884:7:::0;;3821:85;2406:42;3966:40;;;4015:4;4022:10;3966:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2406:42;4062:40;;;4111:4;4118;4062:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3966:157;3920:310;;4203:10;4184:30;;;;;;;;;;;:::i;:::-;;;;;;;;3920:310;3542:699;56102:47:::1;56125:4;56131:2;56135:7;56144:4;56102:22;:47::i;:::-;55929:228:::0;;;;;;:::o;51945:34::-;;;;:::o;54605:394::-;54676:13;54710:17;54718:8;54710:7;:17::i;:::-;54702:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;54791:4;54777:18;;:10;;;;;;;;;;;:18;;;54774:218;;54843:7;54852:19;:8;:17;:19::i;:::-;54826:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54812:70;;;;54774:218;54955:7;54964:14;54938:41;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54924:56;;54605:394;;;;:::o;51715:16::-;;;;;;;;;;;;;:::o;25381:164::-;25478:4;25502:18;:25;25521:5;25502:25;;;;;;;;;;;;;;;:35;25528:8;25502:35;;;;;;;;;;;;;;;;;;;;;;;;;25495:42;;25381:164;;;;:::o;48174:201::-;47496:12;:10;:12::i;:::-;47485:23;;:7;:5;:7::i;:::-;:23;;;47477:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48283:1:::1;48263:22;;:8;:22;;::::0;48255:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;48339:28;48358:8;48339:18;:28::i;:::-;48174:201:::0;:::o;51874:22::-;;;;:::o;26760:273::-;26817:4;26873:7;26854:15;:13;:15::i;:::-;:26;;:66;;;;;26907:13;;26897:7;:23;26854:66;:152;;;;;27005:1;14429:8;26958:17;:26;26976:7;26958:26;;;;;;;;;;;;:43;:48;26854:152;26834:172;;26760:273;;;:::o;19962:1129::-;20029:7;20049:12;20064:7;20049:22;;20132:4;20113:15;:13;:15::i;:::-;:23;20109:915;;20166:13;;20159:4;:20;20155:869;;;20204:14;20221:17;:23;20239:4;20221:23;;;;;;;;;;;;20204:40;;20337:1;14429:8;20310:6;:23;:28;20306:699;;20829:113;20846:1;20836:6;:11;20829:113;;20889:17;:25;20907:6;;;;;;;20889:25;;;;;;;;;;;;20880:34;;20829:113;;;20975:6;20968:13;;;;;;20306:699;20181:843;20155:869;20109:915;21052:31;;;;;;;;;;;;;;19962:1129;;;;:::o;41027:105::-;41087:7;41114:10;41107:17;;41027:105;:::o;16213:92::-;16269:7;16213:92;:::o;25612:170::-;25746:28;25756:4;25762:2;25766:7;25746:9;:28::i;:::-;25612:170;;;:::o;45989:98::-;46042:7;46069:10;46062:17;;45989:98;:::o;25853:185::-;25991:39;26008:4;26014:2;26018:7;25991:39;;;;;;;;;;;;:16;:39::i;:::-;25853:185;;;:::o;55120:153::-;55210:4;55234:31;55242:14;55247:8;55242:4;:14::i;:::-;55258:6;;55234:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:31::i;:::-;55227:38;;55120:153;;;;;:::o;27117:104::-;27186:27;27196:2;27200:8;27186:27;;;;;;;;;;;;:9;:27::i;:::-;27117:104;;:::o;23747:148::-;23811:14;23872:5;23862:15;;23747:148;;;:::o;48535:191::-;48609:16;48628:6;;;;;;;;;;;48609:25;;48654:8;48645:6;;:17;;;;;;;;;;;;;;;;;;48709:8;48678:40;;48699:8;48678:40;;;;;;;;;;;;48598:128;48535:191;:::o;26109:396::-;26276:28;26286:4;26292:2;26296:7;26276:9;:28::i;:::-;26337:1;26319:2;:14;;;:19;26315:183;;26358:56;26389:4;26395:2;26399:7;26408:5;26358:30;:56::i;:::-;26353:145;;26442:40;;;;;;;;;;;;;;26353:145;26315:183;26109:396;;;;:::o;43551:723::-;43607:13;43837:1;43828:5;:10;43824:53;;43855:10;;;;;;;;;;;;;;;;;;;;;43824:53;43887:12;43902:5;43887:20;;43918:14;43943:78;43958:1;43950:4;:9;43943:78;;43976:8;;;;;:::i;:::-;;;;44007:2;43999:10;;;;;:::i;:::-;;;43943:78;;;44031:19;44063:6;44053:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44031:39;;44081:154;44097:1;44088:5;:10;44081:154;;44125:1;44115:11;;;;;:::i;:::-;;;44192:2;44184:5;:10;;;;:::i;:::-;44171:2;:24;;;;:::i;:::-;44158:39;;44141:6;44148;44141:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;44221:2;44212:11;;;;;:::i;:::-;;;44081:154;;;44259:6;44245:21;;;;;43551:723;;;;:::o;32019:2654::-;32134:27;32164;32183:7;32164:18;:27::i;:::-;32134:57;;32249:4;32208:45;;32224:19;32208:45;;;32204:86;;32262:28;;;;;;;;;;;;;;32204:86;32303:23;32329:15;:24;32345:7;32329:24;;;;;;;;;;;;;;;;;;;;;32303:50;;32366:22;32415:4;32392:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;32436:43;32453:4;32459:19;:17;:19::i;:::-;32436:16;:43::i;:::-;32392:87;:142;;;;32515:19;:17;:19::i;:::-;32496:38;;:15;:38;;;32392:142;32366:169;;32553:17;32548:66;;32579:35;;;;;;;;;;;;;;32548:66;32654:1;32629:21;32647:2;32629:17;:21::i;:::-;:26;32625:62;;32664:23;;;;;;;;;;;;;;32625:62;32700:43;32722:4;32728:2;32732:7;32741:1;32700:21;:43::i;:::-;32851:1;32813:34;32831:15;32813:17;:34::i;:::-;:39;32809:103;;32876:15;:24;32892:7;32876:24;;;;;;;;;;;;32869:31;;;;;;;;;;;32809:103;33279:18;:24;33298:4;33279:24;;;;;;;;;;;;;;;;33277:26;;;;;;;;;;;;33348:18;:22;33367:2;33348:22;;;;;;;;;;;;;;;;33346:24;;;;;;;;;;;14707:8;14313:3;33729:15;:41;;33687:21;33705:2;33687:17;:21::i;:::-;:84;:128;33641:17;:26;33659:7;33641:26;;;;;;;;;;;:174;;;;33985:1;14707:8;33935:19;:46;:51;33931:626;;34007:19;34039:1;34029:7;:11;34007:33;;34196:1;34162:17;:30;34180:11;34162:30;;;;;;;;;;;;:35;34158:384;;34300:13;;34285:11;:28;34281:242;;34480:19;34447:17;:30;34465:11;34447:30;;;;;;;;;;;:52;;;;34281:242;34158:384;33988:569;33931:626;34604:7;34600:2;34585:27;;34594:4;34585:27;;;;;;;;;;;;34623:42;34644:4;34650:2;34654:7;34663:1;34623:20;:42::i;:::-;32123:2550;;;32019:2654;;;:::o;55281:126::-;55335:7;55389:8;55372:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;55362:37;;;;;;55355:44;;55281:126;;;:::o;55415:156::-;55494:4;55518:45;55537:6;55545:10;;55557:5;55518:18;:45::i;:::-;55511:52;;55415:156;;;;:::o;27594:2246::-;27717:20;27740:13;;27717:36;;27793:1;27768:21;27786:2;27768:17;:21::i;:::-;:26;27764:58;;27803:19;;;;;;;;;;;;;;27764:58;27849:1;27837:8;:13;27833:44;;27859:18;;;;;;;;;;;;;;27833:44;27890:61;27920:1;27924:2;27928:12;27942:8;27890:21;:61::i;:::-;28494:1;13796:2;28465:1;:25;;28464:31;28452:8;:44;28426:18;:22;28445:2;28426:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;14572:3;28895:29;28922:1;28910:8;:13;28895:14;:29::i;:::-;:56;;14313:3;28832:15;:41;;28790:21;28808:2;28790:17;:21::i;:::-;:84;:162;28739:17;:31;28757:12;28739:31;;;;;;;;;;;:213;;;;28969:20;28992:12;28969:35;;29019:11;29048:8;29033:12;:23;29019:37;;29095:1;29077:2;:14;;;:19;29073:635;;29117:313;29173:12;29169:2;29148:38;;29165:1;29148:38;;;;;;;;;;;;29214:69;29253:1;29257:2;29261:14;;;;;;29277:5;29214:30;:69::i;:::-;29209:174;;29319:40;;;;;;;;;;;;;;29209:174;29425:3;29410:12;:18;29117:313;;29511:12;29494:13;;:29;29490:43;;29525:8;;;29490:43;29073:635;;;29574:119;29630:14;;;;;;29626:2;29605:40;;29622:1;29605:40;;;;;;;;;;;;29688:3;29673:12;:18;29574:119;;29073:635;29738:12;29722:13;:28;;;;28203:1559;;29772:60;29801:1;29805:2;29809:12;29823:8;29772:20;:60::i;:::-;27706:2134;27594:2246;;;:::o;38496:716::-;38659:4;38705:2;38680:45;;;38726:19;:17;:19::i;:::-;38747:4;38753:7;38762:5;38680:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38676:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38980:1;38963:6;:13;:18;38959:235;;39009:40;;;;;;;;;;;;;;38959:235;39152:6;39146:13;39137:6;39133:2;39129:15;39122:38;38676:529;38849:54;;;38839:64;;;:6;:64;;;;38832:71;;;38496:716;;;;;;:::o;39860:159::-;;;;;:::o;40678:158::-;;;;;:::o;49953:190::-;50078:4;50131;50102:25;50115:5;50122:4;50102:12;:25::i;:::-;:33;50095:40;;49953:190;;;;;:::o;23982:142::-;24040:14;24101:5;24091:15;;23982:142;;;:::o;50504:675::-;50587:7;50607:20;50630:4;50607:27;;50650:9;50645:497;50669:5;:12;50665:1;:16;50645:497;;;50703:20;50726:5;50732:1;50726:8;;;;;;;;:::i;:::-;;;;;;;;50703:31;;50769:12;50753;:28;50749:382;;50896:42;50911:12;50925;50896:14;:42::i;:::-;50881:57;;50749:382;;;51073:42;51088:12;51102;51073:14;:42::i;:::-;51058:57;;50749:382;50688:454;50683:3;;;;;:::i;:::-;;;;50645:497;;;;51159:12;51152:19;;;50504:675;;;;:::o;51187:224::-;51255:13;51318:1;51312:4;51305:15;51347:1;51341:4;51334:15;51388:4;51382;51372:21;51363:30;;51187:224;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:77::-;5904:7;5933:5;5922:16;;5867:77;;;:::o;5950:118::-;6037:24;6055:5;6037:24;:::i;:::-;6032:3;6025:37;5950:118;;:::o;6074:222::-;6167:4;6205:2;6194:9;6190:18;6182:26;;6218:71;6286:1;6275:9;6271:17;6262:6;6218:71;:::i;:::-;6074:222;;;;:::o;6302:117::-;6411:1;6408;6401:12;6425:117;6534:1;6531;6524:12;6548:117;6657:1;6654;6647:12;6688:568;6761:8;6771:6;6821:3;6814:4;6806:6;6802:17;6798:27;6788:122;;6829:79;;:::i;:::-;6788:122;6942:6;6929:20;6919:30;;6972:18;6964:6;6961:30;6958:117;;;6994:79;;:::i;:::-;6958:117;7108:4;7100:6;7096:17;7084:29;;7162:3;7154:4;7146:6;7142:17;7132:8;7128:32;7125:41;7122:128;;;7169:79;;:::i;:::-;7122:128;6688:568;;;;;:::o;7262:849::-;7366:6;7374;7382;7390;7439:2;7427:9;7418:7;7414:23;7410:32;7407:119;;;7445:79;;:::i;:::-;7407:119;7565:1;7590:53;7635:7;7626:6;7615:9;7611:22;7590:53;:::i;:::-;7580:63;;7536:117;7692:2;7718:53;7763:7;7754:6;7743:9;7739:22;7718:53;:::i;:::-;7708:63;;7663:118;7848:2;7837:9;7833:18;7820:32;7879:18;7871:6;7868:30;7865:117;;;7901:79;;:::i;:::-;7865:117;8014:80;8086:7;8077:6;8066:9;8062:22;8014:80;:::i;:::-;7996:98;;;;7791:313;7262:849;;;;;;;:::o;8117:329::-;8176:6;8225:2;8213:9;8204:7;8200:23;8196:32;8193:119;;;8231:79;;:::i;:::-;8193:119;8351:1;8376:53;8421:7;8412:6;8401:9;8397:22;8376:53;:::i;:::-;8366:63;;8322:117;8117:329;;;;:::o;8452:122::-;8525:24;8543:5;8525:24;:::i;:::-;8518:5;8515:35;8505:63;;8564:1;8561;8554:12;8505:63;8452:122;:::o;8580:139::-;8626:5;8664:6;8651:20;8642:29;;8680:33;8707:5;8680:33;:::i;:::-;8580:139;;;;:::o;8725:329::-;8784:6;8833:2;8821:9;8812:7;8808:23;8804:32;8801:119;;;8839:79;;:::i;:::-;8801:119;8959:1;8984:53;9029:7;9020:6;9009:9;9005:22;8984:53;:::i;:::-;8974:63;;8930:117;8725:329;;;;:::o;9060:180::-;9108:77;9105:1;9098:88;9205:4;9202:1;9195:15;9229:4;9226:1;9219:15;9246:114;9328:1;9321:5;9318:12;9308:46;;9334:18;;:::i;:::-;9308:46;9246:114;:::o;9366:129::-;9412:7;9441:5;9430:16;;9447:42;9483:5;9447:42;:::i;:::-;9366:129;;;:::o;9501:::-;9558:9;9591:33;9618:5;9591:33;:::i;:::-;9578:46;;9501:129;;;:::o;9636:145::-;9730:44;9768:5;9730:44;:::i;:::-;9725:3;9718:57;9636:145;;:::o;9787:236::-;9887:4;9925:2;9914:9;9910:18;9902:26;;9938:78;10013:1;10002:9;9998:17;9989:6;9938:78;:::i;:::-;9787:236;;;;:::o;10029:117::-;10138:1;10135;10128:12;10152:180;10200:77;10197:1;10190:88;10297:4;10294:1;10287:15;10321:4;10318:1;10311:15;10338:281;10421:27;10443:4;10421:27;:::i;:::-;10413:6;10409:40;10551:6;10539:10;10536:22;10515:18;10503:10;10500:34;10497:62;10494:88;;;10562:18;;:::i;:::-;10494:88;10602:10;10598:2;10591:22;10381:238;10338:281;;:::o;10625:129::-;10659:6;10686:20;;:::i;:::-;10676:30;;10715:33;10743:4;10735:6;10715:33;:::i;:::-;10625:129;;;:::o;10760:308::-;10822:4;10912:18;10904:6;10901:30;10898:56;;;10934:18;;:::i;:::-;10898:56;10972:29;10994:6;10972:29;:::i;:::-;10964:37;;11056:4;11050;11046:15;11038:23;;10760:308;;;:::o;11074:146::-;11171:6;11166:3;11161;11148:30;11212:1;11203:6;11198:3;11194:16;11187:27;11074:146;;;:::o;11226:425::-;11304:5;11329:66;11345:49;11387:6;11345:49;:::i;:::-;11329:66;:::i;:::-;11320:75;;11418:6;11411:5;11404:21;11456:4;11449:5;11445:16;11494:3;11485:6;11480:3;11476:16;11473:25;11470:112;;;11501:79;;:::i;:::-;11470:112;11591:54;11638:6;11633:3;11628;11591:54;:::i;:::-;11310:341;11226:425;;;;;:::o;11671:340::-;11727:5;11776:3;11769:4;11761:6;11757:17;11753:27;11743:122;;11784:79;;:::i;:::-;11743:122;11901:6;11888:20;11926:79;12001:3;11993:6;11986:4;11978:6;11974:17;11926:79;:::i;:::-;11917:88;;11733:278;11671:340;;;;:::o;12017:509::-;12086:6;12135:2;12123:9;12114:7;12110:23;12106:32;12103:119;;;12141:79;;:::i;:::-;12103:119;12289:1;12278:9;12274:17;12261:31;12319:18;12311:6;12308:30;12305:117;;;12341:79;;:::i;:::-;12305:117;12446:63;12501:7;12492:6;12481:9;12477:22;12446:63;:::i;:::-;12436:73;;12232:287;12017:509;;;;:::o;12532:116::-;12602:21;12617:5;12602:21;:::i;:::-;12595:5;12592:32;12582:60;;12638:1;12635;12628:12;12582:60;12532:116;:::o;12654:133::-;12697:5;12735:6;12722:20;12713:29;;12751:30;12775:5;12751:30;:::i;:::-;12654:133;;;;:::o;12793:468::-;12858:6;12866;12915:2;12903:9;12894:7;12890:23;12886:32;12883:119;;;12921:79;;:::i;:::-;12883:119;13041:1;13066:53;13111:7;13102:6;13091:9;13087:22;13066:53;:::i;:::-;13056:63;;13012:117;13168:2;13194:50;13236:7;13227:6;13216:9;13212:22;13194:50;:::i;:::-;13184:60;;13139:115;12793:468;;;;;:::o;13267:307::-;13328:4;13418:18;13410:6;13407:30;13404:56;;;13440:18;;:::i;:::-;13404:56;13478:29;13500:6;13478:29;:::i;:::-;13470:37;;13562:4;13556;13552:15;13544:23;;13267:307;;;:::o;13580:423::-;13657:5;13682:65;13698:48;13739:6;13698:48;:::i;:::-;13682:65;:::i;:::-;13673:74;;13770:6;13763:5;13756:21;13808:4;13801:5;13797:16;13846:3;13837:6;13832:3;13828:16;13825:25;13822:112;;;13853:79;;:::i;:::-;13822:112;13943:54;13990:6;13985:3;13980;13943:54;:::i;:::-;13663:340;13580:423;;;;;:::o;14022:338::-;14077:5;14126:3;14119:4;14111:6;14107:17;14103:27;14093:122;;14134:79;;:::i;:::-;14093:122;14251:6;14238:20;14276:78;14350:3;14342:6;14335:4;14327:6;14323:17;14276:78;:::i;:::-;14267:87;;14083:277;14022:338;;;;:::o;14366:943::-;14461:6;14469;14477;14485;14534:3;14522:9;14513:7;14509:23;14505:33;14502:120;;;14541:79;;:::i;:::-;14502:120;14661:1;14686:53;14731:7;14722:6;14711:9;14707:22;14686:53;:::i;:::-;14676:63;;14632:117;14788:2;14814:53;14859:7;14850:6;14839:9;14835:22;14814:53;:::i;:::-;14804:63;;14759:118;14916:2;14942:53;14987:7;14978:6;14967:9;14963:22;14942:53;:::i;:::-;14932:63;;14887:118;15072:2;15061:9;15057:18;15044:32;15103:18;15095:6;15092:30;15089:117;;;15125:79;;:::i;:::-;15089:117;15230:62;15284:7;15275:6;15264:9;15260:22;15230:62;:::i;:::-;15220:72;;15015:287;14366:943;;;;;;;:::o;15315:474::-;15383:6;15391;15440:2;15428:9;15419:7;15415:23;15411:32;15408:119;;;15446:79;;:::i;:::-;15408:119;15566:1;15591:53;15636:7;15627:6;15616:9;15612:22;15591:53;:::i;:::-;15581:63;;15537:117;15693:2;15719:53;15764:7;15755:6;15744:9;15740:22;15719:53;:::i;:::-;15709:63;;15664:118;15315:474;;;;;:::o;15795:180::-;15843:77;15840:1;15833:88;15940:4;15937:1;15930:15;15964:4;15961:1;15954:15;15981:320;16025:6;16062:1;16056:4;16052:12;16042:22;;16109:1;16103:4;16099:12;16130:18;16120:81;;16186:4;16178:6;16174:17;16164:27;;16120:81;16248:2;16240:6;16237:14;16217:18;16214:38;16211:84;;16267:18;;:::i;:::-;16211:84;16032:269;15981:320;;;:::o;16307:332::-;16428:4;16466:2;16455:9;16451:18;16443:26;;16479:71;16547:1;16536:9;16532:17;16523:6;16479:71;:::i;:::-;16560:72;16628:2;16617:9;16613:18;16604:6;16560:72;:::i;:::-;16307:332;;;;;:::o;16645:137::-;16699:5;16730:6;16724:13;16715:22;;16746:30;16770:5;16746:30;:::i;:::-;16645:137;;;;:::o;16788:345::-;16855:6;16904:2;16892:9;16883:7;16879:23;16875:32;16872:119;;;16910:79;;:::i;:::-;16872:119;17030:1;17055:61;17108:7;17099:6;17088:9;17084:22;17055:61;:::i;:::-;17045:71;;17001:125;16788:345;;;;:::o;17139:182::-;17279:34;17275:1;17267:6;17263:14;17256:58;17139:182;:::o;17327:366::-;17469:3;17490:67;17554:2;17549:3;17490:67;:::i;:::-;17483:74;;17566:93;17655:3;17566:93;:::i;:::-;17684:2;17679:3;17675:12;17668:19;;17327:366;;;:::o;17699:419::-;17865:4;17903:2;17892:9;17888:18;17880:26;;17952:9;17946:4;17942:20;17938:1;17927:9;17923:17;17916:47;17980:131;18106:4;17980:131;:::i;:::-;17972:139;;17699:419;;;:::o;18124:178::-;18264:30;18260:1;18252:6;18248:14;18241:54;18124:178;:::o;18308:366::-;18450:3;18471:67;18535:2;18530:3;18471:67;:::i;:::-;18464:74;;18547:93;18636:3;18547:93;:::i;:::-;18665:2;18660:3;18656:12;18649:19;;18308:366;;;:::o;18680:419::-;18846:4;18884:2;18873:9;18869:18;18861:26;;18933:9;18927:4;18923:20;18919:1;18908:9;18904:17;18897:47;18961:131;19087:4;18961:131;:::i;:::-;18953:139;;18680:419;;;:::o;19105:181::-;19245:33;19241:1;19233:6;19229:14;19222:57;19105:181;:::o;19292:366::-;19434:3;19455:67;19519:2;19514:3;19455:67;:::i;:::-;19448:74;;19531:93;19620:3;19531:93;:::i;:::-;19649:2;19644:3;19640:12;19633:19;;19292:366;;;:::o;19664:419::-;19830:4;19868:2;19857:9;19853:18;19845:26;;19917:9;19911:4;19907:20;19903:1;19892:9;19888:17;19881:47;19945:131;20071:4;19945:131;:::i;:::-;19937:139;;19664:419;;;:::o;20089:165::-;20229:17;20225:1;20217:6;20213:14;20206:41;20089:165;:::o;20260:366::-;20402:3;20423:67;20487:2;20482:3;20423:67;:::i;:::-;20416:74;;20499:93;20588:3;20499:93;:::i;:::-;20617:2;20612:3;20608:12;20601:19;;20260:366;;;:::o;20632:419::-;20798:4;20836:2;20825:9;20821:18;20813:26;;20885:9;20879:4;20875:20;20871:1;20860:9;20856:17;20849:47;20913:131;21039:4;20913:131;:::i;:::-;20905:139;;20632:419;;;:::o;21057:180::-;21105:77;21102:1;21095:88;21202:4;21199:1;21192:15;21226:4;21223:1;21216:15;21243:191;21283:3;21302:20;21320:1;21302:20;:::i;:::-;21297:25;;21336:20;21354:1;21336:20;:::i;:::-;21331:25;;21379:1;21376;21372:9;21365:16;;21400:3;21397:1;21394:10;21391:36;;;21407:18;;:::i;:::-;21391:36;21243:191;;;;:::o;21440:177::-;21580:29;21576:1;21568:6;21564:14;21557:53;21440:177;:::o;21623:366::-;21765:3;21786:67;21850:2;21845:3;21786:67;:::i;:::-;21779:74;;21862:93;21951:3;21862:93;:::i;:::-;21980:2;21975:3;21971:12;21964:19;;21623:366;;;:::o;21995:419::-;22161:4;22199:2;22188:9;22184:18;22176:26;;22248:9;22242:4;22238:20;22234:1;22223:9;22219:17;22212:47;22276:131;22402:4;22276:131;:::i;:::-;22268:139;;21995:419;;;:::o;22420:169::-;22560:21;22556:1;22548:6;22544:14;22537:45;22420:169;:::o;22595:366::-;22737:3;22758:67;22822:2;22817:3;22758:67;:::i;:::-;22751:74;;22834:93;22923:3;22834:93;:::i;:::-;22952:2;22947:3;22943:12;22936:19;;22595:366;;;:::o;22967:419::-;23133:4;23171:2;23160:9;23156:18;23148:26;;23220:9;23214:4;23210:20;23206:1;23195:9;23191:17;23184:47;23248:131;23374:4;23248:131;:::i;:::-;23240:139;;22967:419;;;:::o;23392:410::-;23432:7;23455:20;23473:1;23455:20;:::i;:::-;23450:25;;23489:20;23507:1;23489:20;:::i;:::-;23484:25;;23544:1;23541;23537:9;23566:30;23584:11;23566:30;:::i;:::-;23555:41;;23745:1;23736:7;23732:15;23729:1;23726:22;23706:1;23699:9;23679:83;23656:139;;23775:18;;:::i;:::-;23656:139;23440:362;23392:410;;;;:::o;23808:167::-;23948:19;23944:1;23936:6;23932:14;23925:43;23808:167;:::o;23981:366::-;24123:3;24144:67;24208:2;24203:3;24144:67;:::i;:::-;24137:74;;24220:93;24309:3;24220:93;:::i;:::-;24338:2;24333:3;24329:12;24322:19;;23981:366;;;:::o;24353:419::-;24519:4;24557:2;24546:9;24542:18;24534:26;;24606:9;24600:4;24596:20;24592:1;24581:9;24577:17;24570:47;24634:131;24760:4;24634:131;:::i;:::-;24626:139;;24353:419;;;:::o;24778:141::-;24827:4;24850:3;24842:11;;24873:3;24870:1;24863:14;24907:4;24904:1;24894:18;24886:26;;24778:141;;;:::o;24925:93::-;24962:6;25009:2;25004;24997:5;24993:14;24989:23;24979:33;;24925:93;;;:::o;25024:107::-;25068:8;25118:5;25112:4;25108:16;25087:37;;25024:107;;;;:::o;25137:393::-;25206:6;25256:1;25244:10;25240:18;25279:97;25309:66;25298:9;25279:97;:::i;:::-;25397:39;25427:8;25416:9;25397:39;:::i;:::-;25385:51;;25469:4;25465:9;25458:5;25454:21;25445:30;;25518:4;25508:8;25504:19;25497:5;25494:30;25484:40;;25213:317;;25137:393;;;;;:::o;25536:60::-;25564:3;25585:5;25578:12;;25536:60;;;:::o;25602:142::-;25652:9;25685:53;25703:34;25712:24;25730:5;25712:24;:::i;:::-;25703:34;:::i;:::-;25685:53;:::i;:::-;25672:66;;25602:142;;;:::o;25750:75::-;25793:3;25814:5;25807:12;;25750:75;;;:::o;25831:269::-;25941:39;25972:7;25941:39;:::i;:::-;26002:91;26051:41;26075:16;26051:41;:::i;:::-;26043:6;26036:4;26030:11;26002:91;:::i;:::-;25996:4;25989:105;25907:193;25831:269;;;:::o;26106:73::-;26151:3;26106:73;:::o;26185:189::-;26262:32;;:::i;:::-;26303:65;26361:6;26353;26347:4;26303:65;:::i;:::-;26238:136;26185:189;;:::o;26380:186::-;26440:120;26457:3;26450:5;26447:14;26440:120;;;26511:39;26548:1;26541:5;26511:39;:::i;:::-;26484:1;26477:5;26473:13;26464:22;;26440:120;;;26380:186;;:::o;26572:543::-;26673:2;26668:3;26665:11;26662:446;;;26707:38;26739:5;26707:38;:::i;:::-;26791:29;26809:10;26791:29;:::i;:::-;26781:8;26777:44;26974:2;26962:10;26959:18;26956:49;;;26995:8;26980:23;;26956:49;27018:80;27074:22;27092:3;27074:22;:::i;:::-;27064:8;27060:37;27047:11;27018:80;:::i;:::-;26677:431;;26662:446;26572:543;;;:::o;27121:117::-;27175:8;27225:5;27219:4;27215:16;27194:37;;27121:117;;;;:::o;27244:169::-;27288:6;27321:51;27369:1;27365:6;27357:5;27354:1;27350:13;27321:51;:::i;:::-;27317:56;27402:4;27396;27392:15;27382:25;;27295:118;27244:169;;;;:::o;27418:295::-;27494:4;27640:29;27665:3;27659:4;27640:29;:::i;:::-;27632:37;;27702:3;27699:1;27695:11;27689:4;27686:21;27678:29;;27418:295;;;;:::o;27718:1395::-;27835:37;27868:3;27835:37;:::i;:::-;27937:18;27929:6;27926:30;27923:56;;;27959:18;;:::i;:::-;27923:56;28003:38;28035:4;28029:11;28003:38;:::i;:::-;28088:67;28148:6;28140;28134:4;28088:67;:::i;:::-;28182:1;28206:4;28193:17;;28238:2;28230:6;28227:14;28255:1;28250:618;;;;28912:1;28929:6;28926:77;;;28978:9;28973:3;28969:19;28963:26;28954:35;;28926:77;29029:67;29089:6;29082:5;29029:67;:::i;:::-;29023:4;29016:81;28885:222;28220:887;;28250:618;28302:4;28298:9;28290:6;28286:22;28336:37;28368:4;28336:37;:::i;:::-;28395:1;28409:208;28423:7;28420:1;28417:14;28409:208;;;28502:9;28497:3;28493:19;28487:26;28479:6;28472:42;28553:1;28545:6;28541:14;28531:24;;28600:2;28589:9;28585:18;28572:31;;28446:4;28443:1;28439:12;28434:17;;28409:208;;;28645:6;28636:7;28633:19;28630:179;;;28703:9;28698:3;28694:19;28688:26;28746:48;28788:4;28780:6;28776:17;28765:9;28746:48;:::i;:::-;28738:6;28731:64;28653:156;28630:179;28855:1;28851;28843:6;28839:14;28835:22;28829:4;28822:36;28257:611;;;28220:887;;27810:1303;;;27718:1395;;:::o;29119:178::-;29259:30;29255:1;29247:6;29243:14;29236:54;29119:178;:::o;29303:366::-;29445:3;29466:67;29530:2;29525:3;29466:67;:::i;:::-;29459:74;;29542:93;29631:3;29542:93;:::i;:::-;29660:2;29655:3;29651:12;29644:19;;29303:366;;;:::o;29675:419::-;29841:4;29879:2;29868:9;29864:18;29856:26;;29928:9;29922:4;29918:20;29914:1;29903:9;29899:17;29892:47;29956:131;30082:4;29956:131;:::i;:::-;29948:139;;29675:419;;;:::o;30100:175::-;30240:27;30236:1;30228:6;30224:14;30217:51;30100:175;:::o;30281:366::-;30423:3;30444:67;30508:2;30503:3;30444:67;:::i;:::-;30437:74;;30520:93;30609:3;30520:93;:::i;:::-;30638:2;30633:3;30629:12;30622:19;;30281:366;;;:::o;30653:419::-;30819:4;30857:2;30846:9;30842:18;30834:26;;30906:9;30900:4;30896:20;30892:1;30881:9;30877:17;30870:47;30934:131;31060:4;30934:131;:::i;:::-;30926:139;;30653:419;;;:::o;31078:181::-;31218:33;31214:1;31206:6;31202:14;31195:57;31078:181;:::o;31265:366::-;31407:3;31428:67;31492:2;31487:3;31428:67;:::i;:::-;31421:74;;31504:93;31593:3;31504:93;:::i;:::-;31622:2;31617:3;31613:12;31606:19;;31265:366;;;:::o;31637:419::-;31803:4;31841:2;31830:9;31826:18;31818:26;;31890:9;31884:4;31880:20;31876:1;31865:9;31861:17;31854:47;31918:131;32044:4;31918:131;:::i;:::-;31910:139;;31637:419;;;:::o;32062:148::-;32164:11;32201:3;32186:18;;32062:148;;;;:::o;32240:874::-;32343:3;32380:5;32374:12;32409:36;32435:9;32409:36;:::i;:::-;32461:89;32543:6;32538:3;32461:89;:::i;:::-;32454:96;;32581:1;32570:9;32566:17;32597:1;32592:166;;;;32772:1;32767:341;;;;32559:549;;32592:166;32676:4;32672:9;32661;32657:25;32652:3;32645:38;32738:6;32731:14;32724:22;32716:6;32712:35;32707:3;32703:45;32696:52;;32592:166;;32767:341;32834:38;32866:5;32834:38;:::i;:::-;32894:1;32908:154;32922:6;32919:1;32916:13;32908:154;;;32996:7;32990:14;32986:1;32981:3;32977:11;32970:35;33046:1;33037:7;33033:15;33022:26;;32944:4;32941:1;32937:12;32932:17;;32908:154;;;33091:6;33086:3;33082:16;33075:23;;32774:334;;32559:549;;32347:767;;32240:874;;;;:::o;33120:390::-;33226:3;33254:39;33287:5;33254:39;:::i;:::-;33309:89;33391:6;33386:3;33309:89;:::i;:::-;33302:96;;33407:65;33465:6;33460:3;33453:4;33446:5;33442:16;33407:65;:::i;:::-;33497:6;33492:3;33488:16;33481:23;;33230:280;33120:390;;;;:::o;33516:155::-;33656:7;33652:1;33644:6;33640:14;33633:31;33516:155;:::o;33677:400::-;33837:3;33858:84;33940:1;33935:3;33858:84;:::i;:::-;33851:91;;33951:93;34040:3;33951:93;:::i;:::-;34069:1;34064:3;34060:11;34053:18;;33677:400;;;:::o;34083:695::-;34361:3;34383:92;34471:3;34462:6;34383:92;:::i;:::-;34376:99;;34492:95;34583:3;34574:6;34492:95;:::i;:::-;34485:102;;34604:148;34748:3;34604:148;:::i;:::-;34597:155;;34769:3;34762:10;;34083:695;;;;;:::o;34784:423::-;34958:3;34980:92;35068:3;35059:6;34980:92;:::i;:::-;34973:99;;35089:92;35177:3;35168:6;35089:92;:::i;:::-;35082:99;;35198:3;35191:10;;34784:423;;;;;:::o;35213:225::-;35353:34;35349:1;35341:6;35337:14;35330:58;35422:8;35417:2;35409:6;35405:15;35398:33;35213:225;:::o;35444:366::-;35586:3;35607:67;35671:2;35666:3;35607:67;:::i;:::-;35600:74;;35683:93;35772:3;35683:93;:::i;:::-;35801:2;35796:3;35792:12;35785:19;;35444:366;;;:::o;35816:419::-;35982:4;36020:2;36009:9;36005:18;35997:26;;36069:9;36063:4;36059:20;36055:1;36044:9;36040:17;36033:47;36097:131;36223:4;36097:131;:::i;:::-;36089:139;;35816:419;;;:::o;36241:233::-;36280:3;36303:24;36321:5;36303:24;:::i;:::-;36294:33;;36349:66;36342:5;36339:77;36336:103;;36419:18;;:::i;:::-;36336:103;36466:1;36459:5;36455:13;36448:20;;36241:233;;;:::o;36480:180::-;36528:77;36525:1;36518:88;36625:4;36622:1;36615:15;36649:4;36646:1;36639:15;36666:185;36706:1;36723:20;36741:1;36723:20;:::i;:::-;36718:25;;36757:20;36775:1;36757:20;:::i;:::-;36752:25;;36796:1;36786:35;;36801:18;;:::i;:::-;36786:35;36843:1;36840;36836:9;36831:14;;36666:185;;;;:::o;36857:194::-;36897:4;36917:20;36935:1;36917:20;:::i;:::-;36912:25;;36951:20;36969:1;36951:20;:::i;:::-;36946:25;;36995:1;36992;36988:9;36980:17;;37019:1;37013:4;37010:11;37007:37;;;37024:18;;:::i;:::-;37007:37;36857:194;;;;:::o;37057:176::-;37089:1;37106:20;37124:1;37106:20;:::i;:::-;37101:25;;37140:20;37158:1;37140:20;:::i;:::-;37135:25;;37179:1;37169:35;;37184:18;;:::i;:::-;37169:35;37225:1;37222;37218:9;37213:14;;37057:176;;;;:::o;37239:180::-;37287:77;37284:1;37277:88;37384:4;37381:1;37374:15;37408:4;37405:1;37398:15;37425:94;37458:8;37506:5;37502:2;37498:14;37477:35;;37425:94;;;:::o;37525:::-;37564:7;37593:20;37607:5;37593:20;:::i;:::-;37582:31;;37525:94;;;:::o;37625:100::-;37664:7;37693:26;37713:5;37693:26;:::i;:::-;37682:37;;37625:100;;;:::o;37731:157::-;37836:45;37856:24;37874:5;37856:24;:::i;:::-;37836:45;:::i;:::-;37831:3;37824:58;37731:157;;:::o;37894:256::-;38006:3;38021:75;38092:3;38083:6;38021:75;:::i;:::-;38121:2;38116:3;38112:12;38105:19;;38141:3;38134:10;;37894:256;;;;:::o;38156:98::-;38207:6;38241:5;38235:12;38225:22;;38156:98;;;:::o;38260:168::-;38343:11;38377:6;38372:3;38365:19;38417:4;38412:3;38408:14;38393:29;;38260:168;;;;:::o;38434:373::-;38520:3;38548:38;38580:5;38548:38;:::i;:::-;38602:70;38665:6;38660:3;38602:70;:::i;:::-;38595:77;;38681:65;38739:6;38734:3;38727:4;38720:5;38716:16;38681:65;:::i;:::-;38771:29;38793:6;38771:29;:::i;:::-;38766:3;38762:39;38755:46;;38524:283;38434:373;;;;:::o;38813:640::-;39008:4;39046:3;39035:9;39031:19;39023:27;;39060:71;39128:1;39117:9;39113:17;39104:6;39060:71;:::i;:::-;39141:72;39209:2;39198:9;39194:18;39185:6;39141:72;:::i;:::-;39223;39291:2;39280:9;39276:18;39267:6;39223:72;:::i;:::-;39342:9;39336:4;39332:20;39327:2;39316:9;39312:18;39305:48;39370:76;39441:4;39432:6;39370:76;:::i;:::-;39362:84;;38813:640;;;;;;;:::o;39459:141::-;39515:5;39546:6;39540:13;39531:22;;39562:32;39588:5;39562:32;:::i;:::-;39459:141;;;;:::o;39606:349::-;39675:6;39724:2;39712:9;39703:7;39699:23;39695:32;39692:119;;;39730:79;;:::i;:::-;39692:119;39850:1;39875:63;39930:7;39921:6;39910:9;39906:22;39875:63;:::i;:::-;39865:73;;39821:127;39606:349;;;;:::o

Swarm Source

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