ETH Price: $3,503.76 (+3.94%)
Gas: 4 Gwei

Token

Fragments Early Believers' NFT (FRAG)
 

Overview

Max Total Supply

730 FRAG

Holders

470

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
misanagi.eth
Balance
1 FRAG
0x1a8028927383a0665b62b4aa6eefd5dd66cb5a38
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:
Fragments

Compiler Version
v0.8.7+commit.e28d00a7

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-01
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: Fragments.sol



pragma solidity ^0.8.7;




contract Fragments is ERC721A {

    mapping (address => uint8) public ownerTokenMapping;
    bytes32 public root;

    string public baseURI = "https://mint.fragments.money/api/metadata/";
    address private owner;
    uint public MINT_PRICE = 0.042 ether;
    uint public WHITELISTED_MINT_PRICE = 0.042 ether;
    bool public PUBLIC_MINT = false;
    uint16 public MAX_SUPPLY = 729;
    uint16 public MAX_WHITELISTED_SUPPLY = 500;
    uint8 public MAX_PER_WALLET = 4;

    constructor(bytes32 _root) ERC721A("Fragments Early Believers' NFT", "FRAG") {
        owner = msg.sender;
        root = _root;
    }


    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
    
    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function setMintPrice(uint price) external onlyOwner {
        MINT_PRICE = price;
    }

    function setMaxTokensPerWallet(uint8 tokens) external onlyOwner {
        MAX_PER_WALLET = tokens;
    }

    function setPublicMint() external onlyOwner {
        PUBLIC_MINT = !PUBLIC_MINT;
    }

    function withdraw() external onlyOwner {
        payable(owner).transfer(address(this).balance);
    }

    modifier onlyOwner {
        require(owner == msg.sender, "Not the owner!");
        _;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        string memory json = string(
                    abi.encodePacked(
                        baseURI,
                        '/',
                        Strings.toString(_tokenId),
                        '.json'
                    )
                );
        return json;
    }

    function transferOwnership(address newOwner) external onlyOwner {
        owner = newOwner;
    }

    function mint(uint8 amount, bytes32[] memory proof) external payable {
        require(PUBLIC_MINT, "Sale not active!");
        require (totalSupply() + amount <= MAX_SUPPLY + 1, "Not enough tokens to sell");
        require(amount <= MAX_PER_WALLET, "Max tokens exceeded");
        require(ownerTokenMapping[msg.sender] + amount <= MAX_PER_WALLET, "Max tokens exceeded");
        bool isWhitelisted = isValid(proof, keccak256(abi.encodePacked(msg.sender)));

        if(isWhitelisted){
            require(msg.value == WHITELISTED_MINT_PRICE * amount, "Insufficient eth for mint");
        }else {
            require(msg.value == MINT_PRICE * amount, "Insufficient eth for mint");
        }
      
        _safeMint(msg.sender, amount);
        ownerTokenMapping[msg.sender] += amount;
    }

    function isValid(bytes32[] memory proof, bytes32 leaf) private view returns(bool){
        return MerkleProof.verify(proof, root, leaf);
    }

   function burn(uint256 tokenId) public virtual onlyOwner {
        _burn(tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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_PER_WALLET","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELISTED_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELISTED_MINT_PRICE","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ownerTokenMapping","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"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":"uint8","name":"tokens","type":"uint8"}],"name":"setMaxTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280602a815260200162003a37602a9139600a908051906020019062000035929190620001fe565b50669536c708910000600c55669536c708910000600d556000600e60006101000a81548160ff0219169083151502179055506102d9600e60016101000a81548161ffff021916908361ffff1602179055506101f4600e60036101000a81548161ffff021916908361ffff1602179055506004600e60056101000a81548160ff021916908360ff160217905550348015620000ce57600080fd5b5060405162003a6138038062003a618339818101604052810190620000f49190620002c5565b6040518060400160405280601e81526020017f467261676d656e7473204561726c792042656c69657665727327204e465400008152506040518060400160405280600481526020017f4652414700000000000000000000000000000000000000000000000000000000815250816002908051906020019062000178929190620001fe565b50806003908051906020019062000191929190620001fe565b50620001a2620001f960201b60201c565b600081905550505033600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806009819055505062000385565b600090565b8280546200020c9062000301565b90600052602060002090601f0160209004810192826200023057600085556200027c565b82601f106200024b57805160ff19168380011785556200027c565b828001600101855582156200027c579182015b828111156200027b5782518255916020019190600101906200025e565b5b5090506200028b91906200028f565b5090565b5b80821115620002aa57600081600090555060010162000290565b5090565b600081519050620002bf816200036b565b92915050565b600060208284031215620002de57620002dd62000366565b5b6000620002ee84828501620002ae565b91505092915050565b6000819050919050565b600060028204905060018216806200031a57607f821691505b6020821081141562000331576200033062000337565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6200037681620002f7565b81146200038257600080fd5b50565b6136a280620003956000396000f3fe6080604052600436106101d85760003560e01c806367cfde1711610102578063c002d23d11610095578063ebf0c71711610064578063ebf0c71714610669578063f2fde38b14610694578063f4a0a528146106bd578063f96bc076146106e6576101d8565b8063c002d23d14610587578063c87b56dd146105b2578063c99f774f146105ef578063e985e9c51461062c576101d8565b8063a22cb465116100d1578063a22cb465146104fb578063ade0401b14610524578063b61c5e691461054f578063b88d4fde1461056b576101d8565b806367cfde171461043d5780636c0360eb1461046857806370a082311461049357806395d89b41146104d0576101d8565b806318160ddd1161017a57806342842e0e1161014957806342842e0e1461039257806342966c68146103ae57806355f804b3146103d75780636352211e14610400576101d8565b806318160ddd1461030957806323b872dd1461033457806332cb6b0c146103505780633ccfd60b1461037b576101d8565b8063081812fc116101b6578063081812fc1461025c578063095ea7b3146102995780630f2cdd6c146102b5578063141129f9146102e0576101d8565b806301ffc9a7146101dd57806302456aa21461021a57806306fdde0314610231575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612950565b610711565b6040516102119190612ded565b60405180910390f35b34801561022657600080fd5b5061022f6107a3565b005b34801561023d57600080fd5b5061024661085f565b6040516102539190612e23565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906129f3565b6108f1565b6040516102909190612d86565b60405180910390f35b6102b360048036038101906102ae9190612910565b610970565b005b3480156102c157600080fd5b506102ca610ab4565b6040516102d79190612f1b565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612a20565b610ac7565b005b34801561031557600080fd5b5061031e610b75565b60405161032b9190612f00565b60405180910390f35b61034e600480360381019061034991906127fa565b610b8c565b005b34801561035c57600080fd5b50610365610eb1565b6040516103729190612ee5565b60405180910390f35b34801561038757600080fd5b50610390610ec5565b005b6103ac60048036038101906103a791906127fa565b610fc0565b005b3480156103ba57600080fd5b506103d560048036038101906103d091906129f3565b610fe0565b005b3480156103e357600080fd5b506103fe60048036038101906103f991906129aa565b61107c565b005b34801561040c57600080fd5b50610427600480360381019061042291906129f3565b611126565b6040516104349190612d86565b60405180910390f35b34801561044957600080fd5b50610452611138565b60405161045f9190612f00565b60405180910390f35b34801561047457600080fd5b5061047d61113e565b60405161048a9190612e23565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b5919061278d565b6111cc565b6040516104c79190612f00565b60405180910390f35b3480156104dc57600080fd5b506104e5611285565b6040516104f29190612e23565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d91906128d0565b611317565b005b34801561053057600080fd5b50610539611422565b6040516105469190612ee5565b60405180910390f35b61056960048036038101906105649190612a4d565b611436565b005b6105856004803603810190610580919061284d565b61176d565b005b34801561059357600080fd5b5061059c6117e0565b6040516105a99190612f00565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d491906129f3565b6117e6565b6040516105e69190612e23565b60405180910390f35b3480156105fb57600080fd5b506106166004803603810190610611919061278d565b611820565b6040516106239190612f1b565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e91906127ba565b611840565b6040516106609190612ded565b60405180910390f35b34801561067557600080fd5b5061067e6118d4565b60405161068b9190612e08565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b6919061278d565b6118da565b005b3480156106c957600080fd5b506106e460048036038101906106df91906129f3565b6119ae565b005b3480156106f257600080fd5b506106fb611a48565b6040516107089190612ded565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082a90612ec5565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b60606002805461086e906132a0565b80601f016020809104026020016040519081016040528092919081815260200182805461089a906132a0565b80156108e75780601f106108bc576101008083540402835291602001916108e7565b820191906000526020600020905b8154815290600101906020018083116108ca57829003601f168201915b5050505050905090565b60006108fc82611a5b565b610932576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097b82611126565b90508073ffffffffffffffffffffffffffffffffffffffff1661099c611aba565b73ffffffffffffffffffffffffffffffffffffffff16146109ff576109c8816109c3611aba565b611840565b6109fe576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e60059054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e90612ec5565b60405180910390fd5b80600e60056101000a81548160ff021916908360ff16021790555050565b6000610b7f611ac2565b6001546000540303905090565b6000610b9782611ac7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bfe576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c0a84611b95565b91509150610c208187610c1b611aba565b611bbc565b610c6c57610c3586610c30611aba565b611840565b610c6b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cd3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce08686866001611c00565b8015610ceb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610db985610d95888887611c06565b7c020000000000000000000000000000000000000000000000000000000017611c2e565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e41576000600185019050600060046000838152602001908152602001600020541415610e3f576000548114610e3e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ea98686866001611c59565b505050505050565b600e60019054906101000a900461ffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90612ec5565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fbd573d6000803e3d6000fd5b50565b610fdb8383836040518060200160405280600081525061176d565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106790612ec5565b60405180910390fd5b61107981611c5f565b50565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390612ec5565b60405180910390fd5b80600a90805190602001906111229291906124d9565b5050565b600061113182611ac7565b9050919050565b600d5481565b600a805461114b906132a0565b80601f0160208091040260200160405190810160405280929190818152602001828054611177906132a0565b80156111c45780601f10611199576101008083540402835291602001916111c4565b820191906000526020600020905b8154815290600101906020018083116111a757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611234576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060038054611294906132a0565b80601f01602080910402602001604051908101604052809291908181526020018280546112c0906132a0565b801561130d5780601f106112e25761010080835404028352916020019161130d565b820191906000526020600020905b8154815290600101906020018083116112f057829003601f168201915b5050505050905090565b8060076000611324611aba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113d1611aba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114169190612ded565b60405180910390a35050565b600e60039054906101000a900461ffff1681565b600e60009054906101000a900460ff16611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c90612e65565b60405180910390fd5b6001600e60019054906101000a900461ffff166114a29190613041565b61ffff168260ff166114b2610b75565b6114bc9190613079565b11156114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490612ea5565b60405180910390fd5b600e60059054906101000a900460ff1660ff168260ff161115611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90612e85565b60405180910390fd5b600e60059054906101000a900460ff1660ff1682600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166115c091906130cf565b60ff161115611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb90612e85565b60405180910390fd5b6000611636823360405160200161161b9190612d31565b60405160208183030381529060405280519060200120611c6d565b90508015611695578260ff16600d5461164f9190613137565b3414611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790612e45565b60405180910390fd5b6116e8565b8260ff16600c546116a69190613137565b34146116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de90612e45565b60405180910390fd5b5b6116f5338460ff16611c84565b82600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661175091906130cf565b92506101000a81548160ff021916908360ff160217905550505050565b611778848484610b8c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117da576117a384848484611ca2565b6117d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b60606000600a6117f584611e02565b604051602001611806929190612d4c565b604051602081830303815290604052905080915050919050565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190612ec5565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3590612ec5565b60405180910390fd5b80600c8190555050565b600e60009054906101000a900460ff1681565b600081611a66611ac2565b11158015611a75575060005482105b8015611ab3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611ad6611ac2565b11611b5e57600054811015611b5d5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b5b575b6000811415611b51576004600083600190039350838152602001908152602001600020549050611b26565b8092505050611b90565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c1d868684611f63565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611c6a816000611f6c565b50565b6000611c7c83600954846121c0565b905092915050565b611c9e8282604051806020016040528060008152506121d7565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cc8611aba565b8786866040518563ffffffff1660e01b8152600401611cea9493929190612da1565b602060405180830381600087803b158015611d0457600080fd5b505af1925050508015611d3557506040513d601f19601f82011682018060405250810190611d32919061297d565b60015b611daf573d8060008114611d65576040519150601f19603f3d011682016040523d82523d6000602084013e611d6a565b606091505b50600081511415611da7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e4a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f5e565b600082905060005b60008214611e7c578080611e6590613303565b915050600a82611e759190613106565b9150611e52565b60008167ffffffffffffffff811115611e9857611e9761345d565b5b6040519080825280601f01601f191660200182016040528015611eca5781602001600182028036833780820191505090505b5090505b60008514611f5757600182611ee39190613191565b9150600a85611ef29190613370565b6030611efe9190613079565b60f81b818381518110611f1457611f1361342e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f509190613106565b9450611ece565b8093505050505b919050565b60009392505050565b6000611f7783611ac7565b90506000819050600080611f8a86611b95565b915091508415611ff357611fa68184611fa1611aba565b611bbc565b611ff257611fbb83611fb6611aba565b611840565b611ff1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612001836000886001611c00565b801561200c57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120b48361207185600088611c06565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611c2e565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516141561213c57600060018701905060006004600083815260200190815260200160002054141561213a576000548114612139578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121a6836000886001611c59565b600160008154809291906001019190505550505050505050565b6000826121cd8584612274565b1490509392505050565b6121e183836122ca565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461226f57600080549050600083820390505b6122216000868380600101945086611ca2565b612257576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061220e57816000541461226c57600080fd5b50505b505050565b60008082905060005b84518110156122bf576122aa8286838151811061229d5761229c61342e565b5b6020026020010151612487565b915080806122b790613303565b91505061227d565b508091505092915050565b600080549050600082141561230b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123186000848385611c00565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061238f836123806000866000611c06565b612389856124b2565b17611c2e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461243057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506123f5565b50600082141561246c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124826000848385611c59565b505050565b600081831061249f5761249a82846124c2565b6124aa565b6124a983836124c2565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546124e5906132a0565b90600052602060002090601f016020900481019282612507576000855561254e565b82601f1061252057805160ff191683800117855561254e565b8280016001018555821561254e579182015b8281111561254d578251825591602001919060010190612532565b5b50905061255b919061255f565b5090565b5b80821115612578576000816000905550600101612560565b5090565b600061258f61258a84612f5b565b612f36565b905080838252602082019050828560208602820111156125b2576125b1613491565b5b60005b858110156125e257816125c888826126c8565b8452602084019350602083019250506001810190506125b5565b5050509392505050565b60006125ff6125fa84612f87565b612f36565b90508281526020810184848401111561261b5761261a613496565b5b61262684828561325e565b509392505050565b600061264161263c84612fb8565b612f36565b90508281526020810184848401111561265d5761265c613496565b5b61266884828561325e565b509392505050565b60008135905061267f816135e2565b92915050565b600082601f83011261269a5761269961348c565b5b81356126aa84826020860161257c565b91505092915050565b6000813590506126c2816135f9565b92915050565b6000813590506126d781613610565b92915050565b6000813590506126ec81613627565b92915050565b60008151905061270181613627565b92915050565b600082601f83011261271c5761271b61348c565b5b813561272c8482602086016125ec565b91505092915050565b600082601f83011261274a5761274961348c565b5b813561275a84826020860161262e565b91505092915050565b6000813590506127728161363e565b92915050565b60008135905061278781613655565b92915050565b6000602082840312156127a3576127a26134a0565b5b60006127b184828501612670565b91505092915050565b600080604083850312156127d1576127d06134a0565b5b60006127df85828601612670565b92505060206127f085828601612670565b9150509250929050565b600080600060608486031215612813576128126134a0565b5b600061282186828701612670565b935050602061283286828701612670565b925050604061284386828701612763565b9150509250925092565b60008060008060808587031215612867576128666134a0565b5b600061287587828801612670565b945050602061288687828801612670565b935050604061289787828801612763565b925050606085013567ffffffffffffffff8111156128b8576128b761349b565b5b6128c487828801612707565b91505092959194509250565b600080604083850312156128e7576128e66134a0565b5b60006128f585828601612670565b9250506020612906858286016126b3565b9150509250929050565b60008060408385031215612927576129266134a0565b5b600061293585828601612670565b925050602061294685828601612763565b9150509250929050565b600060208284031215612966576129656134a0565b5b6000612974848285016126dd565b91505092915050565b600060208284031215612993576129926134a0565b5b60006129a1848285016126f2565b91505092915050565b6000602082840312156129c0576129bf6134a0565b5b600082013567ffffffffffffffff8111156129de576129dd61349b565b5b6129ea84828501612735565b91505092915050565b600060208284031215612a0957612a086134a0565b5b6000612a1784828501612763565b91505092915050565b600060208284031215612a3657612a356134a0565b5b6000612a4484828501612778565b91505092915050565b60008060408385031215612a6457612a636134a0565b5b6000612a7285828601612778565b925050602083013567ffffffffffffffff811115612a9357612a9261349b565b5b612a9f85828601612685565b9150509250929050565b612ab2816131c5565b82525050565b612ac9612ac4826131c5565b61334c565b82525050565b612ad8816131d7565b82525050565b612ae7816131e3565b82525050565b6000612af882612ffe565b612b028185613014565b9350612b1281856020860161326d565b612b1b816134a5565b840191505092915050565b6000612b3182613009565b612b3b8185613025565b9350612b4b81856020860161326d565b612b54816134a5565b840191505092915050565b6000612b6a82613009565b612b748185613036565b9350612b8481856020860161326d565b80840191505092915050565b60008154612b9d816132a0565b612ba78186613036565b94506001821660008114612bc25760018114612bd357612c06565b60ff19831686528186019350612c06565b612bdc85612fe9565b60005b83811015612bfe57815481890152600182019150602081019050612bdf565b838801955050505b50505092915050565b6000612c1c601983613025565b9150612c27826134c3565b602082019050919050565b6000612c3f601083613025565b9150612c4a826134ec565b602082019050919050565b6000612c62601383613025565b9150612c6d82613515565b602082019050919050565b6000612c85601983613025565b9150612c908261353e565b602082019050919050565b6000612ca8600583613036565b9150612cb382613567565b600582019050919050565b6000612ccb600e83613025565b9150612cd682613590565b602082019050919050565b6000612cee600183613036565b9150612cf9826135b9565b600182019050919050565b612d0d81613219565b82525050565b612d1c81613247565b82525050565b612d2b81613251565b82525050565b6000612d3d8284612ab8565b60148201915081905092915050565b6000612d588285612b90565b9150612d6382612ce1565b9150612d6f8284612b5f565b9150612d7a82612c9b565b91508190509392505050565b6000602082019050612d9b6000830184612aa9565b92915050565b6000608082019050612db66000830187612aa9565b612dc36020830186612aa9565b612dd06040830185612d13565b8181036060830152612de28184612aed565b905095945050505050565b6000602082019050612e026000830184612acf565b92915050565b6000602082019050612e1d6000830184612ade565b92915050565b60006020820190508181036000830152612e3d8184612b26565b905092915050565b60006020820190508181036000830152612e5e81612c0f565b9050919050565b60006020820190508181036000830152612e7e81612c32565b9050919050565b60006020820190508181036000830152612e9e81612c55565b9050919050565b60006020820190508181036000830152612ebe81612c78565b9050919050565b60006020820190508181036000830152612ede81612cbe565b9050919050565b6000602082019050612efa6000830184612d04565b92915050565b6000602082019050612f156000830184612d13565b92915050565b6000602082019050612f306000830184612d22565b92915050565b6000612f40612f51565b9050612f4c82826132d2565b919050565b6000604051905090565b600067ffffffffffffffff821115612f7657612f7561345d565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612fa257612fa161345d565b5b612fab826134a5565b9050602081019050919050565b600067ffffffffffffffff821115612fd357612fd261345d565b5b612fdc826134a5565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061304c82613219565b915061305783613219565b92508261ffff0382111561306e5761306d6133a1565b5b828201905092915050565b600061308482613247565b915061308f83613247565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130c4576130c36133a1565b5b828201905092915050565b60006130da82613251565b91506130e583613251565b92508260ff038211156130fb576130fa6133a1565b5b828201905092915050565b600061311182613247565b915061311c83613247565b92508261312c5761312b6133d0565b5b828204905092915050565b600061314282613247565b915061314d83613247565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613186576131856133a1565b5b828202905092915050565b600061319c82613247565b91506131a783613247565b9250828210156131ba576131b96133a1565b5b828203905092915050565b60006131d082613227565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561328b578082015181840152602081019050613270565b8381111561329a576000848401525b50505050565b600060028204905060018216806132b857607f821691505b602082108114156132cc576132cb6133ff565b5b50919050565b6132db826134a5565b810181811067ffffffffffffffff821117156132fa576132f961345d565b5b80604052505050565b600061330e82613247565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613341576133406133a1565b5b600182019050919050565b60006133578261335e565b9050919050565b6000613369826134b6565b9050919050565b600061337b82613247565b915061338683613247565b925082613396576133956133d0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e73756666696369656e742065746820666f72206d696e7400000000000000600082015250565b7f53616c65206e6f74206163746976652100000000000000000000000000000000600082015250565b7f4d617820746f6b656e7320657863656564656400000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e7320746f2073656c6c00000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f7420746865206f776e657221000000000000000000000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6135eb816131c5565b81146135f657600080fd5b50565b613602816131d7565b811461360d57600080fd5b50565b613619816131e3565b811461362457600080fd5b50565b613630816131ed565b811461363b57600080fd5b50565b61364781613247565b811461365257600080fd5b50565b61365e81613251565b811461366957600080fd5b5056fea26469706673582212203a13e0e8049752622ab8a40fdc2e6912eb0d07fa62e972a536c63f6c4a74d65964736f6c6343000807003368747470733a2f2f6d696e742e667261676d656e74732e6d6f6e65792f6170692f6d657461646174612f7a1ff4a1481b6a3a66d2d2dff5ed7b922b8999f3bcaaed12aa6cb4c04d9e9866

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806367cfde1711610102578063c002d23d11610095578063ebf0c71711610064578063ebf0c71714610669578063f2fde38b14610694578063f4a0a528146106bd578063f96bc076146106e6576101d8565b8063c002d23d14610587578063c87b56dd146105b2578063c99f774f146105ef578063e985e9c51461062c576101d8565b8063a22cb465116100d1578063a22cb465146104fb578063ade0401b14610524578063b61c5e691461054f578063b88d4fde1461056b576101d8565b806367cfde171461043d5780636c0360eb1461046857806370a082311461049357806395d89b41146104d0576101d8565b806318160ddd1161017a57806342842e0e1161014957806342842e0e1461039257806342966c68146103ae57806355f804b3146103d75780636352211e14610400576101d8565b806318160ddd1461030957806323b872dd1461033457806332cb6b0c146103505780633ccfd60b1461037b576101d8565b8063081812fc116101b6578063081812fc1461025c578063095ea7b3146102995780630f2cdd6c146102b5578063141129f9146102e0576101d8565b806301ffc9a7146101dd57806302456aa21461021a57806306fdde0314610231575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612950565b610711565b6040516102119190612ded565b60405180910390f35b34801561022657600080fd5b5061022f6107a3565b005b34801561023d57600080fd5b5061024661085f565b6040516102539190612e23565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906129f3565b6108f1565b6040516102909190612d86565b60405180910390f35b6102b360048036038101906102ae9190612910565b610970565b005b3480156102c157600080fd5b506102ca610ab4565b6040516102d79190612f1b565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612a20565b610ac7565b005b34801561031557600080fd5b5061031e610b75565b60405161032b9190612f00565b60405180910390f35b61034e600480360381019061034991906127fa565b610b8c565b005b34801561035c57600080fd5b50610365610eb1565b6040516103729190612ee5565b60405180910390f35b34801561038757600080fd5b50610390610ec5565b005b6103ac60048036038101906103a791906127fa565b610fc0565b005b3480156103ba57600080fd5b506103d560048036038101906103d091906129f3565b610fe0565b005b3480156103e357600080fd5b506103fe60048036038101906103f991906129aa565b61107c565b005b34801561040c57600080fd5b50610427600480360381019061042291906129f3565b611126565b6040516104349190612d86565b60405180910390f35b34801561044957600080fd5b50610452611138565b60405161045f9190612f00565b60405180910390f35b34801561047457600080fd5b5061047d61113e565b60405161048a9190612e23565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b5919061278d565b6111cc565b6040516104c79190612f00565b60405180910390f35b3480156104dc57600080fd5b506104e5611285565b6040516104f29190612e23565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d91906128d0565b611317565b005b34801561053057600080fd5b50610539611422565b6040516105469190612ee5565b60405180910390f35b61056960048036038101906105649190612a4d565b611436565b005b6105856004803603810190610580919061284d565b61176d565b005b34801561059357600080fd5b5061059c6117e0565b6040516105a99190612f00565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d491906129f3565b6117e6565b6040516105e69190612e23565b60405180910390f35b3480156105fb57600080fd5b506106166004803603810190610611919061278d565b611820565b6040516106239190612f1b565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e91906127ba565b611840565b6040516106609190612ded565b60405180910390f35b34801561067557600080fd5b5061067e6118d4565b60405161068b9190612e08565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b6919061278d565b6118da565b005b3480156106c957600080fd5b506106e460048036038101906106df91906129f3565b6119ae565b005b3480156106f257600080fd5b506106fb611a48565b6040516107089190612ded565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082a90612ec5565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b60606002805461086e906132a0565b80601f016020809104026020016040519081016040528092919081815260200182805461089a906132a0565b80156108e75780601f106108bc576101008083540402835291602001916108e7565b820191906000526020600020905b8154815290600101906020018083116108ca57829003601f168201915b5050505050905090565b60006108fc82611a5b565b610932576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097b82611126565b90508073ffffffffffffffffffffffffffffffffffffffff1661099c611aba565b73ffffffffffffffffffffffffffffffffffffffff16146109ff576109c8816109c3611aba565b611840565b6109fe576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e60059054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e90612ec5565b60405180910390fd5b80600e60056101000a81548160ff021916908360ff16021790555050565b6000610b7f611ac2565b6001546000540303905090565b6000610b9782611ac7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bfe576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c0a84611b95565b91509150610c208187610c1b611aba565b611bbc565b610c6c57610c3586610c30611aba565b611840565b610c6b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cd3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce08686866001611c00565b8015610ceb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610db985610d95888887611c06565b7c020000000000000000000000000000000000000000000000000000000017611c2e565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e41576000600185019050600060046000838152602001908152602001600020541415610e3f576000548114610e3e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ea98686866001611c59565b505050505050565b600e60019054906101000a900461ffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90612ec5565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fbd573d6000803e3d6000fd5b50565b610fdb8383836040518060200160405280600081525061176d565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106790612ec5565b60405180910390fd5b61107981611c5f565b50565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390612ec5565b60405180910390fd5b80600a90805190602001906111229291906124d9565b5050565b600061113182611ac7565b9050919050565b600d5481565b600a805461114b906132a0565b80601f0160208091040260200160405190810160405280929190818152602001828054611177906132a0565b80156111c45780601f10611199576101008083540402835291602001916111c4565b820191906000526020600020905b8154815290600101906020018083116111a757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611234576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060038054611294906132a0565b80601f01602080910402602001604051908101604052809291908181526020018280546112c0906132a0565b801561130d5780601f106112e25761010080835404028352916020019161130d565b820191906000526020600020905b8154815290600101906020018083116112f057829003601f168201915b5050505050905090565b8060076000611324611aba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113d1611aba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114169190612ded565b60405180910390a35050565b600e60039054906101000a900461ffff1681565b600e60009054906101000a900460ff16611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c90612e65565b60405180910390fd5b6001600e60019054906101000a900461ffff166114a29190613041565b61ffff168260ff166114b2610b75565b6114bc9190613079565b11156114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490612ea5565b60405180910390fd5b600e60059054906101000a900460ff1660ff168260ff161115611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90612e85565b60405180910390fd5b600e60059054906101000a900460ff1660ff1682600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166115c091906130cf565b60ff161115611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb90612e85565b60405180910390fd5b6000611636823360405160200161161b9190612d31565b60405160208183030381529060405280519060200120611c6d565b90508015611695578260ff16600d5461164f9190613137565b3414611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790612e45565b60405180910390fd5b6116e8565b8260ff16600c546116a69190613137565b34146116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de90612e45565b60405180910390fd5b5b6116f5338460ff16611c84565b82600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661175091906130cf565b92506101000a81548160ff021916908360ff160217905550505050565b611778848484610b8c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117da576117a384848484611ca2565b6117d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b60606000600a6117f584611e02565b604051602001611806929190612d4c565b604051602081830303815290604052905080915050919050565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190612ec5565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3590612ec5565b60405180910390fd5b80600c8190555050565b600e60009054906101000a900460ff1681565b600081611a66611ac2565b11158015611a75575060005482105b8015611ab3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611ad6611ac2565b11611b5e57600054811015611b5d5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b5b575b6000811415611b51576004600083600190039350838152602001908152602001600020549050611b26565b8092505050611b90565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c1d868684611f63565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611c6a816000611f6c565b50565b6000611c7c83600954846121c0565b905092915050565b611c9e8282604051806020016040528060008152506121d7565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cc8611aba565b8786866040518563ffffffff1660e01b8152600401611cea9493929190612da1565b602060405180830381600087803b158015611d0457600080fd5b505af1925050508015611d3557506040513d601f19601f82011682018060405250810190611d32919061297d565b60015b611daf573d8060008114611d65576040519150601f19603f3d011682016040523d82523d6000602084013e611d6a565b606091505b50600081511415611da7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e4a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f5e565b600082905060005b60008214611e7c578080611e6590613303565b915050600a82611e759190613106565b9150611e52565b60008167ffffffffffffffff811115611e9857611e9761345d565b5b6040519080825280601f01601f191660200182016040528015611eca5781602001600182028036833780820191505090505b5090505b60008514611f5757600182611ee39190613191565b9150600a85611ef29190613370565b6030611efe9190613079565b60f81b818381518110611f1457611f1361342e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f509190613106565b9450611ece565b8093505050505b919050565b60009392505050565b6000611f7783611ac7565b90506000819050600080611f8a86611b95565b915091508415611ff357611fa68184611fa1611aba565b611bbc565b611ff257611fbb83611fb6611aba565b611840565b611ff1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612001836000886001611c00565b801561200c57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120b48361207185600088611c06565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611c2e565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516141561213c57600060018701905060006004600083815260200190815260200160002054141561213a576000548114612139578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121a6836000886001611c59565b600160008154809291906001019190505550505050505050565b6000826121cd8584612274565b1490509392505050565b6121e183836122ca565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461226f57600080549050600083820390505b6122216000868380600101945086611ca2565b612257576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061220e57816000541461226c57600080fd5b50505b505050565b60008082905060005b84518110156122bf576122aa8286838151811061229d5761229c61342e565b5b6020026020010151612487565b915080806122b790613303565b91505061227d565b508091505092915050565b600080549050600082141561230b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123186000848385611c00565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061238f836123806000866000611c06565b612389856124b2565b17611c2e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461243057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506123f5565b50600082141561246c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124826000848385611c59565b505050565b600081831061249f5761249a82846124c2565b6124aa565b6124a983836124c2565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546124e5906132a0565b90600052602060002090601f016020900481019282612507576000855561254e565b82601f1061252057805160ff191683800117855561254e565b8280016001018555821561254e579182015b8281111561254d578251825591602001919060010190612532565b5b50905061255b919061255f565b5090565b5b80821115612578576000816000905550600101612560565b5090565b600061258f61258a84612f5b565b612f36565b905080838252602082019050828560208602820111156125b2576125b1613491565b5b60005b858110156125e257816125c888826126c8565b8452602084019350602083019250506001810190506125b5565b5050509392505050565b60006125ff6125fa84612f87565b612f36565b90508281526020810184848401111561261b5761261a613496565b5b61262684828561325e565b509392505050565b600061264161263c84612fb8565b612f36565b90508281526020810184848401111561265d5761265c613496565b5b61266884828561325e565b509392505050565b60008135905061267f816135e2565b92915050565b600082601f83011261269a5761269961348c565b5b81356126aa84826020860161257c565b91505092915050565b6000813590506126c2816135f9565b92915050565b6000813590506126d781613610565b92915050565b6000813590506126ec81613627565b92915050565b60008151905061270181613627565b92915050565b600082601f83011261271c5761271b61348c565b5b813561272c8482602086016125ec565b91505092915050565b600082601f83011261274a5761274961348c565b5b813561275a84826020860161262e565b91505092915050565b6000813590506127728161363e565b92915050565b60008135905061278781613655565b92915050565b6000602082840312156127a3576127a26134a0565b5b60006127b184828501612670565b91505092915050565b600080604083850312156127d1576127d06134a0565b5b60006127df85828601612670565b92505060206127f085828601612670565b9150509250929050565b600080600060608486031215612813576128126134a0565b5b600061282186828701612670565b935050602061283286828701612670565b925050604061284386828701612763565b9150509250925092565b60008060008060808587031215612867576128666134a0565b5b600061287587828801612670565b945050602061288687828801612670565b935050604061289787828801612763565b925050606085013567ffffffffffffffff8111156128b8576128b761349b565b5b6128c487828801612707565b91505092959194509250565b600080604083850312156128e7576128e66134a0565b5b60006128f585828601612670565b9250506020612906858286016126b3565b9150509250929050565b60008060408385031215612927576129266134a0565b5b600061293585828601612670565b925050602061294685828601612763565b9150509250929050565b600060208284031215612966576129656134a0565b5b6000612974848285016126dd565b91505092915050565b600060208284031215612993576129926134a0565b5b60006129a1848285016126f2565b91505092915050565b6000602082840312156129c0576129bf6134a0565b5b600082013567ffffffffffffffff8111156129de576129dd61349b565b5b6129ea84828501612735565b91505092915050565b600060208284031215612a0957612a086134a0565b5b6000612a1784828501612763565b91505092915050565b600060208284031215612a3657612a356134a0565b5b6000612a4484828501612778565b91505092915050565b60008060408385031215612a6457612a636134a0565b5b6000612a7285828601612778565b925050602083013567ffffffffffffffff811115612a9357612a9261349b565b5b612a9f85828601612685565b9150509250929050565b612ab2816131c5565b82525050565b612ac9612ac4826131c5565b61334c565b82525050565b612ad8816131d7565b82525050565b612ae7816131e3565b82525050565b6000612af882612ffe565b612b028185613014565b9350612b1281856020860161326d565b612b1b816134a5565b840191505092915050565b6000612b3182613009565b612b3b8185613025565b9350612b4b81856020860161326d565b612b54816134a5565b840191505092915050565b6000612b6a82613009565b612b748185613036565b9350612b8481856020860161326d565b80840191505092915050565b60008154612b9d816132a0565b612ba78186613036565b94506001821660008114612bc25760018114612bd357612c06565b60ff19831686528186019350612c06565b612bdc85612fe9565b60005b83811015612bfe57815481890152600182019150602081019050612bdf565b838801955050505b50505092915050565b6000612c1c601983613025565b9150612c27826134c3565b602082019050919050565b6000612c3f601083613025565b9150612c4a826134ec565b602082019050919050565b6000612c62601383613025565b9150612c6d82613515565b602082019050919050565b6000612c85601983613025565b9150612c908261353e565b602082019050919050565b6000612ca8600583613036565b9150612cb382613567565b600582019050919050565b6000612ccb600e83613025565b9150612cd682613590565b602082019050919050565b6000612cee600183613036565b9150612cf9826135b9565b600182019050919050565b612d0d81613219565b82525050565b612d1c81613247565b82525050565b612d2b81613251565b82525050565b6000612d3d8284612ab8565b60148201915081905092915050565b6000612d588285612b90565b9150612d6382612ce1565b9150612d6f8284612b5f565b9150612d7a82612c9b565b91508190509392505050565b6000602082019050612d9b6000830184612aa9565b92915050565b6000608082019050612db66000830187612aa9565b612dc36020830186612aa9565b612dd06040830185612d13565b8181036060830152612de28184612aed565b905095945050505050565b6000602082019050612e026000830184612acf565b92915050565b6000602082019050612e1d6000830184612ade565b92915050565b60006020820190508181036000830152612e3d8184612b26565b905092915050565b60006020820190508181036000830152612e5e81612c0f565b9050919050565b60006020820190508181036000830152612e7e81612c32565b9050919050565b60006020820190508181036000830152612e9e81612c55565b9050919050565b60006020820190508181036000830152612ebe81612c78565b9050919050565b60006020820190508181036000830152612ede81612cbe565b9050919050565b6000602082019050612efa6000830184612d04565b92915050565b6000602082019050612f156000830184612d13565b92915050565b6000602082019050612f306000830184612d22565b92915050565b6000612f40612f51565b9050612f4c82826132d2565b919050565b6000604051905090565b600067ffffffffffffffff821115612f7657612f7561345d565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612fa257612fa161345d565b5b612fab826134a5565b9050602081019050919050565b600067ffffffffffffffff821115612fd357612fd261345d565b5b612fdc826134a5565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061304c82613219565b915061305783613219565b92508261ffff0382111561306e5761306d6133a1565b5b828201905092915050565b600061308482613247565b915061308f83613247565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130c4576130c36133a1565b5b828201905092915050565b60006130da82613251565b91506130e583613251565b92508260ff038211156130fb576130fa6133a1565b5b828201905092915050565b600061311182613247565b915061311c83613247565b92508261312c5761312b6133d0565b5b828204905092915050565b600061314282613247565b915061314d83613247565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613186576131856133a1565b5b828202905092915050565b600061319c82613247565b91506131a783613247565b9250828210156131ba576131b96133a1565b5b828203905092915050565b60006131d082613227565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561328b578082015181840152602081019050613270565b8381111561329a576000848401525b50505050565b600060028204905060018216806132b857607f821691505b602082108114156132cc576132cb6133ff565b5b50919050565b6132db826134a5565b810181811067ffffffffffffffff821117156132fa576132f961345d565b5b80604052505050565b600061330e82613247565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613341576133406133a1565b5b600182019050919050565b60006133578261335e565b9050919050565b6000613369826134b6565b9050919050565b600061337b82613247565b915061338683613247565b925082613396576133956133d0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e73756666696369656e742065746820666f72206d696e7400000000000000600082015250565b7f53616c65206e6f74206163746976652100000000000000000000000000000000600082015250565b7f4d617820746f6b656e7320657863656564656400000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e7320746f2073656c6c00000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f7420746865206f776e657221000000000000000000000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6135eb816131c5565b81146135f657600080fd5b50565b613602816131d7565b811461360d57600080fd5b50565b613619816131e3565b811461362457600080fd5b50565b613630816131ed565b811461363b57600080fd5b50565b61364781613247565b811461365257600080fd5b50565b61365e81613251565b811461366957600080fd5b5056fea26469706673582212203a13e0e8049752622ab8a40fdc2e6912eb0d07fa62e972a536c63f6c4a74d65964736f6c63430008070033

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

7a1ff4a1481b6a3a66d2d2dff5ed7b922b8999f3bcaaed12aa6cb4c04d9e9866

-----Decoded View---------------
Arg [0] : _root (bytes32): 0x7a1ff4a1481b6a3a66d2d2dff5ed7b922b8999f3bcaaed12aa6cb4c04d9e9866

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 7a1ff4a1481b6a3a66d2d2dff5ed7b922b8999f3bcaaed12aa6cb4c04d9e9866


Deployed Bytecode Sourcemap

62720:2944:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29626:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63795:89;;;;;;;;;;;;;:::i;:::-;;30528:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37019:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36452:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63170:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63681:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26279:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40658:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63084:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63892:104;;;;;;;;;;;;;:::i;:::-;;43579:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65572:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63469:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31921:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62991:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62845:68;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27463:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30704:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37577:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63121:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64604:809;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44370:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62948:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64108:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62759:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37968:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62817:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64497:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63583:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63046:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29626:639;29711:4;30050:10;30035:25;;:11;:25;;;;:102;;;;30127:10;30112:25;;:11;:25;;;;30035:102;:179;;;;30204:10;30189:25;;:11;:25;;;;30035:179;30015:199;;29626:639;;;:::o;63795:89::-;64051:10;64042:19;;:5;;;;;;;;;;;:19;;;64034:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;63865:11:::1;;;;;;;;;;;63864:12;63850:11;;:26;;;;;;;;;;;;;;;;;;63795:89::o:0;30528:100::-;30582:13;30615:5;30608:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30528:100;:::o;37019:218::-;37095:7;37120:16;37128:7;37120;:16::i;:::-;37115:64;;37145:34;;;;;;;;;;;;;;37115:64;37199:15;:24;37215:7;37199:24;;;;;;;;;;;:30;;;;;;;;;;;;37192:37;;37019:218;;;:::o;36452:408::-;36541:13;36557:16;36565:7;36557;:16::i;:::-;36541:32;;36613:5;36590:28;;:19;:17;:19::i;:::-;:28;;;36586:175;;36638:44;36655:5;36662:19;:17;:19::i;:::-;36638:16;:44::i;:::-;36633:128;;36710:35;;;;;;;;;;;;;;36633:128;36586:175;36806:2;36773:15;:24;36789:7;36773:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36844:7;36840:2;36824:28;;36833:5;36824:28;;;;;;;;;;;;36530:330;36452:408;;:::o;63170:31::-;;;;;;;;;;;;;:::o;63681:106::-;64051:10;64042:19;;:5;;;;;;;;;;;:19;;;64034:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;63773:6:::1;63756:14;;:23;;;;;;;;;;;;;;;;;;63681:106:::0;:::o;26279:323::-;26340:7;26568:15;:13;:15::i;:::-;26553:12;;26537:13;;:28;:46;26530:53;;26279:323;:::o;40658:2825::-;40800:27;40830;40849:7;40830:18;:27::i;:::-;40800:57;;40915:4;40874:45;;40890:19;40874:45;;;40870:86;;40928:28;;;;;;;;;;;;;;40870:86;40970:27;40999:23;41026:35;41053:7;41026:26;:35::i;:::-;40969:92;;;;41161:68;41186:15;41203:4;41209:19;:17;:19::i;:::-;41161:24;:68::i;:::-;41156:180;;41249:43;41266:4;41272:19;:17;:19::i;:::-;41249:16;:43::i;:::-;41244:92;;41301:35;;;;;;;;;;;;;;41244:92;41156:180;41367:1;41353:16;;:2;:16;;;41349:52;;;41378:23;;;;;;;;;;;;;;41349:52;41414:43;41436:4;41442:2;41446:7;41455:1;41414:21;:43::i;:::-;41550:15;41547:160;;;41690:1;41669:19;41662:30;41547:160;42087:18;:24;42106:4;42087:24;;;;;;;;;;;;;;;;42085:26;;;;;;;;;;;;42156:18;:22;42175:2;42156:22;;;;;;;;;;;;;;;;42154:24;;;;;;;;;;;42478:146;42515:2;42564:45;42579:4;42585:2;42589:19;42564:14;:45::i;:::-;22678:8;42536:73;42478:18;:146::i;:::-;42449:17;:26;42467:7;42449:26;;;;;;;;;;;:175;;;;42795:1;22678:8;42744:19;:47;:52;42740:627;;;42817:19;42849:1;42839:7;:11;42817:33;;43006:1;42972:17;:30;42990:11;42972:30;;;;;;;;;;;;:35;42968:384;;;43110:13;;43095:11;:28;43091:242;;43290:19;43257:17;:30;43275:11;43257:30;;;;;;;;;;;:52;;;;43091:242;42968:384;42798:569;42740:627;43414:7;43410:2;43395:27;;43404:4;43395:27;;;;;;;;;;;;43433:42;43454:4;43460:2;43464:7;43473:1;43433:20;:42::i;:::-;40789:2694;;;40658:2825;;;:::o;63084:30::-;;;;;;;;;;;;;:::o;63892:104::-;64051:10;64042:19;;:5;;;;;;;;;;;:19;;;64034:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;63950:5:::1;;;;;;;;;;;63942:23;;:46;63966:21;63942:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;63892:104::o:0;43579:193::-;43725:39;43742:4;43748:2;43752:7;43725:39;;;;;;;;;;;;:16;:39::i;:::-;43579:193;;;:::o;65572:89::-;64051:10;64042:19;;:5;;;;;;;;;;;:19;;;64034:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;65639:14:::1;65645:7;65639:5;:14::i;:::-;65572:89:::0;:::o;63469:106::-;64051:10;64042:19;;:5;;;;;;;;;;;:19;;;64034:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;63556:11:::1;63546:7;:21;;;;;;;;;;;;:::i;:::-;;63469:106:::0;:::o;31921:152::-;31993:7;32036:27;32055:7;32036:18;:27::i;:::-;32013:52;;31921:152;;;:::o;62991:48::-;;;;:::o;62845:68::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27463:233::-;27535:7;27576:1;27559:19;;:5;:19;;;27555:60;;;27587:28;;;;;;;;;;;;;;27555:60;21622:13;27633:18;:25;27652:5;27633:25;;;;;;;;;;;;;;;;:55;27626:62;;27463:233;;;:::o;30704:104::-;30760:13;30793:7;30786:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30704:104;:::o;37577:234::-;37724:8;37672:18;:39;37691:19;:17;:19::i;:::-;37672:39;;;;;;;;;;;;;;;:49;37712:8;37672:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;37784:8;37748:55;;37763:19;:17;:19::i;:::-;37748:55;;;37794:8;37748:55;;;;;;:::i;:::-;;;;;;;;37577:234;;:::o;63121:42::-;;;;;;;;;;;;;:::o;64604:809::-;64692:11;;;;;;;;;;;64684:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;64783:1;64770:10;;;;;;;;;;;:14;;;;:::i;:::-;64744:40;;64760:6;64744:22;;:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:40;;64735:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;64843:14;;;;;;;;;;;64833:24;;:6;:24;;;;64825:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;64942:14;;;;;;;;;;;64900:56;;64932:6;64900:17;:29;64918:10;64900:29;;;;;;;;;;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:56;;;;64892:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;64991:18;65012:55;65020:5;65054:10;65037:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;65027:39;;;;;;65012:7;:55::i;:::-;64991:76;;65083:13;65080:228;;;65158:6;65133:31;;:22;;:31;;;;:::i;:::-;65120:9;:44;65112:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;65080:228;;;65260:6;65247:19;;:10;;:19;;;;:::i;:::-;65234:9;:32;65226:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;65080:228;65326:29;65336:10;65348:6;65326:29;;:9;:29::i;:::-;65399:6;65366:17;:29;65384:10;65366:29;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;64673:740;64604:809;;:::o;44370:407::-;44545:31;44558:4;44564:2;44568:7;44545:12;:31::i;:::-;44609:1;44591:2;:14;;;:19;44587:183;;44630:56;44661:4;44667:2;44671:7;44680:5;44630:30;:56::i;:::-;44625:145;;44714:40;;;;;;;;;;;;;;44625:145;44587:183;44370:407;;;;:::o;62948:36::-;;;;:::o;64108:381::-;64174:13;64200:18;64293:7;64357:26;64374:8;64357:16;:26::i;:::-;64250:190;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64200:259;;64477:4;64470:11;;;64108:381;;;:::o;62759:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;37968:164::-;38065:4;38089:18;:25;38108:5;38089:25;;;;;;;;;;;;;;;:35;38115:8;38089:35;;;;;;;;;;;;;;;;;;;;;;;;;38082:42;;37968:164;;;;:::o;62817:19::-;;;;:::o;64497:99::-;64051:10;64042:19;;:5;;;;;;;;;;;:19;;;64034:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;64580:8:::1;64572:5;;:16;;;;;;;;;;;;;;;;;;64497:99:::0;:::o;63583:90::-;64051:10;64042:19;;:5;;;;;;;;;;;:19;;;64034:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;63660:5:::1;63647:10;:18;;;;63583:90:::0;:::o;63046:31::-;;;;;;;;;;;;;:::o;38390:282::-;38455:4;38511:7;38492:15;:13;:15::i;:::-;:26;;:66;;;;;38545:13;;38535:7;:23;38492:66;:153;;;;;38644:1;22398:8;38596:17;:26;38614:7;38596:26;;;;;;;;;;;;:44;:49;38492:153;38472:173;;38390:282;;;:::o;60698:105::-;60758:7;60785:10;60778:17;;60698:105;:::o;25795:92::-;25851:7;25795:92;:::o;33076:1275::-;33143:7;33163:12;33178:7;33163:22;;33246:4;33227:15;:13;:15::i;:::-;:23;33223:1061;;33280:13;;33273:4;:20;33269:1015;;;33318:14;33335:17;:23;33353:4;33335:23;;;;;;;;;;;;33318:40;;33452:1;22398:8;33424:6;:24;:29;33420:845;;;34089:113;34106:1;34096:6;:11;34089:113;;;34149:17;:25;34167:6;;;;;;;34149:25;;;;;;;;;;;;34140:34;;34089:113;;;34235:6;34228:13;;;;;;33420:845;33295:989;33269:1015;33223:1061;34312:31;;;;;;;;;;;;;;33076:1275;;;;:::o;39553:485::-;39655:27;39684:23;39725:38;39766:15;:24;39782:7;39766:24;;;;;;;;;;;39725:65;;39943:18;39920:41;;40000:19;39994:26;39975:45;;39905:126;39553:485;;;:::o;38781:659::-;38930:11;39095:16;39088:5;39084:28;39075:37;;39255:16;39244:9;39240:32;39227:45;;39405:15;39394:9;39391:30;39383:5;39372:9;39369:20;39366:56;39356:66;;38781:659;;;;;:::o;45439:159::-;;;;;:::o;60007:311::-;60142:7;60162:16;22802:3;60188:19;:41;;60162:68;;22802:3;60256:31;60267:4;60273:2;60277:9;60256:10;:31::i;:::-;60248:40;;:62;;60241:69;;;60007:311;;;;;:::o;34899:450::-;34979:14;35147:16;35140:5;35136:28;35127:37;;35324:5;35310:11;35285:23;35281:41;35278:52;35271:5;35268:63;35258:73;;34899:450;;;;:::o;46263:158::-;;;;;:::o;54909:89::-;54969:21;54975:7;54984:5;54969;:21::i;:::-;54909:89;:::o;65421:144::-;65497:4;65520:37;65539:5;65546:4;;65552;65520:18;:37::i;:::-;65513:44;;65421:144;;;;:::o;54530:112::-;54607:27;54617:2;54621:8;54607:27;;;;;;;;;;;;:9;:27::i;:::-;54530:112;;:::o;46861:716::-;47024:4;47070:2;47045:45;;;47091:19;:17;:19::i;:::-;47112:4;47118:7;47127:5;47045:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47041:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47345:1;47328:6;:13;:18;47324:235;;;47374:40;;;;;;;;;;;;;;47324:235;47517:6;47511:13;47502:6;47498:2;47494:15;47487:38;47041:529;47214:54;;;47204:64;;;:6;:64;;;;47197:71;;;46861:716;;;;;;:::o;9155:723::-;9211:13;9441:1;9432:5;:10;9428:53;;;9459:10;;;;;;;;;;;;;;;;;;;;;9428:53;9491:12;9506:5;9491:20;;9522:14;9547:78;9562:1;9554:4;:9;9547:78;;9580:8;;;;;:::i;:::-;;;;9611:2;9603:10;;;;;:::i;:::-;;;9547:78;;;9635:19;9667:6;9657:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635:39;;9685:154;9701:1;9692:5;:10;9685:154;;9729:1;9719:11;;;;;:::i;:::-;;;9796:2;9788:5;:10;;;;:::i;:::-;9775:2;:24;;;;:::i;:::-;9762:39;;9745:6;9752;9745:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9825:2;9816:11;;;;;:::i;:::-;;;9685:154;;;9863:6;9849:21;;;;;9155:723;;;;:::o;59708:147::-;59845:6;59708:147;;;;;:::o;55227:3081::-;55307:27;55337;55356:7;55337:18;:27::i;:::-;55307:57;;55377:12;55408:19;55377:52;;55443:27;55472:23;55499:35;55526:7;55499:26;:35::i;:::-;55442:92;;;;55551:13;55547:316;;;55672:68;55697:15;55714:4;55720:19;:17;:19::i;:::-;55672:24;:68::i;:::-;55667:184;;55764:43;55781:4;55787:19;:17;:19::i;:::-;55764:16;:43::i;:::-;55759:92;;55816:35;;;;;;;;;;;;;;55759:92;55667:184;55547:316;55875:51;55897:4;55911:1;55915:7;55924:1;55875:21;:51::i;:::-;56019:15;56016:160;;;56159:1;56138:19;56131:30;56016:160;56837:1;21887:3;56807:1;:26;;56806:32;56778:18;:24;56797:4;56778:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;57105:176;57142:4;57213:53;57228:4;57242:1;57246:19;57213:14;:53::i;:::-;22678:8;22398;57166:43;57165:101;57105:18;:176::i;:::-;57076:17;:26;57094:7;57076:26;;;;;;;;;;;:205;;;;57452:1;22678:8;57401:19;:47;:52;57397:627;;;57474:19;57506:1;57496:7;:11;57474:33;;57663:1;57629:17;:30;57647:11;57629:30;;;;;;;;;;;;:35;57625:384;;;57767:13;;57752:11;:28;57748:242;;57947:19;57914:17;:30;57932:11;57914:30;;;;;;;;;;;:52;;;;57748:242;57625:384;57455:569;57397:627;58079:7;58075:1;58052:35;;58061:4;58052:35;;;;;;;;;;;;58098:50;58119:4;58133:1;58137:7;58146:1;58098:20;:50::i;:::-;58275:12;;:14;;;;;;;;;;;;;55296:3012;;;;55227:3081;;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;1361:40;;1219:190;;;;;:::o;53757:689::-;53888:19;53894:2;53898:8;53888:5;:19::i;:::-;53967:1;53949:2;:14;;;:19;53945:483;;53989:11;54003:13;;53989:27;;54035:13;54057:8;54051:3;:14;54035:30;;54084:233;54115:62;54154:1;54158:2;54162:7;;;;;;54171:5;54115:30;:62::i;:::-;54110:167;;54213:40;;;;;;;;;;;;;;54110:167;54312:3;54304:5;:11;54084:233;;54399:3;54382:13;;:20;54378:34;;54404:8;;;54378:34;53970:458;;53945:483;53757:689;;;:::o;2086:296::-;2169:7;2189:20;2212:4;2189:27;;2232:9;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;;2300:9;:33::i;:::-;2285:48;;2265:3;;;;;:::i;:::-;;;;2227:118;;;;2362:12;2355:19;;;2086:296;;;;:::o;48039:2966::-;48112:20;48135:13;;48112:36;;48175:1;48163:8;:13;48159:44;;;48185:18;;;;;;;;;;;;;;48159:44;48216:61;48246:1;48250:2;48254:12;48268:8;48216:21;:61::i;:::-;48760:1;21760:2;48730:1;:26;;48729:32;48717:8;:45;48691:18;:22;48710:2;48691:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;49039:139;49076:2;49130:33;49153:1;49157:2;49161:1;49130:14;:33::i;:::-;49097:30;49118:8;49097:20;:30::i;:::-;:66;49039:18;:139::i;:::-;49005:17;:31;49023:12;49005:31;;;;;;;;;;;:173;;;;49195:16;49226:11;49255:8;49240:12;:23;49226:37;;49776:16;49772:2;49768:25;49756:37;;50148:12;50108:8;50067:1;50005:25;49946:1;49885;49858:335;50519:1;50505:12;50501:20;50459:346;50560:3;50551:7;50548:16;50459:346;;50778:7;50768:8;50765:1;50738:25;50735:1;50732;50727:59;50613:1;50604:7;50600:15;50589:26;;50459:346;;;50463:77;50850:1;50838:8;:13;50834:45;;;50860:19;;;;;;;;;;;;;;50834:45;50912:3;50896:13;:19;;;;48465:2462;;50937:60;50966:1;50970:2;50974:12;50988:8;50937:20;:60::i;:::-;48101:2904;48039:2966;;:::o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8414:20;8429:1;8432;8414:14;:20::i;:::-;8383:51;;;8391:20;8406:1;8409;8391:14;:20::i;:::-;8383:51;8376:58;;8293:149;;;;:::o;35451:324::-;35521:14;35754:1;35744:8;35741:15;35715:24;35711:46;35701:56;;35451:324;;;:::o;8450:268::-;8518:13;8625:1;8619:4;8612:15;8654:1;8648:4;8641:15;8695:4;8689;8679:21;8670:30;;8450:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:139::-;2309:5;2347:6;2334:20;2325:29;;2363:33;2390:5;2363:33;:::i;:::-;2263:139;;;;:::o;2408:137::-;2453:5;2491:6;2478:20;2469:29;;2507:32;2533:5;2507:32;:::i;:::-;2408:137;;;;:::o;2551:141::-;2607:5;2638:6;2632:13;2623:22;;2654:32;2680:5;2654:32;:::i;:::-;2551:141;;;;:::o;2711:338::-;2766:5;2815:3;2808:4;2800:6;2796:17;2792:27;2782:122;;2823:79;;:::i;:::-;2782:122;2940:6;2927:20;2965:78;3039:3;3031:6;3024:4;3016:6;3012:17;2965:78;:::i;:::-;2956:87;;2772:277;2711:338;;;;:::o;3069:340::-;3125:5;3174:3;3167:4;3159:6;3155:17;3151:27;3141:122;;3182:79;;:::i;:::-;3141:122;3299:6;3286:20;3324:79;3399:3;3391:6;3384:4;3376:6;3372:17;3324:79;:::i;:::-;3315:88;;3131:278;3069:340;;;;:::o;3415:139::-;3461:5;3499:6;3486:20;3477:29;;3515:33;3542:5;3515:33;:::i;:::-;3415:139;;;;:::o;3560:135::-;3604:5;3642:6;3629:20;3620:29;;3658:31;3683:5;3658:31;:::i;:::-;3560:135;;;;:::o;3701:329::-;3760:6;3809:2;3797:9;3788:7;3784:23;3780:32;3777:119;;;3815:79;;:::i;:::-;3777:119;3935:1;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3906:117;3701:329;;;;:::o;4036:474::-;4104:6;4112;4161:2;4149:9;4140:7;4136:23;4132:32;4129:119;;;4167:79;;:::i;:::-;4129:119;4287:1;4312:53;4357:7;4348:6;4337:9;4333:22;4312:53;:::i;:::-;4302:63;;4258:117;4414:2;4440:53;4485:7;4476:6;4465:9;4461:22;4440:53;:::i;:::-;4430:63;;4385:118;4036:474;;;;;:::o;4516:619::-;4593:6;4601;4609;4658:2;4646:9;4637:7;4633:23;4629:32;4626:119;;;4664:79;;:::i;:::-;4626:119;4784:1;4809:53;4854:7;4845:6;4834:9;4830:22;4809:53;:::i;:::-;4799:63;;4755:117;4911:2;4937:53;4982:7;4973:6;4962:9;4958:22;4937:53;:::i;:::-;4927:63;;4882:118;5039:2;5065:53;5110:7;5101:6;5090:9;5086:22;5065:53;:::i;:::-;5055:63;;5010:118;4516:619;;;;;:::o;5141:943::-;5236:6;5244;5252;5260;5309:3;5297:9;5288:7;5284:23;5280:33;5277:120;;;5316:79;;:::i;:::-;5277:120;5436:1;5461:53;5506:7;5497:6;5486:9;5482:22;5461:53;:::i;:::-;5451:63;;5407:117;5563:2;5589:53;5634:7;5625:6;5614:9;5610:22;5589:53;:::i;:::-;5579:63;;5534:118;5691:2;5717:53;5762:7;5753:6;5742:9;5738:22;5717:53;:::i;:::-;5707:63;;5662:118;5847:2;5836:9;5832:18;5819:32;5878:18;5870:6;5867:30;5864:117;;;5900:79;;:::i;:::-;5864:117;6005:62;6059:7;6050:6;6039:9;6035:22;6005:62;:::i;:::-;5995:72;;5790:287;5141:943;;;;;;;:::o;6090:468::-;6155:6;6163;6212:2;6200:9;6191:7;6187:23;6183:32;6180:119;;;6218:79;;:::i;:::-;6180:119;6338:1;6363:53;6408:7;6399:6;6388:9;6384:22;6363:53;:::i;:::-;6353:63;;6309:117;6465:2;6491:50;6533:7;6524:6;6513:9;6509:22;6491:50;:::i;:::-;6481:60;;6436:115;6090:468;;;;;:::o;6564:474::-;6632:6;6640;6689:2;6677:9;6668:7;6664:23;6660:32;6657:119;;;6695:79;;:::i;:::-;6657:119;6815:1;6840:53;6885:7;6876:6;6865:9;6861:22;6840:53;:::i;:::-;6830:63;;6786:117;6942:2;6968:53;7013:7;7004:6;6993:9;6989:22;6968:53;:::i;:::-;6958:63;;6913:118;6564:474;;;;;:::o;7044:327::-;7102:6;7151:2;7139:9;7130:7;7126:23;7122:32;7119:119;;;7157:79;;:::i;:::-;7119:119;7277:1;7302:52;7346:7;7337:6;7326:9;7322:22;7302:52;:::i;:::-;7292:62;;7248:116;7044:327;;;;:::o;7377:349::-;7446:6;7495:2;7483:9;7474:7;7470:23;7466:32;7463:119;;;7501:79;;:::i;:::-;7463:119;7621:1;7646:63;7701:7;7692:6;7681:9;7677:22;7646:63;:::i;:::-;7636:73;;7592:127;7377:349;;;;:::o;7732:509::-;7801:6;7850:2;7838:9;7829:7;7825:23;7821:32;7818:119;;;7856:79;;:::i;:::-;7818:119;8004:1;7993:9;7989:17;7976:31;8034:18;8026:6;8023:30;8020:117;;;8056:79;;:::i;:::-;8020:117;8161:63;8216:7;8207:6;8196:9;8192:22;8161:63;:::i;:::-;8151:73;;7947:287;7732:509;;;;:::o;8247:329::-;8306:6;8355:2;8343:9;8334:7;8330:23;8326:32;8323:119;;;8361:79;;:::i;:::-;8323:119;8481:1;8506:53;8551:7;8542:6;8531:9;8527:22;8506:53;:::i;:::-;8496:63;;8452:117;8247:329;;;;:::o;8582:325::-;8639:6;8688:2;8676:9;8667:7;8663:23;8659:32;8656:119;;;8694:79;;:::i;:::-;8656:119;8814:1;8839:51;8882:7;8873:6;8862:9;8858:22;8839:51;:::i;:::-;8829:61;;8785:115;8582:325;;;;:::o;8913:680::-;9004:6;9012;9061:2;9049:9;9040:7;9036:23;9032:32;9029:119;;;9067:79;;:::i;:::-;9029:119;9187:1;9212:51;9255:7;9246:6;9235:9;9231:22;9212:51;:::i;:::-;9202:61;;9158:115;9340:2;9329:9;9325:18;9312:32;9371:18;9363:6;9360:30;9357:117;;;9393:79;;:::i;:::-;9357:117;9498:78;9568:7;9559:6;9548:9;9544:22;9498:78;:::i;:::-;9488:88;;9283:303;8913:680;;;;;:::o;9599:118::-;9686:24;9704:5;9686:24;:::i;:::-;9681:3;9674:37;9599:118;;:::o;9723:157::-;9828:45;9848:24;9866:5;9848:24;:::i;:::-;9828:45;:::i;:::-;9823:3;9816:58;9723:157;;:::o;9886:109::-;9967:21;9982:5;9967:21;:::i;:::-;9962:3;9955:34;9886:109;;:::o;10001:118::-;10088:24;10106:5;10088:24;:::i;:::-;10083:3;10076:37;10001:118;;:::o;10125:360::-;10211:3;10239:38;10271:5;10239:38;:::i;:::-;10293:70;10356:6;10351:3;10293:70;:::i;:::-;10286:77;;10372:52;10417:6;10412:3;10405:4;10398:5;10394:16;10372:52;:::i;:::-;10449:29;10471:6;10449:29;:::i;:::-;10444:3;10440:39;10433:46;;10215:270;10125:360;;;;:::o;10491:364::-;10579:3;10607:39;10640:5;10607:39;:::i;:::-;10662:71;10726:6;10721:3;10662:71;:::i;:::-;10655:78;;10742:52;10787:6;10782:3;10775:4;10768:5;10764:16;10742:52;:::i;:::-;10819:29;10841:6;10819:29;:::i;:::-;10814:3;10810:39;10803:46;;10583:272;10491:364;;;;:::o;10861:377::-;10967:3;10995:39;11028:5;10995:39;:::i;:::-;11050:89;11132:6;11127:3;11050:89;:::i;:::-;11043:96;;11148:52;11193:6;11188:3;11181:4;11174:5;11170:16;11148:52;:::i;:::-;11225:6;11220:3;11216:16;11209:23;;10971:267;10861:377;;;;:::o;11268:845::-;11371:3;11408:5;11402:12;11437:36;11463:9;11437:36;:::i;:::-;11489:89;11571:6;11566:3;11489:89;:::i;:::-;11482:96;;11609:1;11598:9;11594:17;11625:1;11620:137;;;;11771:1;11766:341;;;;11587:520;;11620:137;11704:4;11700:9;11689;11685:25;11680:3;11673:38;11740:6;11735:3;11731:16;11724:23;;11620:137;;11766:341;11833:38;11865:5;11833:38;:::i;:::-;11893:1;11907:154;11921:6;11918:1;11915:13;11907:154;;;11995:7;11989:14;11985:1;11980:3;11976:11;11969:35;12045:1;12036:7;12032:15;12021:26;;11943:4;11940:1;11936:12;11931:17;;11907:154;;;12090:6;12085:3;12081:16;12074:23;;11773:334;;11587:520;;11375:738;;11268:845;;;;:::o;12119:366::-;12261:3;12282:67;12346:2;12341:3;12282:67;:::i;:::-;12275:74;;12358:93;12447:3;12358:93;:::i;:::-;12476:2;12471:3;12467:12;12460:19;;12119:366;;;:::o;12491:::-;12633:3;12654:67;12718:2;12713:3;12654:67;:::i;:::-;12647:74;;12730:93;12819:3;12730:93;:::i;:::-;12848:2;12843:3;12839:12;12832:19;;12491:366;;;:::o;12863:::-;13005:3;13026:67;13090:2;13085:3;13026:67;:::i;:::-;13019:74;;13102:93;13191:3;13102:93;:::i;:::-;13220:2;13215:3;13211:12;13204:19;;12863:366;;;:::o;13235:::-;13377:3;13398:67;13462:2;13457:3;13398:67;:::i;:::-;13391:74;;13474:93;13563:3;13474:93;:::i;:::-;13592:2;13587:3;13583:12;13576:19;;13235:366;;;:::o;13607:400::-;13767:3;13788:84;13870:1;13865:3;13788:84;:::i;:::-;13781:91;;13881:93;13970:3;13881:93;:::i;:::-;13999:1;13994:3;13990:11;13983:18;;13607:400;;;:::o;14013:366::-;14155:3;14176:67;14240:2;14235:3;14176:67;:::i;:::-;14169:74;;14252:93;14341:3;14252:93;:::i;:::-;14370:2;14365:3;14361:12;14354:19;;14013:366;;;:::o;14385:400::-;14545:3;14566:84;14648:1;14643:3;14566:84;:::i;:::-;14559:91;;14659:93;14748:3;14659:93;:::i;:::-;14777:1;14772:3;14768:11;14761:18;;14385:400;;;:::o;14791:115::-;14876:23;14893:5;14876:23;:::i;:::-;14871:3;14864:36;14791:115;;:::o;14912:118::-;14999:24;15017:5;14999:24;:::i;:::-;14994:3;14987:37;14912:118;;:::o;15036:112::-;15119:22;15135:5;15119:22;:::i;:::-;15114:3;15107:35;15036:112;;:::o;15154:256::-;15266:3;15281:75;15352:3;15343:6;15281:75;:::i;:::-;15381:2;15376:3;15372:12;15365:19;;15401:3;15394:10;;15154:256;;;;:::o;15416:961::-;15795:3;15817:92;15905:3;15896:6;15817:92;:::i;:::-;15810:99;;15926:148;16070:3;15926:148;:::i;:::-;15919:155;;16091:95;16182:3;16173:6;16091:95;:::i;:::-;16084:102;;16203:148;16347:3;16203:148;:::i;:::-;16196:155;;16368:3;16361:10;;15416:961;;;;;:::o;16383:222::-;16476:4;16514:2;16503:9;16499:18;16491:26;;16527:71;16595:1;16584:9;16580:17;16571:6;16527:71;:::i;:::-;16383:222;;;;:::o;16611:640::-;16806:4;16844:3;16833:9;16829:19;16821:27;;16858:71;16926:1;16915:9;16911:17;16902:6;16858:71;:::i;:::-;16939:72;17007:2;16996:9;16992:18;16983:6;16939:72;:::i;:::-;17021;17089:2;17078:9;17074:18;17065:6;17021:72;:::i;:::-;17140:9;17134:4;17130:20;17125:2;17114:9;17110:18;17103:48;17168:76;17239:4;17230:6;17168:76;:::i;:::-;17160:84;;16611:640;;;;;;;:::o;17257:210::-;17344:4;17382:2;17371:9;17367:18;17359:26;;17395:65;17457:1;17446:9;17442:17;17433:6;17395:65;:::i;:::-;17257:210;;;;:::o;17473:222::-;17566:4;17604:2;17593:9;17589:18;17581:26;;17617:71;17685:1;17674:9;17670:17;17661:6;17617:71;:::i;:::-;17473:222;;;;:::o;17701:313::-;17814:4;17852:2;17841:9;17837:18;17829:26;;17901:9;17895:4;17891:20;17887:1;17876:9;17872:17;17865:47;17929:78;18002:4;17993:6;17929:78;:::i;:::-;17921:86;;17701:313;;;;:::o;18020:419::-;18186:4;18224:2;18213:9;18209:18;18201:26;;18273:9;18267:4;18263:20;18259:1;18248:9;18244:17;18237:47;18301:131;18427:4;18301:131;:::i;:::-;18293:139;;18020:419;;;:::o;18445:::-;18611:4;18649:2;18638:9;18634:18;18626:26;;18698:9;18692:4;18688:20;18684:1;18673:9;18669:17;18662:47;18726:131;18852:4;18726:131;:::i;:::-;18718:139;;18445:419;;;:::o;18870:::-;19036:4;19074:2;19063:9;19059:18;19051:26;;19123:9;19117:4;19113:20;19109:1;19098:9;19094:17;19087:47;19151:131;19277:4;19151:131;:::i;:::-;19143:139;;18870:419;;;:::o;19295:::-;19461:4;19499:2;19488:9;19484:18;19476:26;;19548:9;19542:4;19538:20;19534:1;19523:9;19519:17;19512:47;19576:131;19702:4;19576:131;:::i;:::-;19568:139;;19295:419;;;:::o;19720:::-;19886:4;19924:2;19913:9;19909:18;19901:26;;19973:9;19967:4;19963:20;19959:1;19948:9;19944:17;19937:47;20001:131;20127:4;20001:131;:::i;:::-;19993:139;;19720:419;;;:::o;20145:218::-;20236:4;20274:2;20263:9;20259:18;20251:26;;20287:69;20353:1;20342:9;20338:17;20329:6;20287:69;:::i;:::-;20145:218;;;;:::o;20369:222::-;20462:4;20500:2;20489:9;20485:18;20477:26;;20513:71;20581:1;20570:9;20566:17;20557:6;20513:71;:::i;:::-;20369:222;;;;:::o;20597:214::-;20686:4;20724:2;20713:9;20709:18;20701:26;;20737:67;20801:1;20790:9;20786:17;20777:6;20737:67;:::i;:::-;20597:214;;;;:::o;20817:129::-;20851:6;20878:20;;:::i;:::-;20868:30;;20907:33;20935:4;20927:6;20907:33;:::i;:::-;20817:129;;;:::o;20952:75::-;20985:6;21018:2;21012:9;21002:19;;20952:75;:::o;21033:311::-;21110:4;21200:18;21192:6;21189:30;21186:56;;;21222:18;;:::i;:::-;21186:56;21272:4;21264:6;21260:17;21252:25;;21332:4;21326;21322:15;21314:23;;21033:311;;;:::o;21350:307::-;21411:4;21501:18;21493:6;21490:30;21487:56;;;21523:18;;:::i;:::-;21487:56;21561:29;21583:6;21561:29;:::i;:::-;21553:37;;21645:4;21639;21635:15;21627:23;;21350:307;;;:::o;21663:308::-;21725:4;21815:18;21807:6;21804:30;21801:56;;;21837:18;;:::i;:::-;21801:56;21875:29;21897:6;21875:29;:::i;:::-;21867:37;;21959:4;21953;21949:15;21941:23;;21663:308;;;:::o;21977:141::-;22026:4;22049:3;22041:11;;22072:3;22069:1;22062:14;22106:4;22103:1;22093:18;22085:26;;21977:141;;;:::o;22124:98::-;22175:6;22209:5;22203:12;22193:22;;22124:98;;;:::o;22228:99::-;22280:6;22314:5;22308:12;22298:22;;22228:99;;;:::o;22333:168::-;22416:11;22450:6;22445:3;22438:19;22490:4;22485:3;22481:14;22466:29;;22333:168;;;;:::o;22507:169::-;22591:11;22625:6;22620:3;22613:19;22665:4;22660:3;22656:14;22641:29;;22507:169;;;;:::o;22682:148::-;22784:11;22821:3;22806:18;;22682:148;;;;:::o;22836:242::-;22875:3;22894:19;22911:1;22894:19;:::i;:::-;22889:24;;22927:19;22944:1;22927:19;:::i;:::-;22922:24;;23020:1;23012:6;23008:14;23005:1;23002:21;22999:47;;;23026:18;;:::i;:::-;22999:47;23070:1;23067;23063:9;23056:16;;22836:242;;;;:::o;23084:305::-;23124:3;23143:20;23161:1;23143:20;:::i;:::-;23138:25;;23177:20;23195:1;23177:20;:::i;:::-;23172:25;;23331:1;23263:66;23259:74;23256:1;23253:81;23250:107;;;23337:18;;:::i;:::-;23250:107;23381:1;23378;23374:9;23367:16;;23084:305;;;;:::o;23395:237::-;23433:3;23452:18;23468:1;23452:18;:::i;:::-;23447:23;;23484:18;23500:1;23484:18;:::i;:::-;23479:23;;23574:1;23568:4;23564:12;23561:1;23558:19;23555:45;;;23580:18;;:::i;:::-;23555:45;23624:1;23621;23617:9;23610:16;;23395:237;;;;:::o;23638:185::-;23678:1;23695:20;23713:1;23695:20;:::i;:::-;23690:25;;23729:20;23747:1;23729:20;:::i;:::-;23724:25;;23768:1;23758:35;;23773:18;;:::i;:::-;23758:35;23815:1;23812;23808:9;23803:14;;23638:185;;;;:::o;23829:348::-;23869:7;23892:20;23910:1;23892:20;:::i;:::-;23887:25;;23926:20;23944:1;23926:20;:::i;:::-;23921:25;;24114:1;24046:66;24042:74;24039:1;24036:81;24031:1;24024:9;24017:17;24013:105;24010:131;;;24121:18;;:::i;:::-;24010:131;24169:1;24166;24162:9;24151:20;;23829:348;;;;:::o;24183:191::-;24223:4;24243:20;24261:1;24243:20;:::i;:::-;24238:25;;24277:20;24295:1;24277:20;:::i;:::-;24272:25;;24316:1;24313;24310:8;24307:34;;;24321:18;;:::i;:::-;24307:34;24366:1;24363;24359:9;24351:17;;24183:191;;;;:::o;24380:96::-;24417:7;24446:24;24464:5;24446:24;:::i;:::-;24435:35;;24380:96;;;:::o;24482:90::-;24516:7;24559:5;24552:13;24545:21;24534:32;;24482:90;;;:::o;24578:77::-;24615:7;24644:5;24633:16;;24578:77;;;:::o;24661:149::-;24697:7;24737:66;24730:5;24726:78;24715:89;;24661:149;;;:::o;24816:89::-;24852:7;24892:6;24885:5;24881:18;24870:29;;24816:89;;;:::o;24911:126::-;24948:7;24988:42;24981:5;24977:54;24966:65;;24911:126;;;:::o;25043:77::-;25080:7;25109:5;25098:16;;25043:77;;;:::o;25126:86::-;25161:7;25201:4;25194:5;25190:16;25179:27;;25126:86;;;:::o;25218:154::-;25302:6;25297:3;25292;25279:30;25364:1;25355:6;25350:3;25346:16;25339:27;25218:154;;;:::o;25378:307::-;25446:1;25456:113;25470:6;25467:1;25464:13;25456:113;;;25555:1;25550:3;25546:11;25540:18;25536:1;25531:3;25527:11;25520:39;25492:2;25489:1;25485:10;25480:15;;25456:113;;;25587:6;25584:1;25581:13;25578:101;;;25667:1;25658:6;25653:3;25649:16;25642:27;25578:101;25427:258;25378:307;;;:::o;25691:320::-;25735:6;25772:1;25766:4;25762:12;25752:22;;25819:1;25813:4;25809:12;25840:18;25830:81;;25896:4;25888:6;25884:17;25874:27;;25830:81;25958:2;25950:6;25947:14;25927:18;25924:38;25921:84;;;25977:18;;:::i;:::-;25921:84;25742:269;25691:320;;;:::o;26017:281::-;26100:27;26122:4;26100:27;:::i;:::-;26092:6;26088:40;26230:6;26218:10;26215:22;26194:18;26182:10;26179:34;26176:62;26173:88;;;26241:18;;:::i;:::-;26173:88;26281:10;26277:2;26270:22;26060:238;26017:281;;:::o;26304:233::-;26343:3;26366:24;26384:5;26366:24;:::i;:::-;26357:33;;26412:66;26405:5;26402:77;26399:103;;;26482:18;;:::i;:::-;26399:103;26529:1;26522:5;26518:13;26511:20;;26304:233;;;:::o;26543:100::-;26582:7;26611:26;26631:5;26611:26;:::i;:::-;26600:37;;26543:100;;;:::o;26649:94::-;26688:7;26717:20;26731:5;26717:20;:::i;:::-;26706:31;;26649:94;;;:::o;26749:176::-;26781:1;26798:20;26816:1;26798:20;:::i;:::-;26793:25;;26832:20;26850:1;26832:20;:::i;:::-;26827:25;;26871:1;26861:35;;26876:18;;:::i;:::-;26861:35;26917:1;26914;26910:9;26905:14;;26749:176;;;;:::o;26931:180::-;26979:77;26976:1;26969:88;27076:4;27073:1;27066:15;27100:4;27097:1;27090:15;27117:180;27165:77;27162:1;27155:88;27262:4;27259:1;27252:15;27286:4;27283:1;27276:15;27303:180;27351:77;27348:1;27341:88;27448:4;27445:1;27438:15;27472:4;27469:1;27462:15;27489:180;27537:77;27534:1;27527:88;27634:4;27631:1;27624:15;27658:4;27655:1;27648:15;27675:180;27723:77;27720:1;27713:88;27820:4;27817:1;27810:15;27844:4;27841:1;27834:15;27861:117;27970:1;27967;27960:12;27984:117;28093:1;28090;28083:12;28107:117;28216:1;28213;28206:12;28230:117;28339:1;28336;28329:12;28353:117;28462:1;28459;28452:12;28476:102;28517:6;28568:2;28564:7;28559:2;28552:5;28548:14;28544:28;28534:38;;28476:102;;;:::o;28584:94::-;28617:8;28665:5;28661:2;28657:14;28636:35;;28584:94;;;:::o;28684:175::-;28824:27;28820:1;28812:6;28808:14;28801:51;28684:175;:::o;28865:166::-;29005:18;29001:1;28993:6;28989:14;28982:42;28865:166;:::o;29037:169::-;29177:21;29173:1;29165:6;29161:14;29154:45;29037:169;:::o;29212:175::-;29352:27;29348:1;29340:6;29336:14;29329:51;29212:175;:::o;29393:155::-;29533:7;29529:1;29521:6;29517:14;29510:31;29393:155;:::o;29554:164::-;29694:16;29690:1;29682:6;29678:14;29671:40;29554:164;:::o;29724:151::-;29864:3;29860:1;29852:6;29848:14;29841:27;29724:151;:::o;29881:122::-;29954:24;29972:5;29954:24;:::i;:::-;29947:5;29944:35;29934:63;;29993:1;29990;29983:12;29934:63;29881:122;:::o;30009:116::-;30079:21;30094:5;30079:21;:::i;:::-;30072:5;30069:32;30059:60;;30115:1;30112;30105:12;30059:60;30009:116;:::o;30131:122::-;30204:24;30222:5;30204:24;:::i;:::-;30197:5;30194:35;30184:63;;30243:1;30240;30233:12;30184:63;30131:122;:::o;30259:120::-;30331:23;30348:5;30331:23;:::i;:::-;30324:5;30321:34;30311:62;;30369:1;30366;30359:12;30311:62;30259:120;:::o;30385:122::-;30458:24;30476:5;30458:24;:::i;:::-;30451:5;30448:35;30438:63;;30497:1;30494;30487:12;30438:63;30385:122;:::o;30513:118::-;30584:22;30600:5;30584:22;:::i;:::-;30577:5;30574:33;30564:61;;30621:1;30618;30611:12;30564:61;30513:118;:::o

Swarm Source

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